Repository: FeralAI/GP2040 Branch: main Commit: 14b01e8ee2b5 Files: 170 Total size: 5.0 MB Directory structure: gitextract_notmhc6x/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── main.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .vscode/ │ └── extensions.json ├── LICENSE ├── README.md ├── build-web.py ├── configs/ │ ├── CrushCounter/ │ │ ├── BoardConfig.h │ │ └── env.ini │ ├── DURAL/ │ │ ├── BoardConfig.h │ │ ├── README.md │ │ └── env.ini │ ├── DebugBoard/ │ │ ├── BoardConfig.h │ │ ├── README.md │ │ ├── assets/ │ │ │ └── picoprobe_adafruit_qtpy_rp2040.uf2 │ │ └── env.ini │ ├── Fightboard/ │ │ ├── BoardConfig.h │ │ ├── README.md │ │ ├── assets/ │ │ │ └── PinMapping.xcf │ │ └── env.ini │ ├── FlatboxRev4/ │ │ ├── BoardConfig.h │ │ ├── README.md │ │ └── env.ini │ ├── GeeekPiStick/ │ │ ├── BoardConfig.h │ │ ├── README.md │ │ ├── assets/ │ │ │ └── PinMapping.xcf │ │ └── env.ini │ ├── Hydra/ │ │ ├── BoardConfig.h │ │ └── env.ini │ ├── OSFRD/ │ │ ├── BoardConfig.h │ │ └── env.ini │ └── Pico/ │ ├── BoardConfig.h │ ├── README.md │ ├── assets/ │ │ └── PinMapping.xcf │ └── env.ini ├── docs/ │ ├── .nojekyll │ ├── CNAME │ ├── _navbar.md │ ├── assets/ │ │ └── images/ │ │ └── led-themes/ │ │ └── _base-template.xcf │ ├── development.md │ ├── downloads/ │ │ └── flash_nuke.uf2 │ ├── faq.md │ ├── index.html │ ├── usage.md │ └── web-configurator.md ├── include/ │ ├── display.h │ ├── enums.h │ ├── gamepad.h │ ├── gp2040.h │ ├── leds.h │ ├── pico/ │ │ └── config_autogen.h │ ├── pleds.h │ ├── storage.h │ ├── themes.h │ └── tusb_config.h ├── lib/ │ ├── AnimationStation/ │ │ ├── .editorconfig │ │ ├── library.json │ │ └── src/ │ │ ├── Animation.cpp │ │ ├── Animation.hpp │ │ ├── AnimationStation.cpp │ │ ├── AnimationStation.hpp │ │ ├── AnimationStorage.hpp │ │ ├── Effects/ │ │ │ ├── Chase.cpp │ │ │ ├── Chase.hpp │ │ │ ├── Rainbow.cpp │ │ │ ├── Rainbow.hpp │ │ │ ├── StaticColor.cpp │ │ │ ├── StaticColor.hpp │ │ │ ├── StaticTheme.cpp │ │ │ └── StaticTheme.hpp │ │ └── Pixel.hpp │ ├── BitBang_I2C/ │ │ ├── BitBang_I2C.c │ │ ├── BitBang_I2C.h │ │ └── README.md │ ├── CRC32/ │ │ └── src/ │ │ ├── CRC32.cpp │ │ └── CRC32.h │ ├── FlashPROM/ │ │ ├── include/ │ │ │ └── FlashPROM.h │ │ ├── library.json │ │ └── src/ │ │ └── FlashPROM.cpp │ ├── NeoPico/ │ │ ├── .editorconfig │ │ ├── library.json │ │ └── src/ │ │ ├── NeoPico.cpp │ │ ├── NeoPico.hpp │ │ ├── ws2812.pio │ │ └── ws2812.pio.h │ ├── OneBitDisplay/ │ │ ├── OneBitDisplay.cpp │ │ ├── OneBitDisplay.h │ │ ├── README.md │ │ ├── fonts/ │ │ │ └── FreeSerif12pt7b.h │ │ └── obd.inl │ ├── PlayerLEDs/ │ │ ├── include/ │ │ │ └── PlayerLEDs.h │ │ └── src/ │ │ └── PlayerLEDs.cpp │ ├── TinyUSB_Gamepad/ │ │ ├── include/ │ │ │ ├── hid_driver.h │ │ │ ├── net_driver.h │ │ │ ├── usb_driver.h │ │ │ ├── webserver_descriptors.h │ │ │ └── xinput_driver.h │ │ ├── library.json │ │ └── src/ │ │ ├── hid_driver.cpp │ │ ├── net_driver.cpp │ │ ├── tusb_driver.cpp │ │ ├── usb_descriptors.cpp │ │ └── xinput_driver.cpp │ ├── httpd/ │ │ ├── fs.c │ │ ├── fs.h │ │ ├── fscustom.h │ │ ├── fsdata.c │ │ ├── fsdata.h │ │ ├── httpd.c │ │ ├── httpd.h │ │ └── httpd_structs.h │ ├── lwip-port/ │ │ ├── arch/ │ │ │ └── cc.h │ │ ├── lwipopts.h │ │ └── server/ │ │ ├── dhserver.c │ │ ├── dhserver.h │ │ ├── dnserver.c │ │ └── dnserver.h │ └── rndis/ │ ├── ndis.h │ ├── rndis.c │ ├── rndis.h │ ├── rndis_protocol.h │ └── rndis_reports.c ├── platformio.ini ├── src/ │ ├── display.cpp │ ├── gamepad.cpp │ ├── leds.cpp │ ├── main.cpp │ ├── pleds.cpp │ ├── storage.cpp │ └── webserver.cpp ├── tools/ │ └── makefsdata └── www/ ├── .gitignore ├── README.md ├── package.json ├── public/ │ ├── index.html │ └── manifest.json ├── server/ │ ├── app.js │ └── docs/ │ ├── GP2040 (Dev).postman_environment.json │ └── GP2040.postman_collection.json └── src/ ├── App.js ├── App.scss ├── Components/ │ ├── DangerSection.js │ ├── DraggableListGroup.js │ ├── DraggableListGroup.scss │ ├── FormCheck.js │ ├── FormCheck.scss │ ├── FormControl.js │ ├── FormSelect.js │ ├── Navigation.js │ ├── Navigation.scss │ ├── Section.js │ └── Section.scss ├── Contexts/ │ └── AppContext.js ├── Data/ │ ├── Boards.json │ ├── Buttons.json │ └── Controllers.json ├── Pages/ │ ├── DisplayConfig.js │ ├── HomePage.js │ ├── LEDConfigPage.js │ ├── PinMapping.js │ ├── PinMappings.scss │ ├── ResetSettingsPage.js │ └── SettingsPage.js ├── Services/ │ ├── Storage.js │ └── WebApi.js ├── index.js └── index.scss ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true [*] indent_style = tab indent_size = 2 end_of_line = crlf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md, *.yml] indent_style = space indent_size = 2 trim_trailing_whitespace = false [*.scss] end_of_line = lf ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: [FeralAI] ================================================ FILE: .github/workflows/main.yml ================================================ name: PlatformIO CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: submodules: recursive - name: Cache pip uses: actions/cache@v2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Cache PlatformIO uses: actions/cache@v2 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - name: Set up Python uses: actions/setup-python@v2 - name: Install PlatformIO run: | python -m pip install --upgrade pip pip install --upgrade platformio pio platform install https://github.com/Wiz-IO/wizio-pico - name: Run PlatformIO run: | pio run -e osfrd mv .pio/build/osfrd/APPLICATION.uf2 .pio/build/osfrd/GP2040-OSFRD.uf2 pio run -e crush-counter mv .pio/build/crush-counter/APPLICATION.uf2 .pio/build/crush-counter/GP2040-CrushCounter.uf2 pio run -e raspberry-pi-pico mv .pio/build/raspberry-pi-pico/APPLICATION.uf2 .pio/build/raspberry-pi-pico/GP2040-RaspberryPiPico.uf2 pio run -e pico-fighting-board mv .pio/build/pico-fighting-board/APPLICATION.uf2 .pio/build/pico-fighting-board/GP2040-PicoFightingBoard.uf2 pio run -e dural mv .pio/build/dural/APPLICATION.uf2 .pio/build/dural/GP2040-DURAL.uf2 pio run -e flatbox-rev-4 mv .pio/build/flatbox-rev-4/APPLICATION.uf2 .pio/build/flatbox-rev-4/GP2040-FlatboxRev4.uf2 ================================================ FILE: .github/workflows/release.yml ================================================ name: PlatformIO Release on: release: types: [created] jobs: build: runs-on: ubuntu-latest steps: - uses: olegtarasov/get-tag@v2.1 id: tagName - uses: actions/checkout@v2 with: submodules: recursive - name: Cache pip uses: actions/cache@v2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Cache PlatformIO uses: actions/cache@v2 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - name: Set up Python uses: actions/setup-python@v2 - name: Install PlatformIO run: | python -m pip install --upgrade pip pip install --upgrade platformio pio platform install https://github.com/Wiz-IO/wizio-pico - name: Run PlatformIO run: | pio run -e osfrd mv .pio/build/osfrd/APPLICATION.uf2 .pio/build/osfrd/GP2040-OSFRD_${{ steps.tagName.outputs.tag }}.uf2 pio run -e crush-counter mv .pio/build/crush-counter/APPLICATION.uf2 .pio/build/crush-counter/GP2040-CrushCounter_${{ steps.tagName.outputs.tag }}.uf2 pio run -e raspberry-pi-pico mv .pio/build/raspberry-pi-pico/APPLICATION.uf2 .pio/build/raspberry-pi-pico/GP2040-RaspberryPiPico_${{ steps.tagName.outputs.tag }}.uf2 pio run -e pico-fighting-board mv .pio/build/pico-fighting-board/APPLICATION.uf2 .pio/build/pico-fighting-board/GP2040-PicoFightingBoard_${{ steps.tagName.outputs.tag }}.uf2 pio run -e dural mv .pio/build/dural/APPLICATION.uf2 .pio/build/dural/GP2040-DURAL_${{ steps.tagName.outputs.tag }}.uf2 pio run -e flatbox-rev-4 mv .pio/build/flatbox-rev-4/APPLICATION.uf2 .pio/build/flatbox-rev-4/GP2040-FlatboxRev4_${{ steps.tagName.outputs.tag }}.uf2 - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: files: | .pio/build/osfrd/GP2040-OSFRD_${{ steps.tagName.outputs.tag }}.uf2 .pio/build/crush-counter/GP2040-CrushCounter_${{ steps.tagName.outputs.tag }}.uf2 .pio/build/raspberry-pi-pico/GP2040-RaspberryPiPico_${{ steps.tagName.outputs.tag }}.uf2 .pio/build/pico-fighting-board/GP2040-PicoFightingBoard_${{ steps.tagName.outputs.tag }}.uf2 .pio/build/dural/GP2040-DURAL_${{ steps.tagName.outputs.tag }}.uf2 .pio/build/flatbox-rev-4/GP2040-FlatboxRev4_${{ steps.tagName.outputs.tag }}.uf2 ================================================ FILE: .gitignore ================================================ .pio .vscode/.browse.c_cpp.db* .vscode/c_cpp_properties.json .vscode/launch.json .vscode/ipch .vscode/settings.json node_modules/ configs/MyBoard ================================================ FILE: .gitmodules ================================================ [submodule "configs/PicoFightingBoard"] path = configs/PicoFightingBoard url = https://github.com/FeralAI/GP2040-Config-PicoFightingBoard.git ================================================ FILE: .vscode/extensions.json ================================================ { // See http://go.microsoft.com/fwlink/?LinkId=827846 // for the documentation about the extensions.json format "recommendations": [ "platformio.platformio-ide" ] } ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2021 Jason Skuby (mytechtoybox.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ > GP2040 is no longer being maintained. Please check out the more fully-featured community fork called [GP2040-CE](https://github.com/OpenStickCommunity/GP2040-CE). Documentation for GP2040-CE can be found at . Thank you to the [Open Stick Community](https://github.com/OpenStickCommunity) members for picking up the slack and advancing this project in my absence. # GP2040 Firmware GP2040 is a gamepad firmware for the Raspberry Pi Pico and other boards based on the RP2040 microcontroller, and provides high performance with a rich feature set across multiple platforms. GP2040 is compatible with PC, MiSTer, Android, Raspberry Pi, Nintendo Switch, PS3 and PS4 (legacy controller support). Full documentation can be found at . ## Features * Selectable input modes (XInput, DirectInput and Nintendo Switch) * Overclocked polling rate to 1000 Hz (1 ms) in all modes, with less than 1 ms of input latency * Multiple SOCD cleaning modes - Neutral, Up Priority (a.k.a. Hitbox), Second Input Priority * Left and Right stick emulation via D-pad inputs * Per-button RGB LED support * PWM and RGB player indicator LED support (XInput only) * Saves options to internal memory * Support for 128x64 monochrome I2C displays using SSD1306, SH1106 or SH1107 display drivers. * [Built-in configuration app](https://gp2040.info/#/web-configurator) hosted via embedded webserver...no downloading a separate app! Take a look at the [GP2040 Usage](https://gp2040.info/#/usage) page for more details. ## Performance Input latency is tested using the methodology outlined at [WydD's inputlag.science website](https://inputlag.science/controller/methodology), using the default 1000 Hz (1 ms) polling rate in the firmware. | Version | Mode | Poll Rate | Min | Max | Avg | Stdev | % on time | %1f skip | %2f skip | | - | - | - | - | - | - | - | - | - | - | | v0.3.1 | All | 1 ms | 0.56 ms | 1.32 ms | 0.85 ms | 0.24 ms | 95.95% | 4.05% | 0% | Full results can be found in the [GP2040 Firmware Latency Test Results](https://docs.google.com/spreadsheets/d/1eeX0SCOYnUDZMYzt_69wDpjnB_XUtvsfvHJYxxgTj28/edit#gid=1559471406) Google Sheet. ## Installation Prebuilt `uf2` files are available in the [Releases](https://github.com/FeralAI/GP2040/releases) section for the following boards and controllers: * [Raspberry Pi Pico](https://github.com/FeralAI/GP2040/tree/main/configs/Pico) and other pin-compatible boards such as the Pimoroni Pico Lipo ([wiring diagram](https://raw.githubusercontent.com/FeralAI/GP2040/main/configs/Pico/assets/PinMapping.png)) * [Pico Fighting Board](https://github.com/FeralAI/GP2040-Config-PicoFightingBoard/) * [Crush Counter](https://github.com/FeralAI/GP2040/tree/main/configs/CrushCounter) (formerly the [OSFRD](https://github.com/FeralAI/GP2040/tree/main/configs/OSFRD)) * [DURAL](https://github.com/FeralAI/GP2040/tree/main/configs/DURAL) * [Flatbox Rev 4](https://github.com/jfedor2/flatbox/tree/master/hardware-rev4) Several other working example configurations are located in the [configs](https://github.com/FeralAI/GP2040/tree/main/configs) folder. The instructions will slightly vary based on your device. These instructions are for a Raspberry Pi Pico. > If the device has been previously used for something other than GP2040, please flash this file first to clear the on-board storage: [flash_nuke.uf2](docs/downloads/flash_nuke.uf2). After flashing the nuke file, wait a minute for the clear program to run and the RPI-RP2 drive to reappear. 1. Download the latest `GP2040.uf2` file from the [Releases](https://github.com/FeralAI/GP2040/releases) section for your board (e.g. `GP2040-PiPico.uf2` for the Raspberry Pi Pico). 1. Unplug your Pico.[label](https://www.reddit.com/r/fightsticks/comments/zt628p/gp2040ce_open_stick_community_introduction_and/) 1. Hold the BOOTSEL button on the Pico and plug into your computer. A new removable drive named `RPI-RP2` should appear in your file explorer. 1. Drag and drop the `GP2040.uf2` file into the removable drive. This will flash the board. 1. The board is now running the GP2040 firmware and will appear as a controller on your computer. ## Support If you would like to discuss features, issues or anything else related to GP2040 please [create an issue](https://github.com/FeralAI/GP2040/issues/new) or join the [OpenStick GP2040 Discord channel](https://discord.gg/KyQCHcjwJ2). ### Frequently Asked Questions #### Which input mode should I use? Generally speaking, XInput will be the mode of choice for everything except Nintendo Switch and PlayStation 3. XInput mode is the most fully-featured, has the best compatibility with PC games and is compatible with console adapters like the Brook Wingman product line. All things being equal, performance is the same in all modes. #### What is the extent of PS4 support in GP2040? GP2040 will work on PS4 games that implement support for legacy PS3 controllers. Many of the popular PS4 fighting games have this support. #### Does/can/will GP2040 natively support the PS4, PS5, Xbox One or Xbox Series consoles? These consoles implement security to prevent unauthorized accessories from being used. The process of cracking or bypassing that security may not be legal everywhere. These consoles could be supported in the future if a user-friendly and completely legal implementation method is found. #### Can I use multiple controllers with GP2040 on the same system? Yes! Each board with GP2040 is treated as a separate controller. The one thing to keep in mind would be to only run the web configurator for one controller at a time. #### Does GP2040 really have less than 1 ms of latency? Yes...if your platform supports 1000 Hz USB polling. GP2040 is configured for 1000 Hz / 1 ms polling by default in all modes, however some systems override or ignore the polling rate the controller requests. PC and MiSTer are confirmed to work with 1000 Hz polling. Even if your system doesn't support a USB polling rate that high, you can feel comfortable knowing GP2040 is still reading and processing your inputs as fast as the target system will allow. #### Do the additional features like RGB LEDs, Player LEDs and OLED displays affect performance? No! The RP2040 chip contains two processing cores. GP2040 dedicates one core to reading inputs and sending them via USB, while the second core is used to handle any auxiliary modules like LEDs and display support. No matter how crazy the feature set of GP2040 becomes, it's unlikely your controller's input latency will be affected. #### Why do the buttons have weird labels like B3, A1, S2, etc.? GP2040 uses a generic system for handling button inputs that most closely maps to a traditional PlayStation controller layout with a few extra buttons. This means 4 face buttons (B1-B4), 4 shoulder buttons (L1, L2, R1, R2), Select and Start (S1, S2), 2 stick buttons (L3, R3) and 2 auxiliary buttons for things like Home and Capture (A1, A2) on the Switch. The GP2040 documentation and web configurator have a dropdown to change the labels to more familiar controller layouts. You can also refer to the button mapping table on the [GP2040 Usage](https://gp2040.info/#/usage?id=buttons) page. #### Why use PlatformIO instead of \? Setting up a development environment to build Pico SDK projects is a manual process which requires several components to be installed and configured. Using PlatformIO allows easy installation and updating of build and project dependencies, and makes for a less confusing experience for new developers and people that just want to make a few tweaks for a custom build. #### What kind of voodoo is that built-in web configurator? There's no magic here, just some useful libraries working together: * Single page application using React and Bootstrap is embedded in the GP2040 firmware * TinyUSB library provides virtual network connection over USB via RNDIS * lwIP library provides an HTTP server for the embedded React app and the web configuration API * ArduinoJson library is used for serialization and deserialization of web API requests ## Contributions Want to help improve GP2040? There are a bunch of ways to contribute! ### Pull Requests Pull requests are welcome and encouraged for enhancements, bug fixes and documentation updates. Please respect the coding style of the file(s) you are working in, and enforce the use of the `.editorconfig` file when present. ### Donations If you'd like to make a donation to my open source work, you can Sponsor Feral AI on Github or Buy Me A Coffee ## Acknowledgements * Ha Thach's excellent [TinyUSB library](https://github.com/hathach/tinyusb) examples * fluffymadness's [tinyusb-xinput](https://github.com/fluffymadness/tinyusb-xinput) sample * Kevin Boone's [blog post on using RP2040 flash memory as emulated EEPROM](https://kevinboone.me/picoflash.html) * [bitbank2](https://github.com/bitbank2) for the [OneBitDisplay](https://github.com/bitbank2/OneBitDisplay) and [BitBang_I2C](https://github.com/bitbank2/BitBang_I2C) libraries, which were ported for use with the Pico SDK ================================================ FILE: build-web.py ================================================ import os import os.path website_dir = "www/build/" fsdata_filename = "lib/httpd/fsdata.c" print("Building React app") os.chdir("www") if not os.path.isdir("node_modules"): print("Running npm install") os.system("npm i") print("Running npm run build") os.system("npm run build") os.chdir("..") print("Done") print("Regenerating " + fsdata_filename) dirname = os.path.dirname(__file__) makefsdata = os.path.join(dirname, 'tools/makefsdata') os.system(makefsdata + " " + website_dir + " -f:" + fsdata_filename) print("Done") print("Replace includes") os.system('perl -i -p0e "s/#include.*?"lwip\/def.h"/#include ""fsdata.h"/s" ' + fsdata_filename) print("Done") ================================================ FILE: configs/CrushCounter/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef CRUSH_COUNTER_BOARD_CONFIG_H_ #define CRUSH_COUNTER_BOARD_CONFIG_H_ #include #include "enums.h" #include "NeoPico.hpp" #include "PlayerLEDs.h" #define PIN_DPAD_UP 20 #define PIN_DPAD_DOWN 8 #define PIN_DPAD_LEFT 1 #define PIN_DPAD_RIGHT 14 #define PIN_BUTTON_B1 18 #define PIN_BUTTON_B2 17 #define PIN_BUTTON_B3 13 #define PIN_BUTTON_B4 9 #define PIN_BUTTON_L1 12 #define PIN_BUTTON_R1 10 #define PIN_BUTTON_L2 19 #define PIN_BUTTON_R2 16 #define PIN_BUTTON_S1 3 #define PIN_BUTTON_S2 0 #define PIN_BUTTON_L3 6 #define PIN_BUTTON_R3 7 #define PIN_BUTTON_A1 4 #define PIN_BUTTON_A2 5 #define PIN_SETTINGS 11 #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_HITBOX #define BOARD_LEDS_PIN 2 #define LED_BRIGHTNESS_MAXIMUM 100 #define LED_BRIGHTNESS_STEPS 5 #define LED_FORMAT LED_FORMAT_GRB #define LEDS_PER_PIXEL 1 #define LEDS_DPAD_LEFT 0 #define LEDS_DPAD_DOWN 1 #define LEDS_DPAD_RIGHT 2 #define LEDS_DPAD_UP 3 #define LEDS_BUTTON_B3 4 #define LEDS_BUTTON_B4 5 #define LEDS_BUTTON_R1 6 #define LEDS_BUTTON_L1 7 #define LEDS_BUTTON_B1 8 #define LEDS_BUTTON_B2 9 #define LEDS_BUTTON_R2 10 #define LEDS_BUTTON_L2 11 #define PLED_TYPE PLED_TYPE_RGB #define PLED1_PIN 12 #define PLED2_PIN 13 #define PLED3_PIN 14 #define PLED4_PIN 15 #endif ================================================ FILE: configs/CrushCounter/env.ini ================================================ [env:crush-counter] build_flags = ${env.build_flags} -I configs/CrushCounter/ upload_port = .pio/build/crush-counter/ ================================================ FILE: configs/DURAL/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef DURAL_CONFIG_H_ #define DURAL_CONFIG_H_ #include #define PIN_DPAD_UP 9 #define PIN_DPAD_DOWN 7 #define PIN_DPAD_LEFT 6 #define PIN_DPAD_RIGHT 8 #define PIN_BUTTON_B1 21 #define PIN_BUTTON_B2 20 #define PIN_BUTTON_B3 23 #define PIN_BUTTON_B4 22 #define PIN_BUTTON_L1 27 #define PIN_BUTTON_R1 29 #define PIN_BUTTON_L2 26 #define PIN_BUTTON_R2 28 #define PIN_BUTTON_S1 5 #define PIN_BUTTON_S2 4 #define PIN_BUTTON_L3 1 #define PIN_BUTTON_R3 0 #define PIN_BUTTON_A1 3 #define PIN_BUTTON_A2 2 #define DEFAULT_SOCD_MODE SOCD_MODE_UP_PRIORITY #define BUTTON_LAYOUT BUTTON_LAYOUT_HITBOX #endif ================================================ FILE: configs/DURAL/README.md ================================================ # GP2040 Configuration for DURAL ![DURAL](assets/DURAL.jpg) ================================================ FILE: configs/DURAL/env.ini ================================================ [env:dural] build_flags = ${env.build_flags} -D BOARD_SPARKFUN_MICRO_RP2040 -I configs/DURAL/ upload_port = .pio/build/dural/ ================================================ FILE: configs/DebugBoard/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) * * Debug setup * ------------------------------------------------------------------------------------ * 2x Raspberry Pi Pico (2nd is for picoprobe debugging) * 1x Waveshare 1.3inch LCD Display Module - https://www.waveshare.com/pico-lcd-1.3.htm * 1x Waveshare RGB 16x10 LED Matrix - https://www.waveshare.com/pico-rgb-led.htm * 1x Waveshare Quad GPIO Expander - https://www.waveshare.com/pico-quad-expander.htm * */ #ifndef DEBUG_BOARD_CONFIG_H_ #define DEBUG_BOARD_CONFIG_H_ #include #include "hardware/i2c.h" #include "OneBitDisplay/OneBitDisplay.h" #include "enums.h" #include "NeoPico.hpp" #include "PlayerLEDs.h" // Remaining pins (0, 1 reserved for I2C): 16 #define PIN_DPAD_UP 4 #define PIN_DPAD_DOWN 5 #define PIN_DPAD_LEFT 2 #define PIN_DPAD_RIGHT 3 #define PIN_BUTTON_B3 10 #define PIN_BUTTON_B4 12 #define PIN_BUTTON_R1 14 #define PIN_BUTTON_L1 15 #define PIN_BUTTON_B1 22 #define PIN_BUTTON_B2 21 #define PIN_BUTTON_R2 19 #define PIN_BUTTON_L2 17 #define PIN_BUTTON_S1 28 #define PIN_BUTTON_S2 27 #define PIN_BUTTON_L3 6 #define PIN_BUTTON_R3 8 #define PIN_BUTTON_A1 26 #define PIN_BUTTON_A2 9 // Not connected #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_WASD #define BOARD_LEDS_PIN 7 #define LED_BRIGHTNESS_MAXIMUM 50 #define LED_BRIGHTNESS_STEPS 5 #define LED_FORMAT LED_FORMAT_GRB #define LEDS_PER_PIXEL 4 #define LEDS_DPAD_LEFT 0 #define LEDS_DPAD_DOWN 1 #define LEDS_DPAD_RIGHT 2 #define LEDS_DPAD_UP 3 #define LEDS_BUTTON_B3 4 #define LEDS_BUTTON_B4 5 #define LEDS_BUTTON_R1 6 #define LEDS_BUTTON_L1 7 #define LEDS_BUTTON_B1 8 #define LEDS_BUTTON_B2 9 #define LEDS_BUTTON_R2 10 #define LEDS_BUTTON_L2 11 #define PLED_TYPE PLED_TYPE_PWM #define PLED1_PIN 20 #define PLED2_PIN 11 #define PLED3_PIN 18 #define PLED4_PIN 13 #define HAS_I2C_DISPLAY 1 #define I2C_SDA_PIN 0 #define I2C_SCL_PIN 1 #define I2C_BLOCK i2c0 #define I2C_SPEED 800000 #endif ================================================ FILE: configs/DebugBoard/README.md ================================================ # GP2040 Configuration for Debugging ![Debug setup](assets/DebugBoard.jpg) Feral's debugging setup. This is what peak performance looks like. But seriously, it contains (from left to right): - Custom Hat #1: "Fightstick" with 17 total inputs - 1x [10x10x9mm 5 Way Tact Switch](https://www.amazon.com/Bestol-Direction-Switch-10109mm-Navigation/dp/B07F71N26Z/) - 12x [3x6x4.3mm Tact Switch](https://www.amazon.com/gp/product/B008DS188Y/) - Custom Hat #2: Aux function module - 0.96" 128x32 SSD1306 I2C OLED - 4x Player LEDs - 1x DIP switch - [Pimoroni Pico LiPo](https://shop.pimoroni.com/products/pimoroni-pico-lipo) (USB-C FTW!) - [Waveshare RGB 16x10 LED Matrix](https://www.waveshare.com/pico-rgb-led.htm) - Custom Hat #3: I2C expansion board - 256k EEPROM module - 2x JST-XH 4-pin connectors All connected to a [Waveshare Quad GPIO Expander](https://www.waveshare.com/pico-quad-expander.htm). Custom hats are built on [Pimoroni Pico Proto boards](https://shop.pimoroni.com/products/pico-proto). An [Adafruit QT Py RP2040](https://www.adafruit.com/product/4900) is flashed with a [custom Picoprobe build](assets/picoprobe_adafruit_qtpy_rp2040.uf2) and attached to the Pico LiPo's JST-SH connectors for debugging. ================================================ FILE: configs/DebugBoard/env.ini ================================================ [env:debug] debug_tool = picoprobe upload_protocol = picoprobe build_type = debug build_flags = ${env.build_flags} -I configs/DebugBoard/ upload_port = .pio/build/debug/ ================================================ FILE: configs/Fightboard/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) * * Custom config for a modded Fightboard / Fightboard MX using an ItsyBitsy RP2040. * */ #ifndef FIGHTBOARD_CONFIG_H_ #define FIGHTBOARD_CONFIG_H_ #include #include #include #include "Pixel.hpp" #include "enums.h" #define PIN_DPAD_UP 10 #define PIN_DPAD_DOWN 8 #define PIN_DPAD_LEFT 9 #define PIN_DPAD_RIGHT 7 #define PIN_BUTTON_B1 20 #define PIN_BUTTON_B2 19 #define PIN_BUTTON_B3 24 #define PIN_BUTTON_B4 29 #define PIN_BUTTON_L1 27 #define PIN_BUTTON_R1 28 #define PIN_BUTTON_L2 25 #define PIN_BUTTON_R2 18 #define PIN_BUTTON_S1 2 #define PIN_BUTTON_S2 1 #define PIN_BUTTON_L3 3 #define PIN_BUTTON_R3 4 #define PIN_BUTTON_A1 0 #define PIN_BUTTON_A2 5 #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_WASD #define BOARD_LEDS_PIN 14 #define LED_BRIGHTNESS_MAXIMUM 255 #define LED_BRIGHTNESS_STEPS 5 #define LED_FORMAT LED_FORMAT_GRBW #define LEDS_PER_PIXEL 1 #define LEDS_DPAD_LEFT 10 #define LEDS_DPAD_DOWN 9 #define LEDS_DPAD_RIGHT 8 #define LEDS_DPAD_UP 11 #define LEDS_BUTTON_B3 0 #define LEDS_BUTTON_B4 1 #define LEDS_BUTTON_R1 2 #define LEDS_BUTTON_L1 3 #define LEDS_BUTTON_B1 7 #define LEDS_BUTTON_B2 6 #define LEDS_BUTTON_R2 5 #define LEDS_BUTTON_L2 4 #endif ================================================ FILE: configs/Fightboard/README.md ================================================ # GP2040 Configuration for Fightboard and Fightboard MX The Fightboard and Fightboard MX come with the ItsyBitsy 32u4. If you're brave/skilled enough, you can *upgrade* your Fightboard with an ItsyBitsy RP2040 running GP2040 firmware. This is an example pin mapping for a possible DIY swap. ![Pin Mapping](assets/PinMapping.png) ================================================ FILE: configs/Fightboard/env.ini ================================================ [env:fightboard] build_flags = ${env.build_flags} -I configs/Fightboard/ upload_port = .pio/build/fightboard/ ================================================ FILE: configs/FlatboxRev4/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef FLATBOX_REV4_CONFIG_H_ #define FLATBOX_REV4_CONFIG_H_ #include #define PIN_DPAD_UP 16 #define PIN_DPAD_DOWN 10 #define PIN_DPAD_LEFT 9 #define PIN_DPAD_RIGHT 11 #define PIN_BUTTON_B1 19 #define PIN_BUTTON_B2 24 #define PIN_BUTTON_B3 18 #define PIN_BUTTON_B4 25 #define PIN_BUTTON_L1 29 #define PIN_BUTTON_R1 27 #define PIN_BUTTON_L2 28 #define PIN_BUTTON_R2 26 #define PIN_BUTTON_S1 3 #define PIN_BUTTON_S2 1 #define PIN_BUTTON_L3 6 #define PIN_BUTTON_R3 4 #define PIN_BUTTON_A1 2 #define PIN_BUTTON_A2 5 #define DEFAULT_SOCD_MODE SOCD_MODE_UP_PRIORITY #define BUTTON_LAYOUT BUTTON_LAYOUT_HITBOX #endif ================================================ FILE: configs/FlatboxRev4/README.md ================================================ # GP2040 Configuration for Flatbox Rev 4 ![Flatbox](assets/Flatbox-rev2b-finished-product.jpg) Configuration for the [Flatbox Rev 4](https://github.com/jfedor2/flatbox/tree/master/hardware-rev4), one of the excellent revisions of the [Flatbox](https://github.com/jfedor2/flatbox) design by [jfedor2](https://github.com/jfedor2) powered by an RP2040 MCU. ================================================ FILE: configs/FlatboxRev4/env.ini ================================================ [env:flatbox-rev-4] upload_port = .pio/build/flatbox-rev-4/ build_flags = ${env.build_flags} -I configs/FlatboxRev4/ ================================================ FILE: configs/GeeekPiStick/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) * * Preset config for Pico with a GeeekPi Pico Screw Terminal Expansion Board: * https://www.amazon.com/gp/product/B0998594PL/ * */ #ifndef GEEEK_PI_STICK_CONFIG_H_ #define GEEEK_PI_STICK_CONFIG_H_ #include #define PIN_DPAD_DOWN 4 #define PIN_DPAD_UP 5 #define PIN_DPAD_LEFT 6 #define PIN_DPAD_RIGHT 7 #define PIN_BUTTON_B1 8 #define PIN_BUTTON_B2 9 #define PIN_BUTTON_R2 10 #define PIN_BUTTON_L2 11 #define PIN_BUTTON_B3 12 #define PIN_BUTTON_B4 13 #define PIN_BUTTON_R1 14 #define PIN_BUTTON_L1 15 #define PIN_BUTTON_S1 17 #define PIN_BUTTON_S2 18 #define PIN_BUTTON_L3 19 #define PIN_BUTTON_R3 20 #define PIN_BUTTON_A1 21 #define PIN_BUTTON_A2 22 #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_ARCADE #endif ================================================ FILE: configs/GeeekPiStick/README.md ================================================ # GP2040 Configuration for GeeekPi GPIO Breakout Preset config for Pico with a GeeekPi Pico Screw Terminal Expansion Board: ![Pin Mapping](assets/PinMapping.png) Notes: * GP2040 button labels are blue on white background, no slant. * Each screw terminal row has a ground (`GND`) connection available. * If hooking up RGB LEDs, use the `VBUS` terminal on the bottom row for power. ================================================ FILE: configs/GeeekPiStick/env.ini ================================================ [env:geeek-pi-stick] build_flags = ${env.build_flags} -I configs/GeeekPiStick/ upload_port = .pio/build/geeek-pi-stick/ ================================================ FILE: configs/Hydra/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef HYDRA_CONFIG_H_ #define HYDRA_CONFIG_H_ #include #include "enums.h" #include "NeoPico.hpp" #include "PlayerLEDs.h" #define PIN_DPAD_DOWN 0 #define PIN_DPAD_UP 1 #define PIN_DPAD_LEFT 2 #define PIN_DPAD_RIGHT 3 #define PIN_BUTTON_B3 4 #define PIN_BUTTON_B4 5 #define PIN_BUTTON_R1 6 #define PIN_BUTTON_L1 7 #define PIN_BUTTON_B1 8 #define PIN_BUTTON_B2 9 #define PIN_BUTTON_R2 10 #define PIN_BUTTON_L2 11 #define PIN_BUTTON_S2 12 #define PIN_BUTTON_S1 13 #define PIN_BUTTON_R3 14 #define PIN_BUTTON_A1 15 #define PIN_BUTTON_A2 18 #define PIN_BUTTON_L3 19 #define DEFAULT_SOCD_MODE SOCD_MODE_UP_PRIORITY #define BUTTON_LAYOUT BUTTON_LAYOUT_HITBOX #define BOARD_LEDS_PIN 22 #define LED_BRIGHTNESS_MAXIMUM 200 #define LED_BRIGHTNESS_STEPS 5 #define LED_FORMAT LED_FORMAT_GRB #define LEDS_PER_PIXEL 2 #define LEDS_DPAD_LEFT 11 #define LEDS_DPAD_DOWN 10 #define LEDS_DPAD_RIGHT 9 #define LEDS_DPAD_UP 0 #define LEDS_BUTTON_B3 8 #define LEDS_BUTTON_B4 7 #define LEDS_BUTTON_R1 6 #define LEDS_BUTTON_L1 5 #define LEDS_BUTTON_B1 1 #define LEDS_BUTTON_B2 2 #define LEDS_BUTTON_R2 3 #define LEDS_BUTTON_L2 4 // #define PLED_TYPE PLED_TYPE_PWM // #define PLED1_PIN 16 // #define PLED2_PIN 17 // #define PLED3_PIN 18 // #define PLED4_PIN 19 #define HAS_I2C_DISPLAY 1 #define I2C_SDA_PIN 20 #define I2C_SCL_PIN 21 #define I2C_BLOCK i2c0 #define I2C_SPEED 800000 #endif ================================================ FILE: configs/Hydra/env.ini ================================================ [env:hydra] build_flags = ${env.build_flags} -I configs/Hydra/ upload_port = .pio/build/hydra/ [env:hydra-debug] debug_tool = picoprobe upload_protocol = picoprobe build_type = debug build_flags = ${env.build_flags} -I configs/Hydra/ upload_port = .pio/build/hydra-debug/ ================================================ FILE: configs/OSFRD/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef OSFRD_BOARD_CONFIG_H_ #define OSFRD_BOARD_CONFIG_H_ #include #include "enums.h" #include "NeoPico.hpp" #include "PlayerLEDs.h" #define PIN_DPAD_UP 13 #define PIN_DPAD_DOWN 11 #define PIN_DPAD_LEFT 10 #define PIN_DPAD_RIGHT 12 #define PIN_BUTTON_B1 4 #define PIN_BUTTON_B2 5 #define PIN_BUTTON_B3 0 #define PIN_BUTTON_B4 1 #define PIN_BUTTON_L1 3 #define PIN_BUTTON_R1 2 #define PIN_BUTTON_L2 7 #define PIN_BUTTON_R2 6 #define PIN_BUTTON_S1 8 #define PIN_BUTTON_S2 9 #define PIN_BUTTON_L3 17 #define PIN_BUTTON_R3 16 #define PIN_BUTTON_A1 28 #define PIN_BUTTON_A2 18 #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_HITBOX #define BOARD_LEDS_PIN 14 #define LED_BRIGHTNESS_MAXIMUM 100 #define LED_BRIGHTNESS_STEPS 5 #define LED_FORMAT LED_FORMAT_GRB #define LEDS_PER_PIXEL 1 #define LEDS_DPAD_LEFT 0 #define LEDS_DPAD_DOWN 1 #define LEDS_DPAD_RIGHT 2 #define LEDS_DPAD_UP 3 #define LEDS_BUTTON_B3 4 #define LEDS_BUTTON_B4 5 #define LEDS_BUTTON_R1 6 #define LEDS_BUTTON_L1 7 #define LEDS_BUTTON_B1 8 #define LEDS_BUTTON_B2 9 #define LEDS_BUTTON_R2 10 #define LEDS_BUTTON_L2 11 #define PLED_TYPE PLED_TYPE_RGB #define PLED1_PIN 12 #define PLED2_PIN 13 #define PLED3_PIN 14 #define PLED4_PIN 15 #endif ================================================ FILE: configs/OSFRD/env.ini ================================================ [env:osfrd] build_flags = ${env.build_flags} -I configs/OSFRD/ upload_port = .pio/build/osfrd/ [env:osfrd-pirate] build_flags = ${env.build_flags} -D BOARD_PIMORONI_PICO_LIPO_16MB -I configs/OSFRD/ upload_port = .pio/build/osfrd-pirate/ ================================================ FILE: configs/Pico/BoardConfig.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef PICO_BOARD_CONFIG_H_ #define PICO_BOARD_CONFIG_H_ #include #define PIN_DPAD_UP 2 #define PIN_DPAD_DOWN 3 #define PIN_DPAD_RIGHT 4 #define PIN_DPAD_LEFT 5 #define PIN_BUTTON_B1 6 #define PIN_BUTTON_B2 7 #define PIN_BUTTON_R2 8 #define PIN_BUTTON_L2 9 #define PIN_BUTTON_B3 10 #define PIN_BUTTON_B4 11 #define PIN_BUTTON_R1 12 #define PIN_BUTTON_L1 13 #define PIN_BUTTON_S1 16 #define PIN_BUTTON_S2 17 #define PIN_BUTTON_L3 18 #define PIN_BUTTON_R3 19 #define PIN_BUTTON_A1 20 #define PIN_BUTTON_A2 21 #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_ARCADE #endif ================================================ FILE: configs/Pico/README.md ================================================ # GP2040 Configuration for Raspberry Pi Pico ![Pin Mapping](assets/PinMapping.png) Basic pin setup for a stock Raspberry Pi Pico. Combine with a simple GPIO breakout/screw terminal board for an easy DIY arcade stick. ================================================ FILE: configs/Pico/env.ini ================================================ [env:raspberry-pi-pico] upload_port = .pio/build/raspberry-pi-pico/ build_flags = ${env.build_flags} -I configs/Pico/ [env:pimoroni-pico-lipo] build_flags = ${env.build_flags} -D BOARD_PIMORONI_PICO_LIPO -I configs/Pico/ upload_port = .pio/build/pimoroni-pico-lipo/ ================================================ FILE: docs/.nojekyll ================================================ ================================================ FILE: docs/CNAME ================================================ gp2040.info ================================================ FILE: docs/_navbar.md ================================================ * [Home](/) * [Usage](usage) * [Configuration](web-configurator) * [Development](development) ================================================ FILE: docs/development.md ================================================ # GP2040 Development GP2040 is written in C++ and set up as a [PlatformIO](https://platformio.org/) project, using the [Wiz-IO Raspberry Pi Pico](https://github.com/Wiz-IO/wizio-pico) platform package in the `baremetal` (Pico SDK) configuration. ## Environment Setup The recommended setup is to develop using the [PlatformIO IDE](https://platformio.org/platformio-ide), which is an extension to the excellent [Visual Studio Code (VS Code)](https://code.visualstudio.com/) editor. If a dedicated IDE for embedded development isn't your thing, you can easily build the project using the [PlatformIO CLI](https://platformio.org/install/cli) instead. This section will cover using the PlatformIO IDE. 1. Use Git to clone the [GP2040 repository](https://github.com/FeralAI/GP2040.git), or [download the latest version](https://github.com/FeralAI/GP2040/archive/refs/heads/main.zip) and extract it. 1. Follow the [installation instructions for the PlatformIO IDE](https://platformio.org/install/ide?install=vscode). 1. Open VS Code and you should be greeted with the PlatformIO Home screen. 1. Select the PlatformIO tab in the activity bar (bug icon), then go to `PIO Home > Platforms`. 1. On the Platforms tab click the `Advanced Installation` button, then type `https://github.com/Wiz-IO/wizio-pico` and click `Install`. 1. Open the `GP2040` (`GP2040-main` if from zip) folder in VS Code and it should automatically get picked up as a Platform IO project. 1. Click on the VS Code Explorer tab (or Ctrl+Shift+E) and expand the folders and files in your project. PlatformIO will download any dependencies not already included with the project. ## Configuration There are two simple options for building GP2040 for your board. You can either edit an existing board definition, or create your own and configure PlatformIO to build it. Several example configurations are located in the repository **[configs](https://github.com/FeralAI/GP2040/tree/main/configs)** folder. This document will outline setting up a new build configuration. ### Board Configuration Folder Each subfolder in [`configs`](https://github.com/FeralAI/GP2040/tree/main/configs) contains a separate PlatformIO build configuration, which consists of the following: | Name | Required? | Description | | ----------- | --------- | ----------- | | `BoardConfig.h` | Yes | The configuration file used when building GP2040 for a specific controller/board. Contains initial pin mappings, LED configuration, etc. | | `env.ini` | Yes | A partial PlatformIO project configuration file which defines the build parameters for this board. All `env.ini` files in subfolders of `configs` will be parsed and selectable when loading the project in the PlatformIO IDE (may require a restart to pick up the new build config). | `README.md` | No | Provides information related to this board configuration. Not required for the build process, but suggested for pull requests of new board configurations. | | `assets/` | No | Folder for containing assets included in the `README.md`. Not required for the build process. ### Build Configuration (`env.ini`) 1. Create a new folder in `configs` for your board, e.g. `configs/NewBoard`. 1. Create `configs/NewBoard/env.ini` using the following template: ```ini [env:new-board] upload_port = .pio/build/new-board/ build_flags = ${env.build_flags} -I configs/NewBoard/ ``` a. If you're not using a Pico or bare RP2040, check the `include/pico/config_autogen.h` file to see if there is a define for your board. If so, add or update the `-D BOARD_...` option in `build_flags`, for example if using the SparkFun Pro Micro RP2040: ```ini [env:sparkfun-pro-micro] upload_port = .pio/build/sparkfun-pro-micro/ build_flags = ${env.build_flags} -D BOARD_SPARKFUN_MICRO_RP2040 -I configs/SparkFunProMicro/ ``` This will create a new PlatformIO build environment named `new-board`. Select the new environment from the VS Code status bar menu. You may need to restart VS Code in order for PlatformIO to pick up on the `env.ini` changes. ### Board Configuration (`BoardConfig.h`) The following board options are available in the `BoardConfig.h` file: | Name | Description | Required? | | ---------------- | ---------------------------- | --------- | | **PIN_DPAD_*X***
**PIN_BUTTON_*X*** | The GPIO pin for the button. Replace the *`X`* with GP2040 button or D-pad direction. | Yes | | **DEFAULT_SOCD_MODE** | The default SOCD mode to use, defaults to `SOCD_MODE_NEUTRAL`.
Available options are:
`SOCD_MODE_NEUTRAL`
`SOCD_MODE_UP_PRIORITY`
`SOCD_MODE_SECOND_INPUT_PRIORITY` | No | | **BUTTON_LAYOUT** | The layout of controls/buttons for use with per-button LEDs and external displays.
Available options are:
`BUTTON_LAYOUT_HITBOX`
`BUTTON_LAYOUT_HITBOX`
`BUTTON_LAYOUT_WASD` | Yes | Create `configs/NewBoard/BoardConfig.h` and add your pin configuration and options. An example `BoardConfig.h` file: ```cpp // BoardConfig.h #include #define PIN_DPAD_UP 2 #define PIN_DPAD_DOWN 3 #define PIN_DPAD_LEFT 4 #define PIN_DPAD_RIGHT 5 #define PIN_BUTTON_B1 6 #define PIN_BUTTON_B2 7 #define PIN_BUTTON_B3 8 #define PIN_BUTTON_B4 9 #define PIN_BUTTON_L1 10 #define PIN_BUTTON_R1 11 #define PIN_BUTTON_L2 26 #define PIN_BUTTON_R2 27 #define PIN_BUTTON_S1 16 #define PIN_BUTTON_S2 17 #define PIN_BUTTON_L3 18 #define PIN_BUTTON_R3 19 #define PIN_BUTTON_A1 20 #define PIN_BUTTON_A2 21 #define DEFAULT_SOCD_MODE SOCD_MODE_NEUTRAL #define BUTTON_LAYOUT BUTTON_LAYOUT_ARCADE ``` #### RGB LEDs GP2040 supports per-button WS2812 and similar RGB LEDs. The following RGB LED options are available in the `BoardConfig.h` file: | Name | Description | Required? | | ---------------- | ---------------------------- | --------- | | **BUTTON_LAYOUT** | The layout of controls/buttons for use with per-button LEDs and external displays.
Available options are:
`BUTTON_LAYOUT_HITBOX`
`BUTTON_LAYOUT_HITBOX`
`BUTTON_LAYOUT_WASD` | Yes | | **BOARD_LEDS_PIN** | Data PIN for your LED strand | Yes | | **LED_FORMAT** | The color data format for the LED chain.
Available options are:
`LED_FORMAT_GRB`
`LED_FORMAT_RGB`
`LED_FORMAT_GRBW`
`LED_FORMAT_RGBW` | No, default value `LED_FORMAT_GRB` | | **LEDS_PER_PIXEL** | The number of LEDs per button. | Yes | | **LED_BRIGHTNESS_MAXIMUM** | Max brightness value, `uint8_t` 0-255. | Yes | | **LED_BRIGHTNESS_STEPS** | The number of brightness steps when using the up/down hotkey. | Yes | | **LEDS_DPAD_*X***
**LEDS_BUTTON_*X*** | The index of the button on the LED chain. Replace the *`X`* with GP2040 button or D-pad direction. | Yes | | **LEDS_BASE_ANIMATION_INDEX** | The default LED animation index. | No, defaults to `1` | | **LEDS_STATIC_COLOR_INDEX** | The default color index for the static color theme | No, defaults to `2` | | **LEDS_BUTTON_COLOR_INDEX** | The default color index for the pressed button color | No, defaults to `1` | | **LEDS_THEME_INDEX** | The default theme index for static themes | No, defaults to `0` | | **LEDS_RAINBOW_CYCLE_TIME** | The color cycle time for rainbow cycle theme | No, defaults to `40` | | **LEDS_CHASE_CYCLE_TIME** | The animation speed for the rainbow chase theme | No, defaults to `85` | An example RGB LED setup in the `BoardConfig.h` file: ```cpp // BoardConfig.h #include "gp2040.h" #include "NeoPico.hpp" #define BUTTON_LAYOUT BUTTON_LAYOUT_HITBOX #define BOARD_LEDS_PIN 22 #define LED_BRIGHTNESS_MAXIMUM 100 #define LED_BRIGHTNESS_STEPS 5 #define LED_FORMAT LED_FORMAT_GRB #define LEDS_PER_PIXEL 2 #define LEDS_DPAD_LEFT 0 #define LEDS_DPAD_DOWN 1 #define LEDS_DPAD_RIGHT 2 #define LEDS_DPAD_UP 3 #define LEDS_BUTTON_B3 4 #define LEDS_BUTTON_B4 5 #define LEDS_BUTTON_R1 6 #define LEDS_BUTTON_L1 7 #define LEDS_BUTTON_B1 8 #define LEDS_BUTTON_B2 9 #define LEDS_BUTTON_R2 10 #define LEDS_BUTTON_L2 11 ``` #### Player LEDs GP2040 supports PWM and RGB player LEDs (PLEDs) and can be configured in the `BoardConfig.h` file. > NOTE: RGB PLEDs require [RGB LEDs](#rgb-leds) to be configured. The following PLED options are available in the `BoardConfig.h` file: | Name | Description | Required? | | ---------------- | ---------------------------- | --------- | | **PLED_TYPE** | Configures the type of PLEDs.
Available options are: `PLED_TYPE_PWM`, `PLED_TYPE_RGB` | Yes | | **PLED1_PIN** | (PWM) The GPIO pin for PLED #1.
(RGB) The index of PLED #1 on the LED chain. | Yes | | **PLED2_PIN** | (PWM) The GPIO pin for PLED #2.
(RGB) The index of PLED #2 on the LED chain. | Yes | | **PLED3_PIN** | (PWM) The GPIO pin for PLED #3.
(RGB) The index of PLED #3 on the LED chain. | Yes | | **PLED4_PIN** | (PWM) The GPIO pin for PLED #4.
(RGB) The index of PLED #4 on the LED chain. | Yes | An example PLED setup in the `BoardConfig.h` file: ```cpp // BoardConfig.h #include "PlayerLEDs.h" #define PLED_TYPE PLED_TYPE_RGB #define PLED1_PIN 12 #define PLED2_PIN 13 #define PLED3_PIN 14 #define PLED4_PIN 15 ``` #### I2C Displays GP2040 supports 128x64 monochrome displays that run on the SSD1306, SH1106 or SH1107 drivers. The following options are available for displays: | Name | Description | Required? | | - | - | - | | **BUTTON_LAYOUT** | The layout of controls/buttons for use with per-button LEDs and external displays.
Available options are:
`BUTTON_LAYOUT_HITBOX`
`BUTTON_LAYOUT_HITBOX`
`BUTTON_LAYOUT_WASD` | Yes | | **HAS_I2C_DISPLAY** | Flag to indicate the controller contains an I2C display module. | No | | **DISPLAY_I2C_ADDR** | The I2C address of the display. | No, defaults to `0x3C` | | **I2C_SDA_PIN** | The GPIO pin for the I2C SDA line. | If `HAS_I2C_DISPLAY` is enabled | | **I2C_SCL_PIN** | The GPIO pin for the I2C SCL line. | If `HAS_I2C_DISPLAY` is enabled | | **I2C_BLOCK** | The I2C block on the Pico. Refer to the [Pico Pinout Diagram](https://datasheets.raspberrypi.com/pico/Pico-R3-A4-Pinout.pdf) to identify which block is in use based on the SDA and SCL pins being used.
Available options are:
`i2c0`
`i2c1` | No, defaults to `i2c0` | | **I2C_SPEED** | The speed of the I2C bus. `100000` is standard mode, while `400000` is used for fast mode communication. Higher values may be used but will require testing the device for support. | No, defaults to `400000` | | **DISPLAY_FLIP** | Flag to flip the rendered display output. Set to `1` to enable. | No, defaults to `0` | | **DISPLAY_INVERT** | Flag to invert the rendered display output. Set to `1` to enable. | No, defaults to `0` | An example I2C display setup in the `BoardConfig.h` file: ```cpp #define BUTTON_LAYOUT BUTTON_LAYOUT_WASD #define HAS_I2C_DISPLAY 1 #define I2C_SDA_PIN 0 #define I2C_SCL_PIN 1 #define I2C_BLOCK i2c0 #define I2C_SPEED 800000 ``` ## Building You should now be able to build or upload the project to your RP2040 board from the Build and Upload status bar icons. You can also open the PlatformIO tab and select the actions to execute for a particular environment. Output folders are defined in the `platformio.ini` file and should default to a path under `.pio/build/${env:NAME}`. ================================================ FILE: docs/faq.md ================================================ # GP2040 FAQ ## General Questions ### Which input mode should I use? Generally speaking, XInput will be the mode of choice for everything except Nintendo Switch and PlayStation 3. XInput mode is the most fully-featured, has the best compatibility with PC games and is compatible with console adapters like the Brook Wingman product line. ### What is the extent of PS4 support in GP2040? GP2040 will work on PS4 games that implement support for legacy PS3 controllers. Many of the popular PS4 fighting games have this support. ### Does/can/will GP2040 natively support the PS4, PS5, Xbox One or Xbox Series consoles? These consoles implement security to prevent unauthorized accessories from being used. The process of cracking or bypassing that security may not be legal everywhere. These consoles could be supported in the future if a user-friendly and completely legal implementation method is found. ### Can I use multiple controllers on the same system? Yes! Each board with GP2040 is treated as a separate controller. The one thing to keep in mind would be to only run the web configurator for one controller at a time. ### Does GP2040 really have less than 1 ms of latency? Yes...if you're platform supports 1000 Hz USB polling. GP2040 is configured for 1000 Hz / 1 ms polling, however some systems override or ignore the polling rate the controller requests. PC and MiSTer are confirmed to work with 1000 Hz polling. Even if your system doesn't support a USB polling rate that high, you can feel comfortable knowing GP2040 is still reading and processing your inputs as fast as the target system will allow. ### Do the additional features like RGB LEDs, Player LEDs and OLED displays affect performance? No! The RP2040 chip contains two processing cores. GP2040 dedicates one core to reading inputs and sending them via USB, while the second core is used to handle any auxiliary modules like LEDs and display support. No matter how crazy the feature set of GP2040 becomes, it's unlikely your controller's input latency will be affected. ### Why do the buttons have weird labels like B3, A1, S2, etc.? GP2040 uses a generic system for handling button inputs that most closely maps to a traditional PlayStation controller layout with a few extra buttons. This means 4 face buttons (B1-B4), 4 shoulder buttons (L1, L2, R1, R2), Select and Start (S1, S2), 2 stick buttons (L3, R3) and 2 auxiliary buttons for things like Home and Capture (A1, A2) on the Switch. The GP2040 documentation and web configurator have a dropdown to change the labels to more familiar controller layouts. You can also refer to the button mapping table on the [GP2040 Usage](https://gp2040.info/#/usage?id=buttons) page. ## Technical Questions ### Why use PlatformIO instead of \? Setting up a development environment to build Pico SDK projects is a manual process which requires several components to be installed and configured. Using PlatformIO allows easy installation and updating of build and project dependencies, and makes for a less confusing experience for new developers and people that just want to make a few tweaks for a custom build. ### What kind of voodoo is that built-in web configurator? There's no magic here, just a few cool libraries working together: * Single page application using React and Bootstrap is embedded in the GP2040 firmware * TinyUSB library provides virtual network connection via RNDIS * lwIP library provides an HTTP server which serves up the embedded React app and the web configuration API * ArduinoJson library is used for serialization and deserialization of web API requests ================================================ FILE: docs/index.html ================================================ Document
================================================ FILE: docs/usage.md ================================================ # GP2040 Usage Select the button labels to be displayed in the usage guide: ## Buttons GP2040 uses a generic button labeling for gamepad state, which is then converted to the appropriate input type before sending. This table provides a map of GP2040 buttons to the supported input types and layouts: | GP2040 | XInput | Switch | PS3 | DirectInput | Arcade | | ------- | ------ | ------- | ------------ | ------------ | ------ | | B1 | A | B | Cross | 2 | K1 | | B2 | B | A | Circle | 3 | K2 | | B3 | X | Y | Square | 1 | P1 | | B4 | Y | X | Triangle | 4 | P2 | | L1 | LB | L | L1 | 5 | P4 | | R1 | RB | R | R1 | 6 | P3 | | L2 | LT | ZL | L2 | 7 | K4 | | R2 | RT | ZR | R2 | 8 | K3 | | S1 | Back | Minus | Select | 9 | Coin | | S2 | Start | Plus | Start | 10 | Start | | L3 | LS | LS | L3 | 11 | LS | | R3 | RS | RS | R3 | 12 | RS | | A1 | Guide | Home | - | 13 | - | | A2 | - | Capture | - | 14 | - | If you do not have a dedicated Home button, you can activate it via the button combination. ## Input Modes To change the input mode, **hold one of the following buttons as the controller is plugged in:** * for Nintendo Switch * for XInput * for DirectInput/PS3 Input mode is saved across power cycles. ## D-Pad Modes You can switch between the 3 modes for the D-Pad **while the controller is in use by pressing one of the following combinations:** * - D-Pad * - Emulate Left Analog stick * - Emulate Right Analog stick D-Pad mode is saved across power cycles. ## SOCD Modes Simultaneous Opposite Cardinal Direction (SOCD) cleaning will ensure the controller doesn't send invalid directional inputs to the computer/console, like Left + Right at the same time. There are 3 modes to choose from **while the controller is in use by pressing one of the following combinations:** * - **Up Priority mode**: Up + Down = Up, Left + Right = Neutral (Hitbox behavior) * - **Neutral mode**: Up + Down = Neutral, Left + Right = Neutral * - **Last Input Priority (Last Win)**: Hold Up then hold Down = Down, then release and re-press Up = Up. Applies to both axes. SOCD mode is saved across power cycles. ## Invert D-Pad Y-axis A toggle is available to invert the Y-axis input of the D-pad, allowing some additional input flexibility. To toggle, press . This is a temporary hotkey mapping for this feature, so keep an eye on updated releases for this to change. ## RGB LEDs > LED modes are available on the Pico Fighting Board, Crush Counter/OSFRD and custom builds only. ### RGB LED Animations The following animations are available: | Name | Description | LED Parameter | | - | - | - | | Off | Turn off per-button RGB LEDs | - | | Static Color | Sets all LEDs to the same color | Cycle through colors: *Red*, *Orange*, *Yellow*, *Lime Green*, *Green*, *Seafoam*, *Aqua*, *Sky Blue*, *Blue*, *Purple*, *Pink*, *Magenta* | | Rainbow Cycle | All LEDs cycle through the color wheel displaying the same color | Adjust animation speed | | Rainbow Chase | A fading, rainbow cycling lines travels across the LED chain | Adjust animation speed | | Static Theme | Set the LEDs to a pre-defined static theme | Cycle through themes, see [RGB LED Static Themes](#rgb-led-static-themes) for details. | ### RGB LED Hotkeys | Hotkey | Description | | - | - | | | Next Animation | | | Previous Animation | | | Brightness Up | | | Brightness Down | | | LED Parameter Up | | | LED Parameter Down | | | Pressed Parameter Up | | | Pressed Parameter Down | The `LED Parameter` hotkeys may affect color, speed or theme depending on the current RGB LED animation. The `Pressed Parameter` options will change the colors/effects for the on-press animations. ### RGB LED Static Themes | Name | Preview | | - | - | | **Static Rainbow** | ![Static Rainbow](./assets/images/led-themes/static-rainbow.png) | | **Xbox** | ![Xbox](./assets/images/led-themes/xbox.png) | | **Xbox (All)** | ![Xbox (All)](./assets/images/led-themes/xbox-all.png) | | **Super Famicom** | ![Super Famicom](./assets/images/led-themes/super-famicom.png) | | **Super Famicom (All)** | ![Super Famicom (All)](./assets/images/led-themes/super-famicom-all.png) | | **PlayStation** | ![Xbox](./assets/images/led-themes/playstation.png) | | **PlayStation (All)** | ![Xbox (All)](./assets/images/led-themes/playstation-all.png) | | **Neo Geo Straight** | ![Neo Geo Classic](./assets/images/led-themes/neogeo-straight.png) | | **Neo Geo Curved** | ![Neo Geo Curved](./assets/images/led-themes/neogeo-curved.png) | | **Neo Geo Modern** | ![Neo Geo Modern](./assets/images/led-themes/neogeo-modern.png) | | **Six Button Fighter** | ![Six Button Fighter](./assets/images/led-themes/six-button-fighter.png) | | **Six Button Fighter +** | ![Six Button Fighter +](./assets/images/led-themes/six-button-fighter-plus.png) | | **Street Fighter 2** | ![Street Fighter 2](./assets/images/led-themes/street-fighter-2.png) | | **Guilty Gear Type-A** | ![Guilty Gear Type-A](./assets/images/led-themes/guilty-gear-type-a.png) | | **Guilty Gear Type-B** | ![Guilty Gear Type-B](./assets/images/led-themes/guilty-gear-type-b.png) | | **Guilty Gear Type-C** | ![Guilty Gear Type-C](./assets/images/led-themes/guilty-gear-type-c.png) | | **Guilty Gear Type-D** | ![Guilty Gear Type-D](./assets/images/led-themes/guilty-gear-type-d.png) | | **Guilty Gear Type-E** | ![Guilty Gear Type-E](./assets/images/led-themes/guilty-gear-type-e.png) | ================================================ FILE: docs/web-configurator.md ================================================ # GP2040 Web Configurator Select the button labels to be displayed in the web configurator guide: GP2040 contains a built-in web-based configuration application which can be started up by holding when plugging your controller into a PC. Then access to begin configuration. ## Home ![GP2040 Configurator - Home](assets/images/gpc-home.png) Here you can see the current version of your firmware and the latest version available on Github in the releases section. If a firmware update is available, a link to that release will appear. The options in the main menu are: * [Home](#home) - The start page * [Settings](#settings) - Adjust settings like input mode, d-pad mode, etc. * [Configuration > Pin Mapping](#pin-mapping) - Allows for remapping of GPIO pins to different buttons. * [Configuration > LED Configuration](#led-configuration) - Enable and configure RGB LEDs here. * Links - Useful links to the project and documentation * [DANGER ZONE](#danger-zone) - Don't be afraid of the big red button. If something becomes misconfigured, you can reset your settings here. ## Settings ![GP2040 Configurator - Settings](assets/images/gpc-settings.png) Here you can select the basic settings which are normally available via hotkeys. ## Pin Mapping ![GP2040 Configurator - Pin Mapping](assets/images/gpc-pin-mapping.png) Here you can remap the GP2040 buttons to different GPIO pins on the RP2040 chip. This can be used to simply remap buttons, or bypass a GPIO pin that may have issues on your device. ## LED Configuration If you have a setup with per-button RGB LEDs, they can be configured here. ![GP2040 Configurator - LED Configuration](assets/images/gpc-rgb-led-config.png) * `Data Pin` - The GPIO pin that will drive the data line for your RGB LED chain. Set to `-1` to disable RGB LEDs. * `LED Format` - The data format used to communicate with your RGB LEDs. If unsure the default `GRB` value is usually safe. * `LED Layout` - Select the layout for your controls/buttons. This is used for static themes and some per-button animations. * `LEDs Per Button` - Set the number of LEDs in each button on your chain. * `Max Brightness` - Set the maximum brightness for the LEDs. Ranges from 0-255. * `Brightness Steps` - The number of levels of brightness to cycle through when turning brightness up and down. * `LED Button Order` - Configure which buttons and what order they reside on the LED chain. ## Display Configuration ![GP2040 Configurator - Display Configuration](assets/images/gpc-display-config.png) * `Use Display` - Turns on/off the display module. * `I2C Block` - The Pico I2C block that will be used. Set based on pins, refer to table on page. * `SDA Pin` - The GPIO pin used for the I2C SDA channel. * `SCL Pin` - The GPIO pin used for the I2C SCL channel. * `I2C Address` - The I2C address of your device, defaults to the very commonly used `0x3C` * `I2C Speed` - Sets the speed of I2C communication. Common values are `100000` for standard, `400000` for fast and `800000` ludicrous speed. * `Flip Display` - Rotates the display 180°. * `Invert Display` - Inverts the pixel colors, effectively giving you a negative image when enabled. ## DANGER ZONE ![GP2040 Configurator - Reset Settings](assets/images/gpc-reset-settings.png) ================================================ FILE: include/display.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef DISPLAY_H_ #define DISPLAY_H_ #include #include "OneBitDisplay.h" #include "BoardConfig.h" #include "gp2040.h" #include "gamepad.h" #ifndef BUTTON_LAYOUT #define BUTTON_LAYOUT BUTTON_LAYOUT_ARCADE #endif #ifndef HAS_I2C_DISPLAY #define HAS_I2C_DISPLAY 0 #endif #ifndef DISPLAY_I2C_ADDR #define DISPLAY_I2C_ADDR 0x3C #endif #ifndef DISPLAY_SIZE #define DISPLAY_SIZE OLED_128x64 #endif #ifndef DISPLAY_FLIP #define DISPLAY_FLIP 0 #endif #ifndef DISPLAY_INVERT #define DISPLAY_INVERT 0 #endif #ifndef DISPLAY_USEWIRE #define DISPLAY_USEWIRE 1 #endif #ifndef I2C_SDA_PIN #define I2C_SDA_PIN -1 #endif #ifndef I2C_SCL_PIN #define I2C_SCL_PIN -1 #endif #ifndef I2C_BLOCK #define I2C_BLOCK i2c0 #endif #ifndef I2C_SPEED #define I2C_SPEED 400000 #endif class DisplayModule : public GPModule { public: void setup(); void loop(); void process(Gamepad *gamepad); }; #endif ================================================ FILE: include/enums.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef ENUMS_H_ #define ENUMS_H_ typedef enum { BUTTON_LAYOUT_ARCADE, BUTTON_LAYOUT_HITBOX, BUTTON_LAYOUT_WASD, } ButtonLayout; #endif ================================================ FILE: include/gamepad.h ================================================ #ifndef _GAMEPAD_H_ #define _GAMEPAD_H_ #include "BoardConfig.h" #include #include #include "pico/stdlib.h" #include "storage.h" #define GAMEPAD_FEATURE_REPORT_SIZE 32 struct GamepadButtonMapping { GamepadButtonMapping(uint8_t p, uint16_t bm) : pin(p), pinMask((1 << p)), buttonMask(bm) {} uint8_t pin; uint32_t pinMask; const uint16_t buttonMask; inline void setPin(uint8_t p) { pin = p; pinMask = 1 << p; } }; class Gamepad : public MPGS { public: Gamepad(int debounceMS = 5, GamepadStorage *storage = &GamepadStore) : MPGS(debounceMS, storage) {} void setup(); void read(); void process() { memcpy(&rawState, &state, sizeof(GamepadState)); MPGS::process(); } inline bool __attribute__((always_inline)) pressedF1() { #ifdef PIN_SETTINGS return state.aux & (1 << 0); #else return MPGS::pressedF1(); #endif } GamepadState rawState; GamepadButtonMapping *mapDpadUp; GamepadButtonMapping *mapDpadDown; GamepadButtonMapping *mapDpadLeft; GamepadButtonMapping *mapDpadRight; GamepadButtonMapping *mapButtonB1; GamepadButtonMapping *mapButtonB2; GamepadButtonMapping *mapButtonB3; GamepadButtonMapping *mapButtonB4; GamepadButtonMapping *mapButtonL1; GamepadButtonMapping *mapButtonR1; GamepadButtonMapping *mapButtonL2; GamepadButtonMapping *mapButtonR2; GamepadButtonMapping *mapButtonS1; GamepadButtonMapping *mapButtonS2; GamepadButtonMapping *mapButtonL3; GamepadButtonMapping *mapButtonR3; GamepadButtonMapping *mapButtonA1; GamepadButtonMapping *mapButtonA2; GamepadButtonMapping **gamepadMappings; }; #endif ================================================ FILE: include/gp2040.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef GP2040_H_ #define GP2040_H_ #include #include #include "pico/stdlib.h" #include "gamepad.h" using namespace std; const string BUTTON_LABEL_UP = "Up"; const string BUTTON_LABEL_DOWN = "Down"; const string BUTTON_LABEL_LEFT = "Left"; const string BUTTON_LABEL_RIGHT = "Right"; const string BUTTON_LABEL_B1 = "B1"; const string BUTTON_LABEL_B2 = "B2"; const string BUTTON_LABEL_B3 = "B3"; const string BUTTON_LABEL_B4 = "B4"; const string BUTTON_LABEL_L1 = "L1"; const string BUTTON_LABEL_R1 = "R1"; const string BUTTON_LABEL_L2 = "L2"; const string BUTTON_LABEL_R2 = "R2"; const string BUTTON_LABEL_S1 = "S1"; const string BUTTON_LABEL_S2 = "S2"; const string BUTTON_LABEL_L3 = "L3"; const string BUTTON_LABEL_R3 = "R3"; const string BUTTON_LABEL_A1 = "A1"; const string BUTTON_LABEL_A2 = "A2"; class GPModule { public: virtual void setup() = 0; virtual void loop() = 0; virtual void process(Gamepad *gamepad) = 0; absolute_time_t nextRunTime; const uint32_t intervalMS = 10; inline bool isEnabled() { return enabled; } protected: bool enabled = true; }; #endif ================================================ FILE: include/leds.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef LEDS_H_ #define LEDS_H_ #include "BoardConfig.h" #include #include "AnimationStation.hpp" #include "NeoPico.hpp" #include "gamepad.h" #include "enums.h" #include "gp2040.h" #ifndef BOARD_LEDS_PIN #define BOARD_LEDS_PIN -1 #endif #ifndef BUTTON_LAYOUT #define BUTTON_LAYOUT BUTTON_LAYOUT_ARCADE #endif #ifndef LED_FORMAT #define LED_FORMAT LED_FORMAT_GRB #endif #ifndef LEDS_PER_PIXEL #define LEDS_PER_PIXEL 1 #endif #ifndef LEDS_BRIGHTNESS #define LEDS_BRIGHTNESS 75 #endif #ifndef LEDS_BASE_ANIMATION_INDEX #define LEDS_BASE_ANIMATION_INDEX 1 #endif #ifndef LEDS_STATIC_COLOR_INDEX #define LEDS_STATIC_COLOR_INDEX 2 #endif #ifndef LEDS_BUTTON_COLOR_INDEX #define LEDS_BUTTON_COLOR_INDEX 1 #endif #ifndef LEDS_THEME_INDEX #define LEDS_THEME_INDEX 0 #endif #ifndef LEDS_RAINBOW_CYCLE_TIME #define LEDS_RAINBOW_CYCLE_TIME 40 #endif #ifndef LEDS_CHASE_CYCLE_TIME #define LEDS_CHASE_CYCLE_TIME 85 #endif #ifndef LED_BRIGHTNESS_MAXIMUM #define LED_BRIGHTNESS_MAXIMUM 128 #endif #ifndef LED_BRIGHTNESS_STEPS #define LED_BRIGHTNESS_STEPS 5 #endif #ifndef LEDS_DPAD_LEFT #define LEDS_DPAD_LEFT -1 #endif #ifndef LEDS_DPAD_DOWN #define LEDS_DPAD_DOWN -1 #endif #ifndef LEDS_DPAD_RIGHT #define LEDS_DPAD_RIGHT -1 #endif #ifndef LEDS_DPAD_UP #define LEDS_DPAD_UP -1 #endif #ifndef LEDS_BUTTON_B1 #define LEDS_BUTTON_B1 -1 #endif #ifndef LEDS_BUTTON_B2 #define LEDS_BUTTON_B2 -1 #endif #ifndef LEDS_BUTTON_B3 #define LEDS_BUTTON_B3 -1 #endif #ifndef LEDS_BUTTON_B4 #define LEDS_BUTTON_B4 -1 #endif #ifndef LEDS_BUTTON_R1 #define LEDS_BUTTON_R1 -1 #endif #ifndef LEDS_BUTTON_L1 #define LEDS_BUTTON_L1 -1 #endif #ifndef LEDS_BUTTON_L2 #define LEDS_BUTTON_L2 -1 #endif #ifndef LEDS_BUTTON_R2 #define LEDS_BUTTON_R2 -1 #endif #ifndef LEDS_BUTTON_S1 #define LEDS_BUTTON_S1 -1 #endif #ifndef LEDS_BUTTON_S2 #define LEDS_BUTTON_S2 -1 #endif #ifndef LEDS_BUTTON_L3 #define LEDS_BUTTON_L3 -1 #endif #ifndef LEDS_BUTTON_R3 #define LEDS_BUTTON_R3 -1 #endif #ifndef LEDS_BUTTON_A1 #define LEDS_BUTTON_A1 -1 #endif #ifndef LEDS_BUTTON_A2 #define LEDS_BUTTON_A2 -1 #endif void configureAnimations(AnimationStation *as); AnimationHotkey animationHotkeys(Gamepad *gamepad); void configureLEDs(LEDOptions ledOptions); PixelMatrix createLedButtonLayout(ButtonLayout layout, int ledsPerPixel); PixelMatrix createLedButtonLayout(ButtonLayout layout, std::vector *positions); class LEDModule : public GPModule { public: void setup(); void loop(); void process(Gamepad *gamepad); void trySave(); void configureLEDs(); uint32_t frame[100]; LEDOptions ledOptions; }; extern LEDModule ledModule; #endif ================================================ FILE: include/pico/config_autogen.h ================================================ #ifndef CONFIG_AUTOGEN_H_ #define CONFIG_AUTOGEN_H_ // Boards supported in PlatformIO build configuration #ifdef BOARD_ADAFRUIT_FEATHER_RP2040 #include "boards/adafruit_feather_rp2040.h" #elif BOARD_ADAFRUIT_ITSYBITSY_RP2040 #include "boards/adafruit_itsybitsy_rp2040.h" #elif BOARD_SPARKFUN_MICRO_RP2040 #include "boards/sparkfun_promicro.h" #elif BOARD_SPARKFUN_THING_PLUS #include "boards/sparkfun_thingplus.h" #elif BOARD_ARDUINO_NANO_CONNECT #include "boards/arduino_nano_rp2040_connect.h" #elif BOARD_PIMORONI_PICO_LIPO #include "boards/pimoroni_picolipo_4mb.h" #else #include "boards/pico.h" #endif #endif ================================================ FILE: include/pleds.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef PLEDS_H_ #define PLEDS_H_ #include "BoardConfig.h" #include #include "AnimationStation.hpp" #include "PlayerLEDs.h" #include "gp2040.h" #define PLED_REPORT_SIZE 32 #ifndef PLED1_PIN #define PLED1_PIN -1 #endif #ifndef PLED2_PIN #define PLED2_PIN -1 #endif #ifndef PLED3_PIN #define PLED3_PIN -1 #endif #ifndef PLED4_PIN #define PLED4_PIN -1 #endif #ifndef PLED_TYPE #define PLED_TYPE PLED_TYPE_NONE #endif #define PLED_MASK_ALL ((1U << PLED1_PIN) | (1U << PLED2_PIN) | (1U << PLED3_PIN) | (1U << PLED4_PIN)) extern NeoPico *neopico; extern AnimationStation as; class PWMPlayerLEDs : public PlayerLEDs { public: void setup(); void display(); }; class RGBPlayerLEDs : public PlayerLEDs { public: void setup(); void display(); }; class PLEDModule : public GPModule { public: PLEDModule(PLEDType type) : type(type) { } void setup(); void loop(); void process(Gamepad *gamepad); queue_t featureQueue; protected: PLEDType type; PlayerLEDs *pleds = nullptr; PLEDAnimationState animationState; }; extern PLEDModule pledModule; #endif ================================================ FILE: include/storage.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef STORAGE_H_ #define STORAGE_H_ #include #include "NeoPico.hpp" #include "enums.h" #define GAMEPAD_STORAGE_INDEX 0 // 1024 bytes for gamepad options #define BOARD_STORAGE_INDEX 1024 // 512 bytes for hardware options #define LED_STORAGE_INDEX 1536 // 512 bytes for LED configuration #define ANIMATION_STORAGE_INDEX 2048 // ???? bytes for LED animations struct BoardOptions { bool hasBoardOptions; uint8_t pinDpadUp; uint8_t pinDpadDown; uint8_t pinDpadLeft; uint8_t pinDpadRight; uint8_t pinButtonB1; uint8_t pinButtonB2; uint8_t pinButtonB3; uint8_t pinButtonB4; uint8_t pinButtonL1; uint8_t pinButtonR1; uint8_t pinButtonL2; uint8_t pinButtonR2; uint8_t pinButtonS1; uint8_t pinButtonS2; uint8_t pinButtonL3; uint8_t pinButtonR3; uint8_t pinButtonA1; uint8_t pinButtonA2; ButtonLayout buttonLayout; int i2cSDAPin; int i2cSCLPin; int i2cBlock; uint32_t i2cSpeed; bool hasI2CDisplay; int displayI2CAddress; uint8_t displaySize; bool displayFlip; bool displayInvert; uint32_t checksum; }; struct LEDOptions { bool useUserDefinedLEDs; int dataPin; LEDFormat ledFormat; ButtonLayout ledLayout; uint8_t ledsPerButton; uint8_t brightnessMaximum; uint8_t brightnessSteps; int indexUp; int indexDown; int indexLeft; int indexRight; int indexB1; int indexB2; int indexB3; int indexB4; int indexL1; int indexR1; int indexL2; int indexR2; int indexS1; int indexS2; int indexL3; int indexR3; int indexA1; int indexA2; }; BoardOptions getBoardOptions(); void setBoardOptions(BoardOptions options); LEDOptions getLEDOptions(); void setLEDOptions(LEDOptions options); #endif ================================================ FILE: include/themes.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef LED_THEMES_H_ #define LED_THEMES_H_ #include "BoardConfig.h" #include #include #include "AnimationStation.hpp" #include "enums.h" using namespace std; static map themeStaticRainbow({ { GAMEPAD_MASK_DL, ColorRed }, { GAMEPAD_MASK_DD, ColorOrange }, { GAMEPAD_MASK_DR, ColorYellow }, { GAMEPAD_MASK_DU, ColorOrange }, { GAMEPAD_MASK_B3, ColorGreen }, { GAMEPAD_MASK_B1, ColorGreen }, { GAMEPAD_MASK_B4, ColorAqua }, { GAMEPAD_MASK_B2, ColorAqua }, { GAMEPAD_MASK_R1, ColorBlue }, { GAMEPAD_MASK_R2, ColorBlue }, { GAMEPAD_MASK_L1, ColorMagenta }, { GAMEPAD_MASK_L2, ColorMagenta }, }); static map themeGuiltyGearTypeA({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorPink }, { GAMEPAD_MASK_B3, ColorBlue }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_R1, ColorRed }, { GAMEPAD_MASK_R2, ColorOrange }, }); static map themeGuiltyGearTypeB({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorRed }, { GAMEPAD_MASK_B3, ColorPink }, { GAMEPAD_MASK_B4, ColorBlue }, { GAMEPAD_MASK_R1, ColorGreen }, { GAMEPAD_MASK_R2, ColorOrange }, }); static map themeGuiltyGearTypeC({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorOrange }, { GAMEPAD_MASK_B3, ColorPink }, { GAMEPAD_MASK_B4, ColorBlue }, { GAMEPAD_MASK_R1, ColorGreen }, { GAMEPAD_MASK_R2, ColorRed }, }); static map themeGuiltyGearTypeD({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorPink }, { GAMEPAD_MASK_B1, ColorBlue }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_R1, ColorOrange }, }); static map themeGuiltyGearTypeE({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorPink }, { GAMEPAD_MASK_B1, ColorGreen }, { GAMEPAD_MASK_B4, ColorBlue }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_R1, ColorOrange }, }); static map themeNeoGeo({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorRed }, { GAMEPAD_MASK_B4, ColorYellow }, { GAMEPAD_MASK_R1, ColorGreen }, { GAMEPAD_MASK_L1, ColorBlue }, }); static map themeNeoGeoCurved({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorRed }, { GAMEPAD_MASK_B3, ColorYellow }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_R1, ColorBlue }, }); static map themeNeoGeoModern({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorRed }, { GAMEPAD_MASK_B1, ColorYellow }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_B2, ColorBlue }, }); static map themeSixButtonFighter({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorBlue }, { GAMEPAD_MASK_B1, ColorBlue }, { GAMEPAD_MASK_B4, ColorYellow }, { GAMEPAD_MASK_B2, ColorYellow }, { GAMEPAD_MASK_R1, ColorRed }, { GAMEPAD_MASK_R2, ColorRed }, }); static map themeSixButtonFighterPlus({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorBlue }, { GAMEPAD_MASK_B1, ColorBlue }, { GAMEPAD_MASK_B4, ColorYellow }, { GAMEPAD_MASK_B2, ColorYellow }, { GAMEPAD_MASK_R1, ColorRed }, { GAMEPAD_MASK_R2, ColorRed }, { GAMEPAD_MASK_L1, ColorGreen }, { GAMEPAD_MASK_L2, ColorGreen }, }); static map themeStreetFighter2({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B3, ColorRed }, { GAMEPAD_MASK_B1, ColorRed }, { GAMEPAD_MASK_B4, ColorWhite }, { GAMEPAD_MASK_B2, ColorWhite }, { GAMEPAD_MASK_R1, ColorBlue }, { GAMEPAD_MASK_R2, ColorBlue }, { GAMEPAD_MASK_L1, ColorBlack }, { GAMEPAD_MASK_L2, ColorBlack }, }); static map themeTekken({ { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_B3, ColorYellow }, { GAMEPAD_MASK_B1, ColorAqua }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_B2, ColorPink }, { GAMEPAD_MASK_R1, ColorRed }, }); static map themePlayStation({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorBlue }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_B3, ColorMagenta }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_R1, ColorBlack }, { GAMEPAD_MASK_R2, ColorBlack }, { GAMEPAD_MASK_L1, ColorBlack }, { GAMEPAD_MASK_L2, ColorBlack }, }); static map themePlayStationAll({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorBlue }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_B3, ColorMagenta }, { GAMEPAD_MASK_B4, ColorGreen }, { GAMEPAD_MASK_R1, ColorWhite }, { GAMEPAD_MASK_R2, ColorWhite }, { GAMEPAD_MASK_L1, ColorWhite }, { GAMEPAD_MASK_L2, ColorWhite }, }); static map themeSuperFamicom({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorYellow }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_B3, ColorGreen }, { GAMEPAD_MASK_B4, ColorBlue }, { GAMEPAD_MASK_R1, ColorBlack }, { GAMEPAD_MASK_R2, ColorBlack }, { GAMEPAD_MASK_L1, ColorBlack }, { GAMEPAD_MASK_L2, ColorBlack }, }); static map themeSuperFamicomAll({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorYellow }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_B3, ColorGreen }, { GAMEPAD_MASK_B4, ColorBlue }, { GAMEPAD_MASK_R1, ColorWhite }, { GAMEPAD_MASK_R2, ColorWhite }, { GAMEPAD_MASK_L1, ColorWhite }, { GAMEPAD_MASK_L2, ColorWhite }, }); static map themeXbox({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorGreen }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_B3, ColorBlue }, { GAMEPAD_MASK_B4, ColorYellow }, { GAMEPAD_MASK_R1, ColorBlack }, { GAMEPAD_MASK_R2, ColorBlack }, { GAMEPAD_MASK_L1, ColorBlack }, { GAMEPAD_MASK_L2, ColorBlack }, }); static map themeXboxAll({ { GAMEPAD_MASK_DU, ColorWhite }, { GAMEPAD_MASK_DD, ColorWhite }, { GAMEPAD_MASK_DL, ColorWhite }, { GAMEPAD_MASK_DR, ColorWhite }, { GAMEPAD_MASK_B1, ColorGreen }, { GAMEPAD_MASK_B2, ColorRed }, { GAMEPAD_MASK_B3, ColorBlue }, { GAMEPAD_MASK_B4, ColorYellow }, { GAMEPAD_MASK_R1, ColorWhite }, { GAMEPAD_MASK_R2, ColorWhite }, { GAMEPAD_MASK_L1, ColorWhite }, { GAMEPAD_MASK_L2, ColorWhite }, }); void addStaticThemes(LEDOptions options) { // Rainbow theme on a Hitbox layout should use green for up button themeStaticRainbow[GAMEPAD_MASK_DU] = (options.ledLayout == BUTTON_LAYOUT_HITBOX) ? ColorGreen : ColorOrange; StaticTheme::ClearThemes(); StaticTheme::AddTheme(themeStaticRainbow); StaticTheme::AddTheme(themeXbox); StaticTheme::AddTheme(themeXboxAll); StaticTheme::AddTheme(themeSuperFamicom); StaticTheme::AddTheme(themeSuperFamicomAll); StaticTheme::AddTheme(themePlayStation); StaticTheme::AddTheme(themePlayStationAll); StaticTheme::AddTheme(themeNeoGeo); StaticTheme::AddTheme(themeNeoGeoCurved); StaticTheme::AddTheme(themeNeoGeoModern); StaticTheme::AddTheme(themeSixButtonFighter); StaticTheme::AddTheme(themeSixButtonFighterPlus); StaticTheme::AddTheme(themeStreetFighter2); StaticTheme::AddTheme(themeTekken); StaticTheme::AddTheme(themeGuiltyGearTypeA); StaticTheme::AddTheme(themeGuiltyGearTypeB); StaticTheme::AddTheme(themeGuiltyGearTypeC); StaticTheme::AddTheme(themeGuiltyGearTypeD); StaticTheme::AddTheme(themeGuiltyGearTypeE); } #endif ================================================ FILE: include/tusb_config.h ================================================ /* * The MIT License (MIT) * * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ #ifndef _TUSB_CONFIG_H_ #define _TUSB_CONFIG_H_ #ifdef __cplusplus extern "C" { #endif //-------------------------------------------------------------------- // COMMON CONFIGURATION //-------------------------------------------------------------------- // defined by board.mk #ifndef CFG_TUSB_MCU #error CFG_TUSB_MCU must be defined #endif // RHPort number used for device can be defined by board.mk, default to port 0 #ifndef BOARD_DEVICE_RHPORT_NUM #define BOARD_DEVICE_RHPORT_NUM 0 #endif // RHPort max operational speed can defined by board.mk // Default to Highspeed for MCU with internal HighSpeed PHY (can be port specific), otherwise FullSpeed #ifndef BOARD_DEVICE_RHPORT_SPEED #if (CFG_TUSB_MCU == OPT_MCU_LPC18XX || CFG_TUSB_MCU == OPT_MCU_LPC43XX || CFG_TUSB_MCU == OPT_MCU_MIMXRT10XX || \ CFG_TUSB_MCU == OPT_MCU_NUC505 || CFG_TUSB_MCU == OPT_MCU_CXD56) #define BOARD_DEVICE_RHPORT_SPEED OPT_MODE_HIGH_SPEED #else #define BOARD_DEVICE_RHPORT_SPEED OPT_MODE_FULL_SPEED #endif #endif // Device mode with rhport and speed defined by board.mk #if BOARD_DEVICE_RHPORT_NUM == 0 #define CFG_TUSB_RHPORT0_MODE (OPT_MODE_DEVICE | BOARD_DEVICE_RHPORT_SPEED) #elif BOARD_DEVICE_RHPORT_NUM == 1 #define CFG_TUSB_RHPORT1_MODE (OPT_MODE_DEVICE | BOARD_DEVICE_RHPORT_SPEED) #else #error "Incorrect RHPort configuration" #endif #ifndef CFG_TUSB_OS #define CFG_TUSB_OS OPT_OS_PICO #endif // CFG_TUSB_DEBUG is defined by compiler in DEBUG build // #define CFG_TUSB_DEBUG 0 /* USB DMA on some MCUs can only access a specific SRAM region with restriction on alignment. * Tinyusb use follows macros to declare transferring memory so that they can be put * into those specific section. * e.g * - CFG_TUSB_MEM SECTION : __attribute__ (( section(".usb_ram") )) * - CFG_TUSB_MEM_ALIGN : __attribute__ ((aligned(4))) */ #ifndef CFG_TUSB_MEM_SECTION #define CFG_TUSB_MEM_SECTION #endif #ifndef CFG_TUSB_MEM_ALIGN #define CFG_TUSB_MEM_ALIGN __attribute__ ((aligned(4))) #endif //-------------------------------------------------------------------- // DEVICE CONFIGURATION //-------------------------------------------------------------------- #ifndef CFG_TUD_ENDPOINT0_SIZE #define CFG_TUD_ENDPOINT0_SIZE 64 #endif //------------- CLASS -------------// #define CFG_TUD_CDC 0 #define CFG_TUD_MSC 0 #define CFG_TUD_HID 2 #define CFG_TUD_MIDI 0 #define CFG_TUD_VENDOR 0 #define CFG_TUD_NET 1 // HID buffer size Should be sufficient to hold ID (if any) + Data #define CFG_TUD_HID_EP_BUFSIZE 64 #ifdef __cplusplus } #endif #endif /* _TUSB_CONFIG_H_ */ ================================================ FILE: lib/AnimationStation/.editorconfig ================================================ # EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true [*] indent_style = space indent_size = 2 end_of_line = crlf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] indent_style = space indent_size = 2 trim_trailing_whitespace = false ================================================ FILE: lib/AnimationStation/library.json ================================================ { "name": "AnimationStation", "version": "0.0.1", "description": "LED Handling for GP2040", "keywords": "c c++ baremetal neopixel led", "authors": [ { "name": "Jonathan Barket", "url": "https://jonathanbarket.com" } ], "license": "MIT" } ================================================ FILE: lib/AnimationStation/src/Animation.cpp ================================================ #include "Animation.hpp" LEDFormat Animation::format; Animation::Animation(PixelMatrix &matrix) : matrix(&matrix) { } void Animation::UpdatePixels(std::vector pixels) { this->pixels = pixels; } void Animation::ClearPixels() { this->pixels.clear(); } /* Some of these animations are filtered to specific pixels, such as button press animations. This somewhat backwards named method determines if a specific pixel is _not_ included in the filter */ bool Animation::notInFilter(Pixel pixel) { if (!this->filtered) { return false; } for (size_t i = 0; i < this->pixels.size(); i++) { if (pixel == this->pixels.at(i)) { return false; } } return true; } ================================================ FILE: lib/AnimationStation/src/Animation.hpp ================================================ #ifndef _ANIMATION_H_ #define _ANIMATION_H_ #include "Pixel.hpp" #include #include #include #include #include "NeoPico.hpp" struct RGB { RGB() : r(0), g(0), b(0) {} RGB(uint8_t r, uint8_t g, uint8_t b) : r(r), g(g), b(b), w(0) {} RGB(uint8_t r, uint8_t g, uint8_t b, uint8_t w) : r(r), g(g), b(b), w(w) { } uint8_t r; uint8_t g; uint8_t b; uint8_t w; inline static RGB wheel(uint8_t pos) { pos = 255 - pos; if (pos < 85) { return RGB(255 - pos * 3, 0, pos * 3); } else if (pos < 170) { pos -= 85; return RGB(0, pos * 3, 255 - pos * 3); } else { pos -= 170; return RGB(pos * 3, 255 - pos * 3, 0); } } inline uint32_t value(LEDFormat format, float brightnessX = 1.0F) { switch (format) { case LED_FORMAT_GRB: return ((uint32_t)(g * brightnessX) << 16) | ((uint32_t)(r * brightnessX) << 8) | (uint32_t)(b * brightnessX); case LED_FORMAT_RGB: return ((uint32_t)(r * brightnessX) << 16) | ((uint32_t)(g * brightnessX) << 8) | (uint32_t)(b * brightnessX); case LED_FORMAT_GRBW: { if ((r == g) && (r == b)) return (uint32_t)(r * brightnessX); return ((uint32_t)(g * brightnessX) << 24) | ((uint32_t)(r * brightnessX) << 16) | ((uint32_t)(b * brightnessX) << 8) | (uint32_t)(w * brightnessX); } case LED_FORMAT_RGBW: { if ((r == g) && (r == b)) return (uint32_t)(r * brightnessX); return ((uint32_t)(r * brightnessX) << 24) | ((uint32_t)(g * brightnessX) << 16) | ((uint32_t)(b * brightnessX) << 8) | (uint32_t)(w * brightnessX); } } } }; static const RGB ColorBlack(0, 0, 0); static const RGB ColorWhite(255, 255, 255); static const RGB ColorRed(255, 0, 0); static const RGB ColorOrange(255, 128, 0); static const RGB ColorYellow(255, 255, 0); static const RGB ColorLimeGreen(128, 255, 0); static const RGB ColorGreen(0, 255, 0); static const RGB ColorSeafoam(0, 255, 128); static const RGB ColorAqua(0, 255, 255); static const RGB ColorSkyBlue(0, 128, 255); static const RGB ColorBlue(0, 0, 255); static const RGB ColorPurple(128, 0, 255); static const RGB ColorPink(255, 0, 255); static const RGB ColorMagenta(255, 0, 128); static const std::vector colors = { ColorBlack, ColorWhite, ColorRed, ColorOrange, ColorYellow, ColorLimeGreen, ColorGreen, ColorSeafoam, ColorAqua, ColorSkyBlue, ColorBlue, ColorPurple, ColorPink, ColorMagenta}; class Animation { public: Animation(PixelMatrix &matrix); void UpdatePixels(std::vector pixels); void ClearPixels(); virtual ~Animation(){}; static LEDFormat format; bool notInFilter(Pixel pixel); virtual void Animate(RGB (&frame)[100]) = 0; virtual void ParameterUp() = 0; virtual void ParameterDown() = 0; protected: /* We track both the full matrix as well as individual pixels here to support button press changes. Rather than adjusting the matrix to represent a subset of pixels, we provide a subset of pixels to use as a filter. */ PixelMatrix *matrix; std::vector pixels; bool filtered = false; }; #endif ================================================ FILE: lib/AnimationStation/src/AnimationStation.cpp ================================================ /** * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * Modified by Jonathan Barket - 2021 * SPDX-License-Identifier: BSD-3-Clause */ #include "AnimationStation.hpp" uint8_t AnimationStation::brightnessMax = 100; uint8_t AnimationStation::brightnessSteps = 5; float AnimationStation::brightnessX = 0; absolute_time_t AnimationStation::nextChange = 0; AnimationOptions AnimationStation::options = {}; AnimationStation::AnimationStation() { AnimationStation::SetBrightness(1); } void AnimationStation::ConfigureBrightness(uint8_t max, uint8_t steps) { brightnessMax = max; brightnessSteps = steps; } void AnimationStation::HandleEvent(AnimationHotkey action) { if (action == HOTKEY_LEDS_NONE || !time_reached(AnimationStation::nextChange)) { return; } if (action == HOTKEY_LEDS_BRIGHTNESS_UP) { AnimationStation::IncreaseBrightness(); } if (action == HOTKEY_LEDS_BRIGHTNESS_DOWN) { AnimationStation::DecreaseBrightness(); } if (action == HOTKEY_LEDS_ANIMATION_UP) { ChangeAnimation(1); } if (action == HOTKEY_LEDS_ANIMATION_DOWN) { ChangeAnimation(-1); } if (action == HOTKEY_LEDS_PARAMETER_UP) { this->baseAnimation->ParameterUp(); } if (action == HOTKEY_LEDS_PARAMETER_DOWN) { this->baseAnimation->ParameterDown(); } if (action == HOTKEY_LEDS_PRESS_PARAMETER_UP) { this->buttonAnimation->ParameterUp(); } if (action == HOTKEY_LEDS_PRESS_PARAMETER_DOWN) { this->buttonAnimation->ParameterDown(); } AnimationStation::nextChange = make_timeout_time_ms(250); } void AnimationStation::ChangeAnimation(int changeSize) { this->SetMode(this->AdjustIndex(changeSize)); } uint16_t AnimationStation::AdjustIndex(int changeSize) { uint16_t newIndex = this->options.baseAnimationIndex + changeSize; if (newIndex >= TOTAL_EFFECTS) { return 0; } if (newIndex < 0) { return (TOTAL_EFFECTS - 1); } return newIndex; } void AnimationStation::HandlePressed(std::vector pressed) { if (pressed != this->lastPressed) { this->lastPressed = pressed; if (this->buttonAnimation == nullptr) this->buttonAnimation = new StaticColor(matrix, pressed); this->buttonAnimation->UpdatePixels(pressed); } } void AnimationStation::ClearPressed() { if (this->buttonAnimation != nullptr) { this->buttonAnimation->ClearPixels(); } this->lastPressed.clear(); } void AnimationStation::Animate() { if (baseAnimation == nullptr) { this->Clear(); return; } baseAnimation->Animate(this->frame); if (buttonAnimation != nullptr) { buttonAnimation->Animate(this->frame); } } void AnimationStation::Clear() { memset(frame, 0, sizeof(frame)); } float AnimationStation::GetBrightnessX() { return AnimationStation::brightnessX; } uint8_t AnimationStation::GetBrightness() { return AnimationStation::options.brightness; } uint8_t AnimationStation::GetMode() { return this->options.baseAnimationIndex; } void AnimationStation::SetMode(uint8_t mode) { this->options.baseAnimationIndex = mode; AnimationEffects newEffect = static_cast(this->options.baseAnimationIndex); if (this->baseAnimation != nullptr) { delete this->baseAnimation; } switch (newEffect) { case AnimationEffects::EFFECT_RAINBOW: this->baseAnimation = new Rainbow(matrix); break; case AnimationEffects::EFFECT_CHASE: this->baseAnimation = new Chase(matrix); break; case AnimationEffects::EFFECT_STATIC_THEME: this->baseAnimation = new StaticTheme(matrix); break; default: this->baseAnimation = new StaticColor(matrix); break; } } void AnimationStation::SetMatrix(PixelMatrix matrix) { this->matrix = matrix; } void AnimationStation::SetOptions(AnimationOptions options) { AnimationStation::options = options; AnimationStation::SetBrightness(options.brightness); } void AnimationStation::ApplyBrightness(uint32_t *frameValue) { for (int i = 0; i < 100; i++) frameValue[i] = this->frame[i].value(Animation::format, brightnessX); } void AnimationStation::SetBrightness(uint8_t brightness) { AnimationStation::options.brightness = (brightness > brightnessSteps) ? brightnessSteps : options.brightness; AnimationStation::brightnessX = (AnimationStation::options.brightness * getBrightnessStepSize()) / 255.0F; if (AnimationStation::brightnessX > 1) AnimationStation::brightnessX = 1; else if (AnimationStation::brightnessX < 0) AnimationStation::brightnessX = 0; } void AnimationStation::DecreaseBrightness() { if (AnimationStation::options.brightness > 0) AnimationStation::SetBrightness(--AnimationStation::options.brightness); } void AnimationStation::IncreaseBrightness() { if (AnimationStation::options.brightness < getBrightnessStepSize()) AnimationStation::SetBrightness(++AnimationStation::options.brightness); else if (AnimationStation::options.brightness > getBrightnessStepSize()) AnimationStation::SetBrightness(brightnessSteps); } ================================================ FILE: lib/AnimationStation/src/AnimationStation.hpp ================================================ #ifndef _ANIMATION_STATION_H_ #define _ANIMATION_STATION_H_ #include #include #include #include #include #include "hardware/clocks.h" #include "NeoPico.hpp" #include "Animation.hpp" #include "Effects/Chase.hpp" #include "Effects/Rainbow.hpp" #include "Effects/StaticColor.hpp" #include "Effects/StaticTheme.hpp" typedef enum { EFFECT_STATIC_COLOR, EFFECT_RAINBOW, EFFECT_CHASE, EFFECT_STATIC_THEME } AnimationEffects; // We can't programmatically determine how many elements are in an enum. Yes, that's dumb. const int TOTAL_EFFECTS = 4; typedef enum { HOTKEY_LEDS_NONE, HOTKEY_LEDS_ANIMATION_UP, HOTKEY_LEDS_ANIMATION_DOWN, HOTKEY_LEDS_PARAMETER_UP, HOTKEY_LEDS_PRESS_PARAMETER_UP, HOTKEY_LEDS_PRESS_PARAMETER_DOWN, HOTKEY_LEDS_PARAMETER_DOWN, HOTKEY_LEDS_BRIGHTNESS_UP, HOTKEY_LEDS_BRIGHTNESS_DOWN } AnimationHotkey; struct __attribute__ ((__packed__)) AnimationOptions { uint32_t checksum; uint8_t baseAnimationIndex; uint8_t brightness; uint8_t staticColorIndex; uint8_t buttonColorIndex; int16_t chaseCycleTime; int16_t rainbowCycleTime; uint8_t themeIndex; }; class AnimationStation { public: AnimationStation(); void Animate(); void HandleEvent(AnimationHotkey action); void Clear(); void ChangeAnimation(int changeSize); void ApplyBrightness(uint32_t *frameValue); uint16_t AdjustIndex(int changeSize); void HandlePressed(std::vector pressed); void ClearPressed(); uint8_t GetMode(); void SetMode(uint8_t mode); void SetMatrix(PixelMatrix matrix); static void ConfigureBrightness(uint8_t max, uint8_t steps); static float GetBrightnessX(); static uint8_t GetBrightness(); static void SetBrightness(uint8_t brightness); static void DecreaseBrightness(); static void IncreaseBrightness(); static void SetOptions(AnimationOptions options); Animation* baseAnimation; Animation* buttonAnimation; std::vector lastPressed; static AnimationOptions options; static absolute_time_t nextChange; RGB frame[100]; protected: inline static uint8_t getBrightnessStepSize() { return (brightnessMax / brightnessSteps); } static uint8_t brightnessMax; static uint8_t brightnessSteps; static float brightnessX; PixelMatrix matrix; }; #endif ================================================ FILE: lib/AnimationStation/src/AnimationStorage.hpp ================================================ #ifndef _CONFIG_STORAGE_H_ #define _CONFIG_STORAGE_H_ #include "AnimationStation.hpp" class AnimationStorage { public: void save(); AnimationOptions getAnimationOptions(); void setAnimationOptions(AnimationOptions options); }; static AnimationStorage AnimationStore; #endif ================================================ FILE: lib/AnimationStation/src/Effects/Chase.cpp ================================================ #include "Chase.hpp" Chase::Chase(PixelMatrix &matrix) : Animation(matrix) { } void Chase::Animate(RGB (&frame)[100]) { if (!time_reached(this->nextRunTime)) { return; } for (auto &col : matrix->pixels) { for (auto &pixel : col) { if (pixel.index == NO_PIXEL.index) continue; if (this->IsChasePixel(pixel.index)) { RGB color = RGB::wheel(this->WheelFrame(pixel.index)); for (auto &pos : pixel.positions) frame[pos] = color; } else { for (auto &pos : pixel.positions) frame[pos] = ColorBlack; } } } currentPixel++; if (currentPixel > matrix->getPixelCount() - 1) { currentPixel = 0; } if (reverse) { currentFrame--; if (currentFrame < 0) { currentFrame = 1; reverse = false; } } else { currentFrame++; if (currentFrame > 255) { currentFrame = 254; reverse = true; } } this->nextRunTime = make_timeout_time_ms(AnimationStation::options.chaseCycleTime); } bool Chase::IsChasePixel(int i) { if (i == this->currentPixel || i == (this->currentPixel - 1) || i == (this->currentPixel - 2)) { return true; } return false; } int Chase::WheelFrame(int i) { int frame = this->currentFrame; int pixelCount = matrix->getPixelCount(); if (i == (this->currentPixel - 1) % pixelCount) { if (this->reverse) { frame = frame + 16; } else { frame = frame - 16; } } if (i == (this->currentPixel - 2) % pixelCount) { if (this->reverse) { frame = frame + 32; } else { frame = frame - 32; } } if (frame < 0) { return 0; } return frame; } void Chase::ParameterUp() { AnimationStation::options.chaseCycleTime = AnimationStation::options.chaseCycleTime + 10; } void Chase::ParameterDown() { if (AnimationStation::options.chaseCycleTime > 0) { AnimationStation::options.chaseCycleTime = AnimationStation::options.chaseCycleTime - 10; } } ================================================ FILE: lib/AnimationStation/src/Effects/Chase.hpp ================================================ #ifndef _CHASE_H_ #define _CHASE_H_ #include "../Animation.hpp" #include "hardware/clocks.h" #include #include #include #include "../AnimationStation.hpp" class Chase : public Animation { public: Chase(PixelMatrix &matrix); ~Chase() {}; void Animate(RGB (&frame)[100]); void ParameterUp(); void ParameterDown(); protected: bool IsChasePixel(int i); int WheelFrame(int i); int currentFrame = 0; int currentPixel = 0; bool reverse = false; absolute_time_t nextRunTime = 0; }; #endif ================================================ FILE: lib/AnimationStation/src/Effects/Rainbow.cpp ================================================ #include "Rainbow.hpp" Rainbow::Rainbow(PixelMatrix &matrix) : Animation(matrix) { } void Rainbow::Animate(RGB (&frame)[100]) { if (!time_reached(this->nextRunTime)) { return; } for (auto &col : matrix->pixels) { for (auto &pixel : col) { if (pixel.index == NO_PIXEL.index) continue; RGB color = RGB::wheel(this->currentFrame); for (auto &pos : pixel.positions) frame[pos] = color; } } if (reverse) { currentFrame--; if (currentFrame < 0) { currentFrame = 1; reverse = false; } } else { currentFrame++; if (currentFrame > 255) { currentFrame = 254; reverse = true; } } this->nextRunTime = make_timeout_time_ms(AnimationStation::options.rainbowCycleTime); } void Rainbow::ParameterUp() { AnimationStation::options.rainbowCycleTime =AnimationStation::options.rainbowCycleTime + 10; } void Rainbow::ParameterDown() { if (AnimationStation::options.rainbowCycleTime > 0) { AnimationStation::options.rainbowCycleTime = AnimationStation::options.rainbowCycleTime - 10; } } ================================================ FILE: lib/AnimationStation/src/Effects/Rainbow.hpp ================================================ #ifndef _RAINBOW_H_ #define _RAINBOW_H_ #include "../Animation.hpp" #include "hardware/clocks.h" #include #include #include #include "../AnimationStation.hpp" class Rainbow : public Animation { public: Rainbow(PixelMatrix &matrix); ~Rainbow() {}; void Animate(RGB (&frame)[100]); void ParameterUp(); void ParameterDown(); protected: int currentFrame = 0; bool reverse = false; absolute_time_t nextRunTime = 0; }; #endif ================================================ FILE: lib/AnimationStation/src/Effects/StaticColor.cpp ================================================ #include "StaticColor.hpp" StaticColor::StaticColor(PixelMatrix &matrix) : Animation(matrix) { } StaticColor::StaticColor(PixelMatrix &matrix, std::vector &pixels) : Animation(matrix), pixels(&pixels) { this->filtered = true; } void StaticColor::Animate(RGB (&frame)[100]) { for (size_t r = 0; r != matrix->pixels.size(); r++) { for (size_t c = 0; c != matrix->pixels[r].size(); c++) { if (matrix->pixels[r][c].index == NO_PIXEL.index || this->notInFilter(matrix->pixels[r][c])) continue; for (size_t p = 0; p != matrix->pixels[r][c].positions.size(); p++) { frame[matrix->pixels[r][c].positions[p]] = colors[this->GetColor()]; } } } } uint8_t StaticColor::GetColor() { if (this->filtered) { return AnimationStation::options.buttonColorIndex; } else { return AnimationStation::options.staticColorIndex; } } void StaticColor::ParameterUp() { uint8_t colorIndex; if (this->filtered) { colorIndex = AnimationStation::options.buttonColorIndex; } else { colorIndex = AnimationStation::options.staticColorIndex; } if (colorIndex < colors.size() - 1) { colorIndex++; } else { colorIndex = 0; } this->SaveIndexOptions(colorIndex); } void StaticColor::SaveIndexOptions(uint8_t colorIndex) { if (this->filtered) { AnimationStation::options.buttonColorIndex = colorIndex; } else { AnimationStation::options.staticColorIndex = colorIndex; } } void StaticColor::ParameterDown() { uint8_t colorIndex; if (this->filtered) { colorIndex = AnimationStation::options.buttonColorIndex; } else { colorIndex = AnimationStation::options.staticColorIndex; } if (colorIndex > 0) { colorIndex--; } else { colorIndex = colors.size() - 1; } this->SaveIndexOptions(colorIndex); } ================================================ FILE: lib/AnimationStation/src/Effects/StaticColor.hpp ================================================ #ifndef _STATIC_COLOR_H_ #define _STATIC_COLOR_H_ #include #include #include #include "../Animation.hpp" #include "../AnimationStation.hpp" class StaticColor : public Animation { public: StaticColor(PixelMatrix &matrix); StaticColor(PixelMatrix &matrix, std::vector &pixels); ~StaticColor() {}; void Animate(RGB (&frame)[100]); void SaveIndexOptions(uint8_t colorIndex); uint8_t GetColor(); void ParameterUp(); void ParameterDown(); protected: std::vector *pixels; }; #endif ================================================ FILE: lib/AnimationStation/src/Effects/StaticTheme.cpp ================================================ #include "StaticTheme.hpp" std::vector> StaticTheme::themes = {}; StaticTheme::StaticTheme(PixelMatrix &matrix) : Animation(matrix) { if (AnimationStation::options.themeIndex >= StaticTheme::themes.size()) { AnimationStation::options.themeIndex = 0; } } void StaticTheme::Animate(RGB (&frame)[100]) { if (StaticTheme::themes.size() > 0) { for (size_t r = 0; r != matrix->pixels.size(); r++) { for (size_t c = 0; c != matrix->pixels[r].size(); c++) { if (matrix->pixels[r][c].index == NO_PIXEL.index) continue; std::map theme = StaticTheme::themes.at(AnimationStation::options.themeIndex); auto itr = theme.find(matrix->pixels[r][c].mask); if (itr != theme.end()) { for (size_t p = 0; p != matrix->pixels[r][c].positions.size(); p++) { frame[matrix->pixels[r][c].positions[p]] = itr->second; } } else { for (size_t p = 0; p != matrix->pixels[r][c].positions.size(); p++) { frame[matrix->pixels[r][c].positions[p]] = defaultColor; } } } } } } void StaticTheme::AddTheme(std::map theme) { themes.push_back(theme); } void StaticTheme::ClearThemes() { themes.clear(); } void StaticTheme::ParameterUp() { if (AnimationStation::options.themeIndex < StaticTheme::themes.size() - 1) { AnimationStation::options.themeIndex++; } else { AnimationStation::options.themeIndex = 0; } } void StaticTheme::ParameterDown() { if (AnimationStation::options.themeIndex > 0) { AnimationStation::options.themeIndex--; } else { AnimationStation::options.themeIndex = StaticTheme::themes.size() - 1; } } ================================================ FILE: lib/AnimationStation/src/Effects/StaticTheme.hpp ================================================ #ifndef STATIC_THEME_H_ #define STATIC_THEME_H_ #include #include #include #include #include #include #include "../Animation.hpp" #include "../AnimationStation.hpp" class StaticTheme : public Animation { public: StaticTheme(PixelMatrix &matrix); ~StaticTheme() {}; static void AddTheme(std::map theme); static void ClearThemes(); void Animate(RGB (&frame)[100]); void ParameterUp(); void ParameterDown(); protected: RGB defaultColor = ColorBlack; static std::vector> themes; }; #endif ================================================ FILE: lib/AnimationStation/src/Pixel.hpp ================================================ #ifndef PIXEL_HPP_ #define PIXEL_HPP_ #include #include #include #include struct Pixel { Pixel(int index, uint32_t mask = 0) : index(index), mask(mask) { } Pixel(int index, std::vector positions) : index(index), positions(positions) { } Pixel(int index, uint32_t mask, std::vector positions) : index(index), mask(mask), positions(positions) { } int index; // The pixel index uint32_t mask; // Used to detect per-pixel lighting std::vector positions; // The actual LED indexes on the chain }; const Pixel NO_PIXEL(-1); struct PixelMatrix { PixelMatrix() { } std::vector> pixels; uint8_t ledsPerPixel; void setup(std::vector> pixels, int ledsPerPixel = -1) { this->pixels = pixels; this->ledsPerPixel = ledsPerPixel; } inline int getLedCount() { int count = 0; for (auto &col : pixels) for (auto &pixel : col) if (pixel.index == NO_PIXEL.index) continue; else count += pixel.positions.size(); return count; } inline uint16_t getPixelCount() const { uint16_t count = 0; for (auto &col : pixels) count += col.size(); return count; } }; inline bool operator==(const Pixel &lhs, const Pixel &rhs) { return lhs.index == rhs.index; } #endif ================================================ FILE: lib/BitBang_I2C/BitBang_I2C.c ================================================ // // Bit Bang I2C library // Copyright (c) 2018 BitBank Software, Inc. // Written by Larry Bank (bitbank@pobox.com) // Project started 10/12/2018 // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "pico/stdlib.h" #include "hardware/gpio.h" #include "pico/binary_info.h" #include "hardware/i2c.h" #include "BitBang_I2C.h" // // Transmit a byte and read the ack bit // if we get a NACK (negative acknowledge) return 0 // otherwise return 1 for success // // // Initialize the I2C BitBang library // Pass the pin numbers used for SDA and SCL // as well as the clock rate in Hz // void I2CInit(BBI2C *pI2C, uint32_t iClock) { if (pI2C == NULL) return; if ((pI2C->iSDA + 2 * i2c_hw_index(pI2C->picoI2C))%4 != 0) return ; if ((pI2C->iSCL + 3 + 2 * i2c_hw_index(pI2C->picoI2C))%4 != 0) return ; i2c_init(pI2C->picoI2C, iClock); gpio_set_function(pI2C->iSDA, GPIO_FUNC_I2C); gpio_set_function(pI2C->iSCL, GPIO_FUNC_I2C); gpio_pull_up(pI2C->iSDA); gpio_pull_up(pI2C->iSCL); return; } // // Test a specific I2C address to see if a device responds // returns 0 for no response, 1 for a response // uint8_t I2CTest(BBI2C *pI2C, uint8_t addr) { int ret; uint8_t rxdata; ret = i2c_read_blocking(pI2C->picoI2C, addr, &rxdata, 1, false); return (ret >= 0); } /* I2CTest() */ // // Scans for I2C devices on the bus // returns a bitmap of devices which are present (128 bits = 16 bytes, LSB first) // A set bit indicates that a device responded at that address // void I2CScan(BBI2C *pI2C, uint8_t *pMap) { int i; for (i=0; i<16; i++) // clear the bitmap pMap[i] = 0; for (i=1; i<128; i++) // try every address { if (I2CTest(pI2C, i)) { pMap[i >> 3] |= (1 << (i & 7)); } } } /* I2CScan() */ // // Write I2C data // quits if a NACK is received and returns 0 // otherwise returns the number of bytes written // int I2CWrite(BBI2C *pI2C, uint8_t iAddr, uint8_t *pData, int iLen) { int rc = 0; rc = i2c_write_blocking(pI2C->picoI2C, iAddr, pData, iLen, true); // true to keep master control of bus return rc >= 0 ? iLen : 0; } /* I2CWrite() */ // // Read N bytes starting at a specific I2C internal register // int I2CReadRegister(BBI2C *pI2C, uint8_t iAddr, uint8_t u8Register, uint8_t *pData, int iLen) { int rc; rc = i2c_write_blocking(pI2C->picoI2C, iAddr, &u8Register, 1, true); // true to keep master control of bus if (rc >= 0) { rc = i2c_read_blocking(pI2C->picoI2C, iAddr, pData, iLen, false); } return (rc >= 0); } /* I2CReadRegister() */ // // Read N bytes // int I2CRead(BBI2C *pI2C, uint8_t iAddr, uint8_t *pData, int iLen) { int rc; rc = i2c_read_blocking(pI2C->picoI2C, iAddr, pData, iLen, false); return (rc >= 0); } /* I2CRead() */ // // Figure out what device is at that address // returns the enumerated value // int I2CDiscoverDevice(BBI2C *pI2C, uint8_t i) { uint8_t j, cTemp[8]; int iDevice = DEVICE_UNKNOWN; if (i == 0x3c || i == 0x3d) // Probably an OLED display { I2CReadRegister(pI2C, i, 0x00, cTemp, 1); cTemp[0] &= 0xbf; // mask off power on/off bit if (cTemp[0] == 0x8) // SH1106 iDevice = DEVICE_SH1106; else if (cTemp[0] == 3 || cTemp[0] == 6) iDevice = DEVICE_SSD1306; return iDevice; } if (i == 0x34 || i == 0x35) // Probably an AXP202/AXP192 PMU chip { I2CReadRegister(pI2C, i, 0x03, cTemp, 1); // chip ID if (cTemp[0] == 0x41) return DEVICE_AXP202; else if (cTemp[0] == 0x03) return DEVICE_AXP192; } if (i >= 0x40 && i <= 0x4f) // check for TI INA219 power measurement sensor { I2CReadRegister(pI2C, i, 0x00, cTemp, 2); if (cTemp[0] == 0x39 && cTemp[1] == 0x9f) return DEVICE_INA219; } // Check for Microchip 24AAXXXE64 family serial 2 Kbit EEPROM if (i >= 0x50 && i <= 0x57) { uint32_t u32Temp = 0; I2CReadRegister(pI2C, i, 0xf8, (uint8_t *)&u32Temp, 3); // check for Microchip's OUI if (u32Temp == 0x000004a3 || u32Temp == 0x00001ec0 || u32Temp == 0x00d88039 || u32Temp == 0x005410ec) return DEVICE_24AAXXXE64; } // else if (i == 0x5b) // MLX90615? // { // I2CReadRegister(pI2C, i, 0x10, cTemp, 3); // for (j=0; j<3; j++) Serial.println(cTemp[j], HEX); // } // try to identify it from the known devices using register contents { // Check for TI HDC1080 I2CReadRegister(pI2C, i, 0xff, cTemp, 2); if (cTemp[0] == 0x10 && cTemp[1] == 0x50) return DEVICE_HDC1080; // Check for BME680 if (i == 0x76 || i == 0x77) { I2CReadRegister(pI2C, i, 0xd0, cTemp, 1); // chip ID if (cTemp[0] == 0x61) // BME680 return DEVICE_BME680; } // Check for VL53L0X I2CReadRegister(pI2C, i, 0xc0, cTemp, 3); if (cTemp[0] == 0xee && cTemp[1] == 0xaa && cTemp[2] == 0x10) return DEVICE_VL53L0X; // Check for CCS811 I2CReadRegister(pI2C, i, 0x20, cTemp, 1); if (cTemp[0] == 0x81) // Device ID return DEVICE_CCS811; // Check for LIS3DSH accelerometer from STMicro I2CReadRegister(pI2C, i, 0x0f, cTemp, 1); if (cTemp[0] == 0x3f) // WHO_AM_I return DEVICE_LIS3DSH; // Check for LIS3DH accelerometer from STMicro I2CReadRegister(pI2C, i, 0x0f, cTemp, 1); if (cTemp[0] == 0x33) // WHO_AM_I return DEVICE_LIS3DH; // Check for LSM9DS1 magnetometer/gyro/accel sensor from STMicro I2CReadRegister(pI2C, i, 0x0f, cTemp, 1); if (cTemp[0] == 0x68) // WHO_AM_I return DEVICE_LSM9DS1; // Check for LPS25H pressure sensor from STMicro I2CReadRegister(pI2C, i, 0x0f, cTemp, 1); if (cTemp[0] == 0xbd) // WHO_AM_I return DEVICE_LPS25H; // Check for HTS221 temp/humidity sensor from STMicro I2CReadRegister(pI2C, i, 0x0f, cTemp, 1); if (cTemp[0] == 0xbc) // WHO_AM_I return DEVICE_HTS221; // Check for MAG3110 I2CReadRegister(pI2C, i, 0x07, cTemp, 1); if (cTemp[0] == 0xc4) // WHO_AM_I return DEVICE_MAG3110; // Check for LM8330 keyboard controller I2CReadRegister(pI2C, i, 0x80, cTemp, 2); if (cTemp[0] == 0x0 && cTemp[1] == 0x84) // manufacturer code + software revision return DEVICE_LM8330; // Check for MAX44009 if (i == 0x4a || i == 0x4b) { for (j=0; j<8; j++) I2CReadRegister(pI2C, i, j, &cTemp[j], 1); // check for power-up reset state of registers if ((cTemp[2] == 3 || cTemp[2] == 2) && cTemp[6] == 0 && cTemp[7] == 0xff) return DEVICE_MAX44009; } // Check for ADS1115 I2CReadRegister(pI2C, i, 0x02, cTemp, 2); // Lo_thresh defaults to 0x8000 I2CReadRegister(pI2C, i, 0x03, &cTemp[2], 2); // Hi_thresh defaults to 0x7fff if (cTemp[0] == 0x80 && cTemp[1] == 0x00 && cTemp[2] == 0x7f && cTemp[3] == 0xff) return DEVICE_ADS1115; // Check for MCP9808 I2CReadRegister(pI2C, i, 0x06, cTemp, 2); // manufacturer ID && get device ID/revision I2CReadRegister(pI2C, i, 0x07, &cTemp[2], 2); // need to read them individually if (cTemp[0] == 0 && cTemp[1] == 0x54 && cTemp[2] == 0x04 && cTemp[3] == 0x00) return DEVICE_MCP9808; // Check for BMP280/BME280 I2CReadRegister(pI2C, i, 0xd0, cTemp, 1); if (cTemp[0] == 0x55) // BMP180 return DEVICE_BMP180; else if (cTemp[0] == 0x58) return DEVICE_BMP280; else if (cTemp[0] == 0x60) // BME280 return DEVICE_BME280; // Check for LSM6DS3 I2CReadRegister(pI2C, i, 0x0f, cTemp, 1); // WHO_AM_I if (cTemp[0] == 0x69) return DEVICE_LSM6DS3; // Check for ADXL345 I2CReadRegister(pI2C, i, 0x00, cTemp, 1); // DEVID if (cTemp[0] == 0xe5) return DEVICE_ADXL345; // Check for MPU-60x0i, MPU-688x, and MPU-9250 I2CReadRegister(pI2C, i, 0x75, cTemp, 1); if (cTemp[0] == (i & 0xfe)) // Current I2C address (low bit set to 0) return DEVICE_MPU6000; else if (cTemp[0] == 0x71) return DEVICE_MPU9250; else if (cTemp[0] == 0x19) return DEVICE_MPU6886; // Check for DS3231 RTC I2CReadRegister(pI2C, i, 0x0e, cTemp, 1); // read the control register if (i == 0x68 && cTemp[0] == 0x1c) // fixed I2C address and power on reset value return DEVICE_DS3231; // Check for DS1307 RTC I2CReadRegister(pI2C, i, 0x07, cTemp, 1); // read the control register if (i == 0x68 && cTemp[0] == 0x03) // fixed I2C address and power on reset value return DEVICE_DS1307; } return iDevice; } /* I2CDiscoverDevice() */ ================================================ FILE: lib/BitBang_I2C/BitBang_I2C.h ================================================ // // Bit Bang I2C library // Copyright (c) 2018 BitBank Software, Inc. // Written by Larry Bank (bitbank@pobox.com) // Project started 10/12/2018 // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef __BITBANG_I2C__ #define __BITBANG_I2C__ #include "pico/stdlib.h" #include "hardware/i2c.h" #include "hardware/spi.h" // supported devices enum { DEVICE_UNKNOWN = 0, DEVICE_SSD1306, DEVICE_SH1106, DEVICE_VL53L0X, DEVICE_BMP180, DEVICE_BMP280, DEVICE_BME280, DEVICE_MPU6000, DEVICE_MPU9250, DEVICE_MCP9808, DEVICE_LSM6DS3, DEVICE_ADXL345, DEVICE_ADS1115, DEVICE_MAX44009, DEVICE_MAG3110, DEVICE_CCS811, DEVICE_HTS221, DEVICE_LPS25H, DEVICE_LSM9DS1, DEVICE_LM8330, DEVICE_DS3231, DEVICE_LIS3DH, DEVICE_LIS3DSH, DEVICE_INA219, DEVICE_SHT3X, DEVICE_HDC1080, DEVICE_MPU6886, DEVICE_BME680, DEVICE_AXP202, DEVICE_AXP192, DEVICE_24AAXXXE64, DEVICE_DS1307 }; #ifndef LOW #define LOW 0 #define HIGH 1 #endif typedef struct mybbi2c { uint8_t iSDA, iSCL; // pin numbers (0xff = disabled) uint8_t bWire; i2c_inst_t * picoI2C; // used pico I2C spi_inst_t * picoSPI; // used pico SPI } BBI2C; #ifdef __cplusplus extern "C" { #endif // // Read N bytes // int I2CRead(BBI2C *pI2C, uint8_t iAddr, uint8_t *pData, int iLen); // // Read N bytes starting at a specific I2C internal register // int I2CReadRegister(BBI2C *pI2C, uint8_t iAddr, uint8_t u8Register, uint8_t *pData, int iLen); // // Write I2C data // quits if a NACK is received and returns 0 // otherwise returns the number of bytes written // int I2CWrite(BBI2C *pI2C, uint8_t iAddr, uint8_t *pData, int iLen); // // Scans for I2C devices on the bus // returns a bitmap of devices which are present (128 bits = 16 bytes, LSB first) // // Test if an address responds // returns 0 if no response, 1 if it responds // uint8_t I2CTest(BBI2C *pI2C, uint8_t addr); // A set bit indicates that a device responded at that address // void I2CScan(BBI2C *pI2C, uint8_t *pMap); // // Initialize the I2C BitBang library // Pass the pin numbers used for SDA and SCL // as well as the clock rate in Hz // void I2CInit(BBI2C *pI2C, uint32_t iClock); // // Figure out what device is at that address // returns the enumerated value // int I2CDiscoverDevice(BBI2C *pI2C, uint8_t i); #ifdef __cplusplus } #endif #endif //__BITBANG_I2C__ ================================================ FILE: lib/BitBang_I2C/README.md ================================================ Bit Bang I2C library -------------------- Copyright (c) 2018 BitBank Software, Inc. Written by Larry Bank (bitbank@pobox.com) Project started 10/12/2018 The purpose of this code is to provide a simple C library which can bit-bang the I2C protocol on any 2 GPIO pins on any system. The I2C protocol doesn't require any special functionality of the pins beyond standard GPIO features. The reason I wrote it was for getting easy access to I2C devices on various microcontrollers that don't necessarily have exposed I2C interfaces. This has come in handy on a variety of projects including AVR, ESP32, and nRF5 micrcontrollers. The pin access functions can be wrapper functions for the native versions (e.g. on the nRF5 SDK) On AVR micros, the digitalWrite/digitalRead/pinMode functions are somewhat slow because they check the pin numbers against tables and do other tasks. This library includes logic to speed that up. By specifying pin numbers as the port name + bit, the library will run considerably faster on AVR microcontrollers. For example, On the Arduino Uno (ATmega328P), I/O pin 9 is actually I/O Port B, bit 1. To use the direct pin method, you would specify the pin number as `0xB1`. On the ATtiny85, this is the only pin numbering supported so that the Wire library doesn't get linked in (to save FLASH space). This latest version allows you to use this library for both bit-bang I2C or make use of the Wire library indirectly. Since each BBI2C object is independent, you can have as many buses as you like operating on any combination of bit-bang and hardware I2C. Usage: ----- Start by initializing a BBI2C structure with the desired pin numbers for SDA/SCL along with the desired clock frequency. The bWire flag tells the library to use hardware I2C when set to true. If using the hardware I2C (Wire library), the pin numbers can be set to `0xff` to use the default I2C pins or to specific pins on systems which support multiple I2C buses. Frequencies above 400Khz are possible, but not necessarily accurate. Luckily I2C devices don't really care about the exact clock frequency, only that the signals are stable within the given periods. For Example: ```C++ BBI2C bbi2c; bbi2c.bWire = 0; // use bit banging bbi2c.iSDA = 10; // SDA on GPIO pin 10 bbi2c.iSCL = 11; // SCL on GPIO pin 11 I2CInit(&bbi2c, 100000); // SDA=pin 10, SCL=pin 11, 100K clock ``` Instead of exposing functions to start and stop I2C transactions, I decided to make it simpler by providing composite functions that hide the details of I2C protocol. For scanning the I2C bus for devices, I provide the I2CScan() function which returns a bitmap (16 bytes x 8 bits) with a bit set for every device it finds. Call it like this: ```C++ unsigned char ucMap[16]; I2CScan(&bbi2c, ucMap); ``` To detect if a single address is active, use `I2CTest(addr)`. To identify the device, use `I2CDiscoverDevice(uint8_t iAddress)`. For reading and writing data to the I2C device, use the following functions: ```C++ I2CRead(&bbi2c, uint8_t u8Address, uint8_t *pu8Data, int iLength); I2CReadRegister(&bbi2c, uint8_t iAddr, uint8_t u8Register, uint8_t *pData, int iLen); I2CWrite(&bbi2c, uint8_t iAddr, uint8_t *pData, int iLen); ``` There are currently 29 devices recognized by the discover function: - SSD1306 - SH1106 - VL53L0X - BMP180 - BMP280 - BME280 - BME680 - MPU6000 - MPU9250 - MCP9808 - LSM6DS3 - ADXL345 - ADS1115 - MAX44009 - MAG3110 - CCS811 - HTS221 - LPS25H - LSM9DS1 - LM8330 - DS3231 - DS1307 - LIS3DH - LIS3DSH - INA219 - SHT3X - HDC1080 - AXP192 - AXP202 - 24AAXXXE64 If you find this code useful, please consider sending a donation. [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SR4F44J2UR8S4) ================================================ FILE: lib/CRC32/src/CRC32.cpp ================================================ // // Copyright (c) 2013 Christopher Baker // // SPDX-License-Identifier: MIT // #include "CRC32.h" static const uint32_t crc32_table[] = { 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c, 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c, 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c }; CRC32::CRC32() { reset(); } void CRC32::reset() { _state = ~0L; } void CRC32::update(const uint8_t &data) { // via http://forum.arduino.cc/index.php?topic=91179.0 uint8_t tbl_idx = 0; tbl_idx = _state ^ (data >> (0 * 4)); _state = *(uint32_t *)(crc32_table + (tbl_idx & 0x0f)) ^ (_state >> 4); tbl_idx = _state ^ (data >> (1 * 4)); _state = *(uint32_t *)(crc32_table + (tbl_idx & 0x0f)) ^ (_state >> 4); } uint32_t CRC32::finalize() const { return ~_state; } ================================================ FILE: lib/CRC32/src/CRC32.h ================================================ // // Copyright (c) 2013 Christopher Baker // // SPDX-License-Identifier: MIT // #pragma once #include /// \brief A class for calculating the CRC32 checksum from arbitrary data. /// \sa http://forum.arduino.cc/index.php?topic=91179.0 class CRC32 { public: /// \brief Initialize an empty CRC32 checksum. CRC32(); /// \brief Reset the checksum claculation. void reset(); /// \brief Update the current checksum caclulation with the given data. /// \param data The data to add to the checksum. void update(const uint8_t &data); /// \brief Update the current checksum caclulation with the given data. /// \tparam Type The data type to read. /// \param data The data to add to the checksum. template void update(const Type &data) { update(&data, 1); } /// \brief Update the current checksum caclulation with the given data. /// \tparam Type The data type to read. /// \param data The array to add to the checksum. /// \param size Size of the array to add. template void update(const Type *data, uint16_t size) { uint16_t nBytes = size * sizeof(Type); const uint8_t *pData = (const uint8_t *)data; for (uint16_t i = 0; i < nBytes; i++) { update(pData[i]); } } /// \returns the caclulated checksum. uint32_t finalize() const; /// \brief Calculate the checksum of an arbitrary data array. /// \tparam Type The data type to read. /// \param data A pointer to the data to add to the checksum. /// \param size The size of the data to add to the checksum. /// \returns the calculated checksum. template static uint32_t calculate(const Type *data, uint16_t size = 1) { CRC32 crc; crc.update(data, size); return crc.finalize(); } private: /// \brief The internal checksum state. uint32_t _state = ~0L; }; ================================================ FILE: lib/FlashPROM/include/FlashPROM.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #ifndef FLASHPROM_H_ #define FLASHPROM_H_ #include #include #include #include #include #include #define EEPROM_SIZE_BYTES 4096 // Reserve 4k of flash memory (ensure this value is divisible by 256) #define EEPROM_ADDRESS_START _u(0x101FF000) // The arduino-pico EEPROM lib starts here, so we'll do the same // Warning: If the write wait is too long it can stall other processes #define EEPROM_WRITE_WAIT 50 // Amount of time in ms to wait before blocking core1 and committing to flash class FlashPROM { public: void start(); void commit(); void reset(); template T &get(uint16_t const index, T &value) { if (index < EEPROM_SIZE_BYTES) memcpy(&value, &cache[index], sizeof(T)); return value; } template void set(uint16_t const index, const T &value) { uint16_t size = sizeof(T); if ((index + size) <= EEPROM_SIZE_BYTES) memcpy(&cache[index], &value, sizeof(T)); } private: static uint8_t cache[EEPROM_SIZE_BYTES]; }; static FlashPROM EEPROM; #endif ================================================ FILE: lib/FlashPROM/library.json ================================================ { "name": "FlashPROM", "version": "0.0.1", "description": "Basic EEPROM-like interface for saving to flash memory on the RP2040.", "keywords": "pico rp2040 eeprom flash", "authors": [ { "name": "Jason Skuby", "url": "https://mytechtoybox.com" } ], "license": "MIT" } ================================================ FILE: lib/FlashPROM/src/FlashPROM.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include "FlashPROM.h" uint8_t FlashPROM::cache[EEPROM_SIZE_BYTES] = { }; volatile static alarm_id_t flashWriteAlarm = 0; volatile static spin_lock_t *flashLock = nullptr; int64_t writeToFlash(alarm_id_t id, void *flashCache) { while (is_spin_locked(flashLock)); multicore_lockout_start_blocking(); uint32_t interrupts = spin_lock_blocking(flashLock); flash_range_erase((intptr_t)EEPROM_ADDRESS_START - (intptr_t)XIP_BASE, EEPROM_SIZE_BYTES); flash_range_program((intptr_t)EEPROM_ADDRESS_START - (intptr_t)XIP_BASE, reinterpret_cast(flashCache), EEPROM_SIZE_BYTES); flashWriteAlarm = 0; multicore_lockout_end_blocking(); spin_unlock(flashLock, interrupts); return 0; } void FlashPROM::start() { if (flashLock == nullptr) flashLock = spin_lock_instance(spin_lock_claim_unused(true)); memcpy(cache, reinterpret_cast(EEPROM_ADDRESS_START), EEPROM_SIZE_BYTES); // When flash is new/reset, all bits are set to 1. // If all bits from the FlashPROM section are 1's then set to 0's. bool reset = true; for (int i = 0; i < EEPROM_SIZE_BYTES; i++) { if (cache[i] != 0xFF) { reset = false; break; } } if (reset) this->reset(); } /* We don't have an actual EEPROM, so we need to be extra careful about minimizing writes. Instead of writing when a commit is requested, we update a time to actually commit. That way, if we receive multiple requests to commit in that timeframe, we'll hold off until the user is done sending changes. */ void FlashPROM::commit() { while (is_spin_locked(flashLock)); cancel_alarm(flashWriteAlarm); flashWriteAlarm = add_alarm_in_ms(EEPROM_WRITE_WAIT, writeToFlash, cache, true); } void FlashPROM::reset() { memset(cache, 0, EEPROM_SIZE_BYTES); commit(); } ================================================ FILE: lib/NeoPico/.editorconfig ================================================ # EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true [*] indent_style = space indent_size = 2 end_of_line = crlf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] indent_style = space indent_size = 2 trim_trailing_whitespace = false ================================================ FILE: lib/NeoPico/library.json ================================================ { "name": "NeoPico", "version": "0.0.1", "description": "WS2812 PIO handling based on official Pico examples", "keywords": "c c++ baremetal neopixel led", "authors": [ { "name": "Jonathan Barket", "url": "https://jonathanbarket.com" } ], "license": "MIT" } ================================================ FILE: lib/NeoPico/src/NeoPico.cpp ================================================ /** * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * Modified by Jonathan Barket - 2021 * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include "pico/stdlib.h" #include "hardware/pio.h" #include "hardware/clocks.h" #include "NeoPico.hpp" LEDFormat NeoPico::GetFormat() { return format; } void NeoPico::PutPixel(uint32_t pixelData) { switch (format) { case LED_FORMAT_GRB: case LED_FORMAT_RGB: pio_sm_put_blocking(pio0, 0, pixelData << 8u); break; case LED_FORMAT_GRBW: case LED_FORMAT_RGBW: pio_sm_put_blocking(pio0, 0, pixelData); break; } } NeoPico::NeoPico(int ledPin, int numPixels, LEDFormat format) : format(format), numPixels(numPixels) { PIO pio = pio0; int sm = 0; uint offset = pio_add_program(pio, &ws2812_program); bool rgbw = (format == LED_FORMAT_GRBW) || (format == LED_FORMAT_RGBW); ws2812_program_init(pio, sm, offset, ledPin, 800000, rgbw); this->Clear(); sleep_ms(10); } void NeoPico::Clear() { memset(frame, 0, sizeof(frame)); } void NeoPico::SetFrame(uint32_t newFrame[100]) { memcpy(frame, newFrame, sizeof(frame)); } void NeoPico::Show() { for (int i = 0; i < this->numPixels; ++i) { this->PutPixel(this->frame[i]); } sleep_ms(10); } void NeoPico::Off() { Clear(); for (int i = 0; i < this->numPixels; ++i) { this->PutPixel(this->frame[i]); } sleep_ms(10); } ================================================ FILE: lib/NeoPico/src/NeoPico.hpp ================================================ #ifndef _NEO_PICO_H_ #define _NEO_PICO_H_ #include "ws2812.pio.h" #include typedef enum { LED_FORMAT_GRB = 0, LED_FORMAT_RGB = 1, LED_FORMAT_GRBW = 2, LED_FORMAT_RGBW = 3, } LEDFormat; class NeoPico { public: NeoPico(int ledPin, int numPixels, LEDFormat format = LED_FORMAT_GRB); void Show(); void Clear(); void Off(); LEDFormat GetFormat(); // void SetPixel(int pixel, uint32_t color); void SetFrame(uint32_t newFrame[100]); private: void PutPixel(uint32_t pixel_grb); LEDFormat format; PIO pio = pio0; int numPixels = 0; uint32_t frame[100]; }; #endif ================================================ FILE: lib/NeoPico/src/ws2812.pio ================================================ ; ; Copyright (c) 2020 Raspberry Pi (Trading) Ltd. ; ; SPDX-License-Identifier: BSD-3-Clause ; .program ws2812 .side_set 1 .define public T1 2 .define public T2 5 .define public T3 3 .lang_opt python sideset_init = pico.PIO.OUT_HIGH .lang_opt python out_init = pico.PIO.OUT_HIGH .lang_opt python out_shiftdir = 1 .wrap_target bitloop: out x, 1 side 0 [T3 - 1] ; Side-set still takes place when instruction stalls jmp !x do_zero side 1 [T1 - 1] ; Branch on the bit we shifted out. Positive pulse do_one: jmp bitloop side 1 [T2 - 1] ; Continue driving high, for a long pulse do_zero: nop side 0 [T2 - 1] ; Or drive low, for a short pulse .wrap % c-sdk { #include "hardware/clocks.h" static inline void ws2812_program_init(PIO pio, uint sm, uint offset, uint pin, float freq, bool rgbw) { pio_gpio_init(pio, pin); pio_sm_set_consecutive_pindirs(pio, sm, pin, 1, true); pio_sm_config c = ws2812_program_get_default_config(offset); sm_config_set_sideset_pins(&c, pin); sm_config_set_out_shift(&c, false, true, rgbw ? 32 : 24); sm_config_set_fifo_join(&c, PIO_FIFO_JOIN_TX); int cycles_per_bit = ws2812_T1 + ws2812_T2 + ws2812_T3; float div = clock_get_hz(clk_sys) / (freq * cycles_per_bit); sm_config_set_clkdiv(&c, div); pio_sm_init(pio, sm, offset, &c); pio_sm_set_enabled(pio, sm, true); } %} .program ws2812_parallel .define public T1 2 .define public T2 5 .define public T3 3 .wrap_target out x, 32 mov pins, !null [T1-1] mov pins, x [T2-1] mov pins, null [T3-2] .wrap % c-sdk { #include "hardware/clocks.h" static inline void ws2812_parallel_program_init(PIO pio, uint sm, uint offset, uint pin_base, uint pin_count, float freq) { for(uint i=pin_base; i #include #include #include #include #include "pico/stdlib.h" #include "BitBang_I2C.h" #include "OneBitDisplay.h" // All of the drawing code is in here #include "obd.inl" // Initialization sequences const unsigned char oled128_initbuf[] = {0x00, 0xae, 0xdc, 0x00, 0x81, 0x40, 0xa1, 0xc8, 0xa8, 0x7f, 0xd5, 0x50, 0xd9, 0x22, 0xdb, 0x35, 0xb0, 0xda, 0x12, 0xa4, 0xa6, 0xaf}; const unsigned char oled64x128_initbuf[] = { 0x00, 0xae, 0xd5, 0x51, 0x20, 0xa8, 0x3f, 0xdc, 0x00, 0xd3, 0x60, 0xad, 0x80, 0xa6, 0xa4, 0xa0, 0xc0, 0x81, 0x40, 0xd9, 0x22, 0xdb, 0x35, 0xaf}; const unsigned char oled132_initbuf[] = {0x00, 0xae, 0x02, 0x10, 0x40, 0x81, 0xa0, 0xc0, 0xa6, 0xa8, 0x3f, 0xd3, 0x00, 0xd5, 0x80, 0xd9, 0xf1, 0xda, 0x12, 0xdb, 0x40, 0x20, 0x02, 0xa4, 0xa6}; const unsigned char oled64_initbuf[] = {0x00, 0xae, 0xa8, 0x3f, 0xd3, 0x00, 0x40, 0xa1, 0xc8, 0xda, 0x12, 0x81, 0xff, 0xa4, 0xa6, 0xd5, 0x80, 0x8d, 0x14, 0xaf, 0x20, 0x02}; const unsigned char oled32_initbuf[] = { 0x00, 0xae, 0xd5, 0x80, 0xa8, 0x1f, 0xd3, 0x00, 0x40, 0x8d, 0x14, 0xa1, 0xc8, 0xda, 0x02, 0x81, 0x7f, 0xd9, 0xf1, 0xdb, 0x40, 0xa4, 0xa6, 0xaf}; const unsigned char oled72_initbuf[] = {0x00, 0xae, 0xa8, 0x3f, 0xd3, 0x00, 0x40, 0xa1, 0xc8, 0xda, 0x12, 0x81, 0xff, 0xad, 0x30, 0xd9, 0xf1, 0xa4, 0xa6, 0xd5, 0x80, 0x8d, 0x14, 0xaf, 0x20, 0x02}; const unsigned char uc1701_initbuf[] = {0xe2, 0x40, 0xa0, 0xc8, 0xa2, 0x2c, 0x2e, 0x2f, 0xf8, 0x00, 0x23, 0x81, 0x28, 0xac, 0x00, 0xa6}; const unsigned char hx1230_initbuf[] = {0x2f, 0x90, 0xa6, 0xa4, 0xaf, 0x40, 0xb0, 0x10, 0x00}; const unsigned char nokia5110_initbuf[] = {0x21, 0xa4, 0xb1, 0x04, 0x14, 0x20, 0x0c}; static void obdCachedFlush(OBDISP *pOBD, int bRender); static void obdCachedWrite(OBDISP *pOBD, uint8_t *pData, uint8_t u8Len, int bRender); void obdSetPosition(OBDISP *pOBD, int x, int y, int bRender); void obdWriteCommand(OBDISP *pOBD, unsigned char c); void obdWriteDataBlock(OBDISP *pOBD, unsigned char *ucBuf, int iLen, int bRender); // // Draw the contents of a memory buffer onto a display // The sub-window will be clipped if it specifies too large an area // for the destination display. The source OBDISP structure must have // a valid back buffer defined // The top and bottom destination edges will be drawn on byte boundaries (8 rows) // The source top/bot edges can be on pixel boundaries // This can be used for partial screen updates // void obdDumpWindow(OBDISP *pOBDSrc, OBDISP *pOBDDest, int srcx, int srcy, int destx, int desty, int width, int height) { uint8_t *s, ucTemp[32]; // temp buffer to gather source pixels int x, y, tx, i; int iPitch; if (pOBDSrc == NULL || pOBDDest == NULL || pOBDSrc->ucScreen == NULL) return; // invalid pointers if (width > pOBDDest->width) width = pOBDDest->width; if (height > pOBDDest->height) height = pOBDDest->height; iPitch = pOBDSrc->width; for (y = 0; y < height; y += 8) { obdSetPosition(pOBDDest, destx, (desty + y) / 8, 1); for (x = 0; x < width; x += 32) { tx = 32; if (width - x < 32) tx = width - x; s = &pOBDSrc->ucScreen[((srcy + y) / 8) * iPitch + srcx + x]; if (srcy & 7) // need to shift the bits to get 8 rows of src data { uint8_t uc, ucShift = srcy & 7; for (i = 0; i < tx; i++) { // combine current and next line to capture 8 pixels uc = s[0] >> ucShift; uc |= s[iPitch] << (7 - ucShift); ucTemp[i] = uc; } obdCachedWrite(pOBDDest, ucTemp, tx, 1); } else { // simpler case obdCachedWrite(pOBDDest, s, tx, 1); // just copy it } } // for x } // for y obdCachedFlush(pOBDDest, 1); } /* obdDumpWindow() */ // // Write a single line to a Sharp memory LCD // You must provide the exact number of bytes needed for a complete line // e.g. for the 144x168 display, pSrc must provide 144 pixels (18 bytes) // void obdWriteLCDLine(OBDISP *pOBD, uint8_t *pSrc, int iLine) { int x; uint8_t c, ucInvert, *d, ucStart; uint8_t ucLineBuf[54]; // 400 pixels is max supported width = 50 bytes + 4 int iPitch = pOBD->width / 8; static int iVCOM = 0; // if (pOBD == NULL || pSrc == NULL || pOBD->type < SHARP_144x168) // return; // invalid request if (iLine < 0 || iLine >= pOBD->height) return; ucInvert = (pOBD->invert) ? 0x00 : 0xff; gpio_put(pOBD->iCSPin, HIGH); // active high ucStart = 0x80; // write command iVCOM++; if (iVCOM & 0x100) // flip it every 256 lines ucStart |= 0x40; // VCOM bit ucLineBuf[1] = ucStart; // this code assumes I2C, so the first byte is ignored _I2CWrite(pOBD, ucLineBuf, 2); // write command(01) + vcom(02) d = &ucLineBuf[2]; ucLineBuf[1] = ucMirror[iLine + 1]; // current line number for (x = 0; x < iPitch; x++) { c = pSrc[0] ^ ucInvert; // we need to brute-force invert it *d++ = ucMirror[c]; pSrc++; } // for x // write this line to the display ucLineBuf[iPitch + 2] = 0; // end of line _I2CWrite(pOBD, ucLineBuf, iPitch + 3); ucLineBuf[1] = 0; _I2CWrite(pOBD, ucLineBuf, 2); // final transfer gpio_put(pOBD->iCSPin, LOW); // de-activate } /* obdWriteLCDLine() */ // // Turn the display on or off // void obdPower(OBDISP *pOBD, int bOn) { uint8_t ucCMD; if (pOBD->type == LCD_NOKIA5110) ucCMD = (bOn) ? 0x20 : 0x24; else // all other supported displays ucCMD = (bOn) ? 0xaf : 0xae; obdWriteCommand(pOBD, ucCMD); } /* obdPower() */ // Controls the LED backlight void obdBacklight(OBDISP *pOBD, int bOn) { if (pOBD->iLEDPin != 0xff) { gpio_put(pOBD->iLEDPin, (bOn) ? HIGH : LOW); } } /* obdBacklight() */ // // Send the command sequence to power up the LCDs static void LCDPowerUp(OBDISP *pOBD) { int iLen; uint8_t *s, uc[32]; obdSetDCMode(pOBD, MODE_COMMAND); gpio_put(pOBD->iCSPin, LOW); if (pOBD->type == LCD_UC1701 || pOBD->type == LCD_UC1609) { s = (uint8_t *)uc1701_initbuf; iLen = sizeof(uc1701_initbuf); } else if (pOBD->type == LCD_HX1230) { s = (uint8_t *)hx1230_initbuf; iLen = sizeof(hx1230_initbuf); } else // Nokia 5110 { s = (uint8_t *)nokia5110_initbuf; iLen = sizeof(nokia5110_initbuf); } memcpy(uc, s, iLen); if (pOBD->iMOSIPin == 0xff) spi_write_blocking(pOBD->bbi2c.picoSPI, s, iLen); else SPI_BitBang(pOBD, s, iLen, pOBD->iMOSIPin, pOBD->iCLKPin); sleep_ms(100); obdWriteCommand(pOBD, 0xa5); sleep_ms(100); obdWriteCommand(pOBD, 0xa4); obdWriteCommand(pOBD, 0xaf); gpio_put(pOBD->iCSPin, HIGH); obdSetDCMode(pOBD, MODE_DATA); } /* LCDPowerUp() */ // // Initialize the display controller on an SPI bus // void obdSPIInit(OBDISP *pOBD, int iType, int iDC, int iCS, int iReset, int iMOSI, int iCLK, int iLED, int bFlip, int bInvert, int bBitBang, int32_t iSpeed) { uint8_t uc[32], *s; int iLen; pOBD->ucScreen = NULL; // start with no backbuffer; user must provide one later pOBD->iDCPin = iDC; pOBD->iCSPin = iCS; pOBD->iMOSIPin = iMOSI; pOBD->iCLKPin = iCLK; pOBD->iLEDPin = iLED; pOBD->type = iType; pOBD->flip = bFlip; pOBD->invert = bInvert; pOBD->wrap = 0; // default - disable text wrap pOBD->com_mode = COM_SPI; // communication mode gpio_set_dir(pOBD->iCSPin, true); gpio_put(pOBD->iCSPin, 0); //(pOBD->type < SHARP_144x168)); // set to not-active if (pOBD->iDCPin != 0xff) // Note - not needed on Sharp Memory LCDs { gpio_set_dir(pOBD->iDCPin, true); gpio_put(pOBD->iDCPin, 0); // for some reason, command mode must be set or some OLEDs/LCDs won't initialize correctly even if set later } if (bBitBang) { gpio_set_dir(iMOSI, true); gpio_set_dir(iCLK, true); } // Reset it if (iReset != -1) { gpio_set_dir(iReset, true); gpio_put(iReset, LOW); sleep_ms(100); gpio_put(iReset, HIGH); sleep_ms(100); } if (iLED != -1) { gpio_set_dir(iLED, true); } // Initialize SPI if (!bBitBang) { pOBD->iMOSIPin = 0xff; // mark it as hardware SPI gpio_set_function(pOBD->iCLKPin, GPIO_FUNC_SPI); gpio_set_function(pOBD->iMOSIPin, GPIO_FUNC_SPI); spi_init(pOBD->bbi2c.picoSPI, 1000 * 1000); spi_set_format(pOBD->bbi2c.picoSPI, 8, SPI_CPOL_0, SPI_CPHA_0, SPI_MSB_FIRST); } pOBD->width = 128; // assume 128x64 pOBD->height = 64; if (iType == SHARP_144x168) { pOBD->width = 144; pOBD->height = 168; pOBD->iDCPin = 0xff; // no D/C wire on this display } else if (iType == SHARP_400x240) { pOBD->width = 400; pOBD->height = 240; pOBD->iDCPin = 0xff; // no D/C wire on this display } else if (iType == LCD_UC1609) { pOBD->width = 192; pOBD->height = 64; } else if (iType == LCD_HX1230) { pOBD->width = 96; pOBD->height = 68; pOBD->iDCPin = 0xff; // flag this as being 3-wire SPI } else if (iType == LCD_NOKIA5110) { pOBD->width = 84; pOBD->height = 48; } else if (iType == OLED_96x16) { pOBD->width = 96; pOBD->height = 16; } else if (iType == OLED_64x128) { pOBD->width = 64; pOBD->height = 128; } else if (iType == OLED_128x32) pOBD->height = 32; else if (iType == OLED_128x128) pOBD->height = 128; else if (iType == OLED_64x32) { pOBD->width = 64; pOBD->height = 32; } else if (iType == OLED_72x40) { pOBD->width = 72; pOBD->height = 40; } if (iType == OLED_128x32 || iType == OLED_96x16) { s = (uint8_t *)oled32_initbuf; iLen = sizeof(oled32_initbuf); } else if (iType == OLED_64x128) { s = (uint8_t *)oled64x128_initbuf; iLen = sizeof(oled64x128_initbuf); } else if (iType == OLED_128x128) { s = (uint8_t *)oled128_initbuf; iLen = sizeof(oled128_initbuf); } // else if (iType == OLED_132x64) { // SH1106 // s = (uint8_t *)oled132_initbuf; // iLen = sizeof(oled132_initbuf); // } else if (iType < LCD_UC1701) // 128x64 and 64x32 { s = (uint8_t *)oled64_initbuf; iLen = sizeof(oled64_initbuf); } // OLED if (iType < LCD_UC1701) { memcpy(uc, s, iLen); // do it from RAM _I2CWrite(pOBD, uc, iLen); sleep_ms(100); // on SPI display this delay is needed or the display // never sees the "display on" command at the end of the sequence obdWriteCommand(pOBD, 0xaf); // turn on display if (bInvert) { uc[0] = 0; // command uc[1] = 0xa7; // invert command _I2CWrite(pOBD, uc, 2); } if (bFlip) // rotate display 180 { uc[0] = 0; // command uc[1] = 0xa0; _I2CWrite(pOBD, uc, 2); uc[0] = 0; uc[1] = 0xc0; _I2CWrite(pOBD, uc, 2); } } // OLED if (iType == LCD_UC1701 || iType == LCD_HX1230) { uint8_t cCOM = 0xc0; LCDPowerUp(pOBD); if (iType == LCD_HX1230) { obdSetContrast(pOBD, 0); // contrast of 0 looks good cCOM = 0xc8; } if (bFlip) // flip horizontal + vertical { obdWriteCommand(pOBD, 0xa1); // set SEG direction (A1 to flip horizontal) obdWriteCommand(pOBD, cCOM); // set COM direction (C0 to flip vert) } if (bInvert) { obdWriteCommand(pOBD, 0xa7); // set inverted pixel mode } } if (iType == LCD_UC1609) { obdWriteCommand(pOBD, 0xe2); // system reset obdWriteCommand(pOBD, 0xa0); // set frame rate to 76fps obdWriteCommand(pOBD, 0xeb); // set BR obdWriteCommand(pOBD, 0x2f); // set Power Control obdWriteCommand(pOBD, 0xc4); // set LCD mapping control obdWriteCommand(pOBD, 0x81); // set PM obdWriteCommand(pOBD, 0x90); // set contrast to 144 obdWriteCommand(pOBD, 0xaf); // display enable if (bFlip) // flip horizontal + vertical { obdWriteCommand(pOBD, 0xa1); // set SEG direction (A1 to flip horizontal) obdWriteCommand(pOBD, 0xc2); // set COM direction (C0 to flip vert) } if (bInvert) { obdWriteCommand(pOBD, 0xa7); // set inverted pixel mode } } // UC1609 } /* obdSPIInit() */ // // Initializes the OLED controller into "page mode" // int obdI2CInit(OBDISP *pOBD, int iType, int iAddr, int bFlip, int bInvert, int bWire, int sda, int scl, i2c_inst_t *picoI2C, int reset, int32_t iSpeed) { unsigned char uc[32]; uint8_t u8Len, *s; int rc = OLED_NOT_FOUND; pOBD->ucScreen = NULL; // reset backbuffer; user must provide one later pOBD->type = iType; pOBD->flip = bFlip; pOBD->invert = bInvert; pOBD->wrap = 0; // default - disable text wrap pOBD->bbi2c.iSDA = sda; pOBD->bbi2c.iSCL = scl; pOBD->bbi2c.picoI2C = picoI2C; pOBD->bbi2c.bWire = bWire; pOBD->com_mode = COM_I2C; // communication mode I2CInit(&pOBD->bbi2c, iSpeed); // on Linux, SDA = bus number, SCL = device address // Reset it if (reset != -1) { gpio_set_dir(reset, true); gpio_put(reset, HIGH); sleep_ms(50); gpio_put(reset, LOW); sleep_ms(50); gpio_put(reset, HIGH); sleep_ms(10); } // find the device address if requested if (iAddr == -1 || iAddr == 0 || iAddr == 0xff) // find it { I2CTest(&pOBD->bbi2c, 0x3c); if (I2CTest(&pOBD->bbi2c, 0x3c)) pOBD->oled_addr = 0x3c; else if (I2CTest(&pOBD->bbi2c, 0x3d)) pOBD->oled_addr = 0x3d; else return rc; // no display found! } else { pOBD->oled_addr = iAddr; I2CTest(&pOBD->bbi2c, iAddr); if (!I2CTest(&pOBD->bbi2c, iAddr)) return rc; // no display found } // Detect the display controller (SSD1306, SH1107 or SH1106) uint8_t u = 0; I2CReadRegister(&pOBD->bbi2c, pOBD->oled_addr, 0x00, &u, 1); // read the status register u &= 0x0f; // mask off power on/off bit if ((u == 0x7 || u == 0xf) && pOBD->type == OLED_128x128) // SH1107 { // A single SSD1306 display returned 7, so only act on it if the // user specified that they're working with a 128x128 display rc = OLED_SH1107_3C; bFlip = !bFlip; // SH1107 seems to have this reversed from the usual direction } else if (u == 0x8) // SH1106 { rc = OLED_SH1106_3C; pOBD->type = OLED_132x64; // needs to be treated a little differently } else if (u == 3 || u == 6 || u == 7) // 7=128x64(rare),6=128x64 display, 3=smaller { rc = OLED_SSD1306_3C; } if (pOBD->oled_addr == 0x3d) rc++; // return the '3D' version of the type if (iType == OLED_128x32 || iType == OLED_96x16) { s = (uint8_t *)oled32_initbuf; u8Len = sizeof(oled32_initbuf); } else if (iType == OLED_128x128) { s = (uint8_t *)oled128_initbuf; u8Len = sizeof(oled128_initbuf); } else if (iType == OLED_72x40) { s = (uint8_t *)oled72_initbuf; u8Len = sizeof(oled72_initbuf); } else if (iType == OLED_64x128) { s = (uint8_t *)oled64x128_initbuf; u8Len = sizeof(oled64x128_initbuf); } else // 132x64, 128x64 and 64x32 { s = (uint8_t *)oled64_initbuf; u8Len = sizeof(oled64_initbuf); } memcpy(uc, s, u8Len); _I2CWrite(pOBD, uc, u8Len); if (bInvert) { uc[0] = 0; // command uc[1] = 0xa7; // invert command _I2CWrite(pOBD, uc, 2); } if (bFlip) // rotate display 180 { uc[0] = 0; // command uc[1] = 0xa0; _I2CWrite(pOBD, uc, 2); uc[1] = 0xc0; _I2CWrite(pOBD, uc, 2); } pOBD->width = 128; // assume 128x64 pOBD->height = 64; if (iType == OLED_96x16) { pOBD->width = 96; pOBD->height = 16; } else if (iType == OLED_64x128) { pOBD->width = 64; pOBD->height = 128; } else if (iType == OLED_128x32) pOBD->height = 32; else if (iType == OLED_128x128) pOBD->height = 128; else if (iType == OLED_64x32) { pOBD->width = 64; pOBD->height = 32; } else if (iType == OLED_72x40) { pOBD->width = 72; pOBD->height = 40; } return rc; } /* obdInit() */ // // Sends a command to turn on or off the OLED display // void oledPower(OBDISP *pOBD, uint8_t bOn) { if (bOn) obdWriteCommand(pOBD, 0xaf); // turn on OLED else obdWriteCommand(pOBD, 0xae); // turn off OLED } /* oledPower() */ // // Bit Bang the data on GPIO pins // void SPI_BitBang(OBDISP *pOBD, uint8_t *pData, int iLen, uint8_t iMOSIPin, uint8_t iSCKPin) { int i; uint8_t c; while (iLen) { c = *pData++; if (pOBD->iDCPin == 0xff) // 3-wire SPI, write D/C bit first { gpio_put(iMOSIPin, (pOBD->mode == MODE_DATA)); gpio_put(iSCKPin, HIGH); sleep_ms(0); gpio_put(iSCKPin, LOW); } if (c == 0 || c == 0xff) // quicker for all bits equal { gpio_put(iMOSIPin, (c & 1)); for (i = 0; i < 8; i++) { gpio_put(iSCKPin, HIGH); sleep_ms(0); gpio_put(iSCKPin, LOW); } } else { for (i = 0; i < 8; i++) { gpio_put(iMOSIPin, (c & 0x80) != 0); // MSB first gpio_put(iSCKPin, HIGH); c <<= 1; sleep_ms(0); gpio_put(iSCKPin, LOW); } } iLen--; } } /* SPI_BitBang() */ // Sets the D/C pin to data or command mode void obdSetDCMode(OBDISP *pOBD, int iMode) { if (pOBD->iDCPin == 0xff) // 9-bit SPI pOBD->mode = (uint8_t)iMode; else // set the GPIO line gpio_put(pOBD->iDCPin, (iMode == MODE_DATA)); } /* obdSetDCMode() */ static void obdWriteCommand2(OBDISP *pOBD, unsigned char c, unsigned char d) { unsigned char buf[4]; if (pOBD->com_mode == COM_I2C) { // I2C device buf[0] = 0x00; buf[1] = c; buf[2] = d; _I2CWrite(pOBD, buf, 3); } else { // must be SPI obdWriteCommand(pOBD, c); obdWriteCommand(pOBD, d); } } /* obdWriteCommand2() */ // // Sets the brightness (0=off, 255=brightest) // void obdSetContrast(OBDISP *pOBD, unsigned char ucContrast) { if (pOBD->type == LCD_HX1230) { // valid values are 0-31, so scale it ucContrast >>= 3; obdWriteCommand(pOBD, 0x80 + ucContrast); } else if (pOBD->type == LCD_NOKIA5110) { // we allow values of 0xb0-0xbf, so shrink the range ucContrast >>= 4; obdWriteCommand(pOBD, 0x21); // set advanced command mode obdWriteCommand(pOBD, 0xb0 | ucContrast); obdWriteCommand(pOBD, 0x20); // set simple command mode } else // OLEDs + UC1701 obdWriteCommand2(pOBD, 0x81, ucContrast); } /* obdSetContrast() */ // // Special case for Sharp Memory LCD // static void SharpDumpBuffer(OBDISP *pOBD, uint8_t *pBuffer) { int x, y; uint8_t c, ucInvert, *s, *d, ucStart; uint8_t ucLineBuf[56]; int iPitch = pOBD->width / 8; static uint8_t ucVCOM = 0; int iBit; uint8_t ucMask; ucInvert = (pOBD->invert) ? 0x00 : 0xff; gpio_put(pOBD->iCSPin, HIGH); // active high ucLineBuf[0] = 0; ucStart = 0x80; // write command if (ucVCOM) ucStart |= 0x40; // VCOM bit ucLineBuf[1] = ucStart; // this code assumes I2C, so the first byte is ignored _I2CWrite(pOBD, ucLineBuf, 2); // write command(01) + vcom(02) ucVCOM = !ucVCOM; // need to toggle this each transaction // We need to flip and invert the image in code because the Sharp memory LCD // controller only has the simplest of commands for data writing if (pOBD->flip) { for (y = 0; y < pOBD->height; y++) // we have to write the memory in the wrong direction { ucMask = 0x80 >> (y & 7); s = &pBuffer[pOBD->width - 1 + (pOBD->width * ((pOBD->height - 1 - y) >> 3))]; // point to last line first d = &ucLineBuf[2]; ucLineBuf[1] = ucMirror[y + 1]; // current line number for (x = 0; x < pOBD->width / 8; x++) { c = ucInvert; // we need to brute-force invert it for (iBit = 7; iBit >= 0; iBit--) { if (s[0] & ucMask) c ^= (1 << iBit); s--; } *d++ = c; } // for y // write this line to the display ucLineBuf[iPitch + 2] = 0; // end of line _I2CWrite(pOBD, ucLineBuf, iPitch + 3); } // for x } else // normal orientation { for (y = 0; y < pOBD->height; y++) // we have to write the memory in the wrong direction { ucMask = 1 << (y & 7); s = &pBuffer[pOBD->width * (y >> 3)]; // point to last line first d = &ucLineBuf[2]; ucLineBuf[1] = ucMirror[y + 1]; // current line number for (x = 0; x < pOBD->width / 8; x++) { c = ucInvert; for (iBit = 7; iBit >= 0; iBit--) { if (s[0] & ucMask) c ^= (1 << iBit); s++; } *d++ = c; } // for y // write this line to the display ucLineBuf[iPitch + 2] = 0; // end of line _I2CWrite(pOBD, ucLineBuf, iPitch + 3); } // for x } ucLineBuf[1] = 0; _I2CWrite(pOBD, ucLineBuf, 2); // final transfer gpio_put(pOBD->iCSPin, LOW); // de-activate } /* SharpDumpBuffer() */ // // Dump a screen's worth of data directly to the display // Try to speed it up by comparing the new bytes with the existing buffer // void obdDumpBuffer(OBDISP *pOBD, uint8_t *pBuffer) { int x, y, iPitch; int iLines, iCols; uint8_t bNeedPos; uint8_t *pSrc = pOBD->ucScreen; iPitch = pOBD->width; if (pOBD->type == LCD_VIRTUAL) // wrong function for this type of display return; if (pBuffer == NULL) // dump the internal buffer if none is given pBuffer = pOBD->ucScreen; if (pBuffer == NULL) return; // no backbuffer and no provided buffer if (pOBD->type >= SHARP_144x168) // special case for Sharp Memory LCD { SharpDumpBuffer(pOBD, pBuffer); return; } iLines = pOBD->height >> 3; iCols = pOBD->width >> 4; for (y = 0; y < iLines; y++) { bNeedPos = 1; // start of a new line means we need to set the position too for (x = 0; x < iCols; x++) // wiring library has a 32-byte buffer, so send 16 bytes so that the data prefix (0x40) can fit { if (pOBD->ucScreen == NULL || pBuffer == pSrc || memcmp(pSrc, pBuffer, 16) != 0) // doesn't match, need to send it { if (bNeedPos) // need to reposition output cursor? { bNeedPos = 0; obdCachedFlush(pOBD, 1); obdSetPosition(pOBD, x * 16, y, 1); } obdCachedWrite(pOBD, pBuffer, 16, 1); } else { bNeedPos = 1; // we're skipping a block, so next time will need to set the new position } pSrc += 16; pBuffer += 16; } // for x pSrc += (iPitch - pOBD->width); // for narrow displays, skip to the next line pBuffer += (iPitch - pOBD->width); } // for y obdCachedFlush(pOBD, 1); } /* obdDumpBuffer() */ // A valid CW or CCW move returns 1 or -1, invalid returns 0. static int obdMenuReadRotary(SIMPLEMENU *sm) { static int8_t rot_enc_table[] = {0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0}; uint8_t c; int rc = 0; sm->prevNextCode <<= 2; if (gpio_get(sm->u8Dn) == sm->iPressed) sm->prevNextCode |= 0x02; if (gpio_get(sm->u8Up) == sm->iPressed) sm->prevNextCode |= 0x01; sm->prevNextCode &= 0x0f; // If valid then store as 16 bit data. if (rot_enc_table[sm->prevNextCode]) { sm->store <<= 4; sm->store |= sm->prevNextCode; c = sm->store & 0xff; //if (store==0xd42b) return 1; //if (store==0xe817) return -1; if ((c & 0xf) == 2) rc = -1; else if ((c & 0xf) == 1) rc = 1; } // Serial.printf("store = 0x%04x, val = %d\n", sm->store, rc); return rc; } /* obdMenuReadRotary() */ // // Initialize the simple menu structure // int obdMenuInit(OBDISP *pOBD, SIMPLEMENU *sm, char **pText, int iFontSize, int bCenter, int btnUp, int btnDn, int btnEnter, int iPressedState, int bIsRotary) { int iLen; if (sm == NULL || pText == NULL) return 0; sm->pOBD = pOBD; sm->u8Up = btnUp; // pin numbers of the action buttons sm->u8Dn = btnDn; // or rotary A line sm->u8Enter = btnEnter; // or rotary B line sm->bIsRotary = bIsRotary; sm->u8BtnState = 0; // no active buttons to start sm->iPressed = iPressedState; // active state of a pressed button sm->bCenter = bCenter; sm->iFontSize = iFontSize; sm->pMenuText = pText; sm->iMenuIndex = 0; // start at first item sm->iDispX = 128; // DEBUG sm->iDispY = 64; // DEBUG sm->bOneButton = (btnDn == -1 && btnEnter == -1); // only 1 button defined sm->pfnCallback = NULL; sm->prevNextCode = 0; sm->store = 0; iLen = 0; while (pText[iLen] != NULL) { iLen++; } sm->iMenuLen = iLen - 1; // don't count the title text return 1; // success } /* obdMenuInit() */ // // Get the text and centering position for // a specific menu item // returns the X position // static int obdMenuGetItem(SIMPLEMENU *sm, int iItem, char *szText) { int x, cx, len; if (iItem > sm->iMenuLen) return -1; // invalid request if (sm->iFontSize == FONT_6x8) cx = 6; else if (sm->iFontSize == FONT_8x8) cx = 8; else cx = 16; strcpy(szText, sm->pMenuText[iItem]); if (sm->pfnCallback && iItem > 0) // don't add callback for menu title { strcat(szText, " "); strcat(szText, (*sm->pfnCallback)(iItem - 1)); } x = 0; if (sm->bCenter || iItem == 0) // always center the menu title { len = strlen(szText); x = (sm->iDispX - (len * cx)) / 2; } return x; } /* obdMenuGetItem() */ // // Erase the display and show the given menu // void obdMenuShow(SIMPLEMENU *sm, int iItem) { int i, x, iCount, iStart = 0; int iFirst, iLast; char szTemp[64]; iCount = (sm->iDispY / 8) - 1; // DEBUG - number of visible menu lines iFirst = iLast = iItem; if (iItem == -1) // show the entire menu { obdFill(sm->pOBD, 0, 0); x = obdMenuGetItem(sm, 0, szTemp); // get the title text obdMenuShowItem(sm->pOBD, x, 0, szTemp, 0, 0, sm->iFontSize, 0); // show title iFirst = 0; iLast = iCount - 1; } if (sm->iMenuIndex >= iCount) // needs to scroll up iStart = sm->iMenuIndex - (iCount - 1); if (sm->iMenuIndex < 0 || sm->iMenuIndex + iCount > sm->iMenuLen) { // invalid sm->iMenuIndex = 0; iStart = 0; } for (i = iFirst; i <= iLast && i + iStart < sm->iMenuLen; i++) // draw the visible menu lines { x = obdMenuGetItem(sm, i + iStart + 1, szTemp); if (x >= 0) // display if valid obdMenuShowItem(sm->pOBD, x, i + 1, szTemp, (i + iStart == sm->iMenuIndex), (iFirst == iLast), sm->iFontSize, (iFirst == iLast)); } if (iItem == -1) // now the display it in one shot obdDumpBuffer(sm->pOBD, NULL); } /* obdMenuShow() */ // // Set a callback function to return custom info/status // for each menu item // void obdMenuSetCallback(SIMPLEMENU *sm, SIMPLECALLBACK pfnCallBack) { if (sm != NULL) sm->pfnCallback = pfnCallBack; } /* obdMenuSetCallback() */ // // Display the text of a single menu item // optionally erases what's under it to prevent left-over text when the length changes // void obdMenuShowItem(OBDISP *pOBD, int x, int y, char *szText, int bInvert, int bErase, int iFontSize, int bRender) { static char *szBlank = (char *)" "; if (bErase) obdWriteString(pOBD, 0, 0, y, szBlank, iFontSize, 0, bRender); // erase old info obdWriteString(pOBD, 0, x, y, szText, iFontSize, bInvert, bRender); } /* obdMenuShowItem() */ // // Flash a menu item when it is selected // static void obdMenuFlash(SIMPLEMENU *sm, int iItem) { int x, y, i, iCount; char szTemp[64]; iCount = (sm->iDispY / 8) - 1; // DEBUG - number of visible menu lines y = iItem + 1; if (y > iCount) // max bottom line y = iCount; x = obdMenuGetItem(sm, iItem + 1, szTemp); if (x < 0) return; // invalid request for (i = 0; i < 3; i++) { obdMenuShowItem(sm->pOBD, x, y, szTemp, 0, 0, sm->iFontSize, 1); // show non-inverted sleep_ms(200); obdMenuShowItem(sm->pOBD, x, y, szTemp, 1, 0, sm->iFontSize, 1); // show inverted sleep_ms(200); } } /* obdMenuFlash() */ // // Change the menu index incrementally // redraws the minimum amount of screen to show the new info // (this prevents flicker/flash and saves battery life) // returns the new menu index // int obdMenuDelta(SIMPLEMENU *sm, int iDelta) { int i, x, iNewIndex, iCount; int iStart1, iStart2; char szTemp[64]; if (iDelta == 0) return sm->iMenuIndex; // nothing to do iNewIndex = sm->iMenuIndex + iDelta; if (!sm->bOneButton && (iNewIndex < 0 || iNewIndex >= sm->iMenuLen)) // no change possible, exit return sm->iMenuIndex; // unchanged // If we are using a single button, wrap around the ends if (iNewIndex < 0) iNewIndex = (sm->iMenuLen - 1); else if (iNewIndex > sm->iMenuLen - 1) iNewIndex = 0; iCount = (sm->iDispY / 8) - 1; // DEBUG - number of visible menu lines iStart1 = iStart2 = 0; if (sm->iMenuIndex > iCount - 1) iStart1 = sm->iMenuIndex - (iCount - 1); if (iNewIndex > iCount - 1) // needs to scroll up iStart2 = iNewIndex - (iCount - 1); if (iStart1 != iStart2) // need to redraw all items { for (i = 0; i < iCount; i++) { x = obdMenuGetItem(sm, i + iStart2 + 1, szTemp); if (x >= 0) obdMenuShowItem(sm->pOBD, x, i + 1, szTemp, (i + iStart2 == iNewIndex), 1, sm->iFontSize, 0); } obdDumpBuffer(sm->pOBD, NULL); } else // need to redraw only the new and old items { i = sm->iMenuIndex - iStart1; x = obdMenuGetItem(sm, sm->iMenuIndex + 1, szTemp); if (x >= 0) obdMenuShowItem(sm->pOBD, x, i + 1, szTemp, 0, 0, sm->iFontSize, 1); i = iNewIndex - iStart2; x = obdMenuGetItem(sm, iNewIndex + 1, szTemp); if (x >= 0) obdMenuShowItem(sm->pOBD, x, i + 1, szTemp, 1, 0, sm->iFontSize, 1); } sm->iMenuIndex = iNewIndex; return iNewIndex; } /* obdMenuDelta() */ // // With the given setup, check for button presses // and act accordingly // returns -1 for normal interactions and the menu item index if the user presses the ENTER button // // time in milliseconds for a long press #define MENU_LONG_PRESS 600 int obdMenuRun(SIMPLEMENU *sm) { uint8_t buttons = 0; unsigned long ul; int iDelta, rc = -1; if (sm->bIsRotary) { // read the rotary encoder if (gpio_get(sm->u8Enter) == sm->iPressed) { buttons |= 1; // pressed if (buttons != sm->u8BtnState) rc = sm->iMenuIndex; // user pressed ENTER, return current menu index } else { // check for rotary encoder activity iDelta = obdMenuReadRotary(sm); obdMenuDelta(sm, iDelta); } sm->u8BtnState = buttons; } else { // check the button states if (gpio_get(sm->u8Up) == sm->iPressed) buttons |= 1; if (buttons != sm->u8BtnState) // something changed { if (sm->bOneButton) // different logic for a single button system { if (sm->u8BtnState == 0 && buttons == 1) // up button just pressed { sm->ulPressTime = to_ms_since_boot(get_absolute_time()); // record the press time } if (sm->u8BtnState == 1 && buttons == 0) // up button just released { ul = to_ms_since_boot(get_absolute_time()) - sm->ulPressTime; if (ul < MENU_LONG_PRESS) // short press = navigate menu obdMenuDelta(sm, 1); else // treat it like a long press rc = sm->iMenuIndex; // action } } else // 3 button setup (UP/DOWN/ENTER) { if (gpio_get(sm->u8Dn) == sm->iPressed) buttons |= 2; if (gpio_get(sm->u8Enter) == sm->iPressed) rc = sm->iMenuIndex; // user pressed ENTER, return current menu index if ((sm->u8BtnState & 1) == 0 && (buttons & 1) == 1) // Up button pressed { obdMenuDelta(sm, -1); } if ((sm->u8BtnState & 2) == 0 && (buttons & 2) == 2) // Down button pressed { obdMenuDelta(sm, 1); } } sm->u8BtnState = buttons; // save the latest state } } if (rc != -1) // selected obdMenuFlash(sm, sm->iMenuIndex); return rc; } /* obdMenuRun() */ ================================================ FILE: lib/OneBitDisplay/OneBitDisplay.h ================================================ #ifndef __ONEBITDISPLAY__ #define __ONEBITDISPLAY__ #include #include "hardware/i2c.h" // Proportional font data taken from Adafruit_GFX library /// Font data stored PER GLYPH typedef struct { uint16_t bitmapOffset; ///< Pointer into GFXfont->bitmap uint8_t width; ///< Bitmap dimensions in pixels uint8_t height; ///< Bitmap dimensions in pixels uint8_t xAdvance; ///< Distance to advance cursor (x axis) int8_t xOffset; ///< X dist from cursor pos to UL corner int8_t yOffset; ///< Y dist from cursor pos to UL corner } GFXglyph; /// Data stored for FONT AS A WHOLE typedef struct { uint8_t *bitmap; ///< Glyph bitmaps, concatenated GFXglyph *glyph; ///< Glyph array uint8_t first; ///< ASCII extents (first char) uint8_t last; ///< ASCII extents (last char) uint8_t yAdvance; ///< Newline distance (y axis) } GFXfont; typedef struct obdstruct { uint8_t oled_addr; // requested address or 0xff for automatic detection uint8_t wrap, flip, invert, type; uint8_t *ucScreen; int iCursorX, iCursorY; int width, height; int iScreenOffset; BBI2C bbi2c; uint8_t com_mode; // communication mode (I2C / SPI) uint8_t mode; // data/command mode for 9-bit SPI uint8_t iDCPin, iMOSIPin, iCLKPin, iCSPin; uint8_t iLEDPin; // backlight uint8_t bBitBang; } OBDISP; typedef char * (*SIMPLECALLBACK)(int iMenuItem); typedef struct smenu { uint8_t u8Up, u8Dn, u8Enter; // button pin numbers uint8_t bIsRotary; // rotary encoder or up/down buttons? uint8_t bCenter; // center all menu text if true uint8_t u8BtnState; // state of all buttons uint8_t bOneButton; // flag indicating the menu operates from a single button uint8_t prevNextCode; // rotary encoder state machine int iMenuIndex; // current menu index int iMenuLen; // number of entries in the menu (calculated at startup) char **pMenuText; // string array with menu title and text int iFontSize; int iPressed; // polarity of button pressed state unsigned long ulPressTime; // time in millis when button was pressed int iDispX, iDispY; // display width/height in pixels SIMPLECALLBACK pfnCallback; OBDISP *pOBD; // display structureme uint16_t store; } SIMPLEMENU; // Make the Linux library interface C instead of C++ #if defined(_LINUX_) && defined(__cplusplus) extern "C" { #endif #if !defined(BITBANK_LCD_MODES) #define BITBANK_LCD_MODES typedef enum { MODE_DATA = 0, MODE_COMMAND } DC_MODE; #endif typedef enum { COM_I2C = 0, COM_SPI, } COM_MODE; typedef enum { ROT_0 = 0, ROT_90, ROT_180, ROT_270 } FONT_ROTATION; // These are defined the same in my SPI_LCD library #ifndef SPI_LCD_H // 5 possible font sizes: 8x8, 16x32, 6x8, 12x16 (stretched from 6x8 with smoothing), 16x16 (stretched from 8x8) enum { FONT_6x8 = 0, FONT_8x8, FONT_12x16, FONT_16x16, FONT_16x32, FONT_COUNT }; // For backwards compatibility, keep the old names valid #define FONT_NORMAL FONT_8x8 #define FONT_SMALL FONT_6x8 #define FONT_STRETCHED FONT_16x16 #define FONT_LARGE FONT_16x32 #endif // Display type for init function enum { OLED_128x128 = 1, OLED_128x32, OLED_128x64, OLED_132x64, OLED_64x128, OLED_64x32, OLED_96x16, OLED_72x40, LCD_UC1701, LCD_UC1609, LCD_HX1230, LCD_NOKIA5110, LCD_VIRTUAL, SHARP_144x168, SHARP_400x240 }; // Rotation and flip angles to draw tiles enum { ANGLE_0=0, ANGLE_90, ANGLE_180, ANGLE_270, ANGLE_FLIPX, ANGLE_FLIPY }; // Return value from obd obdI2CInit() enum { OLED_NOT_FOUND = -1, // no display found OLED_SSD1306_3C, // SSD1306 found at 0x3C OLED_SSD1306_3D, // SSD1306 found at 0x3D OLED_SH1106_3C, // SH1106 found at 0x3C OLED_SH1106_3D, // SH1106 found at 0x3D OLED_SH1107_3C, // SH1107 OLED_SH1107_3D, LCD_OK, LCD_ERROR }; // // Create a virtual display of any size // The memory buffer must be provided at the time of creation // void obdCreateVirtualDisplay(OBDISP *pOBD, int width, int height, uint8_t *buffer); // Constants for the obdCopy() function // Output format options - #define OBD_LSB_FIRST 0x001 #define OBD_MSB_FIRST 0x002 #define OBD_VERT_BYTES 0x004 #define OBD_HORZ_BYTES 0x008 // Orientation options - #define OBD_ROTATE_90 0x010 #define OBD_FLIP_VERT 0x020 #define OBD_FLIP_HORZ 0x040 #define OBD_INVERT 0x080 // Copy the current bitmap buffer from its native form (LSB_FIRST, VERTICAL_BYTES) to the requested form // A copy of the same format will just do a memcpy int obdCopy(OBDISP *pOBD, int iFlags, uint8_t *pDestination); // // Draw the contents of a memory buffer onto a display // The sub-window will be clipped if it specifies too large an area // for the destination display. The source OBDISP structure must have // a valid back buffer defined // The top and bottom destination edges will be drawn on byte boundaries (8 rows) // The source top/bot edges can be on pixel boundaries // void obdDumpWindow(OBDISP *pOBDSrc, OBDISP *pOBDDest, int srcx, int srcy, int destx, int desty, int width, int height); // // Write a single line to a Sharp memory LCD // You must provide the exact number of bytes needed for a complete line // e.g. for the 144x168 display, pSrc must provide 144 pixels (18 bytes) // void obdWriteLCDLine(OBDISP *pOBD, uint8_t *pSrc, int iLine); // // Initializes the display controller into "page mode" on I2C // If SDAPin and SCLPin are not -1, then bit bang I2C on those pins // Otherwise use the Wire library. // If you don't need to use a separate reset pin, set it to -1 // int obdI2CInit(OBDISP *pOBD, int iType, int iAddr, int bFlip, int bInvert, int bWire, int iSDAPin, int iSCLPin, i2c_inst_t *picoI2C, int iResetPin, int32_t iSpeed); // // Initialize an SPI version of the display // void obdSPIInit(OBDISP *pOBD, int iType, int iDC, int iCS, int iReset, int iMOSI, int iCLK, int iLED, int bFlip, int bInvert, int iBitBang, int32_t iSpeed); // // Provide or revoke a back buffer for your OLED graphics // This allows you to manage the RAM used by ss_oled on tiny // embedded platforms like the ATmega series // Pass NULL to revoke the buffer. Make sure you provide a buffer // large enough for your display (e.g. 128x64 needs 1K - 1024 bytes) // void obdSetBackBuffer(OBDISP *pOBD, uint8_t *pBuffer); // // Sets the brightness (0=off, 255=brightest) // void obdSetContrast(OBDISP *pOBD, unsigned char ucContrast); // // Load a 1-bpp Windows bitmap // Pass the pointer to the beginning of the BMP file // First pass version assumes a full screen bitmap // int obdLoadBMP(OBDISP *pOBD, uint8_t *pBMP, int x, int y, int bInvert); // // Power up/down the display // useful for low power situations // void obdPower(OBDISP *pOBD, int bOn); // // Set the current cursor position // The column represents the pixel column (0-127) // The row represents the text row (0-7) // void obdSetCursor(OBDISP *pOBD, int x, int y); // // Turn text wrap on or off for the obdWriteString() function // void obdSetTextWrap(OBDISP *pOBD, int bWrap); // // Draw a string of normal (8x8), small (6x8) or large (16x32) characters // At the given col+row with the given scroll offset. The scroll offset allows you to // horizontally scroll text which does not fit on the width of the display. The offset // represents the pixels to skip when drawing the text. An offset of 0 starts at the beginning // of the text. // The system remembers where the last text was written (the cursor position) // To continue writing from the last position, set the x,y values to -1 // The text can optionally wrap around to the next line by calling oledSetTextWrap(true); // otherwise text which would go off the right edge will not be drawn and the cursor will // be left "off screen" until set to a new position explicitly // // Returns 0 for success, -1 for invalid parameter // int obdWriteString(OBDISP *pOBD, int iScrollX, int x, int y, char *szMsg, int iSize, int bInvert, int bRender); // // Draw a string with a fractional scale in both dimensions // the scale is a 16-bit integer with and 8-bit fraction and 8-bit mantissa // To draw at 1x scale, set the scale factor to 256. To draw at 2x, use 512 // The output must be drawn into a memory buffer, not directly to the display // The string can be drawn in one of 4 rotations (ROT_0, ROT_90, ROT_180, ROT_270) // int obdScaledString(OBDISP *pOBD, int x, int y, char *szMsg, int iSize, int bInvert, int iXScale, int iYScale, int iRotation); // // Draw a string in a proportional font you supply // Requires a back buffer // int obdWriteStringCustom(OBDISP *pOBD, GFXfont *pFont, int x, int y, char *szMsg, uint8_t ucColor); // // Get the width of text in a custom font // void obdGetStringBox(GFXfont *pFont, char *szMsg, int *width, int *top, int *bottom); // // Fill the frame buffer with a byte pattern // e.g. all off (0x00) or all on (0xff) // void obdFill(OBDISP *pOBD, unsigned char ucData, int bRender); // // Set (or clear) an individual pixel // The local copy of the frame buffer is used to avoid // reading data from the display controller // (which isn't possible in most configurations) // This function needs the USE_BACKBUFFER macro to be defined // otherwise, new pixels will erase old pixels within the same byte // int obdSetPixel(OBDISP *pOBD, int x, int y, unsigned char ucColor, int bRender); // // Dump an entire custom buffer to the display // useful for custom animation effects // void obdDumpBuffer(OBDISP *pOBD, uint8_t *pBuffer); // // Render a window of pixels from a provided buffer or the library's internal buffer // to the display. The row values refer to byte rows, not pixel rows due to the memory // layout of OLEDs. Pass a src pointer of NULL to use the internal backing buffer // returns 0 for success, -1 for invalid parameter // int obdDrawGFX(OBDISP *pOBD, uint8_t *pSrc, int iSrcCol, int iSrcRow, int iDestCol, int iDestRow, int iWidth, int iHeight, int iSrcPitch); // // Draw a line between 2 points // void obdDrawLine(OBDISP *pOBD, int x1, int y1, int x2, int y2, uint8_t ucColor, int bRender); // // Play a frame of animation data // The animation data is assumed to be encoded for a full frame of the display // Given the pointer to the start of the compressed data, // it returns the pointer to the start of the next frame // Frame rate control is up to the calling program to manage // When it finishes the last frame, it will start again from the beginning // uint8_t * obdPlayAnimFrame(OBDISP *pOBD, uint8_t *pAnimation, uint8_t *pCurrent, int iLen); void obdWriteCommand(OBDISP *pOBD, unsigned char c); void obdSetPosition(OBDISP *pOBD, int x, int y, int bRender); void obdWriteDataBlock(OBDISP *pOBD, unsigned char *ucBuf, int iLen, int bRender); // // Scroll the internal buffer by 1 scanline (up/down) // width is in pixels, lines is group of 8 rows // Returns 0 for success, -1 for invalid parameter // int obdScrollBuffer(OBDISP *pOBD, int iStartCol, int iEndCol, int iStartRow, int iEndRow, int bUp); // // Draw a sprite of any size in any position // If it goes beyond the left/right or top/bottom edges // it's trimmed to show the valid parts // This function requires a back buffer to be defined // The priority color (0 or 1) determines which color is painted // when a 1 is encountered in the source image. // e.g. when 0, the input bitmap acts like a mask to clear // the destination where bits are set. // void obdDrawSprite(OBDISP *pOBD, uint8_t *pSprite, int cx, int cy, int iPitch, int x, int y, uint8_t iPriority); // // Draw a 16x16 tile in any of 4 rotated positions // Assumes input image is laid out like "normal" graphics with // the MSB on the left and 2 bytes per line // On AVR, the source image is assumed to be in FLASH memory // The function can draw the tile on byte boundaries, so the x value // can be from 0 to 112 and y can be from 0 to 6 // void obdDrawTile(OBDISP *pOBD, const uint8_t *pTile, int x, int y, int iRotation, int bInvert, int bRender); // // Draw an outline or filled ellipse // void obdEllipse(OBDISP *pOBD, int iCenterX, int iCenterY, int32_t iRadiusX, int32_t iRadiusY, uint8_t ucColor, uint8_t bFilled); // // Draw an outline or filled ellipse with more precision // void obdPreciseEllipse(OBDISP *pOBD, int x, int y, int32_t iRadiusX, int32_t iRadiusY, uint8_t ucColor, uint8_t bFilled); // // Draw an outline or filled rectangle // void obdRectangle(OBDISP *pOBD, int x1, int y1, int x2, int y2, uint8_t ucColor, uint8_t bFilled); // // Turn the LCD backlight on or off // void obdBacklight(OBDISP *pODB, int bOn); // // Menu functions // // Initialize the simple menu structure // int obdMenuInit(OBDISP *pOBD, SIMPLEMENU *sm, char **pText, int iFontSize, int bCenter, int btnUp, int btnDn, int btnEnter, int iPressedState, int bIsRotary); // // Erase the display and show the given menu // void obdMenuShow(SIMPLEMENU *sm, int iItem); // // Set a callback function to return custom info/status // for each menu item // void obdMenuSetCallback(SIMPLEMENU *sm, SIMPLECALLBACK pfnCallBack); // // Display the text of a single menu item // optionally erases what's under it to prevent left-over text when the length changes // void obdMenuShowItem(OBDISP *pOBD, int x, int y, char *szText, int bInvert, int bErase, int iFontSize, int bRender); // // Change the menu index incrementally // redraws the minimum amount of screen to show the new info // (this prevents flicker/flash and saves battery life) // returns the new menu index // int obdMenuDelta(SIMPLEMENU *sm, int iDelta); // // With the given setup, check for button presses // and act accordingly // returns -1 for normal interactions and the menu item index if the user presses the ENTER button // int obdMenuRun(SIMPLEMENU *sm); #if defined(_LINUX_) && defined(__cplusplus) } #endif // _LINUX_ #endif // __ONEBITDISPLAY__ ================================================ FILE: lib/OneBitDisplay/README.md ================================================ OneBitDisplay (1-bpp OLED/LCD library)
----------------------------------- Project started 3/23/2020
Copyright (c) 2020 BitBank Software, Inc.
Written by Larry Bank
bitbank@pobox.com

![OneBitDisplay](/demo.jpg?raw=true "OneBitDisplay")
The purpose of this code is to easily control monochrome (1-bit per pixel) OLED and LCD displays. The displays can be connected to the traditional I2C or SPI bus, or you can use GPIO pins to bit bang the signals.

On AVR microcontrollers, there is an optimized option to speed up access to the GPIO pins to allow speeds which match or exceed normal I2C speeds. The pins are numbered with the Port letter as the first digit followed by the bit number. For example, To use bit 0 of Port B, you would reference pin number 0xb0.

Includes the unique feature that the I2C init function can optionally detect the display address (0x3C or 0x3D) and the controller type (SSD1306, SH1106 or SH1107).

I try to support as many OLEDs as I can. I was able to justify buying a bunch of different sized SSD1306 displays because they're around $2 each. A generous patron donated money so that I could purchase Pimoroni's 128x128 OLED and add support for it. It uses the SH1107 controller and behaves very similarly to the SH1106.
Features:
---------
- Supports any number of simultaneous displays of any type (mix and match)
- Optionally detect the display address and type (I2C only)
- Supports 72x40, 96x16, 64x32, 128x32, 128x64, 64x128 (SH1107), 128x128 (SH1107) and 132x64 (SH1106) OLED display sizes
- Supports 96x68 HX1230, 84x48 Nokia 5110 and 128x64 ST7567/UC1701 mono LCDs
- Supports 144x168 and 400x240 Sharp Memory LCDs
- Virtual displays of any size which can be drawn across multiple physical displays - Flexible copy function can convert the internal pixel format to any output format and orientation - Drive displays from I2C, SPI or any GPIO pins (virtual I2C/SPI)
- Includes 5 sizes of fixed fonts (6x8, 8x8, 12x16, 16x16, 16x32)
- Text drawing at any fractional scale (e.g. 1.25x), and any of 4 directions/rotations
- Can use Adafruit_GFX format bitmap fonts (proportional and fixed)
- Deferred rendering allows preparing a back buffer, then displaying it (usually faster)
- Text scrolling features (vertical and horizontal)
- Text cursor position with optional line wrap
- A function to load a Windows BMP file
- Pixel drawing on SH1106/7 without needing backing RAM
- Optimized Bresenham line drawing
- Optimized Bresenham outline and filled ellipse drawing
- Optimized outline and filled rectangle drawing
- Optional backing RAM (needed for some text and drawing functions)
- 16x16 Tile/Sprite drawing at any angle.
- Run full frame animations at high frame rates with a simple API

This code depends on the BitBang_I2C library. You can download it here:
https://github.com/bitbank2/BitBang_I2C
See the Wiki for help getting started
https://github.com/bitbank2/OneBitDisplay/wiki

![Fonts](/fonts_opt.jpg?raw=true "fonts") A few words about fonts
-----------------------
The library includes 3 fixed fonts (6x8, 8x8 and 16x32). The 16x32 font is disabled when compiling for AVR targets (e.g. Arduino Uno) to save FLASH program space. The other 2 fonts offer 2x stretched versions (12x16 from 6x8 and 16x16 from 8x8). A simple smoothing algorithm is applied to the stretched 6x8 font to make it look better. In the photo above are the first 4 font sizes shown on a 128x64 yellow OLED display. Only 96 ASCII characters are defined per font to save space. To use more elaborate fonts with more extensive character support, use Adafruit_GFX format bitmap fonts with the `obdWriteStringCustom()` function.
![Sharp Memory LCD](/sharp_lcd.jpg?raw=true "Sharp_LCD") Sharp Memory LCD Support
------------------------
New - support for the Sharp 144x168 and 400x240 memory LCDs. These are a different type of LCD that have a high refresh rate and low power usage. They cost quite a bit more than normal LCDs. They require a memory back buffer to use the drawing functions due to the way data is written to them one line at a time. I've also added a specific function if you would like to skip the back buffer - `obdWriteLCDLine()`. It allows you to write a single line of pixels without needing any additional memory. Please see the Wiki for more details.
Instructions for use:
---------------------
Start by initializing the library. Either using hardware I2C, bit-banged I2C or SPI to talk to the display. For I2C, the address of the display will be detected automatically (either 0x3c or 0x3d) or you can specify it. The typical MCU only allows setting the I2C speed up to 400Khz, but the SSD1306 displays can handle a much faster signal. With the bit-bang code, you can usually specify a stable 800Khz clock and with Cortex-M0 targets, the hardware I2C can be told to be almost any speed, but the displays I've tested tend to stop working beyond 1.6Mhz.

After initializing the display you can begin drawing text or graphics on it. The final parameter of all of the drawing functions is a render flag. When true, the graphics will be sent to the internal backing buffer (when available) and sent to the display. You optionally pass the library a backing buffer (if your MCU has enough RAM) with the obdSetBackBuffer() function. When the render flag is false, the graphics will only be drawn into the internal buffer. Once you're ready to send the pixels to the display, call obdDumpBuffer(NULL) and it will copy the internal buffer in its entirety to the display.

The text drawing function now has a scroll offset parameter. This tells it how many pixels of the text to skip before drawing the text at the given destination coordinates. For example, if you pass a value of 20 for the scroll offset and are using an 8-pixel wide font (FONT_8x8), the first two and a half characters will not be drawn; the second half of the third and subsequent characters will be drawn starting at the x/y you specified. This allows you to create a scrolling text effect by repeatedly calling the oledWriteString() function with progressively larger scroll offset values to make the text scroll from right to left.

If you find this code useful, please consider sending a donation or becomming a Github sponsor. [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SR4F44J2UR8S4) ================================================ FILE: lib/OneBitDisplay/fonts/FreeSerif12pt7b.h ================================================ const uint8_t FreeSerif12pt7bBitmaps[] = { 0xFF, 0xFE, 0xA8, 0x3F, 0xCF, 0x3C, 0xF3, 0x8A, 0x20, 0x0C, 0x40, 0xC4, 0x08, 0x40, 0x8C, 0x08, 0xC7, 0xFF, 0x18, 0x81, 0x88, 0x10, 0x81, 0x08, 0xFF, 0xE1, 0x18, 0x31, 0x03, 0x10, 0x31, 0x02, 0x10, 0x04, 0x07, 0xC6, 0x5B, 0x12, 0xC4, 0xB1, 0x0F, 0x41, 0xF0, 0x1E, 0x01, 0xE0, 0x58, 0x13, 0x84, 0xE1, 0x3C, 0x4F, 0x96, 0x3F, 0x01, 0x00, 0x00, 0x04, 0x03, 0x83, 0x03, 0x9F, 0x81, 0xC2, 0x20, 0x60, 0x90, 0x38, 0x24, 0x0C, 0x12, 0x03, 0x0D, 0x00, 0xC6, 0x47, 0x9E, 0x23, 0x10, 0x09, 0x84, 0x04, 0xE1, 0x03, 0x30, 0x40, 0x8C, 0x20, 0x43, 0x08, 0x10, 0xC4, 0x08, 0x1E, 0x00, 0x03, 0xC0, 0x02, 0x30, 0x03, 0x08, 0x01, 0x84, 0x00, 0xC4, 0x00, 0x7C, 0xF8, 0x1C, 0x38, 0x1E, 0x08, 0x33, 0x0C, 0x31, 0xC4, 0x10, 0x74, 0x18, 0x3A, 0x0C, 0x0E, 0x07, 0x03, 0x83, 0xC3, 0xE2, 0x7E, 0x3E, 0xFF, 0xA0, 0x04, 0x21, 0x08, 0x61, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC1, 0x04, 0x18, 0x20, 0x40, 0x81, 0x81, 0x02, 0x04, 0x18, 0x20, 0x83, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0x86, 0x10, 0x84, 0x20, 0x30, 0xB3, 0xD7, 0x54, 0x38, 0x7C, 0xD3, 0x30, 0x30, 0x10, 0x04, 0x00, 0x80, 0x10, 0x02, 0x00, 0x41, 0xFF, 0xC1, 0x00, 0x20, 0x04, 0x00, 0x80, 0x10, 0x00, 0xDF, 0x95, 0x00, 0xFC, 0xFC, 0x06, 0x0C, 0x10, 0x60, 0xC1, 0x06, 0x0C, 0x10, 0x60, 0xC1, 0x06, 0x0C, 0x10, 0x60, 0xC0, 0x1E, 0x0C, 0xC6, 0x19, 0x86, 0xC0, 0xB0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xD8, 0x66, 0x18, 0xCC, 0x1E, 0x00, 0x11, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0xFC, 0x1E, 0x18, 0xC4, 0x1A, 0x06, 0x01, 0x80, 0x60, 0x10, 0x0C, 0x02, 0x01, 0x00, 0xC0, 0x60, 0x30, 0x18, 0x1F, 0xF8, 0x1E, 0x18, 0xE8, 0x18, 0x06, 0x01, 0x00, 0x80, 0xF0, 0x7E, 0x03, 0xC0, 0x70, 0x0C, 0x03, 0x00, 0xC0, 0x6E, 0x11, 0xF8, 0x01, 0x00, 0xC0, 0x70, 0x2C, 0x0B, 0x04, 0xC2, 0x30, 0x8C, 0x43, 0x20, 0xC8, 0x33, 0xFF, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x00, 0x03, 0xF1, 0x00, 0x40, 0x18, 0x0F, 0x80, 0xF8, 0x0E, 0x01, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x20, 0x1B, 0x8C, 0x7C, 0x00, 0x01, 0xC3, 0xC1, 0xC0, 0xC0, 0x70, 0x18, 0x0E, 0xF3, 0xCE, 0xC1, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xD8, 0x36, 0x08, 0xC6, 0x1E, 0x00, 0x3F, 0xD0, 0x38, 0x08, 0x06, 0x01, 0x80, 0x40, 0x10, 0x0C, 0x02, 0x00, 0x80, 0x20, 0x10, 0x04, 0x01, 0x00, 0x80, 0x20, 0x1F, 0x18, 0x6C, 0x0F, 0x03, 0xC0, 0xF8, 0x67, 0x30, 0xF0, 0x1E, 0x09, 0xE6, 0x3B, 0x07, 0xC0, 0xF0, 0x3C, 0x0D, 0x86, 0x1F, 0x00, 0x1E, 0x08, 0xC6, 0x1B, 0x02, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xE0, 0xDC, 0x73, 0xEC, 0x06, 0x01, 0x80, 0xC0, 0x70, 0x38, 0x38, 0x18, 0x00, 0xFC, 0x00, 0x3F, 0xCC, 0xC0, 0x00, 0x00, 0x06, 0x77, 0x12, 0x40, 0x00, 0x00, 0x07, 0x01, 0xE0, 0x78, 0x1E, 0x07, 0x00, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x07, 0x00, 0x10, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 0x0E, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x30, 0x0E, 0x07, 0x81, 0xE0, 0x78, 0x0E, 0x00, 0x00, 0x00, 0x7C, 0x86, 0x83, 0xC3, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x08, 0x10, 0x10, 0x00, 0x00, 0x30, 0x30, 0x30, 0x03, 0xF0, 0x06, 0x06, 0x06, 0x00, 0x86, 0x00, 0x26, 0x0E, 0xD3, 0x0C, 0xC7, 0x0C, 0x63, 0x84, 0x31, 0xC6, 0x18, 0xE3, 0x08, 0x71, 0x8C, 0x4C, 0xC6, 0x46, 0x3D, 0xC1, 0x80, 0x00, 0x30, 0x10, 0x07, 0xF0, 0x00, 0x80, 0x00, 0x60, 0x00, 0x70, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x13, 0x00, 0x19, 0xC0, 0x08, 0x60, 0x04, 0x38, 0x04, 0x0C, 0x03, 0xFF, 0x03, 0x03, 0x81, 0x00, 0xE1, 0x80, 0x70, 0xC0, 0x3D, 0xF0, 0x3F, 0xFF, 0x83, 0x0C, 0x30, 0x63, 0x06, 0x30, 0x63, 0x06, 0x30, 0xC3, 0xF0, 0x30, 0xE3, 0x06, 0x30, 0x33, 0x03, 0x30, 0x33, 0x07, 0x30, 0xEF, 0xFC, 0x07, 0xE2, 0x38, 0x3C, 0xC0, 0x3B, 0x00, 0x36, 0x00, 0x38, 0x00, 0x30, 0x00, 0x60, 0x00, 0xC0, 0x01, 0x80, 0x03, 0x00, 0x03, 0x00, 0x06, 0x00, 0x06, 0x00, 0x47, 0x03, 0x03, 0xF8, 0xFF, 0xC0, 0x30, 0x78, 0x30, 0x1C, 0x30, 0x0E, 0x30, 0x06, 0x30, 0x03, 0x30, 0x03, 0x30, 0x03, 0x30, 0x03, 0x30, 0x03, 0x30, 0x03, 0x30, 0x06, 0x30, 0x06, 0x30, 0x0C, 0x30, 0x78, 0xFF, 0xC0, 0xFF, 0xFC, 0xC0, 0x33, 0x00, 0x4C, 0x00, 0x30, 0x00, 0xC0, 0x43, 0x03, 0x0F, 0xFC, 0x30, 0x30, 0xC0, 0x43, 0x00, 0x0C, 0x00, 0x30, 0x08, 0xC0, 0x23, 0x03, 0xBF, 0xFE, 0xFF, 0xFC, 0xC0, 0x33, 0x00, 0x4C, 0x00, 0x30, 0x00, 0xC0, 0x43, 0x03, 0x0F, 0xFC, 0x30, 0x30, 0xC0, 0x43, 0x00, 0x0C, 0x00, 0x30, 0x00, 0xC0, 0x03, 0x00, 0x3F, 0x00, 0x07, 0xE4, 0x1C, 0x3C, 0x30, 0x0C, 0x60, 0x0C, 0x60, 0x04, 0xC0, 0x00, 0xC0, 0x00, 0xC0, 0x3F, 0xC0, 0x0C, 0xC0, 0x0C, 0xC0, 0x0C, 0x60, 0x0C, 0x60, 0x0C, 0x30, 0x0C, 0x1C, 0x1C, 0x07, 0xE0, 0xFC, 0x3F, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x3F, 0xFC, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0x30, 0x0C, 0xFC, 0x3F, 0xFC, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x3F, 0x3F, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xC8, 0xF0, 0xFC, 0xFE, 0x30, 0x38, 0x30, 0x20, 0x30, 0x40, 0x30, 0x80, 0x33, 0x00, 0x36, 0x00, 0x3E, 0x00, 0x37, 0x00, 0x33, 0x80, 0x31, 0xC0, 0x30, 0xE0, 0x30, 0x70, 0x30, 0x38, 0x30, 0x3C, 0xFC, 0x7F, 0xFC, 0x00, 0x60, 0x00, 0xC0, 0x01, 0x80, 0x03, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x30, 0x00, 0x60, 0x00, 0xC0, 0x01, 0x80, 0x03, 0x00, 0x26, 0x00, 0x8C, 0x07, 0x7F, 0xFE, 0xF8, 0x01, 0xE7, 0x00, 0x70, 0xE0, 0x0E, 0x1E, 0x03, 0xC2, 0xC0, 0x58, 0x5C, 0x1B, 0x09, 0x82, 0x61, 0x38, 0x4C, 0x27, 0x11, 0x84, 0x72, 0x30, 0x8E, 0xC6, 0x10, 0xD0, 0xC2, 0x1E, 0x18, 0x41, 0x83, 0x1C, 0x30, 0x67, 0xC4, 0x3F, 0xF0, 0x1F, 0x78, 0x0E, 0x3C, 0x04, 0x3E, 0x04, 0x2E, 0x04, 0x27, 0x04, 0x23, 0x84, 0x23, 0xC4, 0x21, 0xE4, 0x20, 0xE4, 0x20, 0x74, 0x20, 0x3C, 0x20, 0x1C, 0x20, 0x0C, 0x70, 0x0C, 0xF8, 0x04, 0x07, 0xC0, 0x30, 0x60, 0xC0, 0x63, 0x00, 0x66, 0x00, 0xD8, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0x1B, 0x00, 0x66, 0x00, 0xC6, 0x03, 0x06, 0x0C, 0x03, 0xE0, 0xFF, 0x83, 0x0E, 0x30, 0x73, 0x03, 0x30, 0x33, 0x03, 0x30, 0x63, 0x0E, 0x3F, 0x83, 0x00, 0x30, 0x03, 0x00, 0x30, 0x03, 0x00, 0x30, 0x0F, 0xC0, 0x0F, 0xE0, 0x18, 0x30, 0x30, 0x18, 0x60, 0x0C, 0x60, 0x0C, 0xC0, 0x06, 0xC0, 0x06, 0xC0, 0x06, 0xC0, 0x06, 0xC0, 0x06, 0xC0, 0x06, 0x60, 0x0C, 0x60, 0x0C, 0x30, 0x18, 0x18, 0x30, 0x07, 0xC0, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1F, 0xFF, 0x80, 0x61, 0xC0, 0xC1, 0xC1, 0x81, 0x83, 0x03, 0x06, 0x06, 0x0C, 0x1C, 0x18, 0x70, 0x3F, 0x80, 0x67, 0x00, 0xC7, 0x01, 0x8F, 0x03, 0x0F, 0x06, 0x0E, 0x0C, 0x0E, 0x7E, 0x0F, 0x1F, 0x46, 0x19, 0x81, 0x30, 0x27, 0x02, 0xF0, 0x0F, 0x00, 0xF8, 0x07, 0xC0, 0x38, 0x03, 0xC0, 0x34, 0x06, 0x80, 0xDC, 0x32, 0x7C, 0xFF, 0xFF, 0x86, 0x0E, 0x0C, 0x1C, 0x18, 0x10, 0x30, 0x00, 0x60, 0x00, 0xC0, 0x01, 0x80, 0x03, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x30, 0x00, 0x60, 0x00, 0xC0, 0x07, 0xE0, 0xFC, 0x1F, 0x30, 0x0E, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x30, 0x04, 0x18, 0x08, 0x1C, 0x18, 0x07, 0xE0, 0xFE, 0x0F, 0x9C, 0x03, 0x0E, 0x01, 0x83, 0x00, 0x81, 0xC0, 0x40, 0x60, 0x40, 0x38, 0x20, 0x0C, 0x30, 0x07, 0x10, 0x01, 0x98, 0x00, 0xE8, 0x00, 0x34, 0x00, 0x1E, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00, 0xFC, 0xFC, 0x3D, 0xE1, 0xC0, 0x63, 0x83, 0x01, 0x86, 0x0E, 0x04, 0x1C, 0x18, 0x10, 0x70, 0x70, 0x80, 0xC3, 0xC2, 0x03, 0x8B, 0x08, 0x06, 0x6E, 0x40, 0x1D, 0x19, 0x00, 0x74, 0x78, 0x00, 0xE1, 0xE0, 0x03, 0x83, 0x80, 0x0E, 0x0C, 0x00, 0x10, 0x10, 0x00, 0x40, 0x40, 0x7F, 0x1F, 0x9E, 0x03, 0x07, 0x03, 0x01, 0xC3, 0x00, 0x71, 0x00, 0x19, 0x00, 0x0F, 0x00, 0x03, 0x80, 0x01, 0xE0, 0x01, 0xB0, 0x01, 0x9C, 0x00, 0x87, 0x00, 0x81, 0xC0, 0x80, 0xE0, 0xC0, 0x79, 0xF8, 0x7F, 0xFE, 0x1F, 0x78, 0x0C, 0x38, 0x08, 0x1C, 0x18, 0x0E, 0x10, 0x06, 0x20, 0x07, 0x60, 0x03, 0xC0, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x07, 0xE0, 0x7F, 0xFB, 0x00, 0xC8, 0x07, 0x20, 0x38, 0x01, 0xC0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x38, 0x05, 0xC0, 0x3E, 0x01, 0xBF, 0xFE, 0xFE, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0xF0, 0xC1, 0x81, 0x03, 0x06, 0x04, 0x0C, 0x18, 0x10, 0x30, 0x60, 0x40, 0xC1, 0x81, 0x03, 0x06, 0xF8, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC7, 0xF0, 0x0C, 0x07, 0x01, 0x60, 0xD8, 0x23, 0x18, 0xC4, 0x1B, 0x06, 0x80, 0xC0, 0xFF, 0xF0, 0xC7, 0x0C, 0x30, 0x3E, 0x31, 0x8C, 0x30, 0x0C, 0x03, 0x07, 0xC6, 0x33, 0x0C, 0xC3, 0x31, 0xC7, 0xB8, 0x20, 0x38, 0x06, 0x01, 0x80, 0x60, 0x18, 0x06, 0xF1, 0xC6, 0x61, 0xD8, 0x36, 0x0D, 0x83, 0x60, 0xD8, 0x26, 0x19, 0x84, 0x3E, 0x00, 0x1E, 0x23, 0x63, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xE1, 0x72, 0x3C, 0x00, 0x80, 0xE0, 0x18, 0x06, 0x01, 0x80, 0x61, 0xD8, 0x8E, 0x61, 0xB0, 0x6C, 0x1B, 0x06, 0xC1, 0xB0, 0x6E, 0x19, 0xCE, 0x3D, 0xC0, 0x1E, 0x08, 0xE4, 0x1B, 0xFE, 0xC0, 0x30, 0x0C, 0x03, 0x81, 0x60, 0x9C, 0x41, 0xE0, 0x0F, 0x08, 0xC4, 0x06, 0x03, 0x01, 0x81, 0xF0, 0x60, 0x30, 0x18, 0x0C, 0x06, 0x03, 0x01, 0x80, 0xC0, 0x60, 0xFC, 0x00, 0x1F, 0x03, 0x1F, 0x60, 0xC6, 0x0C, 0x60, 0xC3, 0x18, 0x1F, 0x02, 0x00, 0x40, 0x07, 0xFC, 0x40, 0x24, 0x02, 0xC0, 0x2C, 0x04, 0xE0, 0x83, 0xF0, 0x30, 0x1E, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x0D, 0xE1, 0xCE, 0x30, 0xC6, 0x18, 0xC3, 0x18, 0x63, 0x0C, 0x61, 0x8C, 0x31, 0x86, 0x79, 0xE0, 0x31, 0x80, 0x00, 0x09, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xDF, 0x0C, 0x30, 0x00, 0x00, 0x31, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xF2, 0xF0, 0x20, 0x1C, 0x01, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18, 0xFB, 0x08, 0x62, 0x0C, 0x81, 0xE0, 0x3E, 0x06, 0xE0, 0xCE, 0x18, 0xC3, 0x0E, 0xF3, 0xE0, 0x13, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0xF8, 0xF7, 0x8F, 0x0E, 0x3C, 0xE3, 0x0C, 0x18, 0xC3, 0x06, 0x30, 0xC1, 0x8C, 0x30, 0x63, 0x0C, 0x18, 0xC3, 0x06, 0x30, 0xC1, 0x8C, 0x30, 0x67, 0x9E, 0x3C, 0xF7, 0x87, 0x18, 0xC3, 0x18, 0x63, 0x0C, 0x61, 0x8C, 0x31, 0x86, 0x30, 0xC6, 0x19, 0xE7, 0x80, 0x1E, 0x18, 0xE4, 0x1B, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0x60, 0x9C, 0x41, 0xE0, 0x77, 0x87, 0x18, 0xC3, 0x98, 0x33, 0x06, 0x60, 0xCC, 0x19, 0x83, 0x30, 0xC7, 0x10, 0xDC, 0x18, 0x03, 0x00, 0x60, 0x0C, 0x07, 0xE0, 0x1E, 0x8C, 0xE6, 0x1B, 0x06, 0xC1, 0xB0, 0x6C, 0x1B, 0x06, 0xE1, 0x98, 0xE3, 0xD8, 0x06, 0x01, 0x80, 0x60, 0x18, 0x1F, 0x37, 0x7B, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x7C, 0x7B, 0x0E, 0x1C, 0x1E, 0x0F, 0x07, 0xC3, 0x87, 0x8A, 0xE0, 0x21, 0x8F, 0x98, 0x61, 0x86, 0x18, 0x61, 0x86, 0x19, 0x38, 0xE3, 0x98, 0x66, 0x19, 0x86, 0x61, 0x98, 0x66, 0x19, 0x86, 0x61, 0x9C, 0xE3, 0xDC, 0xF8, 0xEE, 0x08, 0xC1, 0x18, 0x41, 0x88, 0x32, 0x03, 0x40, 0x68, 0x06, 0x00, 0xC0, 0x10, 0x00, 0xF3, 0xE7, 0x61, 0x83, 0x70, 0xC2, 0x30, 0xC2, 0x30, 0xC4, 0x19, 0x64, 0x19, 0x68, 0x0E, 0x38, 0x0E, 0x38, 0x0C, 0x30, 0x04, 0x10, 0xFB, 0xC6, 0x30, 0x64, 0x0F, 0x00, 0xC0, 0x0C, 0x03, 0xC0, 0x98, 0x21, 0x8C, 0x3B, 0xCF, 0x80, 0xF8, 0xEE, 0x08, 0xC1, 0x18, 0x41, 0x88, 0x31, 0x03, 0x40, 0x68, 0x06, 0x00, 0xC0, 0x08, 0x02, 0x00, 0x40, 0x10, 0x1E, 0x03, 0x80, 0x7F, 0x90, 0xE0, 0x30, 0x18, 0x0E, 0x03, 0x01, 0xC0, 0xE0, 0x30, 0x5C, 0x3F, 0xF8, 0x19, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0xB0, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x61, 0x80, 0xFF, 0xFF, 0x80, 0xC3, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x06, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xCC, 0x00, 0x38, 0x06, 0x62, 0x41, 0xC0}; const GFXglyph FreeSerif12pt7bGlyphs[] = { {0, 0, 0, 6, 0, 1}, // 0x20 ' ' {0, 2, 16, 8, 3, -15}, // 0x21 '!' {4, 6, 6, 10, 1, -15}, // 0x22 '"' {9, 12, 16, 12, 0, -15}, // 0x23 '#' {33, 10, 18, 12, 1, -16}, // 0x24 '$' {56, 18, 17, 20, 1, -16}, // 0x25 '%' {95, 17, 16, 19, 1, -15}, // 0x26 '&' {129, 2, 6, 5, 1, -15}, // 0x27 ''' {131, 6, 20, 8, 1, -15}, // 0x28 '(' {146, 6, 20, 8, 1, -15}, // 0x29 ')' {161, 8, 10, 12, 3, -14}, // 0x2A '*' {171, 11, 11, 14, 1, -10}, // 0x2B '+' {187, 3, 6, 6, 2, -2}, // 0x2C ',' {190, 6, 1, 8, 1, -5}, // 0x2D '-' {191, 2, 3, 6, 2, -2}, // 0x2E '.' {192, 7, 17, 7, 0, -16}, // 0x2F '/' {207, 10, 17, 12, 1, -16}, // 0x30 '0' {229, 6, 17, 12, 3, -16}, // 0x31 '1' {242, 10, 15, 12, 1, -14}, // 0x32 '2' {261, 10, 16, 12, 1, -15}, // 0x33 '3' {281, 10, 16, 12, 1, -15}, // 0x34 '4' {301, 10, 17, 12, 1, -16}, // 0x35 '5' {323, 10, 17, 12, 1, -16}, // 0x36 '6' {345, 10, 16, 12, 0, -15}, // 0x37 '7' {365, 10, 17, 12, 1, -16}, // 0x38 '8' {387, 10, 18, 12, 1, -16}, // 0x39 '9' {410, 2, 12, 6, 2, -11}, // 0x3A ':' {413, 4, 15, 6, 2, -11}, // 0x3B ';' {421, 12, 13, 14, 1, -12}, // 0x3C '<' {441, 12, 6, 14, 1, -8}, // 0x3D '=' {450, 12, 13, 14, 1, -11}, // 0x3E '>' {470, 8, 17, 11, 2, -16}, // 0x3F '?' {487, 17, 16, 21, 2, -15}, // 0x40 '@' {521, 17, 16, 17, 0, -15}, // 0x41 'A' {555, 12, 16, 15, 1, -15}, // 0x42 'B' {579, 15, 16, 16, 1, -15}, // 0x43 'C' {609, 16, 16, 17, 0, -15}, // 0x44 'D' {641, 14, 16, 15, 0, -15}, // 0x45 'E' {669, 14, 16, 14, 0, -15}, // 0x46 'F' {697, 16, 16, 17, 1, -15}, // 0x47 'G' {729, 16, 16, 17, 0, -15}, // 0x48 'H' {761, 6, 16, 8, 1, -15}, // 0x49 'I' {773, 8, 16, 9, 0, -15}, // 0x4A 'J' {789, 16, 16, 17, 1, -15}, // 0x4B 'K' {821, 15, 16, 15, 0, -15}, // 0x4C 'L' {851, 19, 16, 21, 1, -15}, // 0x4D 'M' {889, 16, 16, 17, 1, -15}, // 0x4E 'N' {921, 15, 16, 17, 1, -15}, // 0x4F 'O' {951, 12, 16, 14, 0, -15}, // 0x50 'P' {975, 16, 20, 17, 1, -15}, // 0x51 'Q' {1015, 15, 16, 16, 0, -15}, // 0x52 'R' {1045, 11, 16, 13, 0, -15}, // 0x53 'S' {1067, 15, 16, 15, 0, -15}, // 0x54 'T' {1097, 16, 16, 17, 1, -15}, // 0x55 'U' {1129, 17, 16, 17, 0, -15}, // 0x56 'V' {1163, 22, 16, 23, 0, -15}, // 0x57 'W' {1207, 17, 16, 17, 0, -15}, // 0x58 'X' {1241, 16, 16, 17, 0, -15}, // 0x59 'Y' {1273, 14, 16, 15, 1, -15}, // 0x5A 'Z' {1301, 5, 20, 8, 2, -15}, // 0x5B '[' {1314, 7, 17, 7, 0, -16}, // 0x5C '\' {1329, 5, 20, 8, 1, -15}, // 0x5D ']' {1342, 10, 9, 11, 1, -15}, // 0x5E '^' {1354, 12, 1, 12, 0, 3}, // 0x5F '_' {1356, 5, 4, 6, 0, -15}, // 0x60 '`' {1359, 10, 11, 10, 1, -10}, // 0x61 'a' {1373, 10, 17, 12, 1, -16}, // 0x62 'b' {1395, 8, 11, 11, 1, -10}, // 0x63 'c' {1406, 10, 17, 12, 1, -16}, // 0x64 'd' {1428, 10, 11, 11, 1, -10}, // 0x65 'e' {1442, 9, 17, 9, 0, -16}, // 0x66 'f' {1462, 12, 16, 11, 0, -10}, // 0x67 'g' {1486, 11, 17, 12, 0, -16}, // 0x68 'h' {1510, 5, 16, 7, 0, -15}, // 0x69 'i' {1520, 6, 21, 8, 0, -15}, // 0x6A 'j' {1536, 11, 17, 12, 1, -16}, // 0x6B 'k' {1560, 5, 17, 6, 0, -16}, // 0x6C 'l' {1571, 18, 11, 19, 0, -10}, // 0x6D 'm' {1596, 11, 11, 12, 0, -10}, // 0x6E 'n' {1612, 10, 11, 12, 1, -10}, // 0x6F 'o' {1626, 11, 16, 12, 0, -10}, // 0x70 'p' {1648, 10, 16, 12, 1, -10}, // 0x71 'q' {1668, 8, 11, 8, 0, -10}, // 0x72 'r' {1679, 7, 11, 9, 1, -10}, // 0x73 's' {1689, 6, 13, 7, 1, -12}, // 0x74 't' {1699, 10, 11, 12, 1, -10}, // 0x75 'u' {1713, 11, 11, 11, 0, -10}, // 0x76 'v' {1729, 16, 11, 16, 0, -10}, // 0x77 'w' {1751, 11, 11, 12, 0, -10}, // 0x78 'x' {1767, 11, 16, 11, 0, -10}, // 0x79 'y' {1789, 10, 11, 10, 0, -10}, // 0x7A 'z' {1803, 5, 21, 12, 2, -16}, // 0x7B '{' {1817, 1, 17, 5, 2, -16}, // 0x7C '|' {1820, 5, 21, 12, 5, -15}, // 0x7D '}' {1834, 12, 3, 12, 0, -6}}; // 0x7E '~' const GFXfont FreeSerif12pt7b = {(uint8_t *)FreeSerif12pt7bBitmaps, (GFXglyph *)FreeSerif12pt7bGlyphs, 0x20, 0x7E, 29}; // Approx. 2511 bytes ================================================ FILE: lib/OneBitDisplay/obd.inl ================================================ // // obd.inl // Drawing code for OneBitDisplay library // void obdSetDCMode(OBDISP *pOBD, int iMode); void InvertBytes(uint8_t *pData, uint8_t bLen); void SPI_BitBang(OBDISP *pOBD, uint8_t *pData, int iLen, uint8_t iMOSIPin, uint8_t iSCKPin); const uint8_t ucMirror[256] = {0, 128, 64, 192, 32, 160, 96, 224, 16, 144, 80, 208, 48, 176, 112, 240, 8, 136, 72, 200, 40, 168, 104, 232, 24, 152, 88, 216, 56, 184, 120, 248, 4, 132, 68, 196, 36, 164, 100, 228, 20, 148, 84, 212, 52, 180, 116, 244, 12, 140, 76, 204, 44, 172, 108, 236, 28, 156, 92, 220, 60, 188, 124, 252, 2, 130, 66, 194, 34, 162, 98, 226, 18, 146, 82, 210, 50, 178, 114, 242, 10, 138, 74, 202, 42, 170, 106, 234, 26, 154, 90, 218, 58, 186, 122, 250, 6, 134, 70, 198, 38, 166, 102, 230, 22, 150, 86, 214, 54, 182, 118, 246, 14, 142, 78, 206, 46, 174, 110, 238, 30, 158, 94, 222, 62, 190, 126, 254, 1, 129, 65, 193, 33, 161, 97, 225, 17, 145, 81, 209, 49, 177, 113, 241, 9, 137, 73, 201, 41, 169, 105, 233, 25, 153, 89, 217, 57, 185, 121, 249, 5, 133, 69, 197, 37, 165, 101, 229, 21, 149, 85, 213, 53, 181, 117, 245, 13, 141, 77, 205, 45, 173, 109, 237, 29, 157, 93, 221, 61, 189, 125, 253, 3, 131, 67, 195, 35, 163, 99, 227, 19, 147, 83, 211, 51, 179, 115, 243, 11, 139, 75, 203, 43, 171, 107, 235, 27, 155, 91, 219, 59, 187, 123, 251, 7, 135, 71, 199, 39, 167, 103, 231, 23, 151, 87, 215, 55, 183, 119, 247, 15, 143, 79, 207, 47, 175, 111, 239, 31, 159, 95, 223, 63, 191, 127, 255}; const uint8_t ucFont[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x5f, 0x5f, 0x06, 0x00, 0x00, 0x07, 0x07, 0x00, 0x07, 0x07, 0x00, 0x14, 0x7f, 0x7f, 0x14, 0x7f, 0x7f, 0x14, 0x24, 0x2e, 0x2a, 0x6b, 0x6b, 0x3a, 0x12, 0x46, 0x66, 0x30, 0x18, 0x0c, 0x66, 0x62, 0x30, 0x7a, 0x4f, 0x5d, 0x37, 0x7a, 0x48, 0x00, 0x04, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x3e, 0x63, 0x41, 0x00, 0x00, 0x00, 0x41, 0x63, 0x3e, 0x1c, 0x00, 0x00, 0x08, 0x2a, 0x3e, 0x1c, 0x3e, 0x2a, 0x08, 0x00, 0x08, 0x08, 0x3e, 0x3e, 0x08, 0x08, 0x00, 0x00, 0x80, 0xe0, 0x60, 0x00, 0x00, 0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00, 0x00, 0x60, 0x60, 0x00, 0x00, 0x60, 0x30, 0x18, 0x0c, 0x06, 0x03, 0x01, 0x3e, 0x7f, 0x59, 0x4d, 0x47, 0x7f, 0x3e, 0x40, 0x42, 0x7f, 0x7f, 0x40, 0x40, 0x00, 0x62, 0x73, 0x59, 0x49, 0x6f, 0x66, 0x00, 0x22, 0x63, 0x49, 0x49, 0x7f, 0x36, 0x00, 0x18, 0x1c, 0x16, 0x53, 0x7f, 0x7f, 0x50, 0x27, 0x67, 0x45, 0x45, 0x7d, 0x39, 0x00, 0x3c, 0x7e, 0x4b, 0x49, 0x79, 0x30, 0x00, 0x03, 0x03, 0x71, 0x79, 0x0f, 0x07, 0x00, 0x36, 0x7f, 0x49, 0x49, 0x7f, 0x36, 0x00, 0x06, 0x4f, 0x49, 0x69, 0x3f, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe6, 0x66, 0x00, 0x00, 0x08, 0x1c, 0x36, 0x63, 0x41, 0x00, 0x00, 0x00, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x00, 0x41, 0x63, 0x36, 0x1c, 0x08, 0x00, 0x00, 0x02, 0x03, 0x59, 0x5d, 0x07, 0x02, 0x3e, 0x7f, 0x41, 0x5d, 0x5d, 0x5f, 0x0e, 0x7c, 0x7e, 0x13, 0x13, 0x7e, 0x7c, 0x00, 0x41, 0x7f, 0x7f, 0x49, 0x49, 0x7f, 0x36, 0x1c, 0x3e, 0x63, 0x41, 0x41, 0x63, 0x22, 0x41, 0x7f, 0x7f, 0x41, 0x63, 0x3e, 0x1c, 0x41, 0x7f, 0x7f, 0x49, 0x5d, 0x41, 0x63, 0x41, 0x7f, 0x7f, 0x49, 0x1d, 0x01, 0x03, 0x1c, 0x3e, 0x63, 0x41, 0x51, 0x33, 0x72, 0x7f, 0x7f, 0x08, 0x08, 0x7f, 0x7f, 0x00, 0x00, 0x41, 0x7f, 0x7f, 0x41, 0x00, 0x00, 0x30, 0x70, 0x40, 0x41, 0x7f, 0x3f, 0x01, 0x41, 0x7f, 0x7f, 0x08, 0x1c, 0x77, 0x63, 0x41, 0x7f, 0x7f, 0x41, 0x40, 0x60, 0x70, 0x7f, 0x7f, 0x0e, 0x1c, 0x0e, 0x7f, 0x7f, 0x7f, 0x7f, 0x06, 0x0c, 0x18, 0x7f, 0x7f, 0x1c, 0x3e, 0x63, 0x41, 0x63, 0x3e, 0x1c, 0x41, 0x7f, 0x7f, 0x49, 0x09, 0x0f, 0x06, 0x1e, 0x3f, 0x21, 0x31, 0x61, 0x7f, 0x5e, 0x41, 0x7f, 0x7f, 0x09, 0x19, 0x7f, 0x66, 0x26, 0x6f, 0x4d, 0x49, 0x59, 0x73, 0x32, 0x03, 0x41, 0x7f, 0x7f, 0x41, 0x03, 0x00, 0x7f, 0x7f, 0x40, 0x40, 0x7f, 0x7f, 0x00, 0x1f, 0x3f, 0x60, 0x60, 0x3f, 0x1f, 0x00, 0x3f, 0x7f, 0x60, 0x30, 0x60, 0x7f, 0x3f, 0x63, 0x77, 0x1c, 0x08, 0x1c, 0x77, 0x63, 0x07, 0x4f, 0x78, 0x78, 0x4f, 0x07, 0x00, 0x47, 0x63, 0x71, 0x59, 0x4d, 0x67, 0x73, 0x00, 0x7f, 0x7f, 0x41, 0x41, 0x00, 0x00, 0x01, 0x03, 0x06, 0x0c, 0x18, 0x30, 0x60, 0x00, 0x41, 0x41, 0x7f, 0x7f, 0x00, 0x00, 0x08, 0x0c, 0x06, 0x03, 0x06, 0x0c, 0x08, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x03, 0x07, 0x04, 0x00, 0x00, 0x20, 0x74, 0x54, 0x54, 0x3c, 0x78, 0x40, 0x41, 0x7f, 0x3f, 0x48, 0x48, 0x78, 0x30, 0x38, 0x7c, 0x44, 0x44, 0x6c, 0x28, 0x00, 0x30, 0x78, 0x48, 0x49, 0x3f, 0x7f, 0x40, 0x38, 0x7c, 0x54, 0x54, 0x5c, 0x18, 0x00, 0x48, 0x7e, 0x7f, 0x49, 0x03, 0x06, 0x00, 0x98, 0xbc, 0xa4, 0xa4, 0xf8, 0x7c, 0x04, 0x41, 0x7f, 0x7f, 0x08, 0x04, 0x7c, 0x78, 0x00, 0x44, 0x7d, 0x7d, 0x40, 0x00, 0x00, 0x60, 0xe0, 0x80, 0x84, 0xfd, 0x7d, 0x00, 0x41, 0x7f, 0x7f, 0x10, 0x38, 0x6c, 0x44, 0x00, 0x41, 0x7f, 0x7f, 0x40, 0x00, 0x00, 0x7c, 0x7c, 0x18, 0x78, 0x1c, 0x7c, 0x78, 0x7c, 0x78, 0x04, 0x04, 0x7c, 0x78, 0x00, 0x38, 0x7c, 0x44, 0x44, 0x7c, 0x38, 0x00, 0x84, 0xfc, 0xf8, 0xa4, 0x24, 0x3c, 0x18, 0x18, 0x3c, 0x24, 0xa4, 0xf8, 0xfc, 0x84, 0x44, 0x7c, 0x78, 0x4c, 0x04, 0x0c, 0x18, 0x48, 0x5c, 0x54, 0x74, 0x64, 0x24, 0x00, 0x04, 0x04, 0x3e, 0x7f, 0x44, 0x24, 0x00, 0x3c, 0x7c, 0x40, 0x40, 0x3c, 0x7c, 0x40, 0x1c, 0x3c, 0x60, 0x60, 0x3c, 0x1c, 0x00, 0x3c, 0x7c, 0x60, 0x30, 0x60, 0x7c, 0x3c, 0x44, 0x6c, 0x38, 0x10, 0x38, 0x6c, 0x44, 0x9c, 0xbc, 0xa0, 0xa0, 0xfc, 0x7c, 0x00, 0x4c, 0x64, 0x74, 0x5c, 0x4c, 0x64, 0x00, 0x08, 0x08, 0x3e, 0x77, 0x41, 0x41, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x41, 0x41, 0x77, 0x3e, 0x08, 0x08, 0x00, 0x02, 0x03, 0x01, 0x03, 0x02, 0x03, 0x01, 0x70, 0x78, 0x4c, 0x46, 0x4c, 0x78, 0x70}; // AVR MCUs have very little memory; save 6K of FLASH by stretching the 'normal' // font instead of using this large font const uint8_t ucBigFont[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xfc, 0xfc, 0xfc, 0xfc, 0xc0, 0xc0, 0xfc, 0xfc, 0xfc, 0xfc, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x0f, 0x0f, 0x3c, 0x3c, 0x00, 0x00, 0xf0, 0xf0, 0xc3, 0xc3, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f, 0x3f, 0x3f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c, 0xff, 0xff, 0xc3, 0xc3, 0xff, 0xff, 0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x0f, 0x0f, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x3f, 0x3f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0xfc, 0xfc, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x0c, 0x0c, 0xcc, 0xcc, 0xff, 0xff, 0x3f, 0x3f, 0x3f, 0x3f, 0xff, 0xff, 0xcc, 0xcc, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0xff, 0xff, 0xff, 0xff, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x3f, 0x3f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0xc3, 0xc3, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x30, 0x30, 0x0f, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x3c, 0x3c, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0xc3, 0xc3, 0xff, 0xff, 0x3c, 0x3c, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0xff, 0xff, 0xff, 0xff, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x0f, 0x0f, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x3f, 0x3f, 0xf3, 0xf3, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x3c, 0x3c, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf3, 0xf3, 0x3f, 0x3f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c, 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0xc3, 0xc3, 0xff, 0xff, 0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0xfc, 0xfc, 0xf0, 0xf0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x3f, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0x0f, 0x0f, 0x3c, 0x3c, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0x0f, 0x0f, 0x3c, 0x3c, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x0f, 0x0f, 0xfc, 0xfc, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0xc3, 0xc3, 0x0f, 0x0f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x0f, 0x0f, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0xc3, 0xc3, 0x0f, 0x0f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0x0f, 0x0f, 0x3c, 0x3c, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0xfc, 0xfc, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x03, 0x03, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf0, 0xf0, 0xff, 0xff, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x3f, 0x3f, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xf0, 0xf0, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xf0, 0xf0, 0xc0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0f, 0x0f, 0x03, 0x03, 0x0f, 0x0f, 0xfc, 0xfc, 0xf0, 0xf0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x0f, 0x0f, 0xff, 0xff, 0xf0, 0xf0, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c, 0xff, 0xff, 0xc3, 0xc3, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f, 0x3c, 0x3c, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x03, 0x03, 0x03, 0x03, 0x0f, 0x0f, 0xfc, 0xfc, 0xf0, 0xf0, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x3f, 0x3f, 0xff, 0xff, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xff, 0xff, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xc0, 0xfc, 0xfc, 0xc0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0xff, 0xff, 0xf0, 0xf0, 0x00, 0x00, 0xf0, 0xf0, 0xff, 0xff, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xff, 0xff, 0x0f, 0x0f, 0xff, 0xff, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x0f, 0x0f, 0x03, 0x03, 0x03, 0x03, 0xc3, 0xc3, 0xff, 0xff, 0x3f, 0x3f, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0x3c, 0x3c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x3f, 0x3f, 0xfc, 0xfc, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xfc, 0xfc, 0x0c, 0x0c, 0x0c, 0x0c, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc3, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x0f, 0x0f, 0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, 0xcf, 0xcf, 0x0c, 0x0c, 0x0c, 0x0c, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xcf, 0xcf, 0xcf, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xcf, 0xcf, 0xcf, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x3c, 0x3c, 0xff, 0xff, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0xff, 0xff, 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x0f, 0x0f, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x3c, 0x3c, 0x30, 0x30, 0xf0, 0xf0, 0xc3, 0xc3, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc, 0xff, 0xff, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf0, 0xf0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0f, 0x0f, 0x03, 0x03, 0x0f, 0x0f, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0xcc, 0xcc, 0xff, 0xff, 0x3f, 0x3f, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x03, 0x03, 0xc3, 0xc3, 0xf0, 0xf0, 0x3c, 0x3c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x0f, 0x0f, 0x0c, 0x0c, 0x0f, 0x0f, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xf0, 0xf0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xff, 0xff, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, 0xff, 0xff, 0xfc, 0xfc, 0x00, 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; // 5x7 font (in 6x8 cell) const uint8_t ucSmallFont[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x5f, 0x06, 0x00, 0x07, 0x03, 0x00, 0x07, 0x03, 0x24, 0x7e, 0x24, 0x7e, 0x24, 0x24, 0x2b, 0x6a, 0x12, 0x00, 0x63, 0x13, 0x08, 0x64, 0x63, 0x36, 0x49, 0x56, 0x20, 0x50, 0x00, 0x07, 0x03, 0x00, 0x00, 0x00, 0x3e, 0x41, 0x00, 0x00, 0x00, 0x41, 0x3e, 0x00, 0x00, 0x08, 0x3e, 0x1c, 0x3e, 0x08, 0x08, 0x08, 0x3e, 0x08, 0x08, 0x00, 0xe0, 0x60, 0x00, 0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x60, 0x60, 0x00, 0x00, 0x20, 0x10, 0x08, 0x04, 0x02, 0x3e, 0x51, 0x49, 0x45, 0x3e, 0x00, 0x42, 0x7f, 0x40, 0x00, 0x62, 0x51, 0x49, 0x49, 0x46, 0x22, 0x49, 0x49, 0x49, 0x36, 0x18, 0x14, 0x12, 0x7f, 0x10, 0x2f, 0x49, 0x49, 0x49, 0x31, 0x3c, 0x4a, 0x49, 0x49, 0x30, 0x01, 0x71, 0x09, 0x05, 0x03, 0x36, 0x49, 0x49, 0x49, 0x36, 0x06, 0x49, 0x49, 0x29, 0x1e, 0x00, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0xec, 0x6c, 0x00, 0x00, 0x08, 0x14, 0x22, 0x41, 0x00, 0x24, 0x24, 0x24, 0x24, 0x24, 0x00, 0x41, 0x22, 0x14, 0x08, 0x02, 0x01, 0x59, 0x09, 0x06, 0x3e, 0x41, 0x5d, 0x55, 0x1e, 0x7e, 0x11, 0x11, 0x11, 0x7e, 0x7f, 0x49, 0x49, 0x49, 0x36, 0x3e, 0x41, 0x41, 0x41, 0x22, 0x7f, 0x41, 0x41, 0x41, 0x3e, 0x7f, 0x49, 0x49, 0x49, 0x41, 0x7f, 0x09, 0x09, 0x09, 0x01, 0x3e, 0x41, 0x49, 0x49, 0x7a, 0x7f, 0x08, 0x08, 0x08, 0x7f, 0x00, 0x41, 0x7f, 0x41, 0x00, 0x30, 0x40, 0x40, 0x40, 0x3f, 0x7f, 0x08, 0x14, 0x22, 0x41, 0x7f, 0x40, 0x40, 0x40, 0x40, 0x7f, 0x02, 0x04, 0x02, 0x7f, 0x7f, 0x02, 0x04, 0x08, 0x7f, 0x3e, 0x41, 0x41, 0x41, 0x3e, 0x7f, 0x09, 0x09, 0x09, 0x06, 0x3e, 0x41, 0x51, 0x21, 0x5e, 0x7f, 0x09, 0x09, 0x19, 0x66, 0x26, 0x49, 0x49, 0x49, 0x32, 0x01, 0x01, 0x7f, 0x01, 0x01, 0x3f, 0x40, 0x40, 0x40, 0x3f, 0x1f, 0x20, 0x40, 0x20, 0x1f, 0x3f, 0x40, 0x3c, 0x40, 0x3f, 0x63, 0x14, 0x08, 0x14, 0x63, 0x07, 0x08, 0x70, 0x08, 0x07, 0x71, 0x49, 0x45, 0x43, 0x00, 0x00, 0x7f, 0x41, 0x41, 0x00, 0x02, 0x04, 0x08, 0x10, 0x20, 0x00, 0x41, 0x41, 0x7f, 0x00, 0x04, 0x02, 0x01, 0x02, 0x04, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x03, 0x07, 0x00, 0x00, 0x20, 0x54, 0x54, 0x54, 0x78, 0x7f, 0x44, 0x44, 0x44, 0x38, 0x38, 0x44, 0x44, 0x44, 0x28, 0x38, 0x44, 0x44, 0x44, 0x7f, 0x38, 0x54, 0x54, 0x54, 0x08, 0x08, 0x7e, 0x09, 0x09, 0x00, 0x18, 0xa4, 0xa4, 0xa4, 0x7c, 0x7f, 0x04, 0x04, 0x78, 0x00, 0x00, 0x00, 0x7d, 0x40, 0x00, 0x40, 0x80, 0x84, 0x7d, 0x00, 0x7f, 0x10, 0x28, 0x44, 0x00, 0x00, 0x00, 0x7f, 0x40, 0x00, 0x7c, 0x04, 0x18, 0x04, 0x78, 0x7c, 0x04, 0x04, 0x78, 0x00, 0x38, 0x44, 0x44, 0x44, 0x38, 0xfc, 0x44, 0x44, 0x44, 0x38, 0x38, 0x44, 0x44, 0x44, 0xfc, 0x44, 0x78, 0x44, 0x04, 0x08, 0x08, 0x54, 0x54, 0x54, 0x20, 0x04, 0x3e, 0x44, 0x24, 0x00, 0x3c, 0x40, 0x20, 0x7c, 0x00, 0x1c, 0x20, 0x40, 0x20, 0x1c, 0x3c, 0x60, 0x30, 0x60, 0x3c, 0x6c, 0x10, 0x10, 0x6c, 0x00, 0x9c, 0xa0, 0x60, 0x3c, 0x00, 0x64, 0x54, 0x54, 0x4c, 0x00, 0x08, 0x3e, 0x41, 0x41, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x41, 0x41, 0x3e, 0x08, 0x02, 0x01, 0x02, 0x01, 0x00, 0x3c, 0x26, 0x23, 0x26, 0x3c}; #define MAX_CACHE 192 static uint8_t u8Cache[MAX_CACHE]; // for faster character drawing static volatile uint8_t u8End = 0; static void obdCachedFlush(OBDISP *pOBD, int bRender) { if (u8End > 0) { obdWriteDataBlock(pOBD, u8Cache, u8End, bRender); u8End = 0; } } /* obdCachedFlush() */ static void obdCachedWrite(OBDISP *pOBD, uint8_t *pData, uint8_t u8Len, int bRender) { if (u8End + u8Len > MAX_CACHE) // need to flush it { obdCachedFlush(pOBD, bRender); // write the old data } memcpy(&u8Cache[u8End], pData, u8Len); u8End += u8Len; } /* obdCachedWrite() */ static void _I2CWrite(OBDISP *pOBD, unsigned char *pData, int iLen) { if (pOBD->com_mode == COM_SPI) // we're writing to SPI, treat it differently { if (pOBD->iDCPin != 0xff) { gpio_put(pOBD->iDCPin, (pData[0] == 0) ? LOW : HIGH); // data versus command gpio_put(pOBD->iCSPin, LOW); } spi_write_blocking(pOBD->bbi2c.picoSPI, &pData[1], iLen - 1); if (pOBD->type < SHARP_144x168) gpio_put(pOBD->iCSPin, HIGH); } else // must be I2C { if (pOBD->bbi2c.bWire && iLen > 32) // Hardware I2C has write length limits { iLen--; // don't count the 0x40 byte the first time through while (iLen >= 31) // max 31 data byes + data introducer { I2CWrite(&pOBD->bbi2c, pOBD->oled_addr, pData, 32); iLen -= 31; pData += 31; pData[0] = 0x40; } if (iLen) iLen++; // If remaining data, add the last 0x40 byte } if (iLen) // if any data remaining { I2CWrite(&pOBD->bbi2c, pOBD->oled_addr, pData, iLen); } } // I2C } /* _I2CWrite() */ // Send a single byte command to the OLED controller void obdWriteCommand(OBDISP *pOBD, unsigned char c) { unsigned char buf[4]; if (pOBD->com_mode == COM_I2C) { // I2C device buf[0] = 0x00; // command introducer buf[1] = c; _I2CWrite(pOBD, buf, 2); } else { // must be SPI obdSetDCMode(pOBD, MODE_COMMAND); gpio_put(pOBD->iCSPin, LOW); if (pOBD->iMOSIPin == 0xff) spi_write_blocking(pOBD->bbi2c.picoSPI, &c, 1); else SPI_BitBang(pOBD, &c, 1, pOBD->iMOSIPin, pOBD->iCLKPin); gpio_put(pOBD->iCSPin, HIGH); obdSetDCMode(pOBD, MODE_DATA); } } /* obdWriteCommand() */ // // Byte operands for compressing the data // The first 2 bits are the type, followed by the counts #define OP_MASK 0xc0 #define OP_SKIPCOPY 0x00 #define OP_COPYSKIP 0x40 #define OP_REPEATSKIP 0x80 #define OP_REPEAT 0xc0 // // Write a block of flash memory to the display // void oledWriteFlashBlock(OBDISP *pOBD, uint8_t *s, int iLen) { int j; int iWidthMask = pOBD->width - 1; int iSizeMask = ((pOBD->width * pOBD->height) / 8) - 1; int iWidthShift = (pOBD->width == 128) ? 7 : 6; // assume 128 or 64 wide uint8_t ucTemp[128]; while (((pOBD->iScreenOffset & iWidthMask) + iLen) >= pOBD->width) // if it will hit the page end { j = pOBD->width - (pOBD->iScreenOffset & iWidthMask); // amount we can write in one shot memcpy(ucTemp, s, j); obdWriteDataBlock(pOBD, ucTemp, j, 1); s += j; iLen -= j; pOBD->iScreenOffset = (pOBD->iScreenOffset + j) & iSizeMask; obdSetPosition(pOBD, pOBD->iScreenOffset & iWidthMask, (pOBD->iScreenOffset >> iWidthShift), 1); } // while it needs some help memcpy(ucTemp, s, iLen); obdWriteDataBlock(pOBD, ucTemp, iLen, 1); pOBD->iScreenOffset = (pOBD->iScreenOffset + iLen) & iSizeMask; } /* oledWriteFlashBlock() */ // // Create a virtual display of any size // The memory buffer must be provided at the time of creation // void obdCreateVirtualDisplay(OBDISP *pOBD, int width, int height, uint8_t *buffer) { if (pOBD != NULL && buffer != NULL) { pOBD->width = width; pOBD->height = height; pOBD->type = LCD_VIRTUAL; pOBD->ucScreen = buffer; pOBD->iCursorX = pOBD->iCursorY = 0; pOBD->iScreenOffset = 0; } } /* obdCreateVirtualDisplay() */ // // Scroll the internal buffer by 1 scanline (up/down) // width is in pixels, lines is group of 8 rows // int obdScrollBuffer(OBDISP *pOBD, int iStartCol, int iEndCol, int iStartRow, int iEndRow, int bUp) { uint8_t b, *s; int col, row; int iPitch; if (iStartCol < 0 || iStartCol >= pOBD->width || iEndCol < 0 || iEndCol > pOBD->width || iStartCol > iEndCol) // invalid return -1; if (iStartRow < 0 || iStartRow >= (pOBD->height / 8) || iEndRow < 0 || iEndRow >= (pOBD->height / 8) || iStartRow > iEndRow) return -1; iPitch = pOBD->width; if (bUp) { for (row = iStartRow; row <= iEndRow; row++) { s = &pOBD->ucScreen[(row * iPitch) + iStartCol]; for (col = iStartCol; col <= iEndCol; col++) { b = *s; b >>= 1; // scroll pixels 'up' if (row < iEndRow) b |= (s[iPitch] << 7); // capture pixel of row below, except for last row *s++ = b; } // for col } // for row } // up else // down { for (row = iEndRow; row >= iStartRow; row--) { s = &pOBD->ucScreen[(row * iPitch) + iStartCol]; for (col = iStartCol; col <= iEndCol; col++) { b = *s; b <<= 1; // scroll down if (row > iStartRow) b |= (s[-iPitch] >> 7); // capture pixel of row above *s++ = b; } // for col } // for row } return 0; } /* obdScrollBuffer() */ // // Send commands to position the "cursor" (aka memory write address) // to the given row and column // void obdSetPosition(OBDISP *pOBD, int x, int y, int bRender) { unsigned char buf[4]; int iPitch = pOBD->width; obdCachedFlush(pOBD, bRender); // flush any cached data first pOBD->iScreenOffset = (y * iPitch) + x; if (pOBD->type == LCD_VIRTUAL || pOBD->type >= SHARP_144x168) return; // nothing to do if (!bRender) return; // don't send the commands to the OLED if we're not rendering the graphics now if (pOBD->type == LCD_NOKIA5110) { obdWriteCommand(pOBD, 0x40 | y); obdWriteCommand(pOBD, 0x80 | x); return; } if (pOBD->type == OLED_64x32) // visible display starts at column 32, row 4 { x += 32; // display is centered in VRAM, so this is always true if (pOBD->flip == 0) // non-flipped display starts from line 4 y += 4; } else if (pOBD->type == OLED_132x64) // SH1106 has 128 pixels centered in 132 { x += 2; } else if (pOBD->type == OLED_96x16) // visible display starts at line 2 { // mapping is a bit strange on the 96x16 OLED if (pOBD->flip) x += 32; else y += 2; } else if (pOBD->type == OLED_72x40) // starts at x=28,y=3 { x += 28; if (!pOBD->flip) { y += 3; } } if (pOBD->com_mode == COM_I2C) { // I2C device buf[0] = 0x00; // command introducer buf[1] = 0xb0 | y; // set page to Y buf[2] = x & 0xf; // lower column address buf[3] = 0x10 | (x >> 4); // upper column addr _I2CWrite(pOBD, buf, 4); } else { // SPI mode obdWriteCommand(pOBD, 0xb0 | y); // set Y obdWriteCommand(pOBD, 0x10 | (x >> 4)); // set X MSB obdWriteCommand(pOBD, 0x00 | (x & 0xf)); // set X LSB } } /* obdSetPosition() */ // // Write a block of pixel data to the OLED // Length can be anything from 1 to 1024 (whole display) // void obdWriteDataBlock(OBDISP *pOBD, unsigned char *ucBuf, int iLen, int bRender) { unsigned char ucTemp[196]; int iPitch, iBufferSize; iPitch = pOBD->width; iBufferSize = iPitch * (pOBD->height / 8); // Keep a copy in local buffer if (pOBD->ucScreen && (iLen + pOBD->iScreenOffset) <= iBufferSize) { memcpy(&pOBD->ucScreen[pOBD->iScreenOffset], ucBuf, iLen); pOBD->iScreenOffset += iLen; // wrap around ? if (pOBD->iScreenOffset >= iBufferSize) pOBD->iScreenOffset -= iBufferSize; } if (pOBD->type == LCD_VIRTUAL || pOBD->type >= SHARP_144x168) return; // nothing else to do // Copying the data has the benefit in SPI mode of not letting // the original data get overwritten by the SPI.transfer() function if (bRender) { if (pOBD->com_mode == COM_SPI) // SPI/Bit Bang { gpio_put(pOBD->iCSPin, LOW); if (pOBD->iMOSIPin != 0xff) // Bit Bang SPI_BitBang(pOBD, ucBuf, iLen, pOBD->iMOSIPin, pOBD->iCLKPin); else spi_write_blocking(pOBD->bbi2c.picoSPI, ucBuf, iLen); gpio_put(pOBD->iCSPin, HIGH); } else // I2C { ucTemp[0] = 0x40; // data command memcpy(&ucTemp[1], ucBuf, iLen); _I2CWrite(pOBD, ucTemp, iLen + 1); } } } /* obdWriteDataBlock() */ // // Write a repeating byte to the display // void obdRepeatByte(OBDISP *pOBD, uint8_t b, int iLen) { int j; int iWidthMask = pOBD->width - 1; int iWidthShift = (pOBD->width == 128) ? 7 : 6; // assume 128 or 64 pixels wide int iSizeMask = ((pOBD->width * pOBD->height) / 8) - 1; uint8_t ucTemp[128]; memset(ucTemp, b, (iLen > 128) ? 128 : iLen); while (((pOBD->iScreenOffset & iWidthMask) + iLen) >= pOBD->width) // if it will hit the page end { j = pOBD->width - (pOBD->iScreenOffset & iWidthMask); // amount we can write in one shot obdWriteDataBlock(pOBD, ucTemp, j, 1); iLen -= j; pOBD->iScreenOffset = (pOBD->iScreenOffset + j) & iSizeMask; obdSetPosition(pOBD, pOBD->iScreenOffset & iWidthMask, (pOBD->iScreenOffset >> iWidthShift), 1); } // while it needs some help obdWriteDataBlock(pOBD, ucTemp, iLen, 1); pOBD->iScreenOffset += iLen; } /* obdRepeatByte() */ // // Play a frame of animation data // The animation data is assumed to be encoded for a full frame of the display // Given the pointer to the start of the compressed data, // it returns the pointer to the start of the next frame // Frame rate control is up to the calling program to manage // When it finishes the last frame, it will start again from the beginning // uint8_t *obdPlayAnimFrame(OBDISP *pOBD, uint8_t *pAnimation, uint8_t *pCurrent, int iLen) { uint8_t *s; int i, j; unsigned char b, bCode; int iBufferSize = (pOBD->width * pOBD->height) / 8; // size in bytes of the display devce int iWidthMask, iWidthShift; iWidthMask = pOBD->width - 1; iWidthShift = (pOBD->width == 128) ? 7 : 6; // 128 or 64 pixels wide if (pCurrent == NULL || pCurrent > pAnimation + iLen) return NULL; // invalid starting point s = (uint8_t *)pCurrent; // start of animation data i = 0; obdSetPosition(pOBD, 0, 0, 1); while (i < iBufferSize) // run one frame { bCode = (char)*(s++); switch (bCode & OP_MASK) // different compression types { case OP_SKIPCOPY: // skip/copy if (bCode == OP_SKIPCOPY) // big skip { b = (char)*(s++); i += b + 1; obdSetPosition(pOBD, i & iWidthMask, (i >> iWidthShift), 1); } else // skip/copy { if (bCode & 0x38) { i += ((bCode & 0x38) >> 3); // skip amount obdSetPosition(pOBD, i & iWidthMask, (i >> iWidthShift), 1); } if (bCode & 7) { oledWriteFlashBlock(pOBD, s, bCode & 7); s += (bCode & 7); i += bCode & 7; } } break; case OP_COPYSKIP: // copy/skip if (bCode == OP_COPYSKIP) // big copy { b = (char)*(s++); j = b + 1; oledWriteFlashBlock(pOBD, s, j); s += j; i += j; } else { j = ((bCode & 0x38) >> 3); if (j) { oledWriteFlashBlock(pOBD, s, j); s += j; i += j; } if (bCode & 7) { i += (bCode & 7); // skip obdSetPosition(pOBD, i & iWidthMask, (i >> iWidthShift), 1); } } break; case OP_REPEATSKIP: // repeat/skip j = (bCode & 0x38) >> 3; // repeat count b = (char)*(s++); obdRepeatByte(pOBD, b, j); i += j; if (bCode & 7) { i += (bCode & 7); // skip amount obdSetPosition(pOBD, i & iWidthMask, (i >> iWidthShift), 1); } break; case OP_REPEAT: j = (bCode & 0x3f) + 1; b = (char)*(s++); obdRepeatByte(pOBD, b, j); i += j; break; } // switch on code type } // while rendering a frame if (s >= pAnimation + iLen) // we've hit the end, restart from the beginning s = pAnimation; return s; // return pointer to start of next frame } /* obdPlayAnimFrame() */ // // Draw a sprite of any size in any position // If it goes beyond the left/right or top/bottom edges // it's trimmed to show the valid parts // This function requires a back buffer to be defined // The priority color (0 or 1) determines which color is painted // when a 1 is encountered in the source image. // void obdDrawSprite(OBDISP *pOBD, uint8_t *pSprite, int cx, int cy, int iPitch, int x, int y, uint8_t iPriority) { int tx, ty, dx, dy, iStartX; uint8_t *s, *d, uc, pix, ucSrcMask, ucDstMask; int iLocalPitch; iLocalPitch = pOBD->width; if (x + cx < 0 || y + cy < 0 || x >= pOBD->width || y >= pOBD->height || pOBD->ucScreen == NULL) return; // no backbuffer or out of bounds dy = y; // destination y if (y < 0) // skip the invisible parts { cy += y; y = -y; pSprite += (y * iPitch); dy = 0; } if (y + cy > pOBD->height) cy = pOBD->height - y; iStartX = 0; dx = x; if (x < 0) { cx += x; x = -x; iStartX = x; dx = 0; } if (x + cx > pOBD->width) cx = pOBD->width - x; for (ty = 0; ty < cy; ty++) { s = &pSprite[iStartX >> 3]; d = &pOBD->ucScreen[(dy >> 3) * iLocalPitch + dx]; ucSrcMask = 0x80 >> (iStartX & 7); pix = *s++; ucDstMask = 1 << (dy & 7); if (iPriority) // priority color is 1 { for (tx = 0; tx < cx; tx++) { uc = d[0]; if (pix & ucSrcMask) // set pixel in source, set it in dest d[0] = (uc | ucDstMask); d++; // next pixel column ucSrcMask >>= 1; if (ucSrcMask == 0) // read next byte { ucSrcMask = 0x80; pix = *s++; } } // for tx } // priorty color 1 else { for (tx = 0; tx < cx; tx++) { uc = d[0]; if (pix & ucSrcMask) // clr pixel in source, clr it in dest d[0] = (uc & ~ucDstMask); d++; // next pixel column ucSrcMask >>= 1; if (ucSrcMask == 0) // read next byte { ucSrcMask = 0x80; pix = *s++; } } // for tx } // priority color 0 dy++; pSprite += iPitch; } // for ty } /* obdDrawSprite() */ // // Draw a 16x16 tile in any of 4 rotated positions // Assumes input image is laid out like "normal" graphics with // the MSB on the left and 2 bytes per line // On AVR, the source image is assumed to be in FLASH memory // The function can draw the tile on byte boundaries, so the x value // can be from 0 to width-16 and y can be from 0 to (height/8)-2 // void obdDrawTile(OBDISP *pOBD, const uint8_t *pTile, int x, int y, int iRotation, int bInvert, int bRender) { uint8_t ucTemp[32]; // prepare LCD data here uint8_t i, j, k, iOffset, ucMask, uc, ucPixels; uint8_t bFlipX = 0, bFlipY = 0; if (x < 0 || y < 0 || y > (pOBD->height / 8) - 2 || x > pOBD->width - 16) return; // out of bounds if (pTile == NULL) return; // bad pointer; really? :( if (iRotation == ANGLE_180 || iRotation == ANGLE_270 || iRotation == ANGLE_FLIPX) bFlipX = 1; if (iRotation == ANGLE_180 || iRotation == ANGLE_270 || iRotation == ANGLE_FLIPY) bFlipY = 1; memset(ucTemp, 0, sizeof(ucTemp)); // we only set white pixels, so start from black if (iRotation == ANGLE_0 || iRotation == ANGLE_180 || iRotation == ANGLE_FLIPX || iRotation == ANGLE_FLIPY) { for (j = 0; j < 16; j++) // y { for (i = 0; i < 16; i += 8) // x { ucPixels = *((uint8_t *)pTile++); ucMask = 0x80; // MSB is the first source pixel for (k = 0; k < 8; k++) { if (ucPixels & ucMask) // translate the pixel { if (bFlipY) uc = 0x80 >> (j & 7); else uc = 1 << (j & 7); iOffset = i + k; if (bFlipX) iOffset = 15 - iOffset; iOffset += (j & 8) << 1; // top/bottom half of output if (bFlipY) iOffset ^= 16; ucTemp[iOffset] |= uc; } ucMask >>= 1; } // for k } // for i } // for j } else // rotated 90/270 { for (j = 0; j < 16; j++) // y { for (i = 0; i < 16; i += 8) // x { ucPixels = *((uint8_t *)pTile++); ucMask = 0x80; // MSB is the first source pixel for (k = 0; k < 8; k++) { if (ucPixels & ucMask) // translate the pixel { if (bFlipY) uc = 0x80 >> k; else uc = 1 << k; iOffset = 15 - j; if (bFlipX) iOffset = 15 - iOffset; iOffset += i << 1; // top/bottom half of output if (bFlipY) iOffset ^= 16; ucTemp[iOffset] |= uc; } ucMask >>= 1; } // for k } // for i } // for j } if (bInvert) InvertBytes(ucTemp, 32); // Send the data to the display obdSetPosition(pOBD, x, y, bRender); obdWriteDataBlock(pOBD, ucTemp, 16, bRender); // top half obdSetPosition(pOBD, x, y + 1, bRender); obdWriteDataBlock(pOBD, &ucTemp[16], 16, bRender); // bottom half } /* obdDrawTile() */ // Set (or clear) an individual pixel // The local copy of the frame buffer is used to avoid // reading data from the display controller int obdSetPixel(OBDISP *pOBD, int x, int y, unsigned char ucColor, int bRender) { int i; unsigned char uc, ucOld; int iPitch, iSize; iPitch = pOBD->width; iSize = iPitch * (pOBD->height / 8); i = ((y >> 3) * iPitch) + x; if (i < 0 || i > iSize - 1) // off the screen return -1; obdSetPosition(pOBD, x, y >> 3, bRender); if (pOBD->ucScreen) uc = ucOld = pOBD->ucScreen[i]; else if (pOBD->type == OLED_132x64 || pOBD->type == OLED_128x128) // SH1106/SH1107 can read data { uint8_t ucTemp[3]; ucTemp[0] = 0x80; // one command ucTemp[1] = 0xE0; // read_modify_write ucTemp[2] = 0xC0; // one data _I2CWrite(pOBD, ucTemp, 3); // read a dummy byte followed by the data byte we want I2CRead(&pOBD->bbi2c, pOBD->oled_addr, ucTemp, 2); uc = ucOld = ucTemp[1]; // first byte is garbage } else uc = ucOld = 0; uc &= ~(0x1 << (y & 7)); if (ucColor) { uc |= (0x1 << (y & 7)); } if (uc != ucOld) // pixel changed { // obdSetPosition(x, y>>3); if (pOBD->ucScreen) { obdWriteDataBlock(pOBD, &uc, 1, bRender); pOBD->ucScreen[i] = uc; } else if (pOBD->type == OLED_132x64 || pOBD->type == OLED_128x128) // end the read_modify_write operation { uint8_t ucTemp[4]; ucTemp[0] = 0xc0; // one data ucTemp[1] = uc; // actual data ucTemp[2] = 0x80; // one command ucTemp[3] = 0xEE; // end read_modify_write operation _I2CWrite(pOBD, ucTemp, 4); } } return 0; } /* obdSetPixel() */ // // Invert font data // void InvertBytes(uint8_t *pData, uint8_t bLen) { uint8_t i; for (i = 0; i < bLen; i++) { *pData = ~(*pData); pData++; } } /* InvertBytes() */ // // Load a 1-bpp Windows bitmap // Pass the pointer to the beginning of the BMP file // First pass version assumes a full screen bitmap // int obdLoadBMP(OBDISP *pOBD, uint8_t *pBMP, int dx, int dy, int bInvert) { int16_t i16, cx, cy; int iOffBits; // offset to bitmap data int iPitch, iDestPitch; uint8_t x, y, b, *s, *d; uint8_t dst_mask, src_mask; uint8_t bFlipped = false; iDestPitch = pOBD->width; i16 = *((uint16_t *)pBMP); if (i16 != 0x4d42) // must start with 'BM' return -1; // not a BMP file cx = *((uint16_t *)(pBMP + 18)); if (cx + dx > pOBD->width) // must fit on the display return -1; cy = *((uint16_t *)(pBMP + 22)); if (cy < 0) cy = -cy; else bFlipped = true; if (cy + dy > pOBD->height) // must fit on the display return -1; i16 = *((uint16_t *)(pBMP + 28)); if (i16 != 1) // must be 1 bit per pixel return -1; iOffBits = *((uint16_t *)(pBMP + 10)); iPitch = (((cx + 7) >> 3) + 3) & 0xfffc; // must be DWORD aligned if (bFlipped) { iOffBits += ((cy - 1) * iPitch); // start from bottom iPitch = -iPitch; } for (y = 0; y < cy; y++) { dst_mask = 1 << ((y + dy) & 7); if (pOBD->ucScreen) d = &pOBD->ucScreen[(((y + dy) >> 3) * iDestPitch) + dx]; else { d = u8Cache; if ((y & 7) == 0) memset(u8Cache, 0, sizeof(u8Cache)); } s = &pBMP[iOffBits + (y * iPitch)]; src_mask = 0; for (x = 0; x < cx; x++) { if (src_mask == 0) // need to load the next byte { b = *((uint8_t *)s++); src_mask = 0x80; // MSB on left } if (b & src_mask) { if (bInvert) d[0] &= ~dst_mask; else d[0] |= dst_mask; } else { if (bInvert) d[0] |= dst_mask; else d[0] &= ~dst_mask; } d++; src_mask >>= 1; } // for x if (pOBD->ucScreen == NULL && ((y & 7) == 7 || y == cy - 1)) // dump to LCD { obdSetPosition(pOBD, dx, (y + dy) >> 3, 1); obdWriteDataBlock(pOBD, u8Cache, cx, 1); } } // for y return 0; } /* obdLoadBMP() */ // // Set the current cursor position // The column represents the pixel column (0-127) // The row represents the text row (0-7) // void obdSetCursor(OBDISP *pOBD, int x, int y) { pOBD->iCursorX = x; pOBD->iCursorY = y; } /* obdSetCursor() */ // // Turn text wrap on or off for the oldWriteString() function // void obdSetTextWrap(OBDISP *pOBD, int bWrap) { pOBD->wrap = bWrap; } /* obdSetTextWrap() */ // // Draw a string with a fractional scale in both dimensions // the scale is a 16-bit integer with and 8-bit fraction and 8-bit mantissa // To draw at 1x scale, set the scale factor to 256. To draw at 2x, use 512 // The output must be drawn into a memory buffer, not directly to the display // int obdScaledString(OBDISP *pOBD, int x, int y, char *szMsg, int iSize, int bInvert, int iXScale, int iYScale, int iRotation) { uint32_t row, col, dx, dy; uint32_t sx, sy; uint8_t c, uc, color, *d; const uint8_t *s; uint8_t ucTemp[16]; int tx, ty, bit, iFontOff; int iPitch; int iFontWidth; if (iXScale == 0 || iYScale == 0 || szMsg == NULL || pOBD == NULL || pOBD->ucScreen == NULL || x < 0 || y < 0 || x >= pOBD->width - 1 || y >= pOBD->height - 1) return -1; // invalid display structure if (iSize != FONT_8x8 && iSize != FONT_6x8) return -1; // only on the small fonts (for now) iFontWidth = (iSize == FONT_6x8) ? 6 : 8; s = (iSize == FONT_6x8) ? ucSmallFont : ucFont; iPitch = pOBD->width; dx = (iFontWidth * iXScale) >> 8; // width of each character dy = (8 * iYScale) >> 8; // height of each character sx = 65536 / iXScale; // turn the scale into an accumulator value sy = 65536 / iYScale; while (*szMsg) { c = *szMsg++; // debug - start with normal font iFontOff = (int)(c - 32) * (iFontWidth - 1); // we can't directly use the pointer to FLASH memory, so copy to a local buffer ucTemp[0] = 0; // first column is blank memcpy(&ucTemp[1], &s[iFontOff], iFontWidth - 1); if (bInvert) InvertBytes(ucTemp, iFontWidth); col = 0; for (tx = 0; tx < (int)dx; tx++) { row = 0; uc = ucTemp[col >> 8]; for (ty = 0; ty < (int)dy; ty++) { int nx = 0, ny = 0; bit = row >> 8; color = (uc & (1 << bit)); // set or clear the pixel switch (iRotation) { case ROT_0: nx = x + tx; ny = y + ty; break; case ROT_90: nx = x - ty; ny = y + tx; break; case ROT_180: nx = x - tx; ny = y - ty; break; case ROT_270: nx = x + ty; ny = y - tx; break; } // switch on rotation direction // plot the pixel if it's within the image boundaries if (nx >= 0 && ny >= 0 && nx < pOBD->width && ny < pOBD->height) { d = &pOBD->ucScreen[(ny >> 3) * iPitch + nx]; if (color) d[0] |= (1 << (ny & 7)); else d[0] &= ~(1 << (ny & 7)); } row += sy; // add fractional increment to source row of character } // for ty col += sx; // add fractional increment to source column } // for tx // update the 'cursor' position switch (iRotation) { case ROT_0: x += dx; break; case ROT_90: y += dx; break; case ROT_180: x -= dx; break; case ROT_270: y -= dx; break; } // switch on rotation } // while (*szMsg) return 0; } /* obdScaledString() */ // // Draw a string of normal (8x8), small (6x8) or large (16x32) characters // At the given col+row // int obdWriteString(OBDISP *pOBD, int iScroll, int x, int y, char *szMsg, int iSize, int bInvert, int bRender) { int i, iFontOff, iLen, iFontSkip; unsigned char c, *s, ucTemp[40]; if (x == -1 || y == -1) // use the cursor position { x = pOBD->iCursorX; y = pOBD->iCursorY; } else { pOBD->iCursorX = x; pOBD->iCursorY = y; // set the new cursor position } if (pOBD->iCursorX >= pOBD->width || pOBD->iCursorY >= pOBD->height / 8) return -1; // can't draw off the display obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); if (iSize == FONT_8x8) // 8x8 font { i = 0; iFontSkip = iScroll & 7; // number of columns to initially skip while (pOBD->iCursorX < pOBD->width && szMsg[i] != 0 && pOBD->iCursorY < pOBD->height / 8) { if (iScroll < 8) // only display visible characters { c = (unsigned char)szMsg[i]; iFontOff = (int)(c - 32) * 7; // we can't directly use the pointer to FLASH memory, so copy to a local buffer ucTemp[0] = 0; // first column is blank memcpy(&ucTemp[1], &ucFont[iFontOff], 7); if (bInvert) InvertBytes(ucTemp, 8); iLen = 8 - iFontSkip; if (pOBD->iCursorX + iLen > pOBD->width) // clip right edge iLen = pOBD->width - pOBD->iCursorX; obdCachedWrite(pOBD, &ucTemp[iFontSkip], iLen, bRender); // obdWriteDataBlock(pOBD, &ucTemp[iFontSkip], iLen, bRender); // write character pattern pOBD->iCursorX += iLen; if (pOBD->iCursorX >= pOBD->width - 7 && pOBD->wrap) // word wrap enabled? { pOBD->iCursorX = 0; // start at the beginning of the next line pOBD->iCursorY++; obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); } iFontSkip = 0; } iScroll -= 8; i++; } // while obdCachedFlush(pOBD, bRender); // write any remaining data return 0; } // 8x8 else if (iSize == FONT_16x32) { i = 0; iFontSkip = iScroll & 15; // number of columns to initially skip while (pOBD->iCursorX < pOBD->width && pOBD->iCursorY < (pOBD->height / 8) - 3 && szMsg[i] != 0) { if (iScroll < 16) // if characters are visible { s = (unsigned char *)&ucBigFont[(unsigned char)(szMsg[i] - 32) * 64]; iLen = 16 - iFontSkip; if (pOBD->iCursorX + iLen > pOBD->width) // clip right edge iLen = pOBD->width - pOBD->iCursorX; // we can't directly use the pointer to FLASH memory, so copy to a local buffer obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); memcpy(ucTemp, s, 16); if (bInvert) InvertBytes(ucTemp, 16); obdWriteDataBlock(pOBD, &ucTemp[iFontSkip], iLen, bRender); // write character pattern obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY + 1, bRender); memcpy(ucTemp, s + 16, 16); if (bInvert) InvertBytes(ucTemp, 16); obdWriteDataBlock(pOBD, &ucTemp[iFontSkip], iLen, bRender); // write character pattern // if (pOBD->iCursorY <= 5) { obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY + 2, bRender); memcpy(ucTemp, s + 32, 16); if (bInvert) InvertBytes(ucTemp, 16); obdWriteDataBlock(pOBD, &ucTemp[iFontSkip], iLen, bRender); // write character pattern } // if (pOBD->iCursorY <= 4) { obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY + 3, bRender); memcpy(ucTemp, s + 48, 16); if (bInvert) InvertBytes(ucTemp, 16); obdWriteDataBlock(pOBD, &ucTemp[iFontSkip], iLen, bRender); // write character pattern } pOBD->iCursorX += iLen; if (pOBD->iCursorX >= pOBD->width - 15 && pOBD->wrap) // word wrap enabled? { pOBD->iCursorX = 0; // start at the beginning of the next line pOBD->iCursorY += 4; } iFontSkip = 0; } // if character visible from scrolling iScroll -= 16; i++; } // while return 0; } // 16x32 else if (iSize == FONT_16x16) // 8x8 stretched to 16x16 { i = 0; iFontSkip = iScroll & 15; // number of columns to initially skip while (pOBD->iCursorX < pOBD->width && pOBD->iCursorY < (pOBD->height / 8) - 1 && szMsg[i] != 0) { // stretch the 'normal' font instead of using the big font if (iScroll < 16) // if characters are visible { int tx, ty; c = szMsg[i] - 32; unsigned char uc1, uc2, ucMask, *pDest; s = (unsigned char *)&ucFont[(int)c * 7]; ucTemp[0] = 0; // first column is blank memcpy(&ucTemp[1], s, 7); if (bInvert) InvertBytes(ucTemp, 8); // Stretch the font to double width + double height memset(&ucTemp[8], 0, 32); // write 32 new bytes for (tx = 0; tx < 8; tx++) { ucMask = 3; pDest = &ucTemp[8 + tx * 2]; uc1 = uc2 = 0; c = ucTemp[tx]; for (ty = 0; ty < 4; ty++) { if (c & (1 << ty)) // a bit is set uc1 |= ucMask; if (c & (1 << (ty + 4))) uc2 |= ucMask; ucMask <<= 2; } pDest[0] = uc1; pDest[1] = uc1; // double width pDest[16] = uc2; pDest[17] = uc2; } iLen = 16 - iFontSkip; if (pOBD->iCursorX + iLen > pOBD->width) // clip right edge iLen = pOBD->width - pOBD->iCursorX; obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); obdWriteDataBlock(pOBD, &ucTemp[8 + iFontSkip], iLen, bRender); obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY + 1, bRender); obdWriteDataBlock(pOBD, &ucTemp[24 + iFontSkip], iLen, bRender); pOBD->iCursorX += iLen; if (pOBD->iCursorX >= pOBD->width - 15 && pOBD->wrap) // word wrap enabled? { pOBD->iCursorX = 0; // start at the beginning of the next line pOBD->iCursorY += 2; obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); } iFontSkip = 0; } // if characters are visible iScroll -= 16; i++; } // while return 0; } // 16x16 else if (iSize == FONT_12x16) // 6x8 stretched to 12x16 { i = 0; iFontSkip = iScroll % 12; // number of columns to initially skip while (pOBD->iCursorX < pOBD->width && pOBD->iCursorY < (pOBD->height / 8) - 1 && szMsg[i] != 0) { // stretch the 'normal' font instead of using the big font if (iScroll < 12) // if characters are visible { int tx, ty; c = szMsg[i] - 32; unsigned char uc1, uc2, ucMask, *pDest; s = (unsigned char *)&ucSmallFont[(int)c * 5]; ucTemp[0] = 0; // first column is blank memcpy(&ucTemp[1], s, 6); if (bInvert) InvertBytes(ucTemp, 6); // Stretch the font to double width + double height memset(&ucTemp[6], 0, 24); // write 24 new bytes for (tx = 0; tx < 6; tx++) { ucMask = 3; pDest = &ucTemp[6 + tx * 2]; uc1 = uc2 = 0; c = ucTemp[tx]; for (ty = 0; ty < 4; ty++) { if (c & (1 << ty)) // a bit is set uc1 |= ucMask; if (c & (1 << (ty + 4))) uc2 |= ucMask; ucMask <<= 2; } pDest[0] = uc1; pDest[1] = uc1; // double width pDest[12] = uc2; pDest[13] = uc2; } // smooth the diagonal lines for (tx = 0; tx < 5; tx++) { uint8_t c0, c1, ucMask2; c0 = ucTemp[tx]; c1 = ucTemp[tx + 1]; pDest = &ucTemp[6 + tx * 2]; ucMask = 1; ucMask2 = 2; for (ty = 0; ty < 7; ty++) { if (((c0 & ucMask) && !(c1 & ucMask) && !(c0 & ucMask2) && (c1 & ucMask2)) || (!(c0 & ucMask) && (c1 & ucMask) && (c0 & ucMask2) && !(c1 & ucMask2))) { if (ty < 3) // top half { if (bInvert) { pDest[1] &= ~(1 << ((ty * 2) + 1)); pDest[2] &= ~(1 << ((ty * 2) + 1)); pDest[1] &= ~(1 << ((ty + 1) * 2)); pDest[2] &= ~(1 << ((ty + 1) * 2)); } else { pDest[1] |= (1 << ((ty * 2) + 1)); pDest[2] |= (1 << ((ty * 2) + 1)); pDest[1] |= (1 << ((ty + 1) * 2)); pDest[2] |= (1 << ((ty + 1) * 2)); } } else if (ty == 3) // on the border { if (bInvert) { pDest[1] &= ~0x80; pDest[2] &= ~0x80; pDest[13] &= ~1; pDest[14] &= ~1; } else { pDest[1] |= 0x80; pDest[2] |= 0x80; pDest[13] |= 1; pDest[14] |= 1; } } else // bottom half { if (bInvert) { pDest[13] &= ~(1 << (2 * (ty - 4) + 1)); pDest[14] &= ~(1 << (2 * (ty - 4) + 1)); pDest[13] &= ~(1 << ((ty - 3) * 2)); pDest[14] &= ~(1 << ((ty - 3) * 2)); } else { pDest[13] |= (1 << (2 * (ty - 4) + 1)); pDest[14] |= (1 << (2 * (ty - 4) + 1)); pDest[13] |= (1 << ((ty - 3) * 2)); pDest[14] |= (1 << ((ty - 3) * 2)); } } } else if (!(c0 & ucMask) && (c1 & ucMask) && (c0 & ucMask2) && !(c1 & ucMask2)) { if (ty < 4) // top half { if (bInvert) { pDest[1] &= ~(1 << ((ty * 2) + 1)); pDest[2] &= ~(1 << ((ty + 1) * 2)); } else { pDest[1] |= (1 << ((ty * 2) + 1)); pDest[2] |= (1 << ((ty + 1) * 2)); } } else { if (bInvert) { pDest[13] &= ~(1 << (2 * (ty - 4) + 1)); pDest[14] &= ~(1 << ((ty - 3) * 2)); } else { pDest[13] |= (1 << (2 * (ty - 4) + 1)); pDest[14] |= (1 << ((ty - 3) * 2)); } } } ucMask <<= 1; ucMask2 <<= 1; } } iLen = 12 - iFontSkip; if (pOBD->iCursorX + iLen > pOBD->width) // clip right edge iLen = pOBD->width - pOBD->iCursorX; obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); obdWriteDataBlock(pOBD, &ucTemp[6 + iFontSkip], iLen, bRender); obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY + 1, bRender); obdWriteDataBlock(pOBD, &ucTemp[18 + iFontSkip], iLen, bRender); pOBD->iCursorX += iLen; if (pOBD->iCursorX >= pOBD->width - 11 && pOBD->wrap) // word wrap enabled? { pOBD->iCursorX = 0; // start at the beginning of the next line pOBD->iCursorY += 2; obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); } iFontSkip = 0; } // if characters are visible iScroll -= 12; i++; } // while return 0; } // 12x16 else if (iSize == FONT_6x8) { i = 0; iFontSkip = iScroll % 6; while (pOBD->iCursorX < pOBD->width && pOBD->iCursorY < (pOBD->height / 8) && szMsg[i] != 0) { if (iScroll < 6) // if characters are visible { c = szMsg[i] - 32; // we can't directly use the pointer to FLASH memory, so copy to a local buffer ucTemp[0] = 0; // first column is blank memcpy(&ucTemp[1], &ucSmallFont[(int)c * 5], 5); if (bInvert) InvertBytes(ucTemp, 6); iLen = 6 - iFontSkip; if (pOBD->iCursorX + iLen > pOBD->width) // clip right edge iLen = pOBD->width - pOBD->iCursorX; obdCachedWrite(pOBD, &ucTemp[iFontSkip], iLen, bRender); // obdWriteDataBlock(pOBD, &ucTemp[iFontSkip], iLen, bRender); // write character pattern pOBD->iCursorX += iLen; iFontSkip = 0; if (pOBD->iCursorX >= pOBD->width - 5 && pOBD->wrap) // word wrap enabled? { pOBD->iCursorX = 0; // start at the beginning of the next line pOBD->iCursorY++; obdSetPosition(pOBD, pOBD->iCursorX, pOBD->iCursorY, bRender); } } // if characters are visible iScroll -= 6; i++; } obdCachedFlush(pOBD, bRender); // write any remaining data return 0; } // 6x8 return -1; // invalid size } /* obdWriteString() */ // // Get the width of text in a custom font // void obdGetStringBox(GFXfont *pFont, char *szMsg, int *width, int *top, int *bottom) { int cx = 0; int c, i = 0; GFXglyph *pGlyph; int miny, maxy; if (width == NULL || top == NULL || bottom == NULL || pFont == NULL || szMsg == NULL) return; // bad pointers miny = 100; maxy = 0; while (szMsg[i]) { c = szMsg[i++]; if (c < pFont->first || c > pFont->last) // undefined character continue; // skip it c -= pFont->first; // first char of font defined pGlyph = &pFont->glyph[c]; cx += pGlyph->xAdvance; if (pGlyph->yOffset < miny) miny = pGlyph->yOffset; if (pGlyph->height + pGlyph->yOffset > maxy) maxy = pGlyph->height + pGlyph->yOffset; } *width = cx; *top = miny; *bottom = maxy; } /* obdGetStringBox() */ // // Draw a string of characters in a custom font // A back buffer must be defined // int obdWriteStringCustom(OBDISP *pOBD, GFXfont *pFont, int x, int y, char *szMsg, uint8_t ucColor) { int i, end_y, dx, dy, tx, ty, c, iBitOff; uint8_t *s, *d, bits, ucMask, ucClr, uc; GFXfont font; GFXglyph glyph, *pGlyph; int iPitch; if (pOBD == NULL || pFont == NULL || pOBD->ucScreen == NULL || x < 0) return -1; iPitch = pOBD->width; // in case of running on AVR, get copy of data from FLASH memcpy(&font, pFont, sizeof(font)); pGlyph = &glyph; i = 0; while (szMsg[i] && x < pOBD->width) { c = szMsg[i++]; if (c < font.first || c > font.last) // undefined character continue; // skip it c -= font.first; // first char of font defined memcpy(&glyph, &font.glyph[c], sizeof(glyph)); dx = x + pGlyph->xOffset; // offset from character UL to start drawing dy = y + pGlyph->yOffset; s = font.bitmap + pGlyph->bitmapOffset; // start of bitmap data // Bitmap drawing loop. Image is MSB first and each pixel is packed next // to the next (continuing on to the next character line) iBitOff = 0; // bitmap offset (in bits) bits = uc = 0; // bits left in this font byte end_y = dy + pGlyph->height; if (dy < 0) { // skip these lines iBitOff += (pGlyph->width * (-dy)); dy = 0; } for (ty = dy; ty < end_y && ty < pOBD->height; ty++) { ucMask = 1 << (ty & 7); // destination bit number for this line ucClr = (ucColor) ? ucMask : 0; d = &pOBD->ucScreen[(ty >> 3) * iPitch + dx]; // internal buffer dest for (tx = 0; tx < pGlyph->width; tx++) { if (uc == 0) { // need to read more font data tx += bits; // skip any remaining 0 bits uc = s[iBitOff >> 3]; // get more font bitmap data bits = 8 - (iBitOff & 7); // we might not be on a byte boundary iBitOff += bits; // because of a clipped line uc <<= (8 - bits); if (tx >= pGlyph->width) { while (tx >= pGlyph->width) { // rolls into next line(s) tx -= pGlyph->width; ty++; } if (ty >= end_y || ty >= pOBD->height) { // we're past the end tx = pGlyph->width; continue; // exit this character cleanly } // need to recalculate mask and offset in case Y changed ucMask = 1 << (ty & 7); // destination bit number for this line ucClr = (ucColor) ? ucMask : 0; d = &pOBD->ucScreen[(ty >> 3) * iPitch + dx]; // internal buffer dest } } // if we ran out of bits if (uc & 0x80) { // set pixel if (ucClr) d[tx] |= ucMask; else d[tx] &= ~ucMask; } bits--; // next bit uc <<= 1; } // for x } // for y x += pGlyph->xAdvance; // width of this character } // while drawing characters return 0; } /* obdWriteStringCustom() */ // // Render a sprite/rectangle of pixels from a provided buffer to the display. // The row values refer to byte rows, not pixel rows due to the memory // layout of OLEDs and LCDs. // returns 0 for success, -1 for invalid parameter // int obdDrawGFX(OBDISP *pOBD, uint8_t *pBuffer, int iSrcCol, int iSrcRow, int iDestCol, int iDestRow, int iWidth, int iHeight, int iSrcPitch) { int y; if (iSrcCol < 0 || iSrcCol >= pOBD->width || iSrcRow < 0 || iSrcRow > (pOBD->height / 8) - 1 || iDestCol < 0 || iDestCol >= pOBD->width || iDestRow < 0 || iDestRow >= (pOBD->height >> 3) || iSrcPitch <= 0) return -1; // invalid for (y = iSrcRow; y < iSrcRow + iHeight; y++) { uint8_t *s = &pBuffer[(y * iSrcPitch) + iSrcCol]; obdSetPosition(pOBD, iDestCol, iDestRow, 1); obdWriteDataBlock(pOBD, s, iWidth, 1); pBuffer += iSrcPitch; iDestRow++; } // for y return 0; } /* obdDrawGFX() */ // // Fill the frame buffer with a byte pattern // e.g. all off (0x00) or all on (0xff) // void obdFill(OBDISP *pOBD, unsigned char ucData, int bRender) { uint8_t y; uint8_t iLines; pOBD->iCursorX = pOBD->iCursorY = 0; if (pOBD->type == LCD_VIRTUAL || pOBD->type >= SHARP_144x168) // pure memory, handle it differently { if (pOBD->ucScreen) memset(pOBD->ucScreen, ucData, pOBD->width * (pOBD->height / 8)); return; } iLines = pOBD->height >> 3; memset(u8Cache, ucData, pOBD->width); for (y = 0; y < iLines; y++) { obdSetPosition(pOBD, 0, y, bRender); // set to (0,Y) obdWriteDataBlock(pOBD, u8Cache, pOBD->width, bRender); } // for y if (pOBD->ucScreen) memset(pOBD->ucScreen, ucData, (pOBD->width * pOBD->height) / 8); } /* obdFill() */ // // Provide or revoke a back buffer for your OLED graphics // This allows you to manage the RAM used by ss_oled on tiny // embedded platforms like the ATmega series // Pass NULL to revoke the buffer. Make sure you provide a buffer // large enough for your display (e.g. 128x64 needs 1K - 1024 bytes) // void obdSetBackBuffer(OBDISP *pOBD, uint8_t *pBuffer) { pOBD->ucScreen = pBuffer; } /* obdSetBackBuffer() */ void obdDrawLine(OBDISP *pOBD, int x1, int y1, int x2, int y2, uint8_t ucColor, int bRender) { int temp; int dx = x2 - x1; int dy = y2 - y1; int error; uint8_t *p, *pStart, mask, bOld, bNew; int xinc, yinc; int y, x; int iPitch = pOBD->width; if (x1 < 0 || x2 < 0 || y1 < 0 || y2 < 0 || x1 >= pOBD->width || x2 >= pOBD->width || y1 >= pOBD->height || y2 >= pOBD->height) return; if (abs(dx) > abs(dy)) { // X major case if (x2 < x1) { dx = -dx; temp = x1; x1 = x2; x2 = temp; temp = y1; y1 = y2; y2 = temp; } y = y1; dy = (y2 - y1); error = dx >> 1; yinc = 1; if (dy < 0) { dy = -dy; yinc = -1; } p = pStart = &pOBD->ucScreen[x1 + ((y >> 3) * iPitch)]; // point to current spot in back buffer mask = 1 << (y & 7); // current bit offset for (x = x1; x1 <= x2; x1++) { if (ucColor) *p++ |= mask; // set pixel and increment x pointer else *p++ &= ~mask; error -= dy; if (error < 0) { error += dx; if (yinc > 0) mask <<= 1; else mask >>= 1; if (mask == 0) // we've moved outside the current row, write the data we changed { obdSetPosition(pOBD, x, y >> 3, bRender); obdWriteDataBlock(pOBD, pStart, (int)(p - pStart), bRender); // write the row we changed x = x1 + 1; // we've already written the byte at x1 y1 = y + yinc; p += (yinc > 0) ? iPitch : -iPitch; pStart = p; mask = 1 << (y1 & 7); } y += yinc; } } // for x1 if (p != pStart) // some data needs to be written { obdSetPosition(pOBD, x, y >> 3, bRender); obdWriteDataBlock(pOBD, pStart, (int)(p - pStart), bRender); } } else { // Y major case if (y1 > y2) { dy = -dy; temp = x1; x1 = x2; x2 = temp; temp = y1; y1 = y2; y2 = temp; } p = &pOBD->ucScreen[x1 + ((y1 >> 3) * iPitch)]; // point to current spot in back buffer bOld = bNew = p[0]; // current data at that address mask = 1 << (y1 & 7); // current bit offset dx = (x2 - x1); error = dy >> 1; xinc = 1; if (dx < 0) { dx = -dx; xinc = -1; } for (x = x1; y1 <= y2; y1++) { if (ucColor) bNew |= mask; // set the pixel else bNew &= ~mask; error -= dx; mask <<= 1; // y1++ if (mask == 0) // we're done with this byte, write it if necessary { if (bOld != bNew) { p[0] = bNew; // save to RAM obdSetPosition(pOBD, x, y1 >> 3, bRender); obdWriteDataBlock(pOBD, &bNew, 1, bRender); } p += iPitch; // next line bOld = bNew = p[0]; mask = 1; // start at LSB again } if (error < 0) { error += dy; if (bOld != bNew) // write the last byte we modified if it changed { p[0] = bNew; // save to RAM obdSetPosition(pOBD, x, y1 >> 3, bRender); obdWriteDataBlock(pOBD, &bNew, 1, bRender); } p += xinc; x += xinc; bOld = bNew = p[0]; } } // for y if (bOld != bNew) // write the last byte we modified if it changed { p[0] = bNew; // save to RAM obdSetPosition(pOBD, x, y2 >> 3, bRender); obdWriteDataBlock(pOBD, &bNew, 1, bRender); } } // y major case } /* obdDrawLine() */ // // For drawing ellipses, a circle is drawn and the x and y pixels are scaled by a 16-bit integer fraction // This function draws a single pixel and scales its position based on the x/y fraction of the ellipse // static void DrawScaledPixel(OBDISP *pOBD, int iCX, int iCY, int x, int y, int32_t iXFrac, int32_t iYFrac, uint8_t ucColor) { uint8_t *d, ucMask; int iPitch; iPitch = pOBD->width; if (iXFrac != 0x10000) x = ((x * iXFrac) >> 16); if (iYFrac != 0x10000) y = ((y * iYFrac) >> 16); x += iCX; y += iCY; if (x < 0 || x >= pOBD->width || y < 0 || y >= pOBD->height) return; // off the screen d = &pOBD->ucScreen[((y >> 3) * iPitch) + x]; ucMask = 1 << (y & 7); if (ucColor) *d |= ucMask; else *d &= ~ucMask; } /* DrawScaledPixel() */ // // For drawing filled ellipses // static void DrawScaledLine(OBDISP *pOBD, int iCX, int iCY, int x, int y, int32_t iXFrac, int32_t iYFrac, uint8_t ucColor) { int iLen, x2; uint8_t *d, ucMask; int iPitch; iPitch = pOBD->width; if (iXFrac != 0x10000) x = ((x * iXFrac) >> 16); if (iYFrac != 0x10000) y = ((y * iYFrac) >> 16); iLen = x * 2; x = iCX - x; y += iCY; x2 = x + iLen; if (y < 0 || y >= pOBD->height) return; // completely off the screen if (x < 0) x = 0; if (x2 >= pOBD->width) x2 = pOBD->width - 1; iLen = x2 - x + 1; // new length d = &pOBD->ucScreen[((y >> 3) * iPitch) + x]; ucMask = 1 << (y & 7); if (ucColor) // white { for (; iLen > 0; iLen--) *d++ |= ucMask; } else // black { for (; iLen > 0; iLen--) *d++ &= ~ucMask; } } /* DrawScaledLine() */ // // Draw the 8 pixels around the Bresenham circle // (scaled to make an ellipse) // static void BresenhamCircle(OBDISP *pOBD, int iCX, int iCY, int x, int y, int32_t iXFrac, int32_t iYFrac, uint8_t ucColor, uint8_t bFill) { if (bFill) // draw a filled ellipse { // for a filled ellipse, draw 4 lines instead of 8 pixels DrawScaledLine(pOBD, iCX, iCY, x, y, iXFrac, iYFrac, ucColor); DrawScaledLine(pOBD, iCX, iCY, x, -y, iXFrac, iYFrac, ucColor); DrawScaledLine(pOBD, iCX, iCY, y, x, iXFrac, iYFrac, ucColor); DrawScaledLine(pOBD, iCX, iCY, y, -x, iXFrac, iYFrac, ucColor); } else // draw 8 pixels around the edges { DrawScaledPixel(pOBD, iCX, iCY, x, y, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, -x, y, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, x, -y, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, -x, -y, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, y, x, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, -y, x, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, y, -x, iXFrac, iYFrac, ucColor); DrawScaledPixel(pOBD, iCX, iCY, -y, -x, iXFrac, iYFrac, ucColor); } } /* BresenhamCircle() */ // // Draw an outline or filled ellipse // void obdEllipse(OBDISP *pOBD, int iCenterX, int iCenterY, int32_t iRadiusX, int32_t iRadiusY, uint8_t ucColor, uint8_t bFilled) { int32_t iXFrac, iYFrac; int iRadius, iDelta, x, y; if (pOBD == NULL || pOBD->ucScreen == NULL) return; // must have back buffer defined if (iRadiusX <= 0 || iRadiusY <= 0) return; // invalid radii if (iRadiusX > iRadiusY) // use X as the primary radius { iRadius = iRadiusX; iXFrac = 65536; iYFrac = (iRadiusY * 65536) / iRadiusX; } else { iRadius = iRadiusY; iXFrac = (iRadiusX * 65536) / iRadiusY; iYFrac = 65536; } iDelta = 3 - (2 * iRadius); x = 0; y = iRadius; while (x <= y) { BresenhamCircle(pOBD, iCenterX, iCenterY, x, y, iXFrac, iYFrac, ucColor, bFilled); x++; if (iDelta < 0) { iDelta += (4 * x) + 6; } else { iDelta += 4 * (x - y) + 10; y--; } } } /* obdEllipse() */ // // Draw an outline or filled ellipse with more precision // void obdPreciseEllipse(OBDISP *pOBD, int x, int y, int32_t iRadiusX, int32_t iRadiusY, uint8_t ucColor, uint8_t bFilled) { long x1 = -iRadiusX, y1 = 0; long e2 = iRadiusY, dx = (1 + 2 * x1) * e2 * e2; long dy = x1 * x1, err = dx + dy; long diff = 0; do { obdSetPixel(pOBD, x - x1, y + y1, ucColor, 0); obdSetPixel(pOBD, x - x1, y + y1, ucColor, 0); obdSetPixel(pOBD, x + x1, y + y1, ucColor, 0); obdSetPixel(pOBD, x + x1, y - y1, ucColor, 0); obdSetPixel(pOBD, x - x1, y - y1, ucColor, 0); if (bFilled) { for (int i = 0; i < ((x - x1) - (x + x1)) / 2; i++) { obdSetPixel(pOBD, x - i, y + y1, ucColor, 0); obdSetPixel(pOBD, x + i, y + y1, ucColor, 0); obdSetPixel(pOBD, x + i, y - y1, ucColor, 0); obdSetPixel(pOBD, x - i, y - y1, ucColor, 0); } } e2 = 2 * err; if (e2 >= dx) { x1++; err += dx += 2 * (long)iRadiusY * iRadiusY; } if (e2 <= dy) { y1++; err += dy += 2 * (long)iRadiusX * iRadiusX; } } while (x1 <= 0); while (y1++ < iRadiusY) { obdSetPixel(pOBD, x, y + y1, ucColor, 0); obdSetPixel(pOBD, x, y - y1, ucColor, 0); } } /* obdPreciseEllipse() */ // // Draw an outline or filled rectangle // void obdRectangle(OBDISP *pOBD, int x1, int y1, int x2, int y2, uint8_t ucColor, uint8_t bFilled) { uint8_t *d, ucMask, ucMask2; int tmp, iOff; int iPitch; if (pOBD == NULL || pOBD->ucScreen == NULL) return; // only works with a back buffer if (x1 < 0 || y1 < 0 || x2 < 0 || y2 < 0 || x1 >= pOBD->width || y1 >= pOBD->height || x2 >= pOBD->width || y2 >= pOBD->height) return; // invalid coordinates iPitch = pOBD->width; // Make sure that X1/Y1 is above and to the left of X2/Y2 // swap coordinates as needed to make this true if (x2 < x1) { tmp = x1; x1 = x2; x2 = tmp; } if (y2 < y1) { tmp = y1; y1 = y2; y2 = tmp; } if (bFilled) { int x, y, iMiddle; iMiddle = (y2 >> 3) - (y1 >> 3); ucMask = 0xff << (y1 & 7); if (iMiddle == 0) // top and bottom lines are in the same row ucMask &= (0xff >> (7 - (y2 & 7))); d = &pOBD->ucScreen[(y1 >> 3) * iPitch + x1]; // Draw top for (x = x1; x <= x2; x++) { if (ucColor) *d |= ucMask; else *d &= ~ucMask; d++; } if (iMiddle > 1) // need to draw middle part { ucMask = (ucColor) ? 0xff : 0x00; for (y = 1; y < iMiddle; y++) { d = &pOBD->ucScreen[(y1 >> 3) * iPitch + x1 + (y * iPitch)]; for (x = x1; x <= x2; x++) *d++ = ucMask; } } if (iMiddle >= 1) // need to draw bottom part { ucMask = 0xff >> (7 - (y2 & 7)); d = &pOBD->ucScreen[(y2 >> 3) * iPitch + x1]; for (x = x1; x <= x2; x++) { if (ucColor) *d++ |= ucMask; else *d++ &= ~ucMask; } } } else // outline { // see if top and bottom lines are within the same byte rows d = &pOBD->ucScreen[(y1 >> 3) * iPitch + x1]; if ((y1 >> 3) == (y2 >> 3)) { ucMask2 = 0xff << (y1 & 7); // L/R end masks ucMask = 1 << (y1 & 7); ucMask |= 1 << (y2 & 7); ucMask2 &= (0xff >> (7 - (y2 & 7))); if (ucColor) { *d++ |= ucMask2; // start x1++; for (; x1 < x2; x1++) *d++ |= ucMask; if (x1 <= x2) *d++ |= ucMask2; // right edge } else { *d++ &= ~ucMask2; x1++; for (; x1 < x2; x1++) *d++ &= ~ucMask; if (x1 <= x2) *d++ &= ~ucMask2; // right edge } } else { int y; // L/R sides iOff = (x2 - x1); ucMask = 1 << (y1 & 7); for (y = y1; y <= y2; y++) { if (ucColor) { *d |= ucMask; d[iOff] |= ucMask; } else { *d &= ~ucMask; d[iOff] &= ~ucMask; } ucMask <<= 1; if (ucMask == 0) { ucMask = 1; d += iPitch; } } // T/B sides ucMask = 1 << (y1 & 7); ucMask2 = 1 << (y2 & 7); x1++; d = &pOBD->ucScreen[(y1 >> 3) * iPitch + x1]; iOff = (y2 >> 3) - (y1 >> 3); iOff *= iPitch; for (; x1 < x2; x1++) { if (ucColor) { *d |= ucMask; d[iOff] |= ucMask2; } else { *d &= ~ucMask; d[iOff] &= ~ucMask2; } d++; } } } // outline } /* obdRectangle() */ // // Copy the current bitmap buffer from its native form (LSB_FIRST, VERTICAL_BYTES) to the requested form // returns 0 for success, -1 for error // Constants to be combined for the iFlags parameter: // Output format options - // OBD_LSB_FIRST 0x001 // OBD_MSB_FIRST 0x002 // OBD_VERT_BYTES 0x004 // OBD_HORZ_BYTES 0x008 // Orientation Options - // OBD_ROTATE_90 0x010 // OBD_FLIP_VERT 0x020 // OBD_FLIP_HORZ 0x040 // Polarity Options - // OBD_INVERT 0x080 int obdCopy(OBDISP *pOBD, int iFlags, uint8_t *pDestination) { int i, x, y, iPitch, iSize; int xStart, xEnd, yStart, yEnd, yDst, xDst, dx, dy; uint8_t ucSrcMask, ucDstMask, *s, *d; iPitch = pOBD->width; if (pDestination == NULL || pOBD == NULL || pOBD->ucScreen == NULL) return -1; // calculate output buffer size if (iFlags & OBD_HORZ_BYTES) { if (iFlags & OBD_ROTATE_90) iSize = ((pOBD->height + 7) >> 3) * pOBD->width; else iSize = ((pOBD->width + 7) >> 3) * pOBD->height; } else { if (iFlags & OBD_ROTATE_90) iSize = (pOBD->height * ((pOBD->width + 7) >> 3)); else iSize = (pOBD->width * ((pOBD->height + 7) >> 3)); } memset(pDestination, 0, iSize); // start with 0 in dest // Prepare vars for walking through the source image if (iFlags & OBD_ROTATE_90) { if (iFlags & OBD_FLIP_HORZ) { dy = 1; yStart = 0; yEnd = pOBD->height; } else { dy = -1; yStart = pOBD->height - 1; yEnd = -1; } if (iFlags & OBD_FLIP_VERT) { dx = -1; xStart = pOBD->width - 1; xEnd = -1; } else { dx = 1; xStart = 0; xEnd = pOBD->width; } } else { // not rotated if (iFlags & OBD_FLIP_HORZ) { dx = -1; xStart = pOBD->width - 1; xEnd = -1; } else { dx = 1; xStart = 0; xEnd = pOBD->width; } if (iFlags & OBD_FLIP_VERT) { dy = -1; yStart = pOBD->height - 1; yEnd = -1; } else { dy = 1; yStart = 0; yEnd = pOBD->height; } } // Due to the possible number of permutations, the different loops // are more generic and handle flips/bit-direction with a more general // approach which moves individual pixels even when a more efficient // method is possible. More cycles, but able to do EVERYTHING // Separate output by byte orientation // Vertical bytes here if (iFlags & OBD_VERT_BYTES) { if (iFlags & OBD_ROTATE_90) { xDst = 0; for (y = yStart; y != yEnd; y += dy, xDst++) { ucSrcMask = (1 << (y & 7)); yDst = 0; s = &pOBD->ucScreen[(y >> 3) * iPitch]; d = &pDestination[xDst]; for (x = xStart; x != xEnd; x += dx, yDst++) { if (s[x] & ucSrcMask) { // set pixel, copy to dest if (iFlags & OBD_LSB_FIRST) d[(yDst >> 3) * pOBD->height] |= (1 << (yDst & 7)); else d[(yDst >> 3) * pOBD->height] |= (0x80 >> (yDst & 7)); } } // for x } // for y } // rotate 90 else // normally oriented { yDst = 0; for (y = yStart; y != yEnd; y += dy, yDst++) { ucSrcMask = (1 << (y & 7)); if (iFlags & OBD_LSB_FIRST) ucDstMask = (1 << (y & 7)); else ucDstMask = (0x80 >> (y & 7)); xDst = 0; s = &pOBD->ucScreen[(y >> 3) * iPitch]; d = &pDestination[(yDst >> 3) * iPitch]; for (x = xStart; x != xEnd; x += dx, xDst++) { if (s[x] & ucSrcMask) // set pixel, copy to dest d[xDst] |= ucDstMask; } // for x } // for y } // normal orientation } // vertical bytes else // Horizontal bytes here { if (iFlags & OBD_ROTATE_90) { int iDstPitch = (pOBD->height + 7) >> 3; // dest bytes per line xDst = 0; for (y = yStart; y != yEnd; y += dy, xDst++) { ucSrcMask = (1 << (y & 7)); yDst = 0; s = &pOBD->ucScreen[(y >> 3) * iPitch]; d = &pDestination[xDst >> 3]; ucDstMask = (iFlags & OBD_LSB_FIRST) ? (1 << (xDst & 7)) : (0x80 >> (xDst & 7)); for (x = xStart; x != xEnd; x += dx, yDst++) { if (s[x] & ucSrcMask) // set pixel, copy to dest d[yDst * iDstPitch] |= ucDstMask; } // for x } // for y } // rotate 90 else // normally oriented { int iDstPitch = (pOBD->width + 7) >> 3; // dest bytes per line yDst = 0; for (y = yStart; y != yEnd; y += dy, yDst++) { ucSrcMask = (1 << (y & 7)); xDst = 0; s = &pOBD->ucScreen[(y >> 3) * iPitch]; d = &pDestination[yDst * iDstPitch]; ucDstMask = (iFlags & OBD_LSB_FIRST) ? 0x1 : 0x80; for (x = xStart; x != xEnd; x += dx, xDst++) { if (s[x] & ucSrcMask) // set pixel, copy to dest d[(xDst >> 3)] |= ucDstMask; if (iFlags & OBD_LSB_FIRST) ucDstMask <<= 1; else ucDstMask >>= 1; if (ucDstMask == 0) ucDstMask = (iFlags & OBD_LSB_FIRST) ? 0x1 : 0x80; } // for x } // for y } // normal orientation } // Invert all pixels? if (iFlags & OBD_INVERT) { for (i = 0; i < iSize; i++) pDestination[i] = 255 - pDestination[i]; } return 0; } /* obdCopy() */ ================================================ FILE: lib/PlayerLEDs/include/PlayerLEDs.h ================================================ #ifndef PLAYER_LEDS_H_ #define PLAYER_LEDS_H_ #include #include #define PLED_COUNT 4 #define PLED_MAX_BRIGHTNESS 0xFF #define PLED_MAX_LEVEL 0xFFFF typedef enum { PLED_TYPE_NONE = -1, PLED_TYPE_PWM = 0, PLED_TYPE_RGB = 1, } PLEDType; typedef enum { PLED_STATE_LED1 = (1 << 0), PLED_STATE_LED2 = (1 << 1), PLED_STATE_LED3 = (1 << 2), PLED_STATE_LED4 = (1 << 3), } PLEDStateMask; typedef enum { PLED_ANIM_NONE, PLED_ANIM_OFF, PLED_ANIM_SOLID, PLED_ANIM_BLINK, PLED_ANIM_CYCLE, PLED_ANIM_FADE, } PLEDAnimationType; const PLEDAnimationType ANIMATION_TYPES[] = { PLED_ANIM_NONE, PLED_ANIM_OFF, PLED_ANIM_SOLID, PLED_ANIM_BLINK, PLED_ANIM_CYCLE, PLED_ANIM_FADE, }; typedef enum { PLED_SPEED_OFF = 0, PLED_SPEED_LUDICROUS = 20, PLED_SPEED_FASTER = 100, PLED_SPEED_FAST = 250, PLED_SPEED_NORMAL = 500, PLED_SPEED_SLOW = 1000, } PLEDAnimationSpeed; const PLEDAnimationSpeed ANIMATION_SPEEDS[] = { PLED_SPEED_OFF, PLED_SPEED_LUDICROUS, PLED_SPEED_FASTER, PLED_SPEED_FAST, PLED_SPEED_NORMAL, PLED_SPEED_SLOW, }; struct PLEDAnimationState { uint8_t state = 0; PLEDAnimationType animation; PLEDAnimationSpeed speed; }; class PlayerLEDs { public: virtual void setup() = 0; virtual void display() = 0; void animate(PLEDAnimationState animationState); protected: void parseState(uint8_t state) { memcpy(lastPledState, currentPledState, sizeof(currentPledState)); for (int i = 0; i < PLED_COUNT; i++) currentPledState[i] = (state & (1 << i)) == (1 << i); } inline void reset() { memset(lastPledState, 0, sizeof(lastPledState)); memset(currentPledState, 0, sizeof(currentPledState)); nextAnimationTime = get_absolute_time(); brightness = PLED_MAX_BRIGHTNESS; fadeIn = false; } inline void handleBlink(PLEDAnimationSpeed speed) { for (int i = 0; i < PLED_COUNT; i++) { if (lastPledState[i]) currentPledState[i] = false; } nextAnimationTime = make_timeout_time_ms(speed); } inline void handleCycle(PLEDAnimationSpeed speed) { for (int i = 0; i < PLED_COUNT; i++) { if (lastPledState[i] != 0) { memset(currentPledState, 0, sizeof(currentPledState)); for (int j = 0; j < PLED_COUNT; j++) { if (lastPledState[j]) { currentPledState[(j + 1) % PLED_COUNT] = true; break; } } break; } } nextAnimationTime = make_timeout_time_ms(speed); } inline void handleFade() { if (fadeIn) { brightness += 5; if (brightness == PLED_MAX_BRIGHTNESS) fadeIn = false; } else { brightness -= 5; if (brightness == 0) fadeIn = true; } nextAnimationTime = make_timeout_time_ms(PLED_SPEED_LUDICROUS); } uint16_t ledLevels[PLED_COUNT] = {PLED_MAX_LEVEL, PLED_MAX_LEVEL, PLED_MAX_LEVEL, PLED_MAX_LEVEL}; absolute_time_t nextAnimationTime; PLEDAnimationType selectedAnimation = PLED_ANIM_NONE; bool lastPledState[PLED_COUNT] = { }; bool currentPledState[PLED_COUNT] = { }; uint8_t brightness = PLED_MAX_BRIGHTNESS; bool fadeIn = false; }; #endif ================================================ FILE: lib/PlayerLEDs/src/PlayerLEDs.cpp ================================================ #include "PlayerLEDs.h" #include "pico/stdlib.h" #include "hardware/pwm.h" void PlayerLEDs::animate(PLEDAnimationState animationState) { // Reset state and bypass timer check if animation changed if (animationState.animation != selectedAnimation) { reset(); selectedAnimation = animationState.animation; } else if (!time_reached(nextAnimationTime)) { return; } parseState(animationState.state); switch (selectedAnimation) { case PLED_ANIM_BLINK: handleBlink(animationState.speed); break; case PLED_ANIM_CYCLE: handleCycle(animationState.speed); break; case PLED_ANIM_FADE: handleFade(); break; default: break; } for (int i = 0; i < PLED_COUNT; i++) ledLevels[i] = PLED_MAX_LEVEL - (currentPledState[i] ? (brightness * brightness) : 0); } ================================================ FILE: lib/TinyUSB_Gamepad/include/hid_driver.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #pragma once #include "device/usbd_pvt.h" #include "descriptors/HIDDescriptors.h" #include "descriptors/SwitchDescriptors.h" extern const usbd_class_driver_t hid_driver; bool send_hid_report(uint8_t report_id, void *report, uint8_t report_size); ================================================ FILE: lib/TinyUSB_Gamepad/include/net_driver.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #pragma once #include "device/usbd_pvt.h" #include "class/net/net_device.h" extern const usbd_class_driver_t net_driver; bool send_hid_report(uint8_t report_id, uint8_t *report, uint8_t report_size); ================================================ FILE: lib/TinyUSB_Gamepad/include/usb_driver.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #pragma once #include "GamepadDescriptors.h" typedef enum { USB_MODE_HID, USB_MODE_NET, } UsbMode; InputMode get_input_mode(void); void initialize_driver(InputMode mode); void receive_report(uint8_t *buffer); void send_report(void *report, uint16_t report_size); ================================================ FILE: lib/TinyUSB_Gamepad/include/webserver_descriptors.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #pragma once #include #include "tusb.h" enum { STRID_LANGID = 0, STRID_MANUFACTURER, STRID_PRODUCT, STRID_SERIAL, STRID_INTERFACE, STRID_MAC }; static const uint8_t webserver_string_language[] = { 0x09, 0x04 }; static const uint8_t webserver_string_manufacturer[] = "TinyUSB"; static const uint8_t webserver_string_product[] = "USB Webserver"; static const uint8_t webserver_string_version[] = "1.0"; static const uint8_t *webserver_string_descriptors[] = { webserver_string_language, webserver_string_manufacturer, webserver_string_product, webserver_string_version }; static const tusb_desc_device_t webserver_device_descriptor = { .bLength = sizeof(tusb_desc_device_t), .bDescriptorType = TUSB_DESC_DEVICE, .bcdUSB = 0x0200, // Use Interface Association Descriptor (IAD) device class .bDeviceClass = TUSB_CLASS_MISC, .bDeviceSubClass = MISC_SUBCLASS_COMMON, .bDeviceProtocol = MISC_PROTOCOL_IAD, .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE, .idVendor = 0xCAFE, .idProduct = 0x4001, .bcdDevice = 0x0101, .iManufacturer = 0x01, .iProduct = 0x02, .iSerialNumber = 0x03, .bNumConfigurations = 0x02 // multiple configurations }; #define MAIN_CONFIG_TOTAL_LEN (TUD_CONFIG_DESC_LEN + TUD_RNDIS_DESC_LEN) #define ALT_CONFIG_TOTAL_LEN (TUD_CONFIG_DESC_LEN + TUD_CDC_ECM_DESC_LEN) #define CONFIG_TOTAL_LEN (TUD_CONFIG_DESC_LEN + TUD_HID_INOUT_DESC_LEN) #define EPNUM_HID 0x01 #define EPNUM_NET_NOTIF 0x81 #define EPNUM_NET_OUT 0x02 #define EPNUM_NET_IN 0x82 static uint8_t const rndis_configuration[] = { // Config number (index+1), interface count, string index, total length, attribute, power in mA TUD_CONFIG_DESCRIPTOR(1, 2, 0, MAIN_CONFIG_TOTAL_LEN, 0, 100), // Interface number, string index, EP notification address and size, EP data address (out, in) and size. TUD_RNDIS_DESCRIPTOR(0, STRID_INTERFACE, EPNUM_NET_NOTIF, 8, EPNUM_NET_OUT, EPNUM_NET_IN, CFG_TUD_NET_ENDPOINT_SIZE), }; static uint8_t const ecm_configuration[] = { // Config number (index+1), interface count, string index, total length, attribute, power in mA TUD_CONFIG_DESCRIPTOR(2, 2, 0, ALT_CONFIG_TOTAL_LEN, 0, 100), // Interface number, description string index, MAC address string index, EP notification address and size, EP data address (out, in), and size, max segment size. TUD_CDC_ECM_DESCRIPTOR(0, STRID_INTERFACE, STRID_MAC, EPNUM_NET_NOTIF, 64, EPNUM_NET_OUT, EPNUM_NET_IN, CFG_TUD_NET_ENDPOINT_SIZE, CFG_TUD_NET_MTU), }; // Configuration array: RNDIS and CDC-ECM // - Windows only works with RNDIS // - MacOS only works with CDC-ECM // - Linux will work on both // Note index is Num-1x static uint8_t const * const net_configuration_arr[] = { rndis_configuration, ecm_configuration, }; ================================================ FILE: lib/TinyUSB_Gamepad/include/xinput_driver.h ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #pragma once #include #include "tusb.h" #include "device/usbd_pvt.h" #include "descriptors/XInputDescriptors.h" #define XINPUT_OUT_SIZE 32 typedef enum { XINPUT_PLED_OFF = 0x00, // All off XINPUT_PLED_BLINKALL = 0x01, // All blinking XINPUT_PLED_FLASH1 = 0x02, // 1 flashes, then on XINPUT_PLED_FLASH2 = 0x03, // 2 flashes, then on XINPUT_PLED_FLASH3 = 0x04, // 3 flashes, then on XINPUT_PLED_FLASH4 = 0x05, // 4 flashes, then on XINPUT_PLED_ON1 = 0x06, // 1 on XINPUT_PLED_ON2 = 0x07, // 2 on XINPUT_PLED_ON3 = 0x08, // 3 on XINPUT_PLED_ON4 = 0x09, // 4 on XINPUT_PLED_ROTATE = 0x0A, // Rotating (e.g. 1-2-4-3) XINPUT_PLED_BLINK = 0x0B, // Blinking* XINPUT_PLED_SLOWBLINK = 0x0C, // Slow blinking* XINPUT_PLED_ALTERNATE = 0x0D, // Alternating (e.g. 1+4-2+3), then back to previous* } XInputPLEDPattern; // USB endpoint state vars extern uint8_t endpoint_in; extern uint8_t endpoint_out; extern uint8_t xinput_out_buffer[XINPUT_OUT_SIZE]; extern const usbd_class_driver_t xinput_driver; void receive_xinput_report(void); bool send_xinput_report(void *report, uint8_t report_size); #pragma once ================================================ FILE: lib/TinyUSB_Gamepad/library.json ================================================ { "name": "tinyusb-gamepad-driver", "version": "0.0.1", "description": "C library for handling USB HID/XID gamepads via TinyUSB.", "keywords": "tinyusb gamepad hid xinput switch", "authors": [ { "name": "Jason Skuby", "url": "https://mytechtoybox.com" } ], "dependencies": { "MPG": "https://github.com/FeralAI/MPG.git#e529c802b679b2bee8ec93b2ac4ed72edb9cf369" }, "license": "MIT" } ================================================ FILE: lib/TinyUSB_Gamepad/src/hid_driver.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include "hid_driver.h" #include "usb_driver.h" #include "device/usbd_pvt.h" #include "class/hid/hid_device.h" #include "GamepadDescriptors.h" // Magic byte sequence to enable PS button on PS3 static const uint8_t magic_init_bytes[8] = { 0x21, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00 }; bool send_hid_report(uint8_t report_id, void *report, uint8_t report_size) { if (tud_hid_ready()) return tud_hid_report(report_id, report, report_size); return false; } bool hid_device_control_request(uint8_t rhport, tusb_control_request_t const * request) { if ( get_input_mode() == INPUT_MODE_HID && request->bmRequestType == 0xA1 && request->bRequest == HID_REQ_CONTROL_GET_REPORT && request->wValue == 0x0300 ) { return tud_hid_report(0, magic_init_bytes, sizeof(magic_init_bytes)); } else { return hidd_control_request(rhport, request); } } const usbd_class_driver_t hid_driver = { #if CFG_TUSB_DEBUG >= 2 .name = "HID", #endif .init = hidd_init, .reset = hidd_reset, .open = hidd_open, .control_request = hid_device_control_request, .control_complete = hidd_control_complete, .xfer_cb = hidd_xfer_cb, .sof = NULL }; ================================================ FILE: lib/TinyUSB_Gamepad/src/net_driver.cpp ================================================ #include "net_driver.h" const usbd_class_driver_t net_driver = { #if CFG_TUSB_DEBUG >= 2 .name = "NET", #endif .init = netd_init, .reset = netd_reset, .open = netd_open, .control_request = netd_control_request, .control_complete = netd_control_complete, .xfer_cb = netd_xfer_cb, .sof = NULL, }; ================================================ FILE: lib/TinyUSB_Gamepad/src/tusb_driver.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include #include "tusb_config.h" #include "tusb.h" #include "class/hid/hid.h" #include "device/usbd_pvt.h" #include "GamepadDescriptors.h" #include "usb_driver.h" #include "net_driver.h" #include "hid_driver.h" #include "xinput_driver.h" UsbMode usb_mode = USB_MODE_HID; InputMode input_mode = INPUT_MODE_XINPUT; InputMode get_input_mode(void) { return input_mode; } void initialize_driver(InputMode mode) { input_mode = mode; if (mode == INPUT_MODE_CONFIG) usb_mode = USB_MODE_NET; tusb_init(); } void receive_report(uint8_t *buffer) { if (input_mode == INPUT_MODE_XINPUT) { receive_xinput_report(); memcpy(buffer, xinput_out_buffer, XINPUT_OUT_SIZE); } } void send_report(void *report, uint16_t report_size) { static uint8_t previous_report[CFG_TUD_ENDPOINT0_SIZE] = { }; if (tud_suspended()) tud_remote_wakeup(); if (memcmp(previous_report, report, report_size) != 0) { bool sent = false; switch (input_mode) { case INPUT_MODE_XINPUT: sent = send_xinput_report(report, report_size); break; default: sent = send_hid_report(0, report, report_size); break; } if (sent) memcpy(previous_report, report, report_size); } } /* USB Driver Callback (Required for XInput) */ const usbd_class_driver_t *usbd_app_driver_get_cb(uint8_t *driver_count) { *driver_count = 1; if (usb_mode == USB_MODE_NET) { return &net_driver; } else { switch (input_mode) { case INPUT_MODE_XINPUT: return &xinput_driver; default: return &hid_driver; } } } /* USB HID Callbacks (Required) */ // Invoked when received GET_REPORT control request // Application must fill buffer report's content and return its length. // Return zero will cause the stack to STALL request uint16_t tud_hid_get_report_cb(uint8_t itf, uint8_t report_id, hid_report_type_t report_type, uint8_t *buffer, uint16_t reqlen) { // TODO: Handle the correct report type, if required (void)itf; (void)report_id; (void)report_type; (void)reqlen; uint8_t report_size = 0; SwitchReport switch_report; HIDReport hid_report; switch (input_mode) { case INPUT_MODE_SWITCH: report_size = sizeof(SwitchReport); memcpy(buffer, &switch_report, report_size); break; default: report_size = sizeof(HIDReport); memcpy(buffer, &hid_report, report_size); break; } return report_size; } // Invoked when received SET_REPORT control request or // received data on OUT endpoint ( Report ID = 0, Type = 0 ) void tud_hid_set_report_cb(uint8_t itf, uint8_t report_id, hid_report_type_t report_type, uint8_t const *buffer, uint16_t bufsize) { (void) itf; // echo back anything we received from host tud_hid_report(report_id, buffer, bufsize); } /* Device callbacks (Optional) */ // Invoked when device is mounted void tud_mount_cb(void) { } // Invoked when device is unmounted void tud_umount_cb(void) { } // Invoked when usb bus is suspended // remote_wakeup_en : if host allow us to perform remote wakeup // Within 7ms, device must draw an average of current less than 2.5 mA from bus void tud_suspend_cb(bool remote_wakeup_en) { (void)remote_wakeup_en; } // Invoked when usb bus is resumed void tud_resume_cb(void) { } ================================================ FILE: lib/TinyUSB_Gamepad/src/usb_descriptors.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) * SPDX-FileCopyrightText: Copyright (c) 2019 Ha Thach (tinyusb.org) */ #include #include "tusb.h" #include "usb_driver.h" #include "GamepadDescriptors.h" #include "webserver_descriptors.h" // Invoked when received GET STRING DESCRIPTOR request // Application return pointer to descriptor, whose contents must exist long enough for transfer to complete uint16_t const *tud_descriptor_string_cb(uint8_t index, uint16_t langid) { (void)langid; if (get_input_mode() == INPUT_MODE_CONFIG) { return reinterpret_cast(webserver_string_descriptors[index]); } else { uint16_t size = 0; return getStringDescriptor(&size, get_input_mode(), index); } } // Invoked when received GET DEVICE DESCRIPTOR // Application return pointer to descriptor uint8_t const *tud_descriptor_device_cb(void) { switch (get_input_mode()) { case INPUT_MODE_CONFIG: return reinterpret_cast(&webserver_device_descriptor); case INPUT_MODE_XINPUT: return xinput_device_descriptor; case INPUT_MODE_SWITCH: return switch_device_descriptor; default: return hid_device_descriptor; } } // Invoked when received GET HID REPORT DESCRIPTOR // Application return pointer to descriptor // Descriptor contents must exist long enough for transfer to complete uint8_t const *tud_hid_descriptor_report_cb(uint8_t itf) { (void) itf; switch (get_input_mode()) { case INPUT_MODE_SWITCH: return switch_report_descriptor; default: return hid_report_descriptor; } } // Invoked when received GET CONFIGURATION DESCRIPTOR // Application return pointer to descriptor // Descriptor contents must exist long enough for transfer to complete uint8_t const *tud_descriptor_configuration_cb(uint8_t index) { switch (get_input_mode()) { case INPUT_MODE_CONFIG: return net_configuration_arr[index]; case INPUT_MODE_XINPUT: return xinput_configuration_descriptor; case INPUT_MODE_SWITCH: return switch_configuration_descriptor; default: return hid_configuration_descriptor; } } ================================================ FILE: lib/TinyUSB_Gamepad/src/xinput_driver.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include "xinput_driver.h" uint8_t endpoint_in = 0; uint8_t endpoint_out = 0; uint8_t xinput_out_buffer[XINPUT_OUT_SIZE] = { }; void receive_xinput_report(void) { if ( tud_ready() && (endpoint_out != 0) && (!usbd_edpt_busy(0, endpoint_out)) ) { usbd_edpt_claim(0, endpoint_out); // Take control of OUT endpoint usbd_edpt_xfer(0, endpoint_out, xinput_out_buffer, XINPUT_OUT_SIZE); // Retrieve report buffer usbd_edpt_release(0, endpoint_out); // Release control of OUT endpoint } } bool send_xinput_report(void *report, uint8_t report_size) { bool sent = false; if ( tud_ready() && // Is the device ready? (endpoint_in != 0) && (!usbd_edpt_busy(0, endpoint_in)) // Is the IN endpoint available? ) { usbd_edpt_claim(0, endpoint_in); // Take control of IN endpoint usbd_edpt_xfer(0, endpoint_in, (uint8_t *)report, report_size); // Send report buffer usbd_edpt_release(0, endpoint_in); // Release control of IN endpoint sent = true; } return sent; } static void xinput_init(void) { } static void xinput_reset(uint8_t rhport) { (void)rhport; } static uint16_t xinput_open(uint8_t rhport, tusb_desc_interface_t const *itf_descriptor, uint16_t max_length) { uint16_t driver_length = sizeof(tusb_desc_interface_t) + (itf_descriptor->bNumEndpoints * sizeof(tusb_desc_endpoint_t)) + 16; TU_VERIFY(max_length >= driver_length, 0); uint8_t const *current_descriptor = tu_desc_next(itf_descriptor); uint8_t found_endpoints = 0; while ((found_endpoints < itf_descriptor->bNumEndpoints) && (driver_length <= max_length)) { tusb_desc_endpoint_t const *endpoint_descriptor = (tusb_desc_endpoint_t const *)current_descriptor; if (TUSB_DESC_ENDPOINT == tu_desc_type(endpoint_descriptor)) { TU_ASSERT(usbd_edpt_open(rhport, endpoint_descriptor)); if (tu_edpt_dir(endpoint_descriptor->bEndpointAddress) == TUSB_DIR_IN) endpoint_in = endpoint_descriptor->bEndpointAddress; else endpoint_out = endpoint_descriptor->bEndpointAddress; ++found_endpoints; } current_descriptor = tu_desc_next(current_descriptor); } return driver_length; } static bool xinput_device_control_request(uint8_t rhport, tusb_control_request_t const *request) { (void)rhport; (void)request; return true; } static bool xinput_control_complete(uint8_t rhport, tusb_control_request_t const *request) { (void)rhport; (void)request; return true; } static bool xinput_xfer_callback(uint8_t rhport, uint8_t ep_addr, xfer_result_t result, uint32_t xferred_bytes) { (void)rhport; (void)result; (void)xferred_bytes; if (ep_addr == endpoint_out) usbd_edpt_xfer(0, endpoint_out, xinput_out_buffer, XINPUT_OUT_SIZE); return true; } const usbd_class_driver_t xinput_driver = { #if CFG_TUSB_DEBUG >= 2 .name = "XINPUT", #endif .init = xinput_init, .reset = xinput_reset, .open = xinput_open, .control_request = xinput_device_control_request, .control_complete = xinput_control_complete, .xfer_cb = xinput_xfer_callback, .sof = NULL }; ================================================ FILE: lib/httpd/fs.c ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels * */ #include "lwip/opt.h" #include "lwip/def.h" #include "fs.h" #include "fsdata.h" #include /** Set this to 1 to include "fsdata_custom.c" instead of "fsdata.c" for the * file system (to prevent changing the file included in CVS) */ #ifndef HTTPD_USE_CUSTOM_FSDATA #define HTTPD_USE_CUSTOM_FSDATA 0 #endif #if HTTPD_USE_CUSTOM_FSDATA #include "fsdata_custom.c" #else /* HTTPD_USE_CUSTOM_FSDATA */ #include "fsdata.c" #endif /* HTTPD_USE_CUSTOM_FSDATA */ /*-----------------------------------------------------------------------------------*/ #if LWIP_HTTPD_CUSTOM_FILES int fs_open_custom(struct fs_file *file, const char *name); void fs_close_custom(struct fs_file *file); #if LWIP_HTTPD_FS_ASYNC_READ u8_t fs_canread_custom(struct fs_file *file); u8_t fs_wait_read_custom(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg); #endif /* LWIP_HTTPD_FS_ASYNC_READ */ #endif /* LWIP_HTTPD_CUSTOM_FILES */ /*-----------------------------------------------------------------------------------*/ err_t fs_open(struct fs_file *file, const char *name) { const struct fsdata_file *f; if ((file == NULL) || (name == NULL)) { return ERR_ARG; } for (f = FS_ROOT; f != NULL; f = f->next) { if (!strcmp(name, (char *)f->name)) { file->data = (const char *)f->data; file->len = f->len; file->index = f->len; file->pextension = NULL; file->http_header_included = f->http_header_included; file->is_custom_file = 0; #if HTTPD_PRECALCULATED_CHECKSUM file->chksum_count = f->chksum_count; file->chksum = f->chksum; #endif /* HTTPD_PRECALCULATED_CHECKSUM */ #if LWIP_HTTPD_FILE_STATE file->state = fs_state_init(file, name); #endif /* #if LWIP_HTTPD_FILE_STATE */ return ERR_OK; } #if LWIP_HTTPD_CUSTOM_FILES if (fs_open_custom(file, name)) { file->is_custom_file = 1; return ERR_OK; } #endif /* LWIP_HTTPD_CUSTOM_FILES */ } /* file not found */ return ERR_VAL; } /*-----------------------------------------------------------------------------------*/ void fs_close(struct fs_file *file) { #if LWIP_HTTPD_CUSTOM_FILES if (file->is_custom_file) { fs_close_custom(file); } #endif /* LWIP_HTTPD_CUSTOM_FILES */ #if LWIP_HTTPD_FILE_STATE fs_state_free(file, file->state); #endif /* #if LWIP_HTTPD_FILE_STATE */ LWIP_UNUSED_ARG(file); } /*-----------------------------------------------------------------------------------*/ #if LWIP_HTTPD_DYNAMIC_FILE_READ #if LWIP_HTTPD_FS_ASYNC_READ int fs_read_async(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg) #else /* LWIP_HTTPD_FS_ASYNC_READ */ int fs_read(struct fs_file *file, char *buffer, int count) #endif /* LWIP_HTTPD_FS_ASYNC_READ */ { int read; if(file->index == file->len) { return FS_READ_EOF; } #if LWIP_HTTPD_FS_ASYNC_READ #if LWIP_HTTPD_CUSTOM_FILES if (!fs_canread_custom(file)) { if (fs_wait_read_custom(file, callback_fn, callback_arg)) { return FS_READ_DELAYED; } } #else /* LWIP_HTTPD_CUSTOM_FILES */ LWIP_UNUSED_ARG(callback_fn); LWIP_UNUSED_ARG(callback_arg); #endif /* LWIP_HTTPD_CUSTOM_FILES */ #endif /* LWIP_HTTPD_FS_ASYNC_READ */ read = file->len - file->index; if(read > count) { read = count; } MEMCPY(buffer, (file->data + file->index), read); file->index += read; return(read); } #endif /* LWIP_HTTPD_DYNAMIC_FILE_READ */ /*-----------------------------------------------------------------------------------*/ #if LWIP_HTTPD_FS_ASYNC_READ int fs_is_file_ready(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg) { if (file != NULL) { #if LWIP_HTTPD_FS_ASYNC_READ #if LWIP_HTTPD_CUSTOM_FILES if (!fs_canread_custom(file)) { if (fs_wait_read_custom(file, callback_fn, callback_arg)) { return 0; } } #else /* LWIP_HTTPD_CUSTOM_FILES */ LWIP_UNUSED_ARG(callback_fn); LWIP_UNUSED_ARG(callback_arg); #endif /* LWIP_HTTPD_CUSTOM_FILES */ #endif /* LWIP_HTTPD_FS_ASYNC_READ */ } return 1; } #endif /* LWIP_HTTPD_FS_ASYNC_READ */ /*-----------------------------------------------------------------------------------*/ int fs_bytes_left(struct fs_file *file) { return file->len - file->index; } ================================================ FILE: lib/httpd/fs.h ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels * */ #ifndef __FS_H__ #define __FS_H__ #include "lwip/opt.h" #include "lwip/err.h" /** Set this to 1 and provide the functions: * - "int fs_open_custom(struct fs_file *file, const char *name)" * Called first for every opened file to allow opening files * that are not included in fsdata(_custom).c * - "void fs_close_custom(struct fs_file *file)" * Called to free resources allocated by fs_open_custom(). */ #ifndef LWIP_HTTPD_CUSTOM_FILES #define LWIP_HTTPD_CUSTOM_FILES 0 #endif /** Set this to 1 to support fs_read() to dynamically read file data. * Without this (default=off), only one-block files are supported, * and the contents must be ready after fs_open(). */ #ifndef LWIP_HTTPD_DYNAMIC_FILE_READ #define LWIP_HTTPD_DYNAMIC_FILE_READ 0 #endif /** Set this to 1 to include an application state argument per file * that is opened. This allows to keep a state per connection/file. */ #ifndef LWIP_HTTPD_FILE_STATE #define LWIP_HTTPD_FILE_STATE 0 #endif /** HTTPD_PRECALCULATED_CHECKSUM==1: include precompiled checksums for * predefined (MSS-sized) chunks of the files to prevent having to calculate * the checksums at runtime. */ #ifndef HTTPD_PRECALCULATED_CHECKSUM #define HTTPD_PRECALCULATED_CHECKSUM 0 #endif /** LWIP_HTTPD_FS_ASYNC_READ==1: support asynchronous read operations * (fs_read_async returns FS_READ_DELAYED and calls a callback when finished). */ #ifndef LWIP_HTTPD_FS_ASYNC_READ #define LWIP_HTTPD_FS_ASYNC_READ 0 #endif #define FS_READ_EOF -1 #define FS_READ_DELAYED -2 #if HTTPD_PRECALCULATED_CHECKSUM struct fsdata_chksum { u32_t offset; u16_t chksum; u16_t len; }; #endif /* HTTPD_PRECALCULATED_CHECKSUM */ #define FS_FILE_FLAGS_HEADER_INCLUDED 0x01 #define FS_FILE_FLAGS_HEADER_PERSISTENT 0x02 #define FS_FILE_FLAGS_HEADER_HTTPVER_1_1 0x04 #define FS_FILE_FLAGS_SSI 0x08 #define FS_FILE_FLAGS_CUSTOM 0x10 struct fs_file { const char *data; int len; int index; void *pextension; #if HTTPD_PRECALCULATED_CHECKSUM const struct fsdata_chksum *chksum; u16_t chksum_count; #endif /* HTTPD_PRECALCULATED_CHECKSUM */ u8_t http_header_included; #if LWIP_HTTPD_CUSTOM_FILES u8_t is_custom_file; #endif /* LWIP_HTTPD_CUSTOM_FILES */ #if LWIP_HTTPD_FILE_STATE void *state; #endif /* LWIP_HTTPD_FILE_STATE */ }; #if LWIP_HTTPD_FS_ASYNC_READ typedef void (*fs_wait_cb)(void *arg); #endif /* LWIP_HTTPD_FS_ASYNC_READ */ err_t fs_open(struct fs_file *file, const char *name); void fs_close(struct fs_file *file); #if LWIP_HTTPD_DYNAMIC_FILE_READ #if LWIP_HTTPD_FS_ASYNC_READ int fs_read_async(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg); #else /* LWIP_HTTPD_FS_ASYNC_READ */ int fs_read(struct fs_file *file, char *buffer, int count); #endif /* LWIP_HTTPD_FS_ASYNC_READ */ #endif /* LWIP_HTTPD_DYNAMIC_FILE_READ */ #if LWIP_HTTPD_FS_ASYNC_READ int fs_is_file_ready(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg); #endif /* LWIP_HTTPD_FS_ASYNC_READ */ int fs_bytes_left(struct fs_file *file); #if LWIP_HTTPD_FILE_STATE /** This user-defined function is called when a file is opened. */ void *fs_state_init(struct fs_file *file, const char *name); /** This user-defined function is called when a file is closed. */ void fs_state_free(struct fs_file *file, void *state); #endif /* #if LWIP_HTTPD_FILE_STATE */ #endif /* __FS_H__ */ ================================================ FILE: lib/httpd/fscustom.h ================================================ #ifndef FSCUSTOM_H_ #define FSCUSTOM_H_ #include "fs.h" #ifdef __cplusplus extern "C" { #endif int fs_open_custom(struct fs_file *file, const char *name); void fs_close_custom(struct fs_file *file); #ifdef __cplusplus } #endif #endif ================================================ FILE: lib/httpd/fsdata.c ================================================ #include "fsdata.h" #define file_NULL (struct fsdata_file *) NULL #ifndef FS_FILE_FLAGS_HEADER_INCLUDED #define FS_FILE_FLAGS_HEADER_INCLUDED 1 #endif #ifndef FS_FILE_FLAGS_HEADER_PERSISTENT #define FS_FILE_FLAGS_HEADER_PERSISTENT 0 #endif /* FSDATA_FILE_ALIGNMENT: 0=off, 1=by variable, 2=by include */ #ifndef FSDATA_FILE_ALIGNMENT #define FSDATA_FILE_ALIGNMENT 0 #endif #ifndef FSDATA_ALIGN_PRE #define FSDATA_ALIGN_PRE #endif #ifndef FSDATA_ALIGN_POST #define FSDATA_ALIGN_POST #endif #if FSDATA_FILE_ALIGNMENT==2 #include "fsdata_alignment.h" #endif #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__images_logo_png = 0; #endif static const unsigned char FSDATA_ALIGN_PRE data__images_logo_png[] FSDATA_ALIGN_POST = { /* /images/logo.png (17 chars) */ 0x2f,0x69,0x6d,0x61,0x67,0x65,0x73,0x2f,0x6c,0x6f,0x67,0x6f,0x2e,0x70,0x6e,0x67, 0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 27650 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x32,0x37,0x36,0x35,0x30,0x0d,0x0a, /* "Content-Type: image/png " (27 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x69,0x6d, 0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x0d,0x0a,0x0d,0x0a, /* raw file data (27650 bytes) */ 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52, 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x08,0x06,0x00,0x00,0x00,0xc3,0x3e,0x61, 0xcb,0x00,0x00,0x00,0x01,0x73,0x52,0x47,0x42,0x00,0xae,0xce,0x1c,0xe9,0x00,0x00, 0x00,0x04,0x67,0x41,0x4d,0x41,0x00,0x00,0xb1,0x8f,0x0b,0xfc,0x61,0x05,0x00,0x00, 0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0e,0xc3,0x00,0x00,0x0e,0xc3,0x01,0xc7, 0x6f,0xa8,0x64,0x00,0x00,0x6b,0x97,0x49,0x44,0x41,0x54,0x78,0x5e,0xb5,0xdd,0x09, 0x7c,0x5f,0x57,0x7d,0x20,0xfa,0x2b,0xc9,0x5a,0xbc,0xc8,0x96,0xf7,0xdd,0x96,0x97, 0xc4,0x09,0x64,0x31,0x10,0x48,0xc2,0x52,0x1c,0x02,0x34,0x74,0x23,0x69,0x3b,0xaf, 0xc0,0x0c,0x83,0xd3,0x76,0x5a,0x3a,0x7d,0x2d,0x61,0xa6,0x9d,0xd2,0x15,0xd2,0x79, 0xb4,0x14,0xda,0x31,0x74,0x96,0x32,0x85,0x34,0x49,0x5f,0x5b,0x4a,0x0b,0x13,0x43, 0x0b,0x84,0x25,0x38,0x0b,0x34,0x84,0x00,0x71,0xc8,0x42,0x76,0xcb,0xbb,0xbc,0xcb, 0x96,0x64,0x5b,0x96,0x6d,0xbd,0xdf,0xf7,0x1c,0xfd,0x6c,0x39,0x75,0xe6,0xd3,0x29, 0x7d,0x3f,0xe7,0xe4,0x9e,0x7b,0xce,0xef,0xfc,0xf6,0xb3,0xde,0xfb,0xbf,0x6a,0x69, 0xfe,0x05,0xe1,0xb7,0x7f,0xfd,0x3d,0xeb,0x77,0xec,0xdc,0x71,0x6b,0x5b,0x7b,0xfb, 0x8d,0x1f,0xbf,0xe5,0xd6,0xdb,0xc6,0x8b,0x9b,0x8f,0xfd,0xc9,0xff,0x68,0xfb,0xd6, 0xb7,0x1e,0x7c,0x66,0xe4,0xc4,0x89,0x9e,0x95,0xab,0x57,0x5f,0xf3,0x3b,0xef,0xbd, 0x79,0xf3,0x78,0x55,0xf3,0xc1,0x0f,0xfc,0xfe,0xac,0x47,0x1f,0x7b,0xec,0xf1,0xd1, 0x13,0x27,0xfe,0xea,0x13,0x9f,0xfc,0x9b,0xff,0x30,0x5e,0x5c,0xe0,0xc7,0x7e,0xe8, 0x4d,0x57,0x8d,0x8d,0xb5,0x7c,0xe1,0xf8,0xf1,0xe3,0xd7,0x7c,0x79,0xd3,0x57,0xcf, 0xb4,0x01,0x6f,0xfb,0xc9,0x7f,0xb5,0xe1,0xe8,0xb1,0xa3,0xeb,0xe7,0xcd,0x5f,0x70, 0xcd,0x9f,0xfe,0xd9,0x2d,0x67,0xea,0x7e,0xf7,0x77,0xde,0xdb,0xfb,0xdc,0xb3,0xcf, 0xdc,0x3a,0x3c,0x3c,0xdc,0x33,0x67,0xf6,0xdc,0x6b,0xfe,0xe4,0x96,0x8f,0x0d,0x8c, 0x57,0x35,0xbf,0xf0,0xef,0x7e,0xee,0x65,0x33,0x66,0x4d,0xbf,0x6d,0xcf,0x9e,0x3d, 0x9f,0xbe,0xf5,0xb6,0xff,0xf7,0x7d,0xe3,0xc5,0xcd,0xa7,0xfe,0xfa,0x93,0x3d,0x1d, 0x1d,0xed,0xb7,0xde,0x7f,0xff,0xfd,0xd7,0x1f,0x3a,0x74,0xe8,0xdf,0x7d,0xf4,0xe3, 0x1f,0xff,0xf8,0x78,0x55,0xf3,0xcb,0xff,0xf7,0x2f,0xf5,0x9e,0x3a,0x35,0x7a,0x6b, 0x47,0x67,0xfb,0xba,0x29,0x93,0xa7,0xbc,0xe1,0xfd,0xbf,0xff,0x07,0x5f,0x19,0xaf, 0x6a,0xfe,0xc3,0x2f,0xbf,0xeb,0x87,0x9e,0x7d,0xf6,0x99,0x3f,0x1f,0x6b,0x9a,0xbf, 0xfb,0xec,0xe7,0x3e,0x77,0xe3,0x78,0x71,0x81,0x5f,0xff,0x4f,0xbf,0xfa,0xf3,0x43, 0xc3,0x43,0x1f,0x1d,0x3b,0xdd,0xdc,0xfc,0xdf,0xfe,0xe4,0x4f,0xce,0xf0,0x02,0xdb, 0xfa,0x76,0xac,0xdf,0xf2,0xec,0xb3,0xb7,0xee,0xdc,0xb5,0xf3,0x86,0xb7,0xbd,0xfd, 0x6d,0x1b,0xc7,0x8b,0x0b,0xfc,0xea,0xbb,0xff,0xc3,0xa1,0x8e,0xf6,0xf6,0xc3,0x6d, 0x93,0x26,0xad,0xfa,0xdd,0xdf,0x7b,0xff,0xa9,0xf1,0xe2,0xe6,0xbf,0xfc,0xc1,0x07, 0x7b,0xfb,0x77,0xef,0xde,0xb2,0x6b,0xd7,0xce,0xbe,0xe5,0xcb,0x97,0x5f,0xf3,0xfe, 0x0f,0x7d,0xa8,0x6f,0xbc,0xea,0xfb,0x82,0xd6,0xf1,0xeb,0xf7,0x0d,0x1f,0xf9,0xa3, 0xff,0xd2,0xd3,0x32,0xd6,0xfa,0x8e,0xa9,0x53,0xa7,0x35,0xd3,0xa6,0x4d,0x7b,0xd7, 0x78,0x71,0x81,0x49,0x1d,0x53,0xde,0x31,0x73,0xd6,0xdc,0x99,0x73,0xe6,0xce,0xef, 0x09,0x87,0xbe,0x63,0xbc,0xb8,0xc0,0x35,0xd7,0xbc,0xe1,0x7d,0x97,0xbc,0xf8,0xb2, 0xf9,0x2f,0xba,0xe8,0xd2,0x77,0xff,0xd9,0xff,0xbc,0xe5,0xfa,0xf1,0xe2,0x02,0x2f, 0xb9,0xfc,0xca,0x5f,0x5b,0xbc,0x70,0x49,0xcf,0x4b,0xd6,0xbe,0x74,0xd3,0x87,0x7e, 0xff,0x03,0x6b,0xc7,0x8b,0x9b,0x3f,0xfe,0xe0,0x7f,0x7d,0xe7,0x2b,0x5e,0xf1,0xaa, 0x9b,0xae,0xbc,0xea,0x55,0x3d,0x97,0xbf,0xe4,0xa5,0xbf,0xf6,0xe9,0xbf,0xfd,0x54, 0xe7,0x78,0x55,0x33,0x73,0xe6,0xac,0xde,0xde,0xde,0x95,0xeb,0x56,0x2e,0x5f,0xb9, 0xb6,0xb3,0xbd,0x63,0xdd,0x78,0x71,0x81,0x9e,0xe9,0xb3,0x3f,0x3e,0xa5,0x6b,0xfa, 0x25,0x2f,0x7e,0xd1,0xda,0x77,0x7c,0xe8,0x0f,0xfe,0xb0,0x67,0xbc,0xb8,0xd9,0xbe, 0x6d,0x47,0xcf,0x94,0x29,0x53,0xaf,0x7f,0xc5,0x95,0x57,0x35,0xcb,0x57,0xac,0xfc, 0xed,0xf1,0xe2,0x02,0xa3,0xa3,0xa7,0xd6,0x9e,0x3e,0xd5,0xb2,0x6e,0xfe,0x9c,0xc5, 0xcd,0xdc,0xd9,0xf3,0xcf,0xe8,0xf5,0x27,0xff,0xf5,0xbf,0xf5,0x2c,0x5d,0xba,0xf4, 0xfd,0x97,0xbc,0xe8,0xf2,0xd9,0x17,0xaf,0x79,0xf1,0xfa,0x8f,0x7d,0xf4,0xe3,0x37, 0x8d,0x57,0xa9,0x5b,0x37,0x7f,0xde,0xfc,0xf7,0xf4,0x2e,0xeb,0x6d,0x96,0x2d,0x5d, 0x76,0x8e,0xbe,0x47,0x8e,0x0c,0xad,0x9f,0xd4,0xd9,0xb1,0x61,0xe5,0x9a,0x35,0xcd, 0xca,0x95,0x2b,0xcf,0xa9,0xfb,0xd3,0xff,0xf1,0xdf,0x6f,0x9a,0x3f,0x77,0x5e,0xcf, 0xb4,0x69,0xdd,0xcb,0x43,0x8f,0x73,0xea,0xa6,0x4d,0x9d,0xfe,0xae,0x69,0x53,0xbb, 0x9b,0x39,0x33,0xe7,0xf4,0x76,0xb6,0x77,0x9e,0xa3,0xd7,0xf7,0x03,0x93,0xc6,0xaf, 0xdf,0x37,0x4c,0x9e,0x32,0xe5,0xf5,0xcb,0x7a,0x7b,0xaf,0xba,0x6c,0xe6,0xe5,0xcd, 0xb1,0x91,0x63,0xb3,0x6e,0xf9,0xf8,0x9f,0xbe,0xec,0x67,0x7e,0xf6,0xe7,0xbe,0xad, 0xee,0xa2,0x8b,0xd6,0x2c,0xbb,0xf8,0xe2,0x8b,0x66,0xec,0xd8,0xb9,0xbd,0x39,0x7c, 0xf8,0x4c,0x87,0x2c,0x70,0x7a,0x6c,0x6c,0xe9,0x95,0x57,0x5d,0xd5,0x8c,0x9d,0x1a, 0x6b,0x06,0x0e,0x1f,0xee,0x1d,0x2f,0x2e,0xf0,0xb6,0x7f,0xfb,0xf6,0xb5,0x63,0xa7, 0x47,0x9b,0x81,0x81,0x83,0x3d,0xdb,0xb6,0x6e,0x3f,0xe3,0xb0,0x45,0x8b,0x96,0xf4, 0x5f,0xfd,0x03,0x57,0x37,0x27,0x46,0x47,0x9a,0x9d,0xbb,0xb6,0xbf,0xe5,0xf8,0xc8, 0xf1,0x5f,0x88,0xe2,0x11,0x75,0xab,0x2f,0xb8,0x70,0xc3,0xab,0x5f,0xf3,0x03,0x4d, 0x33,0x36,0xd6,0x1c,0x3e,0x34,0xd0,0x7c,0xf8,0xa3,0xff,0x5d,0x71,0x81,0xb7,0xfe, 0x9b,0xb7,0xae,0x9d,0x3e,0xa3,0xa7,0x89,0xde,0xd5,0x3b,0x34,0x34,0xd8,0xf3,0xab, 0xbf,0xf6,0x2b,0x45,0x98,0x99,0xb3,0xe7,0x34,0x7b,0xf7,0x1d,0x6c,0x2e,0x7a,0xd1, 0xc5,0xcd,0xb2,0xde,0x15,0xcb,0x7e,0xfd,0x37,0x7f,0xa3,0xe0,0x83,0x1f,0xbc,0xee, 0xba,0x66,0xea,0x94,0xa9,0x4d,0xf4,0xba,0x66,0xf7,0xae,0x1d,0x4b,0xc6,0x8b,0x9b, 0x35,0xe1,0xc0,0x69,0xdd,0xdd,0x03,0xed,0x6d,0x9d,0xcd,0x9c,0xb9,0x73,0x9a,0x27, 0x9e,0x7c,0xf2,0xf2,0xf1,0xaa,0xe6,0xa5,0x57,0x5c,0xd1,0x74,0x75,0x75,0xf5,0x0e, 0x0f,0x1f,0x6d,0x16,0x2e,0x58,0xd8,0xfc,0xa7,0xdf,0xf8,0xf5,0xf1,0x9a,0xa6,0x19, 0x1c,0x1e,0xec,0x99,0x3c,0x65,0x6a,0x4f,0x4b,0x4b,0x4b,0xb3,0x60,0xe1,0x82,0xf1, 0xd2,0x0a,0x57,0xbd,0xf2,0x95,0xcb,0x07,0x0e,0x1c,0x6e,0x5a,0x5a,0x5b,0x9a,0xa1, 0xe1,0xe1,0x65,0xe3,0xc5,0x05,0xe6,0x2d,0x98,0xb7,0x76,0xd9,0xf2,0x25,0x4d,0x8c, 0x6c,0xcd,0xc1,0x83,0x07,0xc7,0x4b,0xbf,0x7f,0xf8,0x17,0x1b,0x01,0x7e,0xee,0x17, 0xde,0xf9,0xa9,0x1f,0xfc,0xa1,0x1f,0x7c,0xf4,0x55,0xaf,0x79,0x55,0xf3,0xc3,0x3f, 0xfc,0xc3,0xcf,0x45,0xc4,0x7e,0x67,0xbc,0xaa,0x99,0x33,0x67,0xe6,0x47,0xa7,0x4e, 0x9d,0x72,0x78,0xcd,0x85,0x6b,0x06,0x16,0x2f,0x5e,0xf4,0x91,0xf1,0xe2,0x02,0x3d, 0x33,0xa7,0x37,0x61,0xf3,0x66,0xf5,0x9a,0x55,0x8f,0xce,0x9e,0x37,0xe7,0x13,0xe3, 0xc5,0x05,0x96,0xad,0x58,0xbe,0x79,0x49,0x28,0x3d,0x6f,0xc1,0xdc,0xe3,0xf3,0x16, 0xcc,0x39,0x39,0x5e,0xdc,0xfc,0xe4,0xbf,0xb9,0x61,0xe3,0xbe,0x83,0xfb,0x9a,0x13, 0x27,0x4f,0x34,0x9d,0x5d,0x9d,0x37,0xbf,0xfe,0xf5,0xaf,0x3f,0x13,0x55,0x17,0x5f, 0xf2,0xa2,0x77,0xcf,0x5b,0x38,0xbf,0x59,0x1c,0xed,0x56,0x5d,0x7c,0xe1,0x78,0x69, 0x85,0x69,0x33,0xa6,0xf5,0x75,0x4d,0xe9,0x68,0x26,0xb5,0xb7,0x36,0x33,0x7a,0xa6, 0x8f,0x97,0x36,0xcd,0xc2,0x25,0x0b,0x9b,0x55,0x17,0xae,0x6a,0xba,0x26,0x77,0x36, 0x0b,0x17,0x2d,0x7a,0xf7,0x78,0x71,0x81,0xeb,0x6f,0xf8,0xb1,0x8d,0x93,0x3a,0x26, 0xdd,0xdd,0x35,0xa5,0xb3,0x59,0xba,0x7c,0xf9,0x99,0xba,0xd7,0xbd,0xf1,0x0d,0x03, 0x2f,0xbf,0xf2,0x15,0x9f,0x59,0xb6,0x72,0x49,0xb3,0x60,0xd1,0xfc,0x66,0xe6,0x9c, 0x59,0x37,0x8f,0x57,0x35,0x57,0x5e,0x7d,0xd5,0xdd,0x4b,0x96,0x2d,0xd9,0x38,0x3b, 0x02,0x63,0xce,0xfc,0xb9,0xe3,0xa5,0x15,0x16,0x2f,0x5c,0xf8,0xe1,0xc1,0xc3,0x87, 0xfa,0x8e,0x1c,0x3a,0xd8,0xf4,0x6d,0x3b,0x77,0x14,0x9f,0x31,0x73,0xd6,0xcd,0xab, 0xd7,0xac,0x1e,0x58,0xbe,0x62,0xf9,0xf1,0x69,0xdd,0xd3,0x76,0x8c,0x17,0x17,0x58, 0xb4,0x64,0xd1,0xbb,0x17,0x2e,0x59,0xd2,0x2c,0x5a,0xba,0x74,0x60,0xd6,0xbc,0xb9, 0xfb,0xc7,0x8b,0xbf,0x6f,0xf8,0x17,0x0b,0x00,0x70,0xe0,0xc0,0xfe,0xa1,0xc1,0xc1, 0x23,0xcd,0xf1,0xe3,0x47,0x9b,0x9f,0x7a,0xeb,0x5b,0x62,0x6a,0xac,0x30,0x38,0x38, 0x7c,0xf8,0x3b,0xdf,0xf9,0xce,0xe1,0x6f,0x7e,0xf3,0x9b,0xcd,0x75,0x6f,0xfa,0xe1, 0x73,0xb4,0x3e,0x76,0xec,0x58,0xb3,0x73,0xfb,0xb6,0xe6,0xc0,0xde,0xfe,0x66,0x7a, 0x57,0xdb,0xe1,0xf1,0xe2,0x02,0x3b,0xb6,0x6f,0xf9,0x48,0xff,0xee,0x9d,0x4d,0x4f, 0xcf,0xf4,0xc3,0x8b,0x97,0x2c,0x1c,0x1a,0x2f,0x2e,0xf0,0x17,0x7f,0xf1,0xe7,0xcd, 0xd7,0xbf,0x7e,0x5f,0xb3,0x7f,0xff,0xbe,0x73,0x86,0x94,0x47,0x1f,0x7d,0x78,0xe0, 0xe1,0x87,0x1f,0x6a,0x76,0xee,0xdc,0xd1,0x1c,0x3a,0x74,0x60,0xbc,0xb4,0xc2,0xa7, 0x3e,0xf5,0xa9,0x9b,0x6f,0xbd,0xf5,0xcf,0x9a,0x4d,0x9b,0xee,0x6a,0xe0,0x24,0x3c, 0xfe,0xf8,0x63,0xcd,0xa7,0x3f,0xfd,0xa9,0x66,0xe3,0xc6,0x3b,0x9a,0x7b,0xef,0xdd, 0x74,0xee,0x10,0x15,0xf0,0x85,0x2f,0x7c,0x6e,0xe0,0xae,0xbb,0xbe,0x12,0xbd,0xfc, 0x7b,0xe7,0xd4,0x6d,0x0b,0x07,0x0e,0x0d,0x1d,0x6e,0x8e,0x1e,0x3b,0xd2,0x5c,0x71, 0xc5,0x4b,0xcf,0xd1,0xeb,0x91,0x47,0xbe,0x3b,0xb0,0x7d,0xfb,0xd6,0xe6,0xe8,0xd1, 0x73,0xc4,0x2e,0xf0,0xf9,0xcf,0x7d,0x7e,0xe0,0xdb,0xdf,0xfe,0x76,0x13,0x6b,0x91, 0xf1,0x92,0x0a,0x31,0xca,0x0c,0xec,0xee,0xdf,0xd9,0xec,0x0a,0x9d,0x4f,0x8c,0x1e, 0x3f,0x13,0xf0,0xe0,0xbb,0xdf,0x7d,0x64,0xe0,0x81,0x07,0x1e,0x68,0xfa,0xfa,0xfa, 0x9a,0x03,0xfb,0x0f,0x9c,0x53,0xf7,0xfd,0xc0,0xbf,0xd8,0x22,0x70,0xc5,0xf2,0xde, 0xb5,0x4b,0x97,0x2d,0xb9,0x75,0xe9,0xd2,0xc5,0x6b,0x8f,0x1f,0x1f,0x09,0xe3,0x1f, 0xba,0xf1,0xab,0x9b,0xee,0x29,0x0b,0xc1,0x6b,0xaf,0x79,0xdd,0xfb,0x66,0xcc,0x98, 0xf1,0x5e,0xc3,0xd7,0xe9,0xd3,0xa7,0x1f,0xdd,0xba,0x75,0xeb,0x6b,0x9f,0x7a,0xe6, 0xe9,0x32,0x8e,0xfd,0xe0,0x1b,0xdf,0x78,0xc7,0xd2,0xc5,0x0b,0xaf,0x1f,0x88,0x1e, 0x31,0x72,0x7c,0xe4,0xdd,0x7f,0x77,0xe7,0x97,0x3e,0xac,0x1c,0x5c,0x79,0xe5,0x95, 0x1b,0x56,0xf4,0x2e,0xbb,0x69,0xc5,0x8a,0xde,0xa1,0xce,0xce,0xae,0x6b,0xde,0x77, 0xf3,0x7f,0xfe,0x96,0xf2,0x45,0x0b,0x16,0x5e,0xbf,0x78,0xc9,0x92,0x3b,0xe6,0x46, 0x0f,0xa3,0x41,0x8c,0x2a,0x33,0x3f,0xf6,0xb1,0x5b,0x8a,0x73,0x2e,0xbb,0xe4,0xd2, 0x9b,0xd6,0x5c,0x74,0xe1,0x06,0x81,0x75,0xe0,0xe0,0xc1,0x8d,0xf7,0xdf,0xff,0x8d, 0x1b,0x94,0x83,0x4b,0x2f,0xbd,0xf4,0xd6,0x59,0xb3,0x66,0xae,0x9f,0x3a,0x65,0x4a, 0x33,0x6f,0xfe,0xbc,0x0b,0x6f,0xbb,0xed,0xcf,0x9f,0xae,0xe5,0x97,0xdf,0xd4,0xde, 0xde,0xb6,0xa1,0xb3,0xb3,0xb3,0x99,0x34,0xa9,0xad,0xb9,0xef,0xbe,0xaf,0x9d,0xb1, 0xcb,0x05,0x17,0x5c,0x70,0xeb,0xc2,0x85,0x0b,0xd7,0x4f,0x9d,0x3a,0xb5,0x39,0x39, 0x7a,0x62,0xf3,0x97,0xbf,0x72,0xd7,0x4b,0x94,0xff,0xdf,0xbf,0xf8,0x0b,0x3d,0x5b, 0xb7,0x6e,0x3b,0x34,0x67,0xf6,0xcc,0x66,0xee,0xbc,0x79,0xe1,0xf0,0x47,0x6e,0xfb, 0xc2,0x9d,0x5f,0x2e,0x0b,0xc1,0xd7,0x5d,0xb3,0x6e,0x5d,0x7b,0x7b,0xc7,0xa6,0xc9, 0x93,0xbb,0x62,0x4d,0x32,0x33,0x86,0xec,0x03,0x37,0x7f,0xe6,0xb3,0x7f,0x5f,0x16, 0x82,0xf3,0xe7,0xcf,0x5f,0xb7,0x62,0xc5,0x8a,0x5b,0xa3,0xbc,0xf7,0xc4,0x89,0x13, 0x9b,0x9f,0x7c,0xf2,0xc9,0x6b,0x76,0xec,0xd8,0x51,0x64,0x7f,0xd3,0x9b,0xde,0xb4, 0xa1,0x19,0x3b,0x79,0xd3,0xa9,0x53,0xa7,0xc2,0x7e,0x03,0x77,0x1f,0x1a,0x38,0xf2, 0x19,0x53,0x85,0xfb,0x25,0x4b,0x96,0xfc,0x48,0xac,0x69,0xae,0x1d,0x1d,0x1d,0x8d, 0xa0,0xdf,0xbf,0x31,0x6c,0x79,0xcf,0xe4,0xc9,0x93,0x4d,0x35,0x9a,0xc6,0x8c,0x37, 0xd6,0xb4,0xb7,0xb7,0xef,0x08,0xfc,0xfe,0x07,0x1e,0xfc,0xe6,0xd7,0x5e,0xfe,0xb2, 0x2b,0x5a,0xdb,0xda,0xda,0x3a,0xbe,0xf1,0xcd,0x07,0x8e,0x17,0x84,0x17,0x80,0xf3, 0x06,0xc0,0xdc,0xd9,0x73,0x6e,0x0a,0x42,0xef,0x08,0x02,0x4d,0x08,0xd9,0xb8,0xb6, 0xb6,0xb6,0x35,0x2d,0x2d,0xad,0x85,0x51,0x6b,0x6b,0x1d,0x38,0x82,0x03,0x87,0x06, 0xe3,0x49,0x4d,0x5b,0x94,0x9d,0x3e,0x7d,0x6a,0xed,0x89,0x13,0x23,0xcd,0xe4,0xc9, 0x53,0x62,0x14,0x38,0x3e,0xd0,0xda,0xd6,0xde,0x87,0xc3,0x89,0x91,0xe3,0x3d,0xed, 0x31,0xef,0xb6,0xb5,0xd5,0x25,0x47,0xd0,0xec,0x3b,0x7d,0xea,0xd4,0x80,0xb9,0x6e, 0xd2,0xa4,0x49,0x3d,0x41,0xbf,0x97,0xa2,0x11,0x38,0x03,0xc1,0xa3,0x8f,0xc2,0x1d, 0x1d,0x1d,0x4d,0xeb,0xa4,0xd6,0xde,0xd3,0xa7,0x4e,0xf6,0x8c,0x9e,0x18,0x0d,0x66, 0xad,0x7d,0x11,0x04,0x03,0x78,0xa3,0xd7,0xd9,0xd1,0xd9,0x7b,0xf2,0xe4,0xc9,0x30, 0xce,0x69,0xf2,0x6d,0x3e,0x79,0x72,0xb4,0xb4,0x89,0xb2,0xde,0x90,0xa7,0x67,0x64, 0x24,0xe4,0x9e,0xd4,0xda,0xc4,0xce,0x63,0x73,0xea,0x11,0x6d,0xd7,0xb6,0x86,0x0e, 0x21,0x4b,0xc8,0x3a,0xb6,0xad,0xb5,0xb5,0xe5,0x20,0x9d,0x3a,0x3a,0x3b,0x63,0xa5, 0x7f,0xaa,0xe7,0x54,0xe8,0x12,0x65,0x41,0xf3,0x64,0xec,0x2a,0x5a,0x8b,0xde,0xd1, 0x6e,0x2d,0x3e,0x9c,0xd9,0x32,0xd6,0x12,0x8b,0xc2,0xd1,0xcd,0xf8,0x70,0x44,0xe8, 0xbe,0x76,0x4a,0x57,0x87,0x75,0x4c,0x73,0x32,0x64,0x1e,0x19,0x19,0x29,0x75,0x91, 0x65,0x93,0xb5,0x63,0xb1,0x05,0x88,0x1d,0x04,0x95,0x07,0xc6,0x5a,0x5a,0x8a,0x5e, 0xd6,0x26,0x01,0x6b,0xd3,0x76,0x61,0xcf,0x81,0x68,0xd3,0xc7,0xae,0x71,0xdf,0x13, 0xe6,0xea,0x95,0x6f,0x89,0x7f,0xad,0x11,0x8c,0xd5,0xe6,0xa7,0xe3,0xda,0x52,0xd6, 0x49,0x6d,0x6d,0xa1,0xd3,0xc8,0x48,0x69,0xcb,0x16,0x53,0x22,0x98,0xe1,0x93,0x35, 0x6c,0x39,0xa4,0x2e,0xe4,0x7d,0x46,0x7d,0xf0,0x9b,0x14,0xe9,0x64,0x04,0xca,0xe6, 0x1d,0xbb,0x76,0x9e,0xb3,0x4b,0x49,0x38,0x6f,0x00,0xac,0xb9,0x60,0xcd,0x4d,0xe1, 0xc0,0x0d,0x8c,0x46,0x51,0x3d,0x83,0x92,0x44,0x9f,0x14,0x4e,0x24,0x90,0xf2,0x88, 0xb8,0x60,0xdc,0x1e,0xc2,0x9c,0x3a,0x23,0x90,0x3c,0x50,0xc7,0x09,0x27,0x4f,0x9d, 0x8c,0x28,0xed,0xac,0x42,0xb6,0x86,0xe1,0xc7,0x95,0x89,0x82,0xe8,0xf1,0xc7,0x6b, 0x79,0x38,0x64,0x64,0x64,0x34,0x02,0xaa,0xb5,0x08,0xd4,0xd9,0xd9,0x11,0x74,0x83, 0x4f,0xfc,0xe3,0x58,0xed,0x46,0x22,0xb0,0xb4,0x2b,0x3d,0x31,0x1c,0xa2,0x7d,0x38, 0x91,0xb3,0x64,0xc7,0xf9,0x87,0x91,0x22,0xcf,0x48,0xa0,0x45,0xb0,0x44,0x3b,0xc1, 0x4b,0x66,0x7a,0xa8,0x67,0x5c,0x72,0x08,0x04,0x70,0xf4,0xe8,0xb1,0xa2,0x1b,0x9c, 0x30,0x62,0x31,0xb0,0xde,0xc5,0xa8,0x60,0xdc,0x98,0xa5,0xfd,0x89,0xa8,0x23,0x9b, 0x91,0x82,0xec,0x63,0x51,0x47,0x8e,0x49,0xd1,0x09,0xb4,0x03,0x85,0x87,0x40,0x0a, 0x39,0x53,0xae,0x62,0xc3,0xc0,0x8b,0x05,0x6b,0x23,0x08,0x63,0xdb,0xd9,0x8c,0x9e, 0x3c,0x55,0xe4,0x9f,0x34,0xa9,0x3d,0x74,0x6b,0x0a,0x0f,0xfa,0x73,0x7a,0x5b,0xd0, 0x27,0xb7,0x32,0xa9,0x2d,0xf2,0xf4,0x66,0x63,0x6d,0x30,0x21,0x1f,0x1c,0xb6,0x26, 0xbb,0x8e,0x48,0x86,0xea,0x87,0x12,0x5c,0x25,0xf0,0xc7,0x03,0xa0,0x8c,0x5c,0xcf, 0x87,0xf3,0xae,0x01,0x38,0x8e,0x12,0xa3,0xa3,0x27,0x43,0xd0,0xce,0xa2,0xb0,0x2b, 0x38,0x31,0xca,0xa9,0x21,0x54,0x30,0x18,0x3e,0x7a,0x34,0x14,0x3a,0x36,0x5e,0x76, 0xb2,0x24,0x9a,0x1c,0x0b,0xc7,0x8e,0x86,0xb0,0xa3,0xe1,0xbc,0xda,0xb3,0x39,0x3a, 0x04,0x6a,0x4e,0x97,0x3c,0x85,0xe0,0x4d,0x8a,0xde,0xd2,0x1e,0x86,0x91,0x6f,0x6d, 0xe3,0xbc,0x30,0x66,0x24,0x6d,0x87,0x8f,0x0e,0x97,0xf5,0x01,0xa3,0x31,0x06,0xc7, 0x50,0xf8,0x68,0xf0,0x2c,0x86,0x88,0xbc,0x00,0x11,0x98,0x8c,0xcd,0x72,0xca,0xc8, 0xa0,0x7d,0xf4,0xfc,0xc2,0x27,0x86,0xe2,0x71,0x83,0x8c,0x15,0x7d,0x0a,0x9d,0xa0, 0x57,0x7a,0x6a,0xe8,0x40,0x97,0xf6,0x70,0x06,0x07,0x54,0x83,0xb6,0x9e,0x09,0x02, 0xc6,0x33,0x6d,0xe1,0x87,0x96,0xeb,0xa4,0x30,0x36,0xbd,0xe8,0x58,0x82,0x26,0x1a, 0x76,0x44,0x80,0x0b,0x36,0x44,0xf0,0x3e,0x35,0xde,0x09,0xf2,0x3e,0x2a,0xe3,0x1a, 0x23,0x44,0xd0,0x63,0x57,0x3c,0x95,0xb1,0x4d,0x71,0xf6,0xb8,0x23,0x29,0x11,0x62, 0x16,0x9d,0x4a,0xb0,0xb0,0x63,0x74,0x34,0xb2,0xd2,0x8f,0x6d,0xe8,0xdc,0x1e,0xf7, 0xf0,0xf9,0x85,0xbc,0xda,0xa3,0x3b,0x34,0x34,0x74,0x46,0xfe,0x0c,0x02,0x53,0x84, 0xfb,0x17,0x82,0xf3,0x06,0x00,0x45,0x35,0xd6,0x90,0x90,0x94,0xaf,0x91,0x19,0x02, 0x32,0xda,0xb8,0x41,0xdc,0x8b,0x32,0x57,0xb8,0x84,0x65,0xb4,0xda,0xd3,0x6a,0x39, 0xe1,0x5d,0x13,0x97,0x40,0xae,0x9c,0x8b,0x0e,0x30,0x8c,0xc5,0x1a,0xa1,0x5c,0x45, 0x33,0xdc,0xaa,0xd4,0xd9,0xe9,0x26,0x1d,0x92,0x8e,0x28,0xce,0x08,0x9e,0xa9,0x60, 0xed,0x69,0x67,0x95,0x4f,0x79,0x00,0x3a,0x59,0xae,0x1d,0x3a,0xf2,0xca,0x01,0x79, 0xdd,0xa3,0x21,0x91,0x65,0xda,0xb4,0x69,0xa5,0x2e,0xe5,0x56,0x2f,0xb9,0x87,0x93, 0xa0,0x6e,0x62,0xe0,0x24,0xdd,0xc4,0xa1,0x8f,0x32,0x38,0x99,0x97,0xc8,0xa1,0x6c, 0xa2,0x7d,0xc0,0x44,0xdd,0x25,0xfa,0xd6,0x0e,0x54,0x65,0x48,0x7e,0x78,0xc1,0x45, 0x47,0x19,0x3a,0x12,0xdd,0xd8,0x56,0xbd,0xa4,0xee,0x7f,0x07,0x75,0x8c,0x7b,0x1e, 0x4c,0xef,0x9e,0x71,0x55,0x28,0x70,0x9d,0xc6,0x49,0x40,0x54,0x8b,0xdc,0x89,0xc2, 0x31,0x5c,0x1d,0xda,0xca,0x3c,0x7c,0xc6,0xb9,0x18,0x27,0xa4,0x80,0xa6,0x06,0xa4, 0x08,0x4d,0x11,0x90,0xce,0x64,0x18,0x34,0x28,0x9a,0x06,0x41,0x17,0x4d,0x38,0x1c, 0xa9,0x8c,0x53,0x94,0x49,0xda,0x49,0x40,0x7b,0x09,0x6e,0x02,0xfc,0x94,0xdd,0x55, 0xbd,0x2b,0x5a,0x78,0x65,0xfb,0x74,0x86,0xf2,0xc4,0x4f,0xc3,0x02,0x65,0x52,0xea, 0xa4,0x5c,0x7b,0xba,0xc2,0xcb,0xa0,0xcc,0x91,0x4d,0x4a,0x19,0xd5,0xa3,0x9f,0xfc, 0xc8,0x90,0x75,0xca,0xd0,0xa4,0xaf,0x36,0xe8,0xc0,0x49,0xb9,0xd5,0x6b,0x8b,0x4f, 0xd2,0x4d,0xf9,0x80,0x3a,0xd3,0x8e,0x51,0xcf,0x34,0x37,0xae,0x69,0x69,0x0f,0xe0, 0xc3,0xc1,0x33,0xa0,0x7f,0xe0,0xf0,0xe1,0xff,0x59,0x2a,0x9e,0x07,0x2f,0x38,0x02, 0x20,0x94,0x11,0xe4,0xde,0x62,0x2b,0xef,0x0b,0xf3,0xc8,0x13,0x1a,0xa4,0x92,0x98, 0x6a,0x97,0xed,0x95,0x03,0x0a,0xa7,0x81,0x09,0x94,0x75,0x99,0x32,0x6a,0x93,0x5e, 0x1a,0x08,0xbd,0x74,0x18,0x43,0x00,0x6d,0xe5,0x8d,0x16,0x00,0x4d,0xed,0x4c,0x0d, 0x39,0x07,0x33,0x6a,0x3a,0x20,0xe5,0x45,0x0b,0xa0,0x45,0x86,0x34,0xb0,0x04,0x37, 0xf3,0xda,0x72,0x26,0x9a,0xda,0x66,0x3b,0xfc,0x52,0xb7,0x71,0xa3,0x16,0x7e,0xee, 0xe1,0x81,0xc4,0x25,0x33,0x1a,0xea,0xc0,0x44,0x5b,0xb0,0x9b,0x04,0xb4,0x23,0x07, 0x80,0x83,0x6e,0xd6,0x25,0x2f,0xb4,0x94,0x4d,0xa4,0x81,0xaf,0xa9,0xe5,0x78,0x5c, 0x05,0x81,0xa9,0xcc,0x34,0x5c,0xca,0x03,0x1f,0x90,0x85,0x0e,0xae,0xc9,0xe3,0x7c, 0x70,0xde,0x00,0x88,0x55,0x0a,0x09,0x9a,0x91,0x20,0x8a,0xb8,0xf9,0x8d,0xb0,0x88, 0x13,0x8a,0x20,0xd9,0x03,0x38,0x2e,0x19,0x63,0x48,0x58,0x4c,0x39,0x04,0x1e,0xe6, 0xe6,0x39,0x73,0x31,0xa0,0x24,0xfc,0x34,0x1e,0x98,0x68,0xe4,0x34,0x8a,0x3a,0x38, 0x9c,0x03,0xf0,0x61,0xd4,0xbc,0xc7,0x1b,0xc0,0x83,0xcf,0x71,0xf8,0x4d,0x34,0x9c, 0xab,0x34,0xd1,0x91,0xe9,0xfc,0x2a,0x57,0x35,0x3a,0xbe,0xdd,0xdd,0xdd,0x67,0xe4, 0xa5,0x43,0xd2,0x73,0xd5,0x3e,0x1d,0x2a,0xaf,0x5c,0xde,0x75,0x7c,0xd7,0x10,0x72, 0x31,0x65,0x8e,0x74,0x75,0xaa,0x93,0xe4,0xc9,0x8c,0x8e,0x36,0xec,0x82,0x87,0xb6, 0x64,0x1c,0x1c,0x1c,0x2c,0xba,0xa5,0x4c,0x70,0x25,0xed,0xc8,0x27,0xaf,0x1d,0xd0, 0xc6,0xc8,0x88,0x56,0xd6,0x69,0x2b,0x5f,0x13,0xfd,0x4d,0x0f,0x1d,0x91,0x8c,0x36, 0x65,0xb7,0x53,0xda,0xbd,0x10,0x9c,0xb7,0x06,0x31,0x0b,0x0e,0x0a,0x88,0x30,0x79, 0x2b,0xf4,0x14,0x8e,0x40,0x92,0x7c,0x0e,0xd5,0x52,0x2a,0x4c,0x40,0xe5,0x49,0xab, 0x1a,0xab,0xf6,0xea,0xc3,0x87,0x0f,0x9f,0x51,0x88,0xf1,0xb3,0xde,0xea,0xde,0xca, 0x9b,0xa3,0x24,0xe5,0x68,0x10,0x1e,0xed,0x34,0x08,0x85,0x2d,0x76,0x18,0xd2,0x3d, 0x67,0xc1,0x11,0x2c,0x00,0x0f,0xe5,0x9c,0xaa,0xbd,0x76,0xca,0xc8,0xe4,0x4a,0x46, 0xf8,0x78,0xb8,0xe7,0x58,0x4e,0x48,0x07,0xa7,0x33,0x40,0xd2,0x76,0x8f,0xfe,0xc4, 0x00,0xcf,0x9e,0x06,0x38,0x7d,0x24,0x56,0xf7,0x56,0xf6,0xb6,0x8b,0x78,0x01,0x38, 0x89,0x3b,0xd1,0x09,0x69,0x3b,0x41,0x47,0x46,0xf2,0xba,0x77,0x55,0x97,0xf2,0x92, 0x5d,0xfb,0xdc,0x91,0xa4,0x5c,0xf2,0x29,0x17,0x7c,0x79,0xb8,0x61,0xed,0x52,0x56, 0xed,0xd2,0x1e,0x34,0x42,0xff,0xda,0x4f,0x5e,0x10,0xce,0x1b,0x00,0x69,0x1c,0xd7, 0x14,0x0e,0x60,0x54,0x82,0x22,0x8c,0x80,0x31,0xe1,0x33,0x25,0xa8,0x23,0x4c,0x3a, 0x8c,0x93,0x25,0x46,0x50,0x87,0x96,0x94,0x41,0x92,0xc6,0x62,0xe0,0x1c,0x35,0xd4, 0xe3,0x0d,0x9f,0xf2,0xda,0x2b,0x43,0x0f,0x1d,0xb2,0x29,0x4b,0xa7,0x4a,0x70,0x53, 0xe6,0x34,0x3c,0x7c,0x38,0xea,0xd2,0x48,0xea,0x5c,0x95,0xa3,0x01,0x0f,0x6f,0xe5, 0xe4,0x81,0x4b,0x37,0x6d,0x41,0xea,0xa0,0xfd,0x44,0x3a,0x89,0x93,0x3d,0x8d,0xf1, 0x4f,0x9c,0x18,0x0d,0x5a,0x27,0x4a,0x39,0x1c,0xb4,0x5d,0xc9,0x9e,0x53,0x8a,0x7c, 0xca,0x89,0x86,0x32,0x34,0xe5,0x41,0x96,0x93,0x29,0x79,0x01,0x79,0xa0,0x2e,0x71, 0xb2,0xcc,0x7d,0xda,0x80,0x7f,0xe4,0xb3,0x43,0xd8,0x3e,0x2a,0x7f,0x21,0x38,0x6f, 0x00,0xa4,0x50,0x14,0x71,0x45,0xd0,0x35,0x15,0x91,0x67,0x14,0xa0,0x4e,0x52,0x07, 0x30,0x4e,0x7c,0xbd,0x0a,0x2d,0xc2,0x2a,0x4b,0x7a,0xae,0x29,0x74,0x1a,0x04,0x5d, 0x78,0xee,0xb5,0x51,0x8f,0x96,0x6b,0x96,0x69,0x97,0x3d,0x1b,0x7e,0x2a,0x99,0x41, 0x08,0x47,0xa2,0xb0,0x7a,0x6d,0x5d,0x25,0x3d,0x9b,0xd3,0x93,0x2f,0xf9,0x13,0x97, 0x4c,0x40,0x3d,0x3a,0x00,0x9e,0x44,0xa6,0x0c,0x0c,0xfc,0x53,0x76,0x80,0x6e,0x0d, 0x48,0x8e,0x35,0xb7,0x9b,0xc3,0xcf,0x06,0x2b,0x1e,0x46,0xb6,0xb4,0x55,0xd2,0x73, 0xd5,0x8e,0xfc,0xee,0x01,0xfc,0x94,0x47,0xd0,0x93,0x31,0x53,0xea,0x99,0xce,0xd5, 0x86,0x1d,0xd2,0x0f,0xe4,0xd3,0x1e,0xcd,0x1c,0xc9,0xd2,0x1f,0x46,0x27,0x65,0x2f, 0x04,0x15,0xeb,0x79,0x30,0x73,0xe6,0xac,0xab,0x82,0xc8,0x75,0x08,0xa6,0xc2,0x18, 0x13,0x10,0x53,0xe5,0x12,0x03,0x28,0x4b,0x20,0x3c,0x81,0x30,0x87,0xa7,0x4d,0xd2, 0x00,0xa9,0x10,0x3c,0x42,0x66,0x7b,0x86,0x87,0x2f,0x51,0x2c,0x0d,0xa5,0x3c,0x15, 0x4e,0x03,0x65,0x02,0x59,0xa6,0x1e,0xc0,0x4d,0xfe,0x78,0x24,0x5d,0xf7,0x70,0x32, 0xef,0x8a,0xb7,0x2b,0x5e,0xe8,0x68,0x47,0x56,0xf4,0xb4,0x45,0x0b,0xc0,0xc9,0xb6, 0x13,0x65,0x4f,0xde,0xe8,0x65,0x80,0xe0,0x97,0xf2,0xa0,0x07,0x47,0x4a,0xfb,0x65, 0xbb,0x94,0x11,0xae,0xa4,0x5e,0xdb,0x9c,0x42,0x41,0xf2,0x9f,0x48,0x57,0x5b,0xe5, 0x92,0xf6,0x09,0xe8,0x2a,0x73,0xb0,0x05,0x1f,0x90,0xb7,0x5c,0x63,0xea,0x8e,0xb6, 0xfd,0x47,0x06,0x07,0xff,0xe9,0xbb,0x00,0xcc,0x92,0x11,0xe2,0x49,0x34,0x19,0x59, 0xec,0x74,0x74,0xc4,0x1c,0x36,0x75,0x72,0xb3,0x6c,0xf1,0x82,0x66,0xed,0xa5,0x2f, 0x6a,0x5e,0x7d,0xf5,0x2b,0x9a,0x4b,0x5f,0xbc,0xa6,0x59,0xb8,0x60,0x8e,0x99,0xa8, 0x19,0x8e,0x79,0xf5,0xe4,0x68,0xf4,0xa2,0x93,0x35,0x70,0x92,0x86,0x7c,0x1a,0x02, 0x88,0x6e,0xf9,0x34,0x00,0xc7,0xa4,0x82,0xae,0x69,0xb0,0x34,0xa2,0x7b,0x8e,0x4a, 0xc3,0xa7,0xac,0x53,0xa6,0x4c,0x3e,0xe3,0x08,0x00,0xcf,0x89,0x5b,0x4e,0x82,0x70, 0xf0,0x4d,0x63,0xc3,0x4b,0x87,0xbb,0x57,0xce,0x68,0x12,0x3a,0xae,0x5c,0x91,0x86, 0xcc,0x5e,0x88,0xce,0xc4,0x20,0x03,0xe8,0x64,0x02,0x85,0xf7,0x38,0x2d,0x79,0xb4, 0x5d,0x33,0x69,0xa7,0x97,0xa7,0x6d,0xe1,0xc1,0xd1,0x53,0xd1,0x26,0x93,0x32,0x79, 0xfc,0xe0,0x28,0x53,0x0f,0x4f,0xde,0x35,0xf3,0x00,0xae,0xf5,0x9a,0x83,0xaa,0xb6, 0xb8,0x06,0xa3,0xf0,0x42,0xd8,0x7a,0xf4,0xac,0xad,0xcf,0x07,0xe7,0x1d,0x01,0xe6, 0xce,0x99,0xfb,0xf3,0xb1,0xbf,0x2c,0x2f,0x60,0x10,0x80,0x30,0x16,0x2c,0xc9,0xd4, 0x62,0x07,0xc3,0x8b,0x2f,0x5a,0xd3,0xbc,0x64,0xed,0x65,0xcd,0xa2,0x45,0x0b,0x9b, 0xe9,0xd3,0xbb,0xa3,0xdd,0xec,0x66,0xc1,0xfc,0xf9,0xcd,0x91,0xc1,0x23,0xb1,0xb0, 0x3a,0xda,0x74,0x86,0x43,0x6b,0x04,0x9e,0x75,0xa8,0x6b,0xf6,0x3e,0xf9,0x54,0xd2, 0xbd,0x44,0x49,0x02,0xa7,0xb3,0x18,0xd5,0x15,0xa4,0xa3,0x3a,0x3a,0x62,0x6f,0x1c, 0x81,0x55,0x94,0x2e,0x47,0xa6,0x7a,0x74,0x5d,0x1b,0x8c,0x95,0xe1,0xd8,0x10,0xac, 0xc7,0x32,0xd0,0xe9,0x33,0x8b,0x28,0x74,0xe1,0x02,0xb8,0x79,0xcf,0x88,0xf8,0xe4, 0xd0,0x8b,0xf7,0x94,0xf2,0xf0,0x67,0xf4,0xcc,0xd4,0x81,0x6e,0xe2,0xbb,0x6a,0x83, 0xa6,0x36,0x82,0x43,0xbb,0xc2,0x3f,0xca,0xa5,0x1c,0xdd,0xd0,0x82,0x0f,0xb2,0x3d, 0x3c,0x7a,0xaa,0xa7,0x8f,0x80,0x83,0xa7,0xbc,0xf0,0x1a,0xa7,0x91,0x6d,0xd0,0x82, 0xa7,0x1e,0x64,0xf0,0x26,0x6d,0x1d,0xa7,0xb4,0xc7,0xcf,0x49,0x68,0xd4,0x05,0x85, 0x82,0x77,0x22,0xd6,0x24,0xfc,0x75,0xf9,0x65,0x97,0x7d,0x66,0xeb,0xb6,0x6d,0x07, 0x7f,0xfb,0xb7,0x7e,0x73,0xdd,0xab,0x5f,0xf9,0xea,0x75,0xf7,0x7d,0xed,0x6b,0xe5, 0x2d,0xaa,0x96,0x0d,0x1f,0xf8,0xdd,0xf5,0x97,0xad,0x7d,0xc9,0x3b,0x3a,0xba,0xba, 0x9b,0x45,0x8b,0x97,0xbe,0xfb,0xab,0x9b,0xbe,0x3c,0xf0,0xfb,0x1f,0xf8,0xe0,0x96, 0x13,0x27,0xea,0x4a,0xbf,0x10,0x0b,0xc2,0xe6,0x32,0x79,0x46,0xef,0xea,0xd2,0x5b, 0x3b,0x9a,0x97,0xbf,0xec,0x65,0x4d,0x4f,0x38,0x1e,0x23,0xc2,0x11,0xc6,0xb9,0xfe, 0xde,0x7d,0xfb,0x9b,0xaf,0x7f,0xfd,0x81,0x66,0x30,0x56,0xeb,0xb6,0x90,0xe9,0x48, 0x74,0x52,0x41,0xf8,0xe9,0x14,0xf5,0xae,0xca,0xf1,0x84,0xe3,0x0a,0xf0,0x63,0x60, 0x86,0x4b,0xe7,0x59,0xdd,0x9e,0xf0,0xec,0x60,0x7c,0x0b,0x56,0xf6,0xc2,0x65,0xa4, 0x51,0xcb,0x51,0xb5,0x17,0xb7,0xb4,0x84,0x63,0x4f,0x9e,0x5d,0x81,0xa3,0x85,0x2e, 0x3e,0x29,0x43,0xf2,0x95,0x87,0xa7,0x9d,0x5d,0x06,0x7d,0xc9,0xe5,0x28,0xb8,0x23, 0xda,0xb5,0xc7,0xdc,0x6e,0x37,0x44,0x1f,0x6d,0x52,0xbe,0x6c,0x47,0x17,0xf8,0xca, 0xe5,0x95,0x4f,0x04,0x65,0xc9,0x9f,0xbd,0x52,0x0e,0x76,0xc1,0x33,0x65,0x92,0x57, 0x26,0xa5,0x7c,0xae,0x59,0xef,0xbe,0x38,0x36,0x82,0x02,0x98,0x32,0xd9,0x2b,0x03, 0x0a,0xc0,0xc1,0x0f,0x8f,0xf6,0xb8,0xce,0x98,0x31,0xbd,0x79,0xf3,0x9b,0xdf,0xfc, 0xc4,0x1b,0xde,0xf0,0x86,0xfe,0xd1,0x93,0x27,0x56,0x9f,0x3e,0x35,0xb6,0x64,0xdf, 0xbe,0x7d,0xb7,0xbd,0xe3,0xc6,0xf5,0x37,0xb6,0xbd,0xea,0x8a,0xcb,0x1f,0x9a,0x37, 0x6f,0x7e,0xef,0xc2,0x45,0x4b,0x7a,0x7b,0x66,0xce,0x79,0x67,0x20,0xdc,0x74,0xe7, 0x9d,0x77,0xc6,0x8a,0xbc,0x1e,0xcc,0x60,0x9e,0x0a,0x61,0x50,0x15,0x10,0xf9,0x5d, 0xcd,0xca,0x95,0x2b,0x9a,0x49,0xe1,0x84,0x54,0x88,0xb1,0x8b,0x08,0x21,0xc0,0xfe, 0x08,0x82,0x03,0x07,0x07,0xc6,0x95,0xb0,0x00,0xaa,0x86,0x12,0xad,0x29,0x64,0xc2, 0x44,0xe5,0x28,0x93,0x09,0xa0,0xad,0x9d,0x7a,0x65,0xf2,0xa7,0x9c,0xab,0x87,0xc2, 0x53,0x62,0x0a,0xf2,0xe0,0x68,0xf6,0xac,0x59,0x4d,0x4f,0xcf,0x8c,0xc8,0xb7,0x37, 0xf3,0xe6,0xcd,0x09,0x3c,0xc3,0xa8,0xde,0x5f,0x17,0x81,0x9e,0x26,0x92,0x2f,0x06, 0xe0,0xe6,0x44,0x18,0x36,0x0d,0x94,0x80,0x36,0x43,0xc2,0x55,0x27,0x91,0x5b,0x30, 0x75,0x75,0x76,0x35,0x1e,0x1f,0x4f,0x9b,0x36,0xb5,0x8c,0x82,0x7a,0xbc,0x13,0xc9, 0xae,0xe0,0x5b,0x64,0x89,0x51,0x86,0xb3,0xd8,0x04,0x3e,0xde,0xca,0xa5,0x0c,0x7a, 0x8e,0x77,0x75,0x0f,0xd4,0xa5,0xfe,0x82,0x06,0xa0,0x0b,0x2f,0x83,0x08,0x90,0x51, 0x82,0x9f,0x79,0x74,0xdc,0xbb,0xa2,0x01,0x37,0xf1,0x05,0x0f,0x1b,0xa9,0x4b,0x3c, 0xeb,0x02,0x36,0xba,0xea,0xaa,0xab,0xe6,0x5c,0x7d,0xf5,0xd5,0xbd,0x17,0x5c,0xb0, 0x7a,0xfa,0x05,0x17,0xae,0x71,0xdc,0xbd,0xf6,0x97,0x7f,0xe9,0x97,0xb6,0xb6,0xbd, 0xe9,0x0d,0xd7,0xbc,0x6e,0x78,0x68,0xa8,0x67,0xef,0xbe,0x83,0x5d,0x93,0xda,0x3b, 0xee,0x3e,0x78,0xe8,0x40,0xdf,0xdf,0x7d,0xf6,0xb3,0xbd,0x9e,0xce,0x81,0x42,0x24, 0x04,0xcb,0x5e,0x4e,0xc0,0xd1,0xd1,0x13,0xc5,0x60,0x17,0xae,0x5e,0x15,0x18,0x35, 0x30,0xb2,0x2e,0x6c,0x5c,0x04,0xeb,0xdf,0xbd,0xa7,0x39,0x78,0xf0,0x50,0xb9,0xf7, 0x44,0x0f,0x4c,0x54,0x3a,0x8d,0x2c,0x2f,0xa5,0xa2,0x35,0x60,0xaa,0x62,0xae,0x13, 0x95,0x96,0x67,0xa8,0xa9,0xe1,0xf8,0xf9,0xf3,0xe6,0x36,0xcb,0x96,0x2d,0x8d,0xb4, 0xb8,0x99,0x3d,0x7b,0x66,0x49,0x73,0xe6,0xcc,0x6a,0xe6,0xcf,0x9f,0xe7,0x05,0x92, 0xb8,0x9f,0x15,0xc1,0x30,0x37,0xf2,0x3d,0x4d,0xf7,0x34,0xfb,0x6d,0xc3,0x64,0x0c, 0xa3,0xc5,0x70,0x55,0x96,0x34,0xa2,0x94,0x72,0xe0,0x33,0x2b,0x02,0x6a,0xde,0x3c, 0xd3,0xd9,0xbc,0x66,0xd9,0xd2,0xc5,0xcd,0x82,0x05,0xf3,0x9b,0x79,0xf3,0xe7,0x34, 0xb3,0xf0,0x08,0xba,0x33,0x67,0xcd,0x28,0x74,0xf1,0x9b,0x19,0xb8,0x0c,0x8c,0x86, 0x75,0x08,0xb9,0xcb,0x53,0xd0,0xb8,0x26,0x7d,0x4e,0x99,0xc8,0x8f,0x2d,0xa5,0xce, 0x8e,0xc9,0xac,0x12,0xd3,0x8b,0xff,0xbb,0x86,0xe3,0xfc,0x0b,0xbc,0xc4,0x4d,0x7b, 0x64,0x3b,0xd7,0xb4,0x97,0x04,0xe0,0x4e,0xcc,0x27,0x3e,0x19,0x5a,0x4b,0xbe,0xe8, 0xdb,0x17,0x01,0xb8,0x79,0x4b,0xdf,0x96,0x9e,0xfe,0xdd,0xfd,0x5d,0x31,0x62,0xdc, 0x3d,0x30,0x30,0x70,0x4f,0xcb,0x47,0x7e,0xff,0x37,0x5b,0x87,0x8e,0x9e,0x78,0xf3, 0xc9,0xd3,0xed,0x33,0xda,0xda,0x3b,0x37,0xfe,0xd6,0xfb,0xde,0x3b,0x10,0x46,0xbc, 0x23,0xf8,0x5e,0x6f,0x28,0xc5,0x14,0x71,0x04,0x73,0x9f,0x3e,0x3a,0x3a,0xd2,0x78, 0x19,0xe3,0x4d,0xd7,0xbd,0xb1,0x69,0x89,0x5e,0x06,0x07,0xc0,0xd1,0x6f,0x8e,0x1d, 0x1f,0x69,0xee,0xb9,0xfb,0xbe,0x66,0x57,0x04,0x41,0xfb,0xa4,0x71,0xe5,0xe3,0x9f, 0xab,0x84,0x9e,0xde,0x90,0x46,0x72,0x9f,0x43,0x9f,0xfb,0xec,0x8d,0x45,0x99,0xa0, 0xe7,0x94,0x8d,0x91,0xf5,0xf2,0xc5,0x4b,0x96,0x44,0x40,0x86,0xf2,0x21,0x87,0x60, 0x00,0xe6,0x79,0x6d,0xc9,0xc1,0x60,0xe8,0x0a,0x5a,0x87,0x4f,0x41,0xa2,0x39,0x7e, 0xec,0x78,0x0c,0x91,0x23,0x21,0xcf,0xee,0x66,0x60,0xe0,0x70,0x39,0xf8,0x31,0x22, 0xe5,0x54,0x71,0xf2,0x54,0xe5,0x3b,0xbd,0x7b,0x5a,0x79,0x81,0x63,0x61,0x38,0xbe, 0x6b,0x8a,0x03,0x1d,0x43,0x76,0x7d,0xa2,0x38,0xf1,0x8c,0xc2,0x94,0x44,0x46,0xbc, 0x80,0x27,0x7d,0x0c,0xed,0x51,0xef,0xde,0xbd,0xfb,0x9a,0x23,0x87,0x8f,0xc4,0xd4, 0x71,0xb4,0x39,0x7c,0x64,0xb0,0xc8,0x6e,0xaa,0xe2,0xe2,0x2a,0x4f,0x0d,0xe6,0x92, 0x5a,0x0c,0xd3,0x31,0x22,0x45,0x9e,0x5d,0x46,0x43,0x67,0x4f,0x2a,0xb3,0x63,0xc0, 0x81,0xdf,0xd9,0x55,0xd7,0x26,0x16,0xb5,0xec,0x88,0xff,0xd8,0xf8,0x89,0x23,0x48, 0xe7,0xa7,0x1f,0x8a,0xdd,0x82,0x1e,0x3b,0x38,0x07,0xe8,0x9a,0xdc,0xd1,0x37,0x75, 0xf2,0x94,0x6b,0x1e,0x7f,0xe2,0x7b,0x7d,0xbf,0xf0,0xce,0x9f,0xbf,0x7e,0xca,0xe4, 0xa9,0x3d,0x61,0x9f,0x8d,0x1f,0xf8,0xe0,0x1f,0x0c,0xd4,0x2e,0xf9,0x3c,0x98,0x33, 0xa7,0xbc,0x10,0xb2,0xe1,0xf8,0xf1,0x13,0xe5,0xc9,0x18,0xe6,0x88,0x23,0x7c,0xec, 0x98,0x13,0xb8,0xba,0x27,0x7d,0xe5,0xd5,0x57,0x36,0x2b,0x96,0x2d,0xa9,0xcc,0x42, 0x60,0x0a,0xb4,0xc6,0x7c,0xfc,0xd4,0xd3,0xcf,0x36,0x0f,0x3e,0xf8,0xed,0xc0,0x17, 0xd7,0x75,0x6e,0x8c,0x31,0xa2,0xd0,0x4e,0x23,0x12,0x2e,0x83,0x41,0x3e,0x17,0x32, 0xca,0xe0,0xe3,0x89,0xdf,0xb4,0xa9,0xd3,0x9a,0x17,0x5d,0x7c,0x61,0x19,0xee,0x3b, 0x3a,0x6a,0xaf,0x19,0x8c,0x39,0xda,0x70,0x0b,0xe7,0xc8,0x91,0x23,0x85,0xc6,0x91, 0x23,0x87,0x4b,0x3b,0x8e,0xf7,0xe2,0xe9,0x92,0x25,0x4b,0x8b,0x13,0x42,0x97,0x42, 0x33,0xe7,0xd9,0xa3,0xc3,0xc7,0x9a,0xed,0xdb,0x77,0x34,0xfd,0xfd,0xfd,0x51,0x5e, 0x0d,0xd7,0x3a,0xa9,0xb5,0x8c,0x18,0xcb,0x43,0x17,0x73,0xbf,0x2e,0x59,0xe6,0xd4, 0xa8,0x3b,0x74,0x68,0xa0,0xb4,0x3f,0xb0,0xff,0x40,0x33,0x23,0x7a,0xfd,0xf0,0xf0, 0x50,0x99,0x0a,0xf0,0x14,0xa4,0x73,0xe7,0xce,0x2d,0x7c,0xdd,0x6b,0x9b,0xd3,0xc8, 0xc1,0x03,0x87,0x9a,0x87,0x1f,0x79,0x2c,0x78,0x0a,0x34,0x47,0xc3,0x53,0x0b,0x8e, 0x35,0x45,0x06,0x00,0x47,0xb2,0xab,0xbc,0x6b,0xae,0x75,0xb4,0x97,0xc8,0x2b,0xe9, 0x44,0xc9,0xaf,0x2b,0x82,0x5e,0xb0,0x7b,0xd5,0x2c,0xf1,0xd4,0x91,0x97,0xee,0x25, 0xa0,0xc3,0x8e,0xc5,0xe6,0xd1,0x56,0x90,0xb5,0x77,0xb4,0x6d,0xde,0xbd,0x7b,0xd7, 0x79,0xdf,0x07,0xa8,0x16,0x78,0x1e,0x44,0x74,0x5f,0x15,0x84,0xaf,0xcb,0x1e,0x85, 0x09,0xe6,0x08,0x67,0x20,0xb8,0x67,0x7c,0x2b,0xf2,0x18,0xb9,0x9a,0x91,0x98,0x67, 0x8f,0x46,0x4f,0xdb,0xb6,0x6d,0x47,0xf3,0xd4,0x53,0xcf,0x94,0x61,0x50,0xd4,0xd7, 0x1e,0x40,0xa9,0x1a,0xa9,0x04,0x03,0x1c,0x8e,0x0e,0x9a,0x78,0x80,0x34,0x5e,0xf2, 0xd4,0x6e,0x4a,0xac,0x35,0x2e,0xbc,0xe0,0x82,0xe2,0x7c,0x34,0x07,0xa2,0x77,0xed, 0xdc,0xb9,0xcb,0xeb,0x5e,0xd1,0xd3,0x06,0xa3,0x57,0xf7,0x37,0x07,0xc3,0x49,0x83, 0x47,0x86,0x83,0xff,0x48,0x33,0x14,0x0e,0x1e,0x1c,0xac,0x79,0xce,0xb2,0xa0,0x93, 0xd0,0x2e,0x41,0x10,0xc2,0x4e,0x8b,0x29,0xc1,0x28,0x50,0x8f,0x6f,0x3b,0xa3,0xd7, 0xf7,0x34,0xbd,0xcb,0x97,0xc7,0x62,0xaf,0xbe,0xe9,0xb3,0x67,0xcf,0xde,0xe6,0x70, 0xd4,0xe3,0x71,0xe0,0xc0,0xc1,0x08,0xa8,0x23,0xcd,0xf1,0x13,0x23,0x31,0xb2,0x1d, 0x2b,0xef,0x40,0x78,0xae,0x7f,0x38,0x46,0x12,0xa3,0xc8,0xd0,0xe0,0x50,0xb3,0x2b, 0xe4,0xe1,0x00,0xeb,0x00,0x3a,0x9a,0x0a,0x8c,0x1a,0x64,0xb3,0x48,0xad,0xfa,0x9d, 0xbb,0x83,0x28,0xce,0x89,0x7b,0xa0,0x8d,0x94,0x41,0x4a,0x56,0xa3,0x9b,0x7a,0xf6, 0x62,0x3b,0x3b,0x1a,0x4f,0xfd,0xca,0x88,0x11,0xf7,0xe8,0x24,0x2d,0x36,0x84,0x9b, 0x34,0xd3,0x9e,0xd5,0x86,0x46,0x82,0xd1,0xfe,0xd8,0xcd,0x9c,0xf7,0x1c,0xa0,0xe5, 0xf6,0x8f,0x7f,0xb4,0xed,0xc8,0xe0,0xf0,0x3b,0x26,0x75,0x4c,0xde,0x36,0x6b,0xce, 0xdc,0xbb,0x7e,0xea,0xa7,0xfe,0xd5,0xd8,0xc2,0x85,0x0b,0xee,0x88,0xa1,0xef,0x7a, 0xa7,0x5b,0xb9,0x78,0x23,0x88,0xc5,0x97,0x15,0x37,0x61,0x09,0x69,0x64,0xab,0x8b, 0x8c,0xce,0x52,0x0f,0x2c,0xb2,0x6c,0xfd,0xaa,0xe0,0x75,0x5e,0xa7,0x0c,0x7c,0xa0, 0x9c,0x80,0xe6,0xc5,0x3c,0x77,0x57,0x96,0xf3,0x24,0x5a,0x7a,0x02,0xd0,0x76,0x56, 0xf4,0xba,0x2b,0x5e,0xfe,0x92,0xc0,0x39,0xd9,0x6c,0xdd,0xba,0xb5,0x19,0x38,0x34, 0xd8,0x1c,0x0a,0xe3,0x97,0xb7,0x87,0x02,0x1f,0x0d,0xf2,0xd4,0x9e,0x54,0x5f,0x18, 0x61,0x08,0x01,0x76,0x3a,0xda,0xe8,0x15,0xde,0x94,0xc1,0xbf,0xa7,0x67,0x66,0x6c, 0x57,0xa7,0x95,0x6d,0xeb,0xc0,0xa1,0xc3,0x11,0xa8,0x4f,0x97,0x76,0x6b,0xd6,0x5c, 0x58,0xe6,0x74,0x81,0xe5,0x95,0xeb,0x83,0x87,0x0e,0x16,0xfa,0xb6,0x96,0xb5,0x37, 0xd5,0x85,0xb0,0x29,0x01,0x4f,0x32,0xa7,0xa1,0x9d,0x02,0x9e,0x8e,0xfa,0x59,0xb3, 0x66,0x86,0x6d,0xea,0x76,0xf9,0x82,0xd5,0x2b,0xa3,0xed,0xc9,0xe6,0xfe,0x6f,0x7c, 0xab,0x04,0x1f,0xfd,0xe0,0x4b,0x75,0x6a,0xaa,0x6d,0xd1,0x06,0x68,0xa3,0xab,0x4e, 0x19,0xfd,0x2d,0x34,0x05,0x23,0xb9,0x8d,0x2c,0xca,0x24,0x78,0x64,0x96,0xd4,0xa1, 0x93,0x6d,0x41,0xf2,0x52,0xce,0xa6,0xf0,0x62,0x48,0x1b,0x88,0xe9,0xf3,0x86,0x47, 0x1e,0x79,0xe4,0xee,0x3f,0xbf,0xfd,0xaf,0xd6,0x87,0x81,0x7a,0x83,0x76,0xdf,0xcf, 0xfc,0xbb,0xf5,0xb7,0xb5,0xbc,0xff,0xe6,0xdf,0xda,0xf2,0xf2,0x57,0x5c,0x39,0x73, 0xde,0x82,0x65,0xc1,0xfc,0xf4,0xc0,0xfd,0xdf,0xf8,0xfa,0xd8,0x86,0x0d,0x7f,0x14, 0x8b,0x40,0xc4,0x45,0x57,0x75,0xec,0xd4,0x29,0xd3,0xca,0xfd,0x89,0xd1,0xe3,0x85, 0x38,0x23,0x63,0x36,0x29,0x84,0x37,0x54,0x96,0x57,0xa3,0xa2,0x4c,0x39,0xa6,0x04, 0x7a,0xfe,0x90,0x96,0x46,0xe0,0x34,0x38,0xca,0xd0,0x02,0x14,0x77,0x6f,0x6e,0x45, 0x57,0x7b,0xb4,0x66,0x84,0xc3,0x2e,0xbf,0xfc,0x92,0x30,0x52,0x6b,0xf3,0xdc,0x73, 0x7d,0xcd,0xd6,0xbe,0xed,0xc1,0xa7,0xce,0x6f,0xc5,0xc9,0xe3,0x72,0x98,0x12,0xb4, 0x4f,0x9e,0xe8,0xc8,0xa3,0x2f,0xa8,0x5c,0xb5,0x99,0x36,0xb5,0xab,0x89,0x95,0x70, 0x33,0x33,0x82,0x61,0xcb,0x96,0xad,0xa5,0x7c,0x45,0xef,0xb2,0x32,0xb2,0x3c,0xfb, 0xec,0x73,0x65,0x14,0x33,0xcf,0xc2,0x45,0x93,0xfe,0xb9,0x16,0x42,0x9f,0x53,0xc8, 0xe2,0xbd,0x47,0xf7,0x1c,0x0c,0xac,0x4b,0x26,0xc5,0x54,0xb2,0x74,0xe9,0xd2,0x66, 0xe5,0x8a,0xe5,0xa5,0xdd,0x43,0x9b,0x1f,0x2d,0xd3,0x50,0xb1,0x53,0xb4,0xd7,0x16, 0x3f,0x49,0x99,0xf6,0x9c,0x24,0x00,0xd2,0xb9,0x12,0x80,0x4f,0x86,0xb4,0xb1,0x75, 0x42,0xb6,0xcf,0x7b,0xb8,0x49,0x0f,0x0d,0x7a,0xc2,0x51,0xae,0x2d,0x3b,0x08,0x7e, 0xd7,0x37,0xbe,0xf1,0x0d,0x03,0x2f,0x7e,0xf1,0x65,0x03,0x57,0x5f,0xf5,0xca,0x9e, 0xe9,0xd3,0xba,0x7b,0xec,0x5e,0xa6,0x75,0x77,0xdf,0xd0,0x3a,0x72,0x74,0xb0,0x77, 0x6c,0x74,0x64,0x46,0xc8,0x3e,0x63,0xea,0x94,0xc9,0xcb,0x8f,0x1d,0x1b,0xee,0x2d, 0x0b,0x8c,0xe2,0xfc,0x7a,0x0e,0xc0,0x19,0xb6,0x78,0xa7,0xc7,0x17,0x7c,0x92,0xa8, 0x44,0xb8,0xbc,0x02,0x15,0x42,0x5a,0x03,0x60,0xac,0x0e,0x64,0x8f,0x4f,0xc8,0x72, 0xc2,0x82,0x6a,0xc8,0xb3,0x2b,0x7f,0x57,0xed,0xd1,0x92,0xb4,0x2f,0xf9,0xa8,0x2b, 0x0a,0xc1,0x37,0xe4,0x94,0x87,0x1b,0xf6,0xe4,0xf5,0x64,0xcc,0x10,0x67,0x08,0x9f, 0x3d,0x7b,0x76,0x19,0x7a,0x39,0xbe,0xd2,0x8c,0xc0,0x38,0x19,0x8b,0xc3,0xe8,0x89, 0x80,0x0e,0xc5,0xa8,0xa7,0xc6,0x9a,0x9d,0xbb,0x76,0x1b,0x91,0x9b,0xb9,0xf3,0x62, 0xd7,0xb0,0x60,0x9e,0xb1,0xb2,0xd9,0xbe,0x63,0x47,0x33,0x12,0x3c,0xf0,0xcc,0x03, 0xa4,0xba,0xdd,0x9d,0x5c,0xda,0x59,0xcf,0x74,0x76,0x4e,0x8a,0x11,0x64,0x6a,0xe1, 0xa5,0x9c,0xc1,0x2d,0xfe,0x40,0x19,0x25,0x5a,0x83,0x47,0xeb,0xf8,0x96,0x38,0xf8, 0x92,0x8f,0x1e,0x86,0xee,0xec,0xad,0xea,0xd2,0xe9,0xf4,0x12,0xe4,0xf2,0xe4,0x73, 0xad,0xb4,0x6a,0xa7,0xc3,0x17,0xae,0xce,0xa8,0xac,0x33,0xa6,0x2b,0x67,0x12,0xda, 0xa5,0xad,0x32,0x00,0x8a,0x8d,0x82,0x76,0xda,0x37,0x6d,0x3b,0x12,0x8b,0x5f,0x67, 0x01,0x27,0x46,0x46,0x7a,0xf6,0xed,0xe9,0xef,0x8d,0xae,0xd6,0x43,0x8f,0x98,0x52, 0x07,0xf6,0xf4,0xef,0xea,0x69,0xfb,0x91,0xeb,0xde,0xd0,0xbd,0xff,0xe0,0xc1,0x97, 0xec,0xdb,0x7f,0xb0,0x2f,0xb6,0x81,0xff,0xef,0xf6,0xed,0x5b,0xbf,0x71,0xff,0xfd, 0xff,0x70,0x15,0x05,0xcc,0x63,0xe5,0x68,0x31,0x08,0xe4,0x5c,0x86,0x91,0x6b,0x0a, 0xee,0x9a,0xc3,0x37,0xe3,0xbb,0x12,0x3c,0x1d,0x4b,0xa8,0xc4,0xa1,0x24,0x98,0x28, 0x30,0xdc,0x4c,0xea,0x93,0xb6,0x3a,0x34,0x0c,0xa9,0xb6,0x5b,0x93,0xf5,0xe2,0x70, 0x9e,0x1e,0x6a,0x98,0x2f,0xef,0x20,0x8e,0xd3,0x36,0x5c,0xc2,0xb1,0x57,0x97,0x80, 0xf9,0x3d,0x3a,0x6e,0x04,0x4a,0xe5,0x45,0x56,0x0e,0xd1,0x33,0x39,0xc4,0x54,0x20, 0x70,0x6c,0x0f,0x0f,0x1e,0x3a,0xd4,0x6c,0xdb,0xbe,0xbd,0x38,0x11,0x4f,0xdb,0x5c, 0x41,0x26,0x4a,0xe8,0x4d,0x76,0x87,0x29,0xb6,0x86,0xf3,0xe7,0xcf,0x2f,0x86,0xd7, 0xf3,0x8f,0xc4,0x2a,0xdf,0x0e,0x42,0xb0,0x91,0x5d,0x6f,0x9b,0x1f,0xdb,0x45,0x0b, 0xe7,0x81,0x43,0xb1,0x56,0x89,0x40,0x23,0x5f,0x79,0x63,0x27,0xae,0x68,0xbb,0x02, 0x34,0xe4,0xd3,0xe9,0xf4,0xd6,0x29,0x94,0xa7,0xe3,0x13,0xbc,0xf3,0x08,0xcf,0x0e, 0xa1,0xd8,0x3f,0xda,0x95,0x6b,0xb4,0x91,0xb4,0x51,0x9f,0xf6,0x90,0xd4,0x0b,0x50, 0xbb,0x25,0x10,0xa3,0xe5,0xdd,0x31,0xb5,0x6f,0xdc,0xb5,0x6b,0xc7,0x43,0x7b,0xf6, 0xec,0x79,0xb2,0xaf,0x6f,0xcb,0x27,0xae,0xff,0xf1,0xeb,0x3f,0xda,0xf6,0xe5,0x4d, 0xf7,0x7e,0x69,0xdd,0x0f,0xbc,0xfa,0x6f,0xa3,0xcd,0x5f,0xc5,0xdc,0xfa,0xe9,0xff, 0xf8,0x2b,0xbf,0xf2,0xb9,0xd9,0xb3,0xe7,0xc4,0x28,0x30,0xb6,0x56,0x00,0x50,0x2c, 0x99,0xa5,0x53,0x30,0x24,0x2c,0x46,0xca,0xd5,0x13,0x98,0x23,0xd4,0x49,0x39,0x02, 0x14,0xc1,0x23,0xb9,0x4f,0xc1,0xa4,0x0c,0x12,0x75,0x99,0x4f,0xba,0x78,0xa2,0x07, 0xbf,0xbe,0x98,0xda,0xde,0xcc,0x88,0x40,0x88,0x86,0xe5,0x94,0xf1,0x48,0x2c,0xd0, 0xe0,0xc1,0x91,0x38,0xd6,0xaa,0x98,0x03,0xa6,0x4e,0x9d,0x52,0xf6,0xf1,0x86,0x69, 0x43,0x77,0x7d,0x29,0xa2,0x0e,0x91,0xe4,0x0f,0x12,0x85,0xae,0x83,0x2c,0x5b,0x59, 0xce,0xdb,0xb7,0x7f,0x7f,0xec,0x0a,0x62,0xcb,0x3a,0xae,0x2f,0xa7,0xd7,0x7c,0x47, 0xc1,0x5b,0xb4,0x68,0x41,0x09,0x16,0xb8,0xce,0x36,0x2c,0x7e,0xad,0x0f,0xc0,0xc4, 0xad,0x9d,0xf3,0x87,0x05,0x31,0xa2,0xc8,0xef,0xdd,0xb3,0x2f,0x16,0xa4,0x47,0x0b, 0x5f,0x38,0x13,0x75,0x4d,0x7b,0xba,0xe2,0xa7,0xdc,0x14,0x00,0x94,0x81,0x74,0xac, 0x2b,0xd0,0x5e,0x1d,0xbd,0x5d,0x25,0xf5,0x89,0x2f,0x8f,0x8e,0x7b,0xb8,0xf8,0x58, 0x9b,0xd4,0xd7,0xf5,0x4f,0x6f,0x8e,0xf4,0xd6,0x4f,0xfd,0xaf,0x4f,0x7f,0xf2,0xae, 0xaf,0x7e,0xf5,0x73,0xaf,0x79,0xf5,0x6b,0xbe,0xf2,0xae,0x77,0xdf,0x74,0xaf,0x76, 0xb5,0xf5,0xf3,0x60,0xf1,0xc2,0x45,0x7e,0x9c,0xb0,0x21,0xdc,0x55,0x46,0x00,0xc4, 0x30,0x96,0x10,0x67,0x48,0x82,0x49,0x1c,0x40,0x09,0xe0,0x9e,0xa3,0x53,0x28,0xb8, 0xea,0x0c,0xd3,0xb6,0x3f,0x60,0xa2,0x63,0x00,0x1c,0x6b,0x82,0x8a,0x57,0x9f,0x05, 0x88,0x5c,0x89,0x52,0xe8,0xcd,0x9a,0x35,0xa3,0x79,0xe9,0xe5,0x97,0x96,0x9e,0xb0, 0x65,0xeb,0x8e,0x58,0x0b,0x6c,0x3d,0x13,0x7c,0x64,0x23,0xc3,0x89,0x13,0xde,0x16, 0x6a,0x2d,0x53,0x93,0x21,0xda,0x99,0x81,0x5e,0x6c,0x1b,0xc7,0xb9,0x02,0xe9,0x58, 0x8c,0x1e,0xa7,0x83,0xe6,0xc9,0x53,0x27,0x9a,0x55,0xab,0x7a,0x9b,0x4b,0x5e,0xfc, 0xa2,0xe0,0x77,0xa2,0x9c,0x0f,0xd8,0xb9,0xd4,0xb9,0xbe,0x9e,0x22,0x72,0xda,0xbc, 0x79,0xf3,0xca,0x21,0xd0,0xe9,0xd3,0x27,0x9b,0x5d,0xbb,0x76,0xc5,0x6e,0x60,0xa8, 0xe8,0x81,0xa7,0xd1,0xc2,0x34,0x60,0x34,0x22,0x87,0x73,0x8a,0xc5,0x8b,0xe6,0x37, 0xab,0x63,0x01,0x68,0xc8,0x7e,0xfc,0xb1,0x27,0x9a,0x83,0x03,0x83,0x51,0x27,0xd8, 0x3a,0x0b,0x1e,0xe0,0x24,0x50,0x83,0xe6,0xac,0xf3,0xd0,0x60,0xb7,0x28,0x2e,0x76, 0xa0,0x93,0xb2,0x0c,0x2e,0xf7,0x89,0xe7,0xaa,0xbc,0x06,0x74,0x7d,0x16,0xa0,0x4c, 0x10,0x65,0x10,0x90,0x91,0x2d,0xbb,0xa2,0x5d,0x74,0xa0,0xcd,0x5b,0xb7,0x6f,0xfb, 0xa7,0x6f,0x03,0xa7,0x4d,0x9d,0x7a,0x55,0x30,0xb8,0xce,0x60,0x95,0xc3,0x4a,0x0a, 0x8e,0x91,0x44,0x20,0x49,0x79,0x8e,0x0c,0x84,0x4b,0xe0,0xd0,0x14,0xd2,0x90,0xca, 0x39,0xe6,0x55,0x65,0x19,0x20,0x8c,0x88,0x56,0x0a,0x0d,0xd4,0xa3,0x2b,0xd8,0x8a, 0x42,0x31,0xa7,0xaa,0x59,0xb4,0x70,0x7e,0xec,0x67,0xcd,0xe1,0x86,0x4a,0x8a,0xd7, 0x11,0x23,0xe5,0x8b,0x05,0x6c,0x5c,0xc9,0x7b,0xba,0x6c,0xff,0x38,0x81,0x81,0xad, 0xee,0x8d,0x08,0x62,0x7d,0x68,0xa8,0x06,0x21,0x67,0x2d,0x5d,0xb2,0xb8,0x4c,0x17, 0xa6,0x04,0x74,0xf4,0xec,0xd1,0xd1,0x3a,0xfc,0x0a,0x9e,0xa5,0xcb,0x16,0x97,0x5e, 0xaf,0xb7,0x6f,0xdf,0xbe,0x33,0xb6,0x83,0x87,0x0a,0x4d,0xb2,0x1a,0x19,0x6a,0xe0, 0xd6,0x1e,0x2e,0x58,0x05,0x43,0x4f,0x4c,0x13,0x3d,0x3d,0xdd,0x25,0x50,0xf6,0xef, 0x47,0xaf,0x1e,0xc4,0x50,0x8d,0x9c,0xf8,0xd0,0x93,0x7e,0xee,0x9d,0x0f,0x58,0x68, 0x66,0xef,0xb7,0xe6,0xa0,0x17,0x3b,0xa2,0x9b,0x36,0x95,0xe4,0x53,0x57,0xf7,0xe8, 0x28,0xab,0xc1,0x78,0xf6,0xd0,0xc8,0x7d,0xb5,0x47,0x5d,0xfb,0x58,0xa3,0x04,0x7e, 0xff,0xd0,0xf0,0xd0,0xf9,0xb7,0x81,0xbf,0xf1,0x1f,0x7f,0xa9,0x67,0xc9,0x92,0xe5, 0x37,0xcd,0x5d,0xb0,0x60,0xe0,0xaa,0x57,0xbf,0xf6,0xb6,0x6d,0xdb,0xb6,0x35,0x3f, 0xb3,0x7e,0xfd,0xa6,0xa1,0x63,0xc7,0xd6,0x72,0x10,0x66,0x75,0x1b,0x65,0xc8,0xab, 0x73,0x11,0x06,0xc9,0x1c,0xe8,0x15,0x29,0xa4,0xa4,0x37,0x56,0x23,0x71,0xdd,0xd9, 0xc7,0xb7,0x65,0xa1,0x14,0x81,0xd0,0xd5,0xe5,0x09,0x9a,0x05,0x5c,0x3d,0x17,0xa0, 0x4c,0xb6,0x47,0x53,0x9e,0x02,0xda,0xd9,0x7d,0x70,0xd4,0x9c,0xd9,0x3d,0xcd,0x8a, 0x58,0x5d,0x9b,0xd3,0xb7,0x6f,0xdb,0x19,0xa3,0xc0,0x16,0xeb,0xfe,0xa0,0x17,0x06, 0x88,0x5e,0x76,0x52,0x90,0x85,0x01,0xf5,0x06,0x7c,0x45,0x3f,0x9e,0x0e,0x6a,0xe6, 0x47,0x4f,0x36,0x8d,0xec,0xde,0x6d,0x9b,0x77,0xa8,0x1e,0xfa,0x2c,0x5f,0x56,0x86, 0x77,0x7c,0xca,0x29,0x61,0xcc,0xd7,0x0e,0x87,0xba,0xa7,0x4f,0x2f,0xbf,0x04,0x06, 0x7a,0x3d,0xc7,0x5b,0xc9,0x93,0x2b,0x4c,0x5e,0xca,0x4f,0xc5,0x88,0x50,0x65,0xb6, 0x42,0xef,0x70,0xd2,0x56,0xe6,0x7e,0x07,0x49,0x30,0x1e,0xfd,0xde,0xd3,0xcd,0xfe, 0x7d,0x07,0x4a,0x40,0x7a,0x38,0x46,0x1e,0x23,0x19,0x7d,0xd0,0x49,0x1d,0x75,0x08, 0x36,0x09,0x52,0xc5,0xa6,0x6c,0x95,0x8e,0x95,0xe0,0xe4,0x7d,0x76,0x0a,0x23,0x09, 0x9b,0xe9,0x60,0x82,0x0e,0xd0,0x01,0x7d,0xfa,0x2a,0x87,0x07,0x8a,0x9f,0xe2,0x1a, 0xba,0x0f,0x5c,0x76,0xd9,0x65,0xef,0xfe,0xbd,0xdf,0xfb,0xbd,0x8d,0x47,0x06,0x0f, 0xdf,0x74,0x74,0xf8,0xd8,0xe5,0xe1,0xb3,0xcf,0xfd,0xc4,0xbf,0xfa,0xc9,0x8f,0xb7, 0xfd,0xc0,0xab,0xae,0x3a,0xd6,0xdd,0x3d,0x75,0xdd,0xcb,0x5e,0x71,0xe5,0x75,0x53, 0xa7,0x4f,0x7f,0x4f,0x10,0x7a,0xcf,0x97,0xbf,0xf2,0xe5,0x05,0xfb,0xf7,0x1f,0x28, 0x04,0x45,0x28,0x63,0x12,0x14,0x41,0x89,0x50,0x98,0x54,0xa1,0xeb,0x6a,0x55,0x9e, 0xf1,0x19,0x5a,0x8f,0xcf,0x85,0x0f,0x5c,0x30,0x71,0xc8,0x07,0xd5,0x00,0x75,0x64, 0x91,0xcf,0x6d,0x50,0x8e,0x1c,0xd9,0xd6,0x6e,0x44,0x00,0x52,0xbc,0x7b,0x7a,0x77, 0x59,0xe9,0x53,0xb8,0x2e,0xc0,0x62,0xb5,0x3c,0x8e,0x23,0x30,0x18,0x41,0xbb,0x0a, 0xe5,0xa7,0x66,0xa5,0xd7,0xfa,0x85,0x8e,0x5e,0x6f,0xff,0xaf,0x77,0x7b,0x5e,0x50, 0x77,0x31,0xb5,0xd7,0x31,0x6e,0x4e,0x1d,0x1e,0x67,0xa3,0xdf,0xd7,0xb7,0x2d,0x02, 0xa6,0x3f,0x64,0xab,0xf4,0xd0,0x75,0x50,0xe4,0xed,0x5b,0x6d,0x92,0x57,0x57,0xf4, 0x7e,0x3f,0x2c,0x59,0x18,0x73,0x3f,0x1a,0xa6,0x9c,0x9d,0x3b,0x77,0x97,0xc5,0xaa, 0x9d,0x93,0x83,0x1b,0x3a,0xc3,0x45,0xd7,0x55,0xa2,0xa7,0xde,0xae,0xac,0xfe,0xe8, 0xa6,0xce,0xe9,0x65,0x67,0x11,0xf8,0xd9,0x31,0xd8,0x16,0x0e,0x7b,0xb3,0x53,0x96, 0xe7,0x28,0x82,0x8e,0x6b,0xda,0x53,0x5b,0x34,0x92,0x97,0x5f,0x72,0x85,0xcd,0xba, 0x7e,0xf4,0x47,0x7f,0xf4,0xfa,0x0b,0x2e,0xb8,0xe0,0x3d,0x17,0xad,0xb9,0x70,0x5d, 0xef,0x8a,0x95,0x17,0x45,0xfb,0xcb,0xde,0xfa,0xb6,0xb7,0x7e,0xa6,0xb5,0x35,0xa2, 0x79,0x24,0x86,0xb2,0xd8,0x22,0x34,0xcf,0x3e,0xfd,0x74,0x39,0xd5,0x2a,0x73,0x65, 0x10,0x04,0xe9,0xc0,0x1a,0xad,0x95,0x79,0xa6,0x89,0x4e,0x3c,0xab,0xa4,0xe8,0x0c, 0xa3,0x84,0xb1,0x6c,0x9d,0x28,0x56,0xf3,0xe9,0x18,0x3f,0xc5,0xaa,0x51,0xac,0x3d, 0x45,0xec,0x1e,0x44,0x33,0x65,0x18,0x56,0x9d,0x95,0xb4,0x73,0x79,0x7b,0x72,0x67, 0xec,0xb6,0x68,0x7b,0xfa,0xf7,0x06,0xfd,0xd3,0xb1,0x7d,0x9b,0xdb,0xac,0x58,0xd9, 0x1b,0x53,0x55,0x6c,0xf9,0x42,0x8e,0x70,0x7f,0x09,0x3e,0x8b,0xd0,0x94,0x83,0xe1, 0xd0,0xc6,0xe3,0xf0,0xc0,0x40,0xb3,0x77,0xef,0xde,0xc2,0x7b,0xce,0xec,0x39,0xe5, 0xe9,0x5e,0x5b,0x5b,0xe9,0x76,0xa5,0x7d,0x67,0x04,0x98,0xf3,0x06,0x43,0x3e,0xc3, 0x6d,0x89,0xd1,0xe5,0xe8,0xd1,0xe1,0x62,0x48,0x0b,0x42,0x34,0x39,0xb7,0x3e,0x6b, 0xaf,0x27,0xa2,0x75,0x7f,0x1d,0xd3,0x49,0x4c,0x4b,0x4b,0x16,0x2f,0x8a,0x5d,0xc8, 0xdc,0x62,0xb7,0xfd,0x31,0x62,0x9c,0x88,0xa1,0x1f,0x7f,0xed,0xd9,0x26,0x3b,0x8b, 0x7b,0x76,0xa3,0x5f,0x5d,0xb8,0x56,0x3b,0x48,0x68,0xa6,0x5d,0xb5,0x71,0x05,0xe9, 0x87,0xb4,0x9f,0x72,0xb4,0x13,0x57,0x3b,0xf2,0x29,0x73,0xcd,0x76,0xf2,0x40,0x7b, 0x69,0xdf,0xbe,0x7d,0x7d,0xc1,0x73,0xf3,0xc0,0xe1,0xc3,0xcd,0xee,0x18,0xd9,0x8e, 0x1c,0x3e,0xdc,0x13,0x3b,0x99,0x75,0x6d,0x3f,0xf5,0xe3,0x6f,0x3e,0x3c,0x72,0xec, 0xf8,0x83,0x43,0x43,0xc7,0xfa,0xb6,0x6f,0xdf,0x71,0x7b,0xec,0x1b,0xbf,0xf8,0x0f, 0x5f,0xff,0xfa,0x75,0xde,0x39,0xd7,0x10,0x03,0xcc,0x0d,0xdb,0xc9,0xa4,0x1a,0xa0, 0x2e,0x0e,0xdd,0x67,0x74,0xc2,0xa3,0x54,0x15,0xb2,0xae,0xe4,0x05,0x40,0x0a,0x98, 0x8a,0xc1,0x4d,0xc3,0x80,0x3a,0x6c,0x9f,0xc5,0x61,0x10,0x78,0x55,0xe9,0xb3,0x07, 0x4b,0xc7,0x8f,0x1f,0x2b,0xa7,0x91,0x33,0x62,0x98,0x9e,0x1a,0xd3,0x02,0x5d,0xc9, 0x62,0xce,0x0f,0x73,0x94,0x73,0x72,0x90,0x06,0x3d,0xc3,0x2f,0xee,0x05,0xd9,0xbc, 0xe8,0xf9,0x1d,0xed,0x31,0xaa,0x45,0x30,0xb7,0x45,0xef,0xab,0x7b,0xf8,0xda,0x6b, 0xe0,0xd5,0x1e,0x79,0xaa,0x3c,0x2b,0xf0,0x38,0x5c,0x79,0x8e,0x00,0xb5,0xc7,0xd5, 0x6d,0x9a,0xce,0xa0,0x6e,0x7a,0xc8,0x31,0x77,0xee,0xec,0xb2,0x4b,0x40,0xc7,0xe2, 0x74,0xc7,0x8e,0x5d,0xe5,0x34,0x14,0xa4,0x8d,0x40,0xda,0xd1,0x3d,0xfd,0xb5,0xaf, 0xb4,0xce,0x8e,0x30,0x29,0xb3,0xbc,0x7a,0xf7,0x52,0xda,0x36,0xf5,0x49,0x50,0xc6, 0x86,0x69,0xaf,0xa4,0x9b,0x36,0x2c,0x6d,0xe2,0xde,0x35,0xa6,0xf6,0x9b,0xff,0xe0, 0x43,0x1f,0xbc,0xf1,0xda,0x6b,0x5f,0xf7,0x70,0x2c,0x8a,0x1f,0x88,0x11,0xf7,0x33, 0x3f,0xf4,0xc3,0x3f,0x7c,0xdb,0x19,0x6a,0x7f,0xfc,0xc1,0x0f,0x4c,0xfb,0xe5,0xff, 0xf4,0x9e,0x72,0xac,0xb5,0x64,0xf1,0xe2,0xf7,0xc5,0xf0,0xfa,0x5e,0x84,0xf4,0x48, 0x60,0x08,0x0f,0x3a,0x85,0x70,0x3a,0x50,0xaf,0x25,0x60,0x0e,0xdf,0x29,0x44,0x2a, 0x29,0xe2,0x31,0x4f,0xc5,0x40,0x59,0xd8,0x8d,0x2b,0x92,0xf3,0x34,0x7c,0x78,0x86, 0x42,0x5b,0x17,0xeb,0x8d,0xc4,0xf7,0x0b,0x5f,0x73,0x2d,0xd0,0x46,0xb0,0xac,0x58, 0xbe,0x24,0x16,0x71,0x8b,0x9a,0x53,0x21,0xcf,0xc0,0x40,0x2c,0xd2,0xb6,0x6d,0x8f, 0xad,0xe1,0x50,0x9d,0x12,0x02,0xd2,0x30,0xf8,0x72,0x5c,0x77,0x8c,0x14,0x4b,0x63, 0x7e,0xf6,0xf8,0xb8,0x25,0x9c,0xe7,0x24,0xad,0xf2,0x8c,0xde,0x11,0xc9,0x15,0x6d, 0x23,0xd6,0x48,0xf4,0xde,0x9d,0x3b,0xfa,0x63,0x0f,0xbf,0xab,0x8c,0x3c,0x76,0x09, 0xa9,0x0f,0xdd,0x25,0xbd,0xbf,0xbb,0x7b,0x9a,0x4f,0xbc,0x34,0x0b,0xe6,0xce,0x6a, 0x8e,0x46,0x60,0x7a,0x7e,0xf0,0xdc,0x96,0xad,0x81,0xaf,0x27,0xd7,0x1e,0x88,0x3f, 0xba,0x20,0xaf,0xe8,0xb0,0x01,0xdb,0x64,0x10,0xa4,0xae,0xf2,0xca,0xd9,0x5c,0xf0, 0xc0,0xcb,0xce,0xa1,0x4c,0x5b,0x74,0xd0,0x55,0xee,0x1e,0xe4,0x08,0x83,0x0e,0x9b, 0xd2,0x59,0x1b,0x1c,0xd9,0xb3,0xb3,0xb3,0x7d,0x73,0xf8,0xea,0x9a,0x67,0xb7,0x3c, 0xf7,0x8f,0xbe,0x7d,0x50,0x39,0x07,0x7c,0xe1,0xcb,0x5f,0x39,0x73,0x74,0x37,0x75, 0xda,0xb4,0xb5,0xc1,0xe8,0x3a,0x3d,0xc2,0x91,0xa7,0x21,0x5c,0xcf,0x00,0x08,0x13, 0x0e,0x60,0x98,0xc3,0x2c,0x01,0x12,0x28,0xa1,0x3c,0x1d,0x91,0xf5,0x69,0x04,0xc0, 0xa9,0x86,0x57,0xf3,0x29,0xc5,0x2d,0x94,0xea,0x03,0x8f,0x98,0x5b,0xfd,0xe3,0xa8, 0x30,0xb4,0x9e,0xa5,0x3d,0xa5,0x25,0x74,0x2c,0xe4,0xfc,0x38,0xd3,0x34,0xe1,0x55, 0xb4,0xee,0x18,0xbe,0x2d,0xe8,0x26,0x45,0xef,0x3e,0x76,0xac,0xfe,0x98,0x93,0x6c, 0x3e,0xed,0x32,0x7f,0xde,0x9c,0xf2,0x2c,0xdf,0xc2,0x0f,0x2f,0x47,0xd6,0x02,0xa0, 0xca,0x10,0x06,0x0c,0x7a,0x21,0x1d,0x0f,0x95,0xc7,0xba,0x46,0x2c,0x73,0xbd,0x11, 0xc6,0x0a,0xbe,0x1a,0xd9,0x4a,0xfd,0x44,0x99,0x3a,0xe6,0x06,0x9d,0x65,0x11,0x4c, 0x0b,0x17,0xce,0x8b,0x91,0xa8,0xbb,0x39,0x76,0x74,0xa4,0x6c,0x21,0x77,0xee,0xea, 0x0f,0xbd,0xa7,0x34,0xa3,0x27,0x62,0xf4,0x09,0x9d,0x2d,0x48,0xd9,0x2a,0x83,0x47, 0x4a,0xbb,0x01,0x75,0x13,0x03,0x84,0x0d,0xe0,0x66,0x00,0xc0,0x4f,0x67,0xcb,0xeb, 0x6c,0x6c,0x49,0xaf,0x89,0xf5,0xec,0xc1,0xd6,0x40,0x7b,0x3c,0xd4,0xc1,0x2b,0xfc, 0x82,0x6e,0xd0,0xee,0xdf,0xb1,0x7b,0xe7,0x39,0x5f,0x66,0x49,0x38,0xeb,0x91,0x09, 0xb0,0x78,0xd1,0xe2,0x3b,0xa2,0x67,0x5c,0x1f,0xb4,0x8b,0xf3,0x31,0xb1,0x57,0x4f, 0xa1,0x31,0x4a,0xc1,0x31,0x21,0x3c,0x1c,0xf5,0xae,0x98,0x13,0x22,0x05,0x51,0x9f, 0x38,0x22,0x57,0x5b,0xc3,0xb9,0x9d,0x80,0x7a,0xed,0x5c,0x89,0x63,0xc8,0x95,0x87, 0x8b,0x8f,0x76,0xe8,0x00,0xe5,0xda,0xc2,0xb7,0x37,0x5f,0xb4,0x70,0x61,0xd3,0xdb, 0xbb,0x34,0xe6,0x67,0xbf,0x28,0xaa,0xc3,0xec,0xbe,0x7d,0xfb,0x7d,0x5f,0x27,0xca, 0xa6,0xc5,0xfc,0xdc,0x15,0x86,0xeb,0x0c,0x9e,0xf9,0x12,0x67,0x47,0x70,0x88,0xa0, 0x1c,0x37,0xa0,0x39,0xbd,0xf0,0x0d,0x9a,0x46,0xb8,0x4a,0x9b,0xbc,0x7a,0xbb,0x57, 0xac,0x3d,0x7d,0x3b,0x55,0xe6,0x76,0xa3,0x81,0xf9,0xde,0x96,0x92,0x93,0x80,0x2d, 0xe2,0xee,0x5d,0x7b,0xca,0x62,0xd1,0x1a,0x05,0x3f,0x0f,0xc0,0x04,0xa1,0x20,0xe6, 0x98,0x1c,0x89,0xe8,0xe3,0x5e,0x5b,0x3a,0xb1,0x27,0x48,0x7b,0xa5,0xed,0xd4,0xd1, 0x1b,0x90,0x27,0xed,0x98,0x76,0x93,0x9f,0xd8,0xa9,0xd2,0x76,0xee,0xe5,0xb3,0x9d, 0xba,0xc9,0x76,0x5b,0x21,0x7b,0xf4,0xe3,0xef,0x2e,0x5c,0x34,0xef,0x65,0xdf,0x79, 0xe8,0xe1,0xba,0x37,0x9c,0x00,0x2d,0x1f,0x7a,0xff,0xcd,0xef,0x5b,0x75,0xc1,0x85, 0xef,0xe8,0x9a,0xd2,0xdd,0x5c,0x74,0xd1,0xc5,0xef,0xde,0xb8,0x71,0xe3,0xc0,0x86, 0x0f,0x7f,0x78,0x53,0x79,0xbd,0x2b,0x8c,0x5a,0x53,0x65,0x94,0x42,0x66,0x54,0xa6, 0x50,0xca,0x24,0x82,0x01,0x41,0xe1,0x9e,0x60,0x94,0xa6,0xac,0x7b,0x90,0x01,0xe4, 0xde,0x10,0x07,0x18,0xc5,0x3d,0x5a,0x00,0x9f,0xa4,0x8b,0xa6,0x7c,0x8e,0x2a,0x68, 0x39,0xbe,0x35,0x0c,0x77,0x44,0x2f,0x0b,0xc5,0xca,0xe9,0x5b,0xfb,0xb8,0x03,0xbd, 0x04,0x79,0x3c,0x92,0x35,0x41,0xf4,0x91,0xf2,0x1e,0x01,0xbb,0xa8,0x1b,0x1e,0x8e, 0x45,0xda,0xfe,0xfd,0xe5,0x89,0x9f,0xc5,0x1c,0xda,0xa6,0x9d,0x49,0x6d,0xf5,0x25, 0x57,0xc3,0xba,0x6f,0x07,0x39,0x26,0x26,0x03,0x1d,0xcb,0x13,0xc1,0x08,0x08,0xbc, 0xdb,0x63,0x3a,0xb2,0x9b,0x10,0xa4,0xd6,0x08,0x5e,0xfe,0xe0,0x7c,0xcf,0xfe,0x4f, 0x8d,0xeb,0xeb,0x7b,0x09,0x46,0x33,0xba,0x69,0x2f,0x91,0xbd,0x04,0x5a,0x00,0x9e, 0xf4,0xd2,0x8b,0x39,0x1b,0x9f,0xac,0x63,0x17,0xf5,0x95,0xce,0xd9,0x73,0x80,0xb4, 0x9d,0x51,0x80,0x1e,0x70,0xa4,0x04,0x36,0x05,0xf0,0xd1,0xd0,0x56,0x3b,0xd7,0xd1, 0xb0,0x85,0x87,0x54,0x97,0xaf,0xbd,0xf4,0x77,0xaf,0xbf,0xfe,0x86,0x4d,0x5d,0x9d, 0x93,0xdf,0x7b,0xf1,0xc5,0x17,0xfb,0x08,0xc5,0xe6,0x90,0xf1,0xc6,0xb6,0xab,0x5e, 0x76,0xd9,0xa6,0xcb,0x2e,0xbd,0xb4,0x67,0xd9,0xb2,0x15,0x3d,0x33,0x67,0xcd,0x79, 0xcb,0xf6,0xed,0xdb,0xd7,0xdf,0xf7,0xb5,0x7b,0xcf,0x0c,0x33,0x7a,0x44,0x46,0x24, 0x82,0x84,0x4e,0x21,0x09,0xe6,0x5e,0x02,0xe9,0x34,0xed,0x52,0x51,0x79,0xb4,0xd4, 0x31,0x22,0x48,0x41,0x95,0x01,0xb4,0xf2,0x3e,0xe9,0xc1,0xd5,0x3e,0x71,0x00,0xe7, 0xbb,0xb7,0x82,0x77,0x8c,0xdb,0xdb,0xbb,0xac,0x4c,0x01,0xda,0x3b,0x76,0xe5,0x8c, 0xfe,0x3d,0xf5,0x55,0xb4,0x7d,0x07,0x3c,0xcb,0xdf,0x5f,0xa6,0x06,0x5b,0x53,0x0e, 0x7b,0xee,0xd9,0x2d,0xe5,0x50,0xc7,0xfb,0x02,0xc3,0xc3,0xb1,0xa0,0x0c,0x47,0x1e, 0xf7,0x0e,0xc1,0xd0,0xd1,0x32,0xa5,0x1c,0x88,0x76,0x07,0x0e,0x1c,0xf0,0xc5,0x90, 0xd2,0xc6,0x41,0x8e,0x47,0xd0,0x9e,0x15,0x1c,0x8a,0x34,0x3c,0xe4,0x1d,0x02,0x41, 0x4b,0x97,0xf1,0x5f,0x45,0x85,0x9c,0xbe,0x56,0x66,0xfd,0x31,0xf1,0x5c,0x23,0xf5, 0x17,0x58,0xa9,0x83,0x7b,0xb6,0x98,0xe8,0x30,0xf5,0x69,0x4b,0x3a,0x2b,0x03,0xca, 0xd8,0x4e,0x52,0xe7,0x1e,0x6d,0xf5,0xc9,0x43,0x5d,0x96,0x81,0xe4,0xe9,0xbe,0xd8, 0x89,0x3c,0x81,0x63,0x9b,0x7a,0xf5,0xd5,0x57,0xbd,0x76,0xce,0xec,0xd9,0xeb,0x97, 0x2f,0xef,0xed,0xbd,0xf2,0xaa,0x2b,0x7b,0x4e,0x9d,0x3e,0x79,0xd1,0x9e,0x3d,0xfd, 0x4f,0xb6,0xbd,0xe9,0xda,0xd7,0x5c,0x1f,0x7b,0xd6,0x05,0x5e,0xa0,0x38,0x3d,0xd6, 0x7a,0x5b,0x6c,0x17,0x36,0xdf,0x73,0xcf,0xdd,0x6b,0xed,0x02,0x72,0xde,0x9f,0x48, 0x14,0x43,0x8c,0xe5,0xad,0xac,0x29,0xc4,0x79,0x84,0x77,0x20,0xa4,0x3e,0xa3,0x30, 0xa7,0x07,0x20,0x9f,0xed,0x72,0x14,0x40,0x73,0xa2,0x92,0x70,0xe1,0x25,0x3f,0x57, 0x75,0xf0,0xb5,0x03,0x85,0xef,0xd4,0xce,0xf2,0x65,0x31,0xbb,0x01,0x6f,0x07,0x3f, 0xf3,0xf4,0x73,0xcd,0x53,0x4f,0x3f,0xd3,0xec,0x88,0x2d,0xac,0xc7,0xba,0xc3,0x47, 0x8f,0x97,0xe7,0x05,0x5d,0xe1,0xfc,0x65,0x4b,0x7d,0x5a,0x6d,0xa8,0x79,0xf6,0xd9, 0x67,0xa3,0xc7,0x1e,0x68,0x4e,0x86,0xd3,0x63,0x79,0xd1,0xf8,0x59,0x75,0x0c,0xf8, 0x85,0x66,0x7e,0xd0,0x01,0x2f,0x73,0xbd,0x97,0x4b,0x66,0xc7,0x76,0xd1,0x48,0xb3, 0x33,0x56,0xf5,0x7a,0xfa,0xe1,0xc3,0x83,0xb1,0xe0,0x1c,0x6c,0xf6,0xee,0xa9,0xcf, 0x0d,0x7c,0xb1,0xc4,0x01,0xd5,0xf4,0x19,0xd3,0xcb,0x5a,0x64,0x38,0x02,0xac,0x0e, 0xeb,0xb5,0xf7,0x93,0x33,0xe5,0x67,0x0b,0x65,0x74,0xa2,0x77,0xea,0x94,0x3a,0x02, 0x7a,0xa7,0x3d,0xe0,0x4b,0x39,0x4a,0xb0,0xad,0x6d,0x28,0xe0,0xe4,0x89,0xed,0x5c, 0xd1,0x84,0x97,0x36,0xc7,0x1b,0x3f,0x7a,0xd5,0x4e,0x17,0x38,0x6d,0xad,0x9b,0x63, 0x5a,0xbc,0x73,0x74,0x64,0xa4,0xf7,0xd0,0xc0,0xc1,0xae,0xad,0x5b,0xfb,0xfa,0x76, 0xec,0xd8,0x71,0x7b,0xdb,0xf5,0x3f,0xf2,0x83,0x9f,0x8c,0xc5,0xd8,0x17,0x47,0x4f, 0xb5,0xdc,0xbe,0xa7,0xbf,0xff,0xf6,0x1b,0x7f,0xf6,0x67,0x3e,0x19,0xcc,0x7a,0x47, 0x4e,0x9c,0x58,0x5b,0xcf,0xed,0x6b,0x8f,0x13,0xdd,0xe9,0xc4,0x74,0xde,0x44,0x21, 0xd2,0x79,0x04,0x55,0x47,0xf8,0xc4,0x49,0xe1,0xd0,0xa2,0x78,0x4d,0x86,0x30,0x01, 0x51,0x0f,0x2e,0xe0,0x02,0x57,0xf8,0x14,0x85,0x57,0x15,0xae,0x43,0x6b,0x47,0x6c, 0x2d,0xa7,0x4c,0xe9,0x6a,0x56,0xad,0xec,0x8d,0xfd,0xfc,0xec,0xf2,0x6a,0xd8,0xf7, 0x9e,0x78,0xb2,0x9c,0xe0,0x9d,0x8a,0x2d,0x81,0xa1,0xd9,0xf0,0x6b,0x91,0x37,0x6b, 0xe6,0x8c,0x72,0x72,0xe8,0xe0,0xc7,0xc1,0xcc,0xee,0xdd,0x7b,0xca,0x50,0x6e,0x6e, 0xe6,0x7c,0x3c,0xad,0x05,0x42,0x80,0xc2,0x17,0xe4,0x6e,0xc3,0xe2,0xd4,0x1b,0xc6, 0x4e,0x11,0x3d,0x82,0x36,0xa5,0x9c,0x3e,0x59,0xe9,0x7b,0x12,0xe7,0x8d,0xa0,0x03, 0xfb,0x0f,0x96,0x77,0x0d,0x67,0xc6,0x94,0x91,0x9f,0xc0,0xa9,0x6f,0x1e,0x9d,0x3b, 0x3d,0xd2,0x25,0xed,0x24,0xaf,0x0e,0xa4,0xa3,0x12,0xe0,0xd0,0x15,0xd0,0x1b,0xae, 0x7a,0x78,0xf2,0x40,0xdb,0x6c,0x9f,0xd7,0xa4,0x91,0x3c,0x5d,0x33,0x10,0xe4,0x4d, 0x95,0xb1,0xa0,0xde,0x1c,0xa3,0xd7,0x0d,0x1b,0x3f,0xf3,0x77,0xb7,0xbf,0xee,0xb5, 0xeb,0xbe,0x38,0x74,0x74,0xe8,0x93,0xc1,0xe3,0x33,0x3f,0xff,0xce,0x7f,0x7f,0xf7, 0x59,0x09,0x26,0xc0,0xc2,0x85,0x0b,0x6f,0x0a,0x07,0x6e,0x40,0x80,0xa1,0x08,0xc7, 0x51,0x86,0x3d,0xdb,0x8c,0x14,0x5e,0x5e,0x5d,0x26,0xb8,0x82,0x43,0x4f,0xd0,0xd6, 0x9c,0x05,0xe0,0x65,0xd0,0x50,0xae,0x1a,0xa6,0x6e,0x97,0xca,0xc2,0x2c,0x32,0x59, 0x0e,0xc7,0x15,0x3d,0x8a,0x0b,0x14,0x0b,0x34,0x78,0x6d,0x51,0xee,0x2d,0xe0,0x95, 0xab,0x7a,0x4b,0xfd,0xd3,0xcf,0x3c,0xdb,0xf4,0xf5,0x6d,0x2d,0xf5,0x71,0x5b,0x82, 0xce,0x8b,0x19,0x33,0x7b,0x7a,0x9a,0x0b,0x2e,0x58,0x55,0xa6,0x09,0x7c,0x04,0xc0, 0xb3,0x31,0xfc,0x1b,0xe5,0x92,0x87,0x94,0x72,0xeb,0xb5,0x40,0x1e,0x3f,0xc3,0xbf, 0xaf,0x7f,0x5d,0x7a,0xe9,0x25,0x25,0xa0,0xbc,0x48,0x6a,0x94,0x39,0x7c,0x24,0x76, 0xc9,0x81,0x4a,0x37,0xc7,0xf8,0x68,0x2d,0x5e,0x3c,0xbf,0x59,0xb5,0x7a,0x55,0x91, 0xbf,0xbf,0x7f,0x6f,0xb3,0x7d,0xc7,0xee,0x12,0x08,0x3a,0xcf,0xc4,0x60,0x4e,0x3b, 0x4a,0x1c,0x64,0xf4,0x84,0x57,0x68,0x05,0x9d,0x74,0x3e,0x27,0xb2,0x2f,0x5d,0xd4, 0xe5,0x88,0xa1,0x1d,0x1c,0x75,0x7a,0x75,0x5d,0x0b,0xd5,0x05,0x65,0x06,0x8b,0x73, 0x09,0xaf,0xba,0xe1,0x9b,0xa3,0x42,0x14,0x93,0x65,0x73,0xf4,0xf6,0x7f,0xfa,0x37, 0x82,0xc2,0x71,0xdd,0x88,0x61,0x00,0x28,0xc7,0x89,0x08,0x66,0x4f,0x4e,0xc1,0x25, 0x40,0x30,0x38,0x75,0x18,0xac,0x0b,0x3b,0x38,0x29,0x1c,0x05,0x08,0x96,0xed,0xe5, 0x5d,0x2d,0xc6,0xe4,0x25,0x0a,0x66,0x9b,0x04,0xbd,0x8b,0x32,0x1e,0x9c,0x78,0x18, 0x64,0x3b,0x87,0x97,0x93,0x3d,0xf3,0xb5,0x03,0x2a,0x6d,0x73,0x4b,0x39,0x6b,0xe6, 0xcc,0xd2,0xf3,0xbd,0xa2,0xd5,0x12,0x3c,0x8d,0x06,0x8b,0x17,0x2f,0x2a,0xa7,0x75, 0x5d,0xd1,0xab,0x49,0x4b,0x16,0x34,0x6a,0x3b,0x3d,0x94,0x5f,0x6b,0x70,0x2a,0x9b, 0x12,0xdb,0xc7,0x05,0xf3,0x17,0x96,0x3c,0x47,0x7a,0x17,0x60,0xd5,0xaa,0x95,0xcd, 0xec,0x39,0x33,0x9b,0x53,0x25,0x20,0x2d,0x30,0xc9,0xd3,0x5e,0x76,0x1d,0xce,0x00, 0x38,0xce,0x49,0xe4,0xd8,0xb8,0xd1,0xf1,0x30,0x0c,0xd3,0x87,0xc3,0x5c,0xd1,0x03, 0xf4,0x64,0x2b,0x00,0x0f,0xb0,0x4b,0xd6,0x93,0x89,0x7c,0x69,0xff,0x0c,0x18,0x65, 0xea,0x04,0x07,0xdb,0xc9,0x4b,0xe9,0x8b,0xda,0x01,0xce,0x1e,0xa5,0x93,0x89,0xed, 0xe8,0xf5,0x42,0x50,0x38,0xfe,0x3f,0xef,0xfb,0x9d,0x9b,0xfe,0xf2,0x2f,0xfe,0xea, 0xd6,0xcf,0x7d,0xee,0x0b,0xe5,0x73,0xac,0x11,0xf4,0x6f,0x47,0x14,0x63,0x42,0x20, 0x2e,0x95,0xba,0x10,0x12,0x51,0x0c,0xe4,0xf3,0x2a,0x61,0xa8,0x4d,0xd6,0xa3,0x91, 0x40,0xd0,0xec,0xe5,0x40,0x3e,0xcb,0x9c,0x1e,0xa6,0xa1,0xd0,0x40,0x2b,0x79,0xea, 0xdd,0x9c,0xa0,0xde,0x82,0xce,0xb3,0x00,0x79,0xef,0xf4,0xd5,0xa7,0x7b,0xf5,0xa8, 0xd9,0xbb,0x89,0xde,0xd9,0x5f,0xb5,0x6a,0x45,0x39,0x9d,0xd3,0x8b,0xcb,0x57,0xc0, 0x62,0xd8,0xf6,0x16,0xcd,0x8a,0x95,0x2b,0xca,0xfe,0xdd,0xa2,0xd1,0x8b,0xa6,0x14, 0x77,0x42,0x18,0x73,0x63,0xe4,0xc7,0xa2,0xac,0x23,0x52,0x67,0xf9,0x79,0xdb,0x85, 0x17,0xac,0x2e,0xcf,0x0b,0xe8,0x01,0xf0,0xf7,0x45,0x53,0xbf,0x11,0xf0,0xe2,0x49, 0x1a,0x3d,0x04,0x2c,0xaf,0xc0,0xef,0xee,0xdf,0x3d,0x2e,0x9f,0xa7,0x82,0x67,0x8f, 0x7b,0xe9,0xc1,0x1e,0xea,0x94,0x95,0x36,0xe3,0x90,0x0f,0xd0,0xd4,0x4b,0x74,0xc7, 0x4f,0x1e,0x70,0xa6,0x40,0x61,0x1f,0x57,0xa3,0x05,0x7a,0x46,0xd5,0x89,0x74,0xb3, 0x7d,0xda,0x5b,0x9d,0x24,0x10,0x52,0xfe,0xff,0x1d,0xb4,0x6c,0xf8,0xfd,0xf7,0x8d, 0xbd,0xf4,0xca,0x57,0x36,0x4b,0x96,0xae,0x6e,0x0e,0x0f,0x0e,0x35,0x77,0xdc,0xf1, 0xa9,0xe6,0xf6,0xdb,0xff,0x2c,0xa2,0xb7,0xae,0xf4,0x11,0x32,0xac,0xd4,0xfd,0x79, 0x25,0x98,0x0e,0xce,0x88,0xc4,0xd8,0x15,0x7e,0x5e,0x39,0xd2,0x68,0x20,0x72,0xf5, 0x84,0xec,0x0d,0xda,0x52,0x2e,0x64,0x2c,0x4a,0x9b,0x5a,0x82,0x54,0x29,0x77,0x2f, 0x18,0xb2,0x3d,0x5a,0xce,0x0b,0xca,0x53,0xb7,0x98,0x02,0x96,0x2f,0x5b,0x1a,0x43, 0xbb,0xe7,0xed,0x23,0xcd,0x77,0x1f,0x7e,0x34,0xe4,0x3d,0x12,0xed,0x2b,0xee,0xbc, 0xb9,0xb3,0x4a,0x4f,0xb7,0x30,0x0b,0x5b,0x97,0x2d,0xa2,0xc5,0x1e,0x5e,0x25,0x48, 0x43,0x56,0x86,0xb1,0xc8,0x63,0xcc,0x94,0x89,0x81,0xed,0x97,0xbd,0xf7,0x60,0x8b, 0x57,0x7b,0x5d,0xf4,0xde,0xe3,0xb6,0x7f,0xa3,0x21,0x7f,0x9d,0xcb,0xe9,0x6a,0x51, 0xec,0x6c,0x60,0x4f,0xff,0xbe,0x66,0xe7,0x6e,0x6f,0xfb,0xa0,0x6f,0x71,0xd7,0x34, 0x57,0x5d,0xf9,0x8a,0x82,0xf3,0xec,0x53,0xcf,0x36,0xbb,0x62,0x44,0xf0,0xaa,0x9c, 0x76,0x80,0xde,0xec,0x80,0x97,0x3c,0xbc,0x33,0x72,0x45,0x63,0x7a,0x26,0x64,0x10, 0xa4,0xf3,0xe1,0xa0,0x03,0x2f,0x47,0x92,0x0c,0x30,0xf9,0xac,0x77,0xd5,0x36,0xf3, 0x70,0x01,0xfb,0x59,0x07,0x5c,0x7b,0xed,0xb5,0x3e,0x44,0x59,0x3a,0xd0,0xa2,0x05, 0x8b,0x4c,0x17,0x77,0x5f,0xfc,0xe2,0x17,0x5d,0xd3,0x1a,0x8b,0x83,0x81,0xe8,0x0a, 0xe5,0x71,0xea,0xe4,0xae,0xce,0x1d,0x1d,0x1d,0x93,0x76,0xe4,0x49,0x59,0xd0,0x29, 0x4a,0xeb,0x61,0x04,0x00,0xe9,0x64,0x89,0x01,0x33,0x8f,0xb1,0xa4,0x9e,0x00,0x84, 0xd3,0x86,0x22,0xae,0x9c,0x44,0x40,0xca,0x4b,0xad,0xad,0x82,0x49,0xaf,0x38,0xab, 0x40,0x2a,0x93,0xa3,0x02,0xfa,0x64,0x68,0x6f,0x8f,0xad,0x5c,0x04,0x80,0x27,0x6f, 0x31,0x3a,0x95,0xa7,0x7f,0x0c,0xe8,0xa4,0x4f,0xaf,0xf7,0x18,0x76,0xd9,0x92,0xc5, 0xe5,0x64,0xce,0xf9,0xbe,0xe0,0xed,0xdf,0xb3,0xaf,0x79,0xf2,0x99,0xe7,0x4a,0x7a, 0xec,0x89,0xa7,0x9b,0xef,0x7d,0xef,0xc9,0x66,0xef,0xbe,0x03,0xe5,0xfd,0xb8,0xd9, 0xb1,0x46,0x98,0x17,0x3d,0x5d,0x40,0xd9,0x4a,0x2e,0x58,0x38,0x3f,0x7a,0xf6,0xec, 0xd8,0xd2,0x75,0x36,0x87,0x07,0x8e,0xc4,0xda,0xe2,0xb9,0xe6,0x89,0x27,0x9f,0x6a, 0x1e,0x7d,0xf4,0xf1,0xe6,0xbb,0x8f,0x3c,0x1e,0xf9,0x67,0x9a,0xad,0xdb,0x76,0x96, 0xf7,0xeb,0xa6,0x4e,0x9e,0xd2,0x2c,0x59,0xb2,0xa8,0x59,0x1d,0x23,0x8d,0x83,0x21, 0xd3,0xcc,0xa9,0xd1,0x53,0xe5,0x04,0xb0,0x2c,0x54,0xc7,0xa7,0x3e,0x40,0x17,0x53, 0x9c,0x43,0x2b,0x43,0x3e,0xbd,0xd2,0x3e,0x20,0x6d,0x0a,0x8f,0x0d,0xd3,0xb6,0x6c, 0xc6,0x46,0x69,0x2f,0xe5,0x95,0x56,0x0d,0x0a,0x40,0x7f,0x65,0xb5,0x13,0x55,0xdb, 0xcb,0xc3,0xc5,0x3f,0xfd,0x32,0x29,0x16,0xd0,0x6c,0x32,0x1c,0x41,0xff,0xc0,0x37, 0xbe,0x51,0x7e,0x52,0xb7,0x30,0x3a,0xca,0xa2,0x25,0x8b,0xcb,0x68,0xdf,0x76,0xfd, 0x8f,0xfd,0xc8,0x27,0x47,0x4e,0x8c,0x1e,0x18,0x1c,0x1a,0xde,0x7e,0xf4,0xd8,0xb1, 0x5f,0x3b,0x78,0xe8,0xc0,0xed,0xf7,0x7f,0xe3,0x1f,0x7e,0xa1,0xae,0xbc,0x31,0x36, 0x37,0x8a,0xd0,0xb3,0x8b,0x27,0xcc,0x41,0x2a,0xe0,0x9a,0xd1,0x3d,0xd1,0x89,0x04, 0x48,0xa0,0x88,0x3a,0x65,0xea,0xe5,0x8d,0x28,0xda,0xc0,0xd5,0x43,0xd2,0x70,0xc9, 0x23,0x15,0x2b,0xc7,0xbc,0x81,0x3b,0x3b,0x86,0x5f,0xc7,0xbe,0x82,0xc6,0xbb,0xfa, 0x8e,0x6b,0x7b,0x97,0x2f,0x6b,0xe6,0xce,0x9b,0x13,0xc1,0x5b,0x7f,0x67,0xe0,0x95, 0x71,0xef,0x34,0xf4,0xc5,0xfe,0x7d,0xf7,0xee,0xbd,0xe5,0xf7,0x0a,0xf6,0xf9,0x83, 0x61,0x00,0xef,0xf8,0x1f,0x8d,0xa1,0xd7,0x2f,0x7f,0x3b,0xa2,0xb7,0xc3,0x77,0xdc, 0x2c,0x18,0x19,0xb7,0x6f,0x4b,0x5f,0xf9,0x5d,0xc3,0x91,0xc1,0xe1,0xd2,0xfb,0xcb, 0x87,0x98,0xc2,0xe9,0x0e,0x83,0x62,0x7b,0xdc,0x1c,0x3c,0x78,0xa0,0x99,0x1c,0x3d, 0x68,0x5a,0xf7,0xb4,0x22,0xaf,0xe9,0xa4,0x06,0x73,0x6b,0x79,0x72,0x29,0xc8,0x9d, 0x0e,0x3a,0x37,0x48,0x07,0x90,0x9f,0x5e,0x74,0xcd,0x32,0x7c,0x53,0xd7,0xec,0xb5, 0x12,0x3a,0x79,0x85,0x23,0x65,0x9e,0x2f,0xd2,0xb9,0x78,0x9a,0x0a,0xe4,0xa5,0xc4, 0xcd,0x94,0x34,0xf0,0x2a,0xa3,0x5b,0xb4,0x93,0x0f,0x5e,0xef,0x8e,0x51,0xf9,0x81, 0x43,0x87,0x0e,0xad,0x3b,0x74,0x68,0xa0,0xff,0x17,0x7f,0xf1,0x17,0x1f,0xa8,0x63, 0x54,0xc0,0xed,0xb7,0x7c,0x7c,0xda,0x3b,0x7e,0xe6,0x67,0xcb,0xc3,0xa0,0x05,0x0b, 0x16,0xf8,0xae,0xed,0x7b,0x39,0x9f,0xe3,0x53,0x68,0xe0,0x8a,0x38,0x65,0xcd,0x63, 0x80,0x12,0x7a,0x2b,0x60,0xc8,0x89,0xc2,0xe5,0xfe,0x95,0x93,0x09,0xe6,0x4a,0x11, 0x34,0x29,0xe2,0x9a,0x75,0x86,0xdf,0x9c,0x06,0x94,0xe5,0x42,0xd2,0xe2,0xce,0xdc, 0xbc,0x34,0xf6,0xf4,0x4e,0xeb,0x1c,0xd0,0xe0,0x93,0xcf,0xe2,0xad,0xd4,0xc9,0xe5, 0xa5,0x8e,0x1d,0x3b,0x76,0x46,0xb4,0x1f,0x6d,0x8e,0x8d,0xc4,0x0e,0xe5,0xb4,0x11, 0xa9,0x06,0x1e,0x19,0xab,0x41,0xda,0x9b,0xc5,0x4b,0x16,0x36,0xab,0x63,0xe5,0x5e, 0x16,0x8e,0xa1,0x8b,0xb3,0x52,0x6f,0x05,0x3f,0xfd,0xf4,0xb3,0xe5,0x05,0x0e,0xd3, 0x0a,0xfe,0x74,0x0a,0xb1,0x82,0x7e,0x1d,0x11,0xfd,0xce,0x00,0x7f,0x2f,0x8c,0xf8, 0x2d,0x22,0x99,0xd1,0x26,0xef,0x94,0x18,0x19,0x04,0x93,0xf7,0x01,0x9e,0x88,0xad, 0xa9,0x87,0x53,0x39,0x65,0xa2,0x93,0xce,0x45,0x97,0xed,0xb4,0xab,0x1d,0xac,0xf6, 0x6c,0xb2,0xb9,0x57,0x47,0xe7,0x6c,0xa3,0x2c,0x6d,0x96,0xb8,0x82,0xcf,0x7d,0x8e, 0x2a,0xca,0x72,0xad,0xa6,0x0d,0x40,0x4f,0x7e,0x7c,0x51,0xba,0x39,0x6c,0x7d,0xcd, 0xf6,0x9d,0xf5,0x9b,0xc4,0xbf,0xfd,0x9b,0xbf,0xd5,0xe3,0x17,0x53,0xef,0x7a,0xf7, 0x4d,0x03,0x55,0xb3,0x80,0x8d,0x9f,0xfd,0xec,0x99,0x87,0x41,0xdd,0xdd,0xdd,0xbe, 0x0d,0x70,0x9d,0x7c,0x0a,0x32,0xd1,0x59,0xae,0x0c,0x4a,0x08,0xcc,0x13,0x52,0x29, 0xb8,0x1c,0xe9,0x3e,0xe7,0xba,0x0c,0x90,0x0c,0x0c,0x78,0xae,0x49,0x0f,0x0f,0xb4, 0x52,0x49,0x34,0xb4,0x73,0x3f,0x33,0x16,0x60,0x4b,0x62,0x01,0xe6,0xa5,0xcb,0x98, 0x9e,0xcb,0xdc,0x14,0xd3,0x55,0x31,0xb8,0x15,0xb9,0x1d,0xc2,0xde,0xbd,0xfb,0x9b, 0x6d,0x5b,0xb7,0x47,0x50,0x1e,0x6d,0x46,0x8b,0xd2,0x31,0xd4,0x56,0xe4,0xa0,0x1d, 0x34,0x63,0xf5,0xce,0x81,0xde,0xa7,0x77,0x2a,0x68,0xab,0xe8,0x27,0xee,0xe1,0x96, 0xe6,0x64,0x4c,0x81,0x5b,0xb7,0x6e,0x8b,0xd1,0xe3,0x48,0xc8,0x13,0x3a,0x96,0xf6, 0x35,0xf0,0x3d,0xd6,0x26,0x27,0xb0,0xe3,0x20,0x93,0xdf,0xfe,0xf9,0xa5,0xd2,0x34, 0x67,0x1e,0xa1,0x07,0x5b,0xe0,0x45,0x67,0x72,0xfb,0x2e,0x02,0xbd,0x74,0xa0,0xaa, 0xd7,0xa9,0x12,0xac,0xe4,0x55,0x0e,0x47,0x1b,0x3c,0xd0,0x2b,0x8e,0x1a,0xbf,0xe2, 0x99,0x76,0x71,0x9f,0x81,0x2b,0xaf,0x5d,0x02,0xbb,0xc2,0xcb,0x4e,0x02,0x3f,0xe5, 0x44,0xab,0xd8,0x32,0xfe,0x79,0x28,0x75,0xf2,0xd4,0xc9,0xfe,0xfe,0x3d,0xfd,0x67, 0x1e,0x06,0xdd,0x7b,0xdf,0xbd,0xc7,0xef,0xfc,0xe2,0x9d,0x65,0x1b,0x52,0xc3,0xe5, 0x79,0x80,0xa1,0x94,0x42,0x71,0x96,0x3c,0x26,0x80,0xe0,0xa2,0x0f,0x43,0x02,0x72, 0xae,0x3a,0x79,0x42,0xc2,0x4f,0xc1,0x09,0x92,0x8a,0x68,0xa7,0xbe,0x18,0x89,0x41, 0xc6,0xcb,0xd4,0xbb,0xba,0x4f,0x1a,0xa2,0x1c,0x8e,0x11,0xc4,0x63,0x57,0x23,0x00, 0x7a,0xe5,0xb8,0x37,0x16,0x60,0xd6,0x2d,0x93,0xa2,0x4d,0x4b,0x4c,0x07,0x47,0x62, 0xd8,0xf7,0x12,0x87,0x69,0xa1,0x9e,0xc9,0xd7,0x45,0xaa,0x9d,0x40,0x20,0x34,0x7e, 0xcc,0xd2,0x12,0xd7,0x96,0xd6,0x7c,0x8e,0x51,0xfe,0x38,0x05,0x4d,0x22,0x5f,0xbf, 0x01,0x60,0xea,0x98,0x08,0x29,0x33,0x7c,0xb2,0xd1,0xd5,0xd3,0x42,0x69,0x68,0x68, 0x30,0x16,0x82,0x7b,0xce,0x38,0x06,0x2f,0xd3,0xce,0x33,0xcf,0x3c,0x53,0xf0,0xbd, 0x55,0xb4,0x6a,0xd5,0xaa,0x90,0x3d,0xa6,0x35,0xcf,0xac,0xe3,0x3f,0x0f,0x9e,0xe0, 0xd2,0x2b,0xed,0x92,0x7c,0xe4,0xd3,0x69,0x1c,0x6b,0x44,0x81,0x03,0xd0,0x63,0x0f, 0xf7,0x52,0x76,0x9c,0xbc,0xcf,0x8e,0x45,0x56,0xb4,0x80,0x7a,0x32,0x0b,0xfa,0xfa, 0x06,0xd3,0x0b,0xef,0x06,0x5a,0xff,0xc7,0x47,0xfe,0x68,0xed,0x5f,0xdc,0xf2,0xb1, 0x5b,0x37,0xfe,0xed,0x1d,0x0f,0xdd,0x77,0xef,0x3f,0xac,0xfb,0xc3,0x3f,0xfc,0xc3, 0xb5,0x31,0xbc,0x95,0x3f,0x57,0xa2,0xe7,0x48,0xb9,0x88,0x41,0x68,0xe2,0xa2,0xc3, 0xbd,0x21,0xcb,0x90,0xcf,0x59,0x94,0x23,0x04,0x5c,0xca,0xa8,0x57,0x4e,0xd0,0xc4, 0xd5,0x2e,0x95,0x55,0xa6,0xad,0x2b,0x70,0xb5,0xc0,0x0b,0xae,0xcd,0xc8,0xb1,0x91, 0x66,0x7a,0xcc,0xf1,0x2b,0x7a,0x97,0x94,0xc5,0xdd,0x60,0x0c,0xa9,0x4f,0x3e,0x65, 0x31,0xb6,0xbd,0x79,0x36,0xe6,0xea,0x83,0xe1,0x30,0xbd,0xee,0x64,0x28,0xbb,0x7b, 0xef,0x81,0x3a,0x6f,0x47,0x5b,0x2f,0x8c,0x30,0x52,0x31,0x40,0xf0,0x70,0x9c,0x6b, 0x1a,0x10,0x14,0x5d,0x5d,0x31,0x4c,0x47,0x5e,0xdd,0xe0,0x91,0xa1,0x90,0x83,0x7e, 0xf5,0xcc,0xdf,0x8e,0x85,0x9c,0x0c,0x1e,0x26,0x3c,0x73,0x9f,0x40,0xb6,0x53,0x27, 0x4f,0x94,0x47,0xbd,0xa7,0x63,0x6a,0xf1,0xe2,0xa7,0x5f,0xff,0x0a,0x20,0x6b,0x8b, 0xfe,0x3d,0xfb,0x9b,0x67,0x9f,0xdb,0x1a,0x8b,0xc6,0xc7,0x9a,0xa3,0xc7,0x8e,0x36, 0xb3,0x66,0xf6,0x34,0x0b,0x6c,0x47,0xfd,0x62,0xc8,0x4b,0x28,0x01,0xe8,0x91,0x8d, 0xce,0x64,0x00,0xec,0x85,0x67,0x06,0x47,0xda,0x13,0x70,0x24,0x5b,0xa9,0xd3,0x8e, 0x3e,0x40,0x5e,0xa0,0x48,0x68,0xa2,0x95,0x38,0x12,0xd0,0x2e,0xf3,0x71,0xb3,0xf6, 0x55,0x57,0xbf,0xf2,0xa6,0xbf,0xfa,0x8b,0xbf,0x5c,0x7b,0xef,0x3d,0x77,0xaf,0xdd, 0xb5,0x63,0xe7,0xda,0x87,0xbe,0xfd,0x9d,0xf2,0x05,0x98,0xd6,0xe1,0xe1,0xa1,0x87, 0x56,0x5c,0xb0,0x7a,0xfd,0x8b,0x2f,0xbf,0x74,0xed,0x82,0xc5,0x0b,0x37,0x4d,0x9e, 0x3a,0xf5,0xa1,0xd3,0xd1,0xa0,0xb6,0xb3,0x68,0xab,0x73,0x8c,0x30,0x4e,0x07,0xa6, 0xf0,0x04,0xe7,0x6c,0x82,0x10,0x80,0xc0,0xca,0x44,0xa5,0xf2,0x89,0xb8,0x29,0x64, 0x8e,0x10,0x68,0x33,0x32,0x5c,0xc6,0xcd,0xf6,0xde,0xa6,0x31,0x04,0x7b,0xf1,0xd2, 0x5f,0xf0,0xf0,0xf8,0x15,0x7f,0x3f,0xdc,0x70,0x06,0x5f,0x3f,0x50,0x7d,0xa2,0x2c, 0xb4,0x0c,0xd7,0x86,0x73,0x0f,0x7f,0xc2,0xf7,0x85,0xa6,0x85,0x9b,0x1e,0x2d,0xf0, 0xea,0x1c,0x5c,0x03,0x35,0xaa,0x2a,0xc4,0x74,0xc1,0x68,0x69,0x38,0x7b,0x7c,0xf2, 0x57,0x43,0x57,0xb9,0xbc,0x33,0xe0,0x7d,0x04,0x79,0x40,0x5e,0xf8,0x64,0xac,0x29, 0x9c,0x11,0x7c,0xf4,0x54,0xea,0x79,0x02,0xe9,0x91,0xb1,0x40,0xf2,0xdc,0xc0,0xfb, 0x84,0xec,0x30,0x37,0xe6,0x59,0x6f,0x0a,0x0b,0xa8,0x42,0x37,0x12,0x5e,0xf4,0xc1, 0x1b,0x4d,0xf7,0x55,0xd6,0x71,0xde,0x91,0xe4,0xd9,0x09,0xaf,0x2c,0x93,0xd7,0xf9, 0xb4,0xc9,0x80,0xa1,0x97,0xa0,0x81,0x2b,0xb9,0x47,0xd7,0x15,0x0d,0x79,0xb4,0x7d, 0x5c,0xfa,0x92,0x4b,0x2e,0xd9,0x10,0xdb,0xdf,0x87,0xa2,0xec,0xa1,0x69,0xdd,0xdd, 0x0f,0x2d,0x5a,0xbc,0xf8,0xa1,0xaf,0xdd,0x7b,0xdf,0xa6,0xd6,0x13,0xc7,0x8e,0xf5, 0xed,0x28,0xc6,0xdd,0xd5,0x0c,0xc4,0x2a,0x37,0x2c,0x5f,0x9e,0x6b,0x23,0x82,0x11, 0xa7,0x64,0xc2,0x9c,0x30,0x39,0xd7,0xa5,0x30,0x98,0x50,0x4a,0x52,0xaf,0xad,0x3a, 0xe0,0x3e,0xf1,0x38,0x86,0xc3,0x95,0xa1,0xa7,0x1d,0x45,0x04,0x8b,0xb2,0xca,0x0f, 0x8f,0xfa,0xd1,0x27,0x47,0xb9,0xf8,0x78,0x84,0x7b,0x24,0x7a,0xac,0x39,0x55,0x3b, 0x6d,0x04,0x8a,0x1e,0x2c,0x00,0x0c,0xfd,0x09,0xa9,0x38,0xe7,0xa0,0x99,0xc6,0x06, 0xf2,0xa0,0xc8,0x18,0x8e,0x17,0xd4,0x78,0xe1,0x41,0xa7,0x6c,0x0b,0x4c,0x13,0xa9, 0x2f,0xb9,0x72,0x44,0xc8,0x7a,0xbf,0xd5,0x27,0xb7,0x77,0x07,0x40,0x3a,0x0d,0x1d, 0xf2,0xee,0x8e,0x69,0x4a,0x4f,0x5e,0x1c,0x5b,0x46,0xd7,0xb4,0x07,0xc8,0x20,0x50, 0x26,0x3f,0x91,0xae,0x2b,0x7e,0x80,0x9e,0xe8,0x4e,0xb4,0x7f,0xb6,0x55,0x97,0xb8, 0x6c,0x9a,0x75,0x69,0xcb,0x1c,0xa9,0x8b,0x5e,0x81,0xeb,0x61,0x98,0xbf,0x52,0xb2, 0x2d,0xd6,0x3a,0x76,0x42,0xc7,0x43,0x1f,0x72,0xb5,0x76,0x76,0x4e,0xb9,0xe6,0xc0, 0xbe,0x83,0x37,0x6c,0xdd,0xb2,0xe5,0x86,0xa7,0x9f,0x7c,0xf2,0x86,0xe0,0x74,0x43, 0xec,0x19,0x6f,0x43,0x30,0x95,0xe2,0xa8,0x5c,0x9d,0x2a,0x97,0x30,0xc6,0x28,0x93, 0x3a,0x0c,0x09,0x86,0xa9,0x20,0xc8,0x32,0xf5,0xae,0xd9,0x5e,0x1e,0xa4,0xf2,0xf8, 0x00,0xa3,0x0d,0x5c,0x07,0x32,0x22,0xdb,0x1b,0x38,0xce,0xe6,0x39,0x98,0x03,0x80, 0x5e,0x0d,0xdf,0x9b,0x4a,0x78,0x19,0xf2,0xf5,0xc8,0xa4,0x99,0xb4,0xd0,0x49,0xc0, 0x37,0x83,0xb2,0x06,0xe9,0xe9,0xf1,0xf7,0x07,0xab,0x93,0xe9,0x96,0xa3,0x1b,0x3c, 0x6d,0x9f,0x1f,0xc4,0x78,0x09,0x4e,0xed,0x3d,0x10,0xa2,0xbf,0x2f,0x70,0x15,0x1d, 0xcb,0x54,0x59,0x7b,0x24,0x7b,0x59,0x88,0x96,0x97,0x44,0xc2,0x31,0xb6,0xaa,0xf4, 0x41,0x03,0x2e,0x5b,0x32,0x3c,0xbc,0xb4,0x6f,0xa5,0x7d,0xee,0x42,0x8e,0x2c,0xca, 0xf3,0x0a,0x4f,0x5e,0x1b,0xb4,0xe4,0xd1,0x4a,0x3f,0xb8,0x97,0x57,0x2f,0x2f,0x91, 0xa7,0xd8,0x6a,0xca,0x94,0x81,0x83,0x07,0x0f,0x0e,0xc4,0x08,0x70,0xc3,0x81,0x83, 0x07,0x6e,0xf8,0xd2,0x97,0xbe,0x34,0xf0,0xf7,0x7f,0xff,0xf7,0x9b,0x23,0x48,0x6f, 0xac,0x56,0x7b,0x1e,0xf4,0xf6,0xf6,0x96,0x87,0x41,0x88,0x64,0xa4,0xd6,0x1e,0xd2, 0x5e,0x1c,0x81,0x91,0x7b,0x82,0xa9,0x23,0x00,0x50,0x56,0x0c,0x33,0x5e,0xaf,0x3c, 0xeb,0x09,0x42,0x20,0x75,0xe8,0x2a,0x4f,0x41,0x01,0x5a,0x1c,0x02,0xac,0xb6,0x7d, 0x9e,0x65,0x45,0xef,0xd2,0xb2,0x88,0x79,0xfc,0xb1,0x27,0x9b,0x03,0x87,0xfc,0x85, 0x19,0x3d,0x22,0x94,0x0a,0x83,0xaf,0x5c,0xd9,0xdb,0xac,0x58,0xbe,0xac,0x3c,0x80, 0x79,0x3c,0xb6,0x5d,0x9c,0x42,0x56,0x7c,0x5c,0x41,0x3a,0x13,0x0f,0xf4,0x05,0x1c, 0xe7,0xdb,0xb3,0x5f,0x76,0xe9,0x8b,0xca,0x96,0xae,0x25,0x0c,0x7e,0x3a,0x7a,0xf3, 0xe3,0xdf,0x7b,0xb2,0x6c,0x21,0xa9,0x62,0x57,0xe1,0x6c,0x80,0xac,0xd9,0x0e,0x38, 0x51,0xab,0xbf,0x1c,0x0a,0xf9,0x43,0xae,0xde,0x15,0x4b,0xcb,0x73,0x87,0x9d,0x3b, 0xfb,0x4b,0x7b,0xfc,0xea,0x96,0x34,0x6c,0x11,0xb8,0x57,0xbd,0xfc,0x65,0xe5,0xef, 0x21,0x3c,0xfe,0xc4,0x13,0x41,0x7b,0x77,0xa1,0x93,0x4f,0x4b,0xd1,0x4e,0x39,0x05, 0x44,0x09,0xac,0x90,0x85,0xfc,0xea,0x00,0x1b,0x2a,0x9b,0x88,0x2f,0x10,0x26,0xda, 0x3b,0xcb,0xe0,0xf0,0x0d,0x5d,0xb5,0x41,0x13,0x30,0x6f,0xc8,0xbd,0x79,0xcb,0x96, 0x2d,0xff,0xf4,0x87,0x41,0xb6,0x2d,0xd1,0x34,0x98,0xea,0xc1,0x22,0xce,0xef,0xf0, 0xeb,0xc2,0x0e,0x33,0x0f,0x3d,0xea,0xa7,0x5f,0xea,0xeb,0xd2,0xca,0x08,0xe8,0xf7, 0x79,0x1c,0xdb,0x1a,0x81,0xe2,0x65,0x8b,0xba,0xf8,0x32,0x3f,0xd5,0xe1,0x95,0x90, 0x00,0x4e,0x35,0xd6,0xd9,0x21,0x8e,0x71,0xf4,0x18,0x79,0x4a,0x94,0xe8,0x2d,0x01, 0x53,0x17,0x64,0x0e,0x82,0x80,0x39,0x5b,0x8f,0xd2,0x36,0xc6,0x9e,0x88,0xee,0xae, 0x72,0x3a,0x68,0x98,0xcb,0x5e,0x5c,0x79,0x09,0xde,0xb3,0x07,0x56,0x78,0xda,0x15, 0x74,0x04,0x9d,0x39,0xb1,0x40,0xeb,0x9e,0x32,0xb5,0xec,0x20,0x18,0xb3,0x63,0x52, 0x6b,0xb3,0x78,0xe1,0xbc,0xf2,0x68,0xd7,0xa9,0xd9,0xa4,0x49,0x67,0x3f,0x64,0x45, 0x37,0x3d,0x4d,0xbe,0x19,0xb3,0x62,0xb7,0x2a,0xaf,0x7f,0x75,0x6c,0x7a,0xf7,0x8c, 0xa0,0x5d,0xcf,0xf1,0xc9,0x54,0x82,0x33,0xec,0x52,0x64,0x0b,0xba,0x31,0xf3,0x97, 0x76,0x4e,0x18,0xc9,0x43,0x27,0x36,0x4c,0x07,0x27,0x5d,0xba,0xa7,0x4d,0xd2,0xe1, 0xf8,0x1a,0xce,0xe1,0x4b,0x85,0x5e,0xd4,0x65,0x5b,0x38,0x12,0x50,0xcf,0x46,0x59, 0x26,0xc1,0x77,0x65,0x8b,0x1c,0x3d,0xcf,0x07,0xe7,0x0d,0x80,0x10,0x64,0xd2,0xc4, 0x77,0x01,0x11,0xc9,0xdf,0xc3,0x1b,0x9a,0x95,0xdb,0xeb,0xe6,0x10,0x44,0xd8,0x1c, 0xd6,0xbc,0x21,0xe3,0x61,0xcb,0x94,0xe8,0xc5,0x53,0xa2,0x4c,0xd2,0x73,0x08,0x49, 0x81,0xe2,0xd8,0xa0,0x87,0x96,0xb6,0xc5,0xb9,0x51,0x26,0x11,0xd8,0xa9,0x1b,0x83, 0x08,0xae,0x6a,0xf4,0xea,0x24,0xdb,0x28,0x43,0x30,0x1a,0xa0,0x3b,0x82,0xd0,0xd0, 0xdb,0xd1,0xd9,0x5e,0x5e,0xc8,0x48,0xc3,0x91,0xc9,0xd5,0xdc,0x6c,0x91,0xa8,0x6d, 0xed,0xc1,0x7a,0xcd,0x58,0x79,0xa8,0xe3,0xf5,0xf0,0x16,0xbf,0x0b,0xf0,0x5f,0x04, 0x94,0x17,0x27,0xa6,0x07,0x0d,0x3f,0x0c,0xa9,0x72,0xe9,0x99,0xe1,0xfc,0x70,0xa6, 0xb5,0x80,0xfc,0xf4,0xe9,0x33,0xfc,0x89,0xba,0xa0,0x1d,0x8d,0x02,0x9c,0x3c,0x0a, 0x3e,0xf8,0x53,0x63,0xbd,0x52,0x4f,0x22,0x05,0x6b,0x6c,0x8f,0xe3,0xea,0x41,0x13, 0x98,0x38,0xd2,0x91,0x2d,0x9d,0xce,0x06,0xec,0x35,0xb1,0x97,0x2b,0x23,0xaf,0x7a, 0xd7,0x89,0x90,0xf5,0x69,0x3f,0xf7,0x6c,0x2a,0xef,0xe7,0x6f,0x49,0x47,0x3b,0x75, 0x68,0xd0,0x9b,0x8d,0xdd,0xbf,0x10,0xb4,0x7c,0xf4,0x8f,0xff,0xcb,0x86,0xc5,0x4b, 0x96,0xde,0xd4,0x84,0xb2,0x9d,0x5d,0x93,0x6f,0x7e,0xf4,0x91,0x47,0xfb,0xfe,0xf8, 0x8f,0xff,0xf8,0x56,0x2b,0x6d,0xc4,0x29,0x90,0x46,0x47,0x28,0x05,0xd1,0xb3,0x83, 0x47,0xf4,0xfa,0xe1,0xc2,0xd4,0x69,0x9d,0x07,0x0f,0x8c,0xa5,0x27,0xc0,0xd3,0x8e, 0x20,0x14,0x25,0x8c,0x76,0xae,0xea,0xd0,0x05,0xb5,0x6d,0x55,0xca,0x83,0x15,0xed, 0xb5,0x5b,0xb5,0x72,0x45,0x73,0xf1,0x45,0x17,0x94,0x5f,0xd8,0x3c,0xf4,0x9d,0xcd, 0xcd,0x60,0xec,0xbd,0x5b,0xa2,0xb7,0xe9,0x71,0x82,0xea,0x8a,0x2b,0xd6,0xd6,0x7d, 0x76,0xe0,0xfa,0xf9,0x96,0x77,0x03,0xea,0xc7,0x9f,0xc8,0x1b,0x54,0x08,0x87,0x5a, 0x31,0x26,0x39,0xca,0x01,0x57,0x73,0xe1,0x85,0xab,0x9b,0x79,0x73,0xe7,0x86,0xf1, 0xaa,0x1c,0xe5,0xac,0x20,0xfa,0x81,0x4f,0xc9,0x1d,0x8d,0x60,0x3c,0x74,0x70,0xa0, 0xfc,0x24,0xec,0xc8,0x60,0xfd,0x31,0x27,0x1c,0x46,0xf4,0x6a,0x95,0x1f,0x8d,0x3a, 0x3c,0xf2,0x32,0x8a,0x07,0x4f,0x9e,0x0c,0xf2,0x93,0x91,0xeb,0x5b,0x0f,0x7e,0xa7, 0x19,0x8c,0xc5,0x15,0x19,0xc9,0x34,0x39,0x46,0x84,0xab,0xae,0x7c,0x79,0xb4,0x6f, 0x69,0x9e,0x79,0x76,0x4b,0xec,0x62,0x76,0x16,0x87,0xa1,0xc7,0x1e,0x29,0x9f,0xb6, 0xee,0xb5,0x49,0x9b,0x00,0x0e,0x9d,0xe8,0x4c,0x09,0x0e,0x5b,0x25,0xb0,0xa5,0x7b, 0x1d,0x80,0xee,0xee,0xb5,0x61,0x4b,0xd7,0xf4,0x0b,0x1d,0xd7,0xac,0x59,0x73,0xdb, 0x4f,0xfd,0xd4,0x4f,0xdd,0x33,0x67,0xce,0xec,0x9e,0x8e,0x8e,0xce,0x0d,0x87,0x0e, 0x1d,0xea,0x8b,0x80,0xbf,0xa6,0xed,0x95,0x2f,0x7f,0xc9,0x9d,0x97,0x5c,0x7a,0x59, 0x73,0xf1,0xc5,0x2f,0x6e,0x5a,0x27,0x75,0xac,0x7b,0x6e,0xcb,0xb3,0xd7,0x3f,0xf6, 0xd8,0xa3,0xe5,0x0c,0x1d,0x43,0x44,0x18,0x40,0x9e,0x10,0x04,0x02,0x75,0xbf,0x1e, 0x51,0x1d,0xbd,0x42,0x7d,0x4d,0x75,0xa8,0xd2,0xf3,0x08,0x96,0x4a,0xb9,0x4a,0x0c, 0x00,0x28,0x27,0xa1,0x97,0x41,0x26,0xcf,0x51,0x5e,0x3a,0x01,0x86,0xcd,0xf9,0xf3, 0xe7,0x86,0x41,0xeb,0xc9,0x9d,0x5e,0xaa,0x37,0xa2,0x93,0x3f,0xc3,0x8e,0x26,0x65, 0x3d,0x50,0x5f,0x5d,0xaf,0x1f,0x87,0x2a,0x8b,0xc2,0x18,0x3d,0x74,0x78,0xc3,0xb9, 0x33,0x0c,0xa7,0x70,0x1e,0xf6,0x5c,0x70,0xc1,0x05,0x25,0x08,0xec,0x46,0x3c,0xf4, 0xf1,0x9b,0x02,0xaf,0x7a,0x79,0x42,0xd8,0x12,0x72,0xe0,0xe9,0x59,0x43,0x7b,0x18, 0xad,0xfe,0x01,0x06,0x6f,0x2d,0xfb,0x2d,0x82,0x9e,0xdb,0x5e,0x7e,0x69,0xeb,0xdd, 0x80,0x15,0x2b,0x7a,0x8b,0x0c,0xe8,0x63,0x25,0xe0,0x3d,0x9a,0x16,0x40,0xfa,0x2d, 0x9d,0xbc,0x91,0x64,0x1d,0x43,0xb7,0x72,0x3c,0x1d,0x3a,0xb0,0x4d,0x42,0x3a,0x14, 0xa4,0x4d,0x41,0xb5,0x43,0xc5,0x63,0x53,0xf9,0xb4,0x1f,0x70,0x15,0x34,0x19,0x98, 0xc0,0x28,0x2a,0xcf,0xa6,0x20,0x03,0x21,0x71,0xd0,0xbc,0xfa,0xea,0xab,0xd7,0xc6, 0x96,0xfa,0xfa,0x39,0x73,0xe6,0x5c,0x77,0xe5,0x95,0x57,0x09,0x9a,0x9e,0x58,0x18, 0x5e,0xdf,0xf6,0x23,0xd7,0xbd,0xce,0xdf,0xf9,0xbb,0xe8,0xf8,0xc8,0xc9,0xa6,0x2f, 0xb6,0x08,0xb1,0x58,0x68,0x1e,0x7c,0xf0,0xc1,0x68,0x54,0x17,0x3f,0xe9,0xc0,0xec, 0xa5,0x9c,0xa8,0xac,0xbe,0x3a,0x6d,0x37,0x50,0x5f,0x6e,0x30,0x3c,0x8b,0x36,0xc6, 0x08,0x3f,0x16,0xe7,0x70,0x86,0x20,0xd1,0x8e,0x83,0xe0,0x1b,0x02,0xd1,0x22,0x54, 0xf6,0x04,0xe5,0x09,0x78,0x95,0xed,0x5e,0x0c,0xf9,0x5e,0xfe,0xe0,0x30,0xbd,0xd3, 0xbe,0x9f,0xe2,0xa6,0x1a,0x2f,0x77,0xcc,0xf6,0x7b,0x7d,0xed,0xc2,0x56,0x78,0xf8, 0xdd,0xa0,0xc5,0x9d,0x2d,0x2c,0xba,0x16,0x92,0x1c,0xe7,0xe7,0x5e,0x3e,0x00,0x15, 0x0b,0x5b,0x1f,0x17,0x69,0x76,0x44,0x4f,0xf4,0xa9,0x19,0x67,0x0a,0x9e,0x1d,0x78, 0xdb,0xe7,0xe0,0xf8,0x4f,0xc7,0x7c,0x69,0x8c,0xa3,0x67,0xf5,0xcc,0x08,0x03,0xf5, 0x94,0xef,0x02,0x7a,0xe0,0x23,0x79,0xc1,0x64,0xc9,0x92,0x25,0xe5,0x49,0xa0,0x75, 0x4f,0xb8,0x89,0xb0,0x61,0xe8,0x70,0xb8,0x80,0x09,0x5b,0x79,0x71,0xd4,0x8c,0xe1, 0xfd,0x83,0x25,0xe3,0x4f,0x27,0x3d,0x1c,0xf2,0xa1,0x88,0xf2,0x72,0x66,0x94,0xd3, 0x9d,0xbe,0xae,0x9c,0x94,0x76,0x95,0x4f,0xe7,0xa7,0x7d,0x12,0xd2,0x99,0x52,0xb6, 0xe7,0xd8,0xb4,0x2b,0x9b,0x25,0x0e,0xc8,0xc0,0xc8,0x7b,0x75,0x46,0x09,0xf7,0xd6, 0x2a,0xa6,0x77,0x6f,0x46,0xc7,0xa8,0x71,0x77,0xdb,0x17,0xef,0xba,0xe7,0x93,0x3f, 0x78,0xed,0x6b,0x6f,0x3f,0x32,0x74,0xfc,0x23,0x03,0x87,0x8f,0x7c,0x24,0x7a,0xf4, 0x47,0xee,0xbf,0xff,0xfe,0x60,0x72,0xfa,0x2a,0x8c,0x10,0xc7,0x04,0xb8,0x22,0xa2, 0xcc,0x13,0x3a,0x2f,0x8e,0xc2,0x21,0x6c,0x3d,0x71,0xa3,0x4c,0x15,0x9e,0x10,0x45, 0xc9,0xf8,0x37,0xd9,0x09,0x5c,0xb4,0xcd,0x43,0x17,0xc1,0x42,0x3f,0x78,0x92,0x00, 0xa2,0x8c,0x45,0x9c,0xd1,0x43,0x1e,0xc2,0xa4,0xf6,0xce,0x66,0xee,0xdc,0xfa,0x83, 0x8e,0xa1,0x18,0x92,0xbd,0x00,0x3a,0x7b,0x76,0x4f,0xb3,0x64,0xd1,0xc2,0xa2,0x48, 0x1a,0x04,0x2d,0x8b,0x40,0x53,0x83,0x9e,0x37,0x37,0x86,0x68,0xaf,0x74,0xcd,0x5f, 0x30,0x37,0xd2,0x9c,0x58,0xb0,0x75,0x97,0x5e,0xf2,0xc4,0x93,0x5e,0x0c,0xdd,0x57, 0x7a,0xfc,0x58,0xb4,0xf1,0xae,0xbf,0x87,0x49,0x82,0xda,0xa8,0xe0,0x07,0xa7,0xb6, 0x9c,0x1d,0x21,0x6f,0x4f,0xcf,0xb4,0x08,0xbe,0xa9,0x61,0xb8,0x69,0xa5,0xd7,0x4f, 0x9f,0xd6,0xdd,0x4c,0x8b,0xb9,0xde,0xf9,0x01,0x9d,0xf4,0x51,0x0b,0x5d,0xd3,0x56, 0xd5,0xbf,0xb3,0x3c,0x23,0x40,0x7b,0xd1,0x82,0xf9,0xe5,0x87,0x23,0x78,0xec,0xda, 0xb5,0x27,0xe8,0x0e,0x97,0x5d,0x0a,0x3c,0xbd,0x94,0x6d,0xe4,0x41,0x76,0x2e,0xf7, 0xe9,0x5c,0x90,0x8e,0x75,0x9d,0x18,0x20,0x13,0xdb,0xe5,0x48,0x4a,0x7e,0xe5,0x6c, 0x0b,0xd8,0x05,0x7e,0x69,0x1b,0xbb,0x99,0x49,0xad,0xad,0x03,0x8b,0x16,0xcd,0xff, 0x46,0x74,0xac,0x6b,0xa6,0x74,0x76,0xdd,0xb2,0x6f,0xf7,0xee,0xf9,0xc7,0x8f,0x1d, 0xfb,0xcf,0x81,0xf8,0x47,0x95,0xda,0xf3,0x60,0xc1,0x82,0xfa,0x81,0x88,0x14,0x8e, 0x00,0x7a,0x9f,0x3c,0xe2,0x18,0xc9,0x53,0xc4,0x3d,0xa1,0x09,0x02,0x1f,0xb8,0x27, 0x14,0x01,0xe0,0xea,0xb5,0x0c,0x24,0x6f,0xaf,0x2f,0x19,0xea,0x8d,0x22,0x29,0x68, 0xb6,0xa5,0x48,0xb6,0xb3,0xe0,0x7c,0xf1,0x8b,0x2f,0x6c,0x66,0x47,0xef,0x3b,0x74, 0xf0,0x70,0xe9,0xb5,0xbe,0xd2,0xb9,0x60,0xc1,0x82,0x18,0x5d,0xf0,0xce,0x47,0xd6, 0x31,0xca,0xc4,0x54,0xc0,0x36,0xe8,0x18,0x11,0x5c,0x3d,0xe4,0xf1,0xb0,0xc6,0x5f, 0x29,0xb1,0x4d,0x3b,0xb0,0xff,0x70,0x35,0x5c,0x04,0x0f,0xbe,0x02,0x2f,0x77,0x0e, 0x74,0x21,0x23,0xd9,0xed,0x72,0x2e,0xbc,0x60,0x45,0x99,0x36,0x82,0x62,0xe0,0xc6, 0xc2,0xb8,0x45,0x30,0x57,0x9a,0xa6,0x22,0x8f,0x89,0x1d,0xf8,0xf8,0x4c,0x9c,0x33, 0x05,0x4f,0x2a,0xf5,0xf6,0xc1,0x98,0x0a,0xac,0x31,0x04,0x8f,0x9e,0xef,0xc3,0x53, 0x41,0x3a,0x52,0x9d,0x52,0xd9,0x49,0xb0,0xe1,0x43,0x76,0xba,0x92,0x25,0x3b,0x16, 0x39,0x00,0x3c,0x36,0x80,0x03,0x57,0xbd,0x04,0x26,0x06,0x01,0x3f,0xc0,0x53,0xc6, 0x47,0x49,0x33,0x7d,0xe2,0xdd,0xc5,0xe0,0xbd,0x79,0xdf,0x81,0x7d,0xff,0x07,0x1f, 0x88,0x98,0xd6,0x5d,0xbe,0x13,0x88,0x61,0x46,0x6b,0xa6,0x5c,0xb5,0xa7,0x93,0x95, 0xc9,0x13,0x02,0x60,0x2e,0x69,0xab,0x2e,0x23,0x97,0xb1,0x95,0x69,0xab,0x97,0x18, 0x31,0xdc,0x67,0x60,0xc1,0x01,0x69,0x18,0x09,0xaf,0xc3,0x03,0x87,0xca,0x89,0xa0, 0x61,0xd8,0x23,0x58,0xce,0x71,0xf6,0xbe,0x7d,0xdb,0x8e,0xfa,0x8d,0xc0,0x83,0x87, 0x8a,0x93,0x7d,0xd6,0xcd,0x8e,0xa0,0xac,0x4d,0x90,0x8a,0x24,0xc0,0xf0,0xf0,0x52, 0xa8,0x54,0x2b,0xea,0xf9,0x00,0xfa,0xea,0x24,0x3c,0xc9,0xe9,0x2a,0xd1,0xd9,0xf1, 0x6e,0x7d,0xff,0x30,0x82,0x9e,0x1e,0x61,0x6c,0x73,0x88,0x5d,0x8a,0x53,0x3e,0x9f, 0x98,0xc3,0xff,0xd8,0xb1,0xd1,0xf2,0x08,0x98,0xce,0x5e,0x23,0xf3,0x35,0x13,0xf4, 0xbd,0x83,0x00,0xc7,0xef,0x0f,0x26,0xea,0xcf,0x29,0xe8,0xe3,0x93,0x76,0x4c,0xc7, 0xbb,0xa6,0x7c,0xf2,0xf0,0xd9,0x55,0x1e,0x0d,0x57,0x72,0xe7,0x55,0x5b,0x90,0xd7, 0xb4,0x63,0xea,0x25,0x79,0x2d,0x2e,0xae,0xfd,0xb1,0x88,0x3e,0xff,0x07,0x22,0xfe, 0xfb,0x87,0xff,0xa8,0xa7,0xab,0x6b,0x6a,0xcf,0x8c,0x99,0xb3,0x9a,0x0b,0x2f,0xbe, 0xb8,0xf9,0xe2,0x17,0xbe,0xd0,0xdc,0x72,0xcb,0x2d,0x77,0x0c,0x1c,0x19,0x5c,0x9b, 0x4e,0x48,0xe7,0xb8,0x07,0x18,0x52,0x38,0xe7,0x64,0x42,0x66,0x99,0xfb,0x7a,0x46, 0x5e,0x87,0x45,0x8a,0xab,0xab,0x9f,0x5d,0xa9,0x27,0x65,0x19,0xf1,0x02,0x28,0xa3, 0x56,0x32,0xb7,0x6a,0x8b,0x9e,0xb6,0x68,0xe8,0xd9,0x2f,0x79,0xc9,0x65,0x65,0xc5, 0x4d,0x71,0xbd,0xec,0x99,0x67,0xfa,0xca,0x83,0x98,0x42,0x2b,0x1c,0x6e,0x18,0x9f, 0x36,0x6d,0x4a,0x59,0x9c,0x75,0x4f,0x9b,0x1a,0xc3,0xb4,0x31,0x20,0xe4,0x0c,0xfc, 0x91,0x13,0x27,0x9b,0x87,0x37,0x3f,0x1a,0x6b,0x88,0x81,0xb2,0x6d,0xac,0x86,0xae, 0x41,0xc9,0x60,0x46,0x00,0x3c,0xd1,0x06,0xea,0xe9,0x60,0xe1,0x78,0xe1,0x85,0xab, 0xca,0x50,0x6e,0x7a,0x39,0xe9,0xab,0x5f,0xe1,0x7c,0x9f,0x93,0xd9,0xbd,0xab,0xbf, 0x19,0x1a,0xf6,0x86,0x30,0x3e,0xe1,0xac,0xd0,0xcd,0x57,0xd3,0x2f,0xbe,0x78,0x4d, 0xcc,0xfb,0xd3,0xca,0x03,0x2a,0xaf,0x8d,0x3d,0xf9,0xf4,0xb3,0x45,0x17,0x34,0xc9, 0x9a,0x8e,0xa4,0x6b,0xda,0x40,0x9d,0x24,0x9f,0x8e,0x85,0xa3,0x2c,0x21,0xdb,0xa1, 0x21,0xa1,0x99,0xc1,0x03,0xd8,0x11,0xe4,0x28,0xac,0x2d,0xfb,0xc1,0x51,0xe7,0x97, 0x41,0x57,0x5c,0xf1,0xd2,0xbb,0x7f,0xec,0xc7,0xde,0x7c,0x63,0xcf,0x8c,0x59,0x1d, 0x7d,0xcf,0x6e,0xf9,0xc5,0xe8,0x30,0xf7,0xdf,0xf4,0x1f,0x6f,0xfa,0xeb,0xd6,0xd1, 0xe3,0xc3,0xb7,0xf6,0xf4,0xcc,0xd8,0x32,0x6f,0xfe,0xfc,0x2d,0x33,0x7a,0x7a,0xb6, 0xf4,0xae,0x5c,0xb1,0xe5,0xd4,0xd8,0xe9,0xf2,0xf7,0x72,0x31,0x28,0x51,0x14,0x4c, 0x19,0x8a,0xd0,0x13,0x85,0x4c,0x61,0x00,0x66,0xee,0xb5,0x49,0x25,0xe5,0x5d,0x6d, 0x85,0x94,0xa5,0x92,0x16,0x79,0x0e,0x54,0x00,0xa1,0x53,0x19,0xc1,0x90,0x74,0xf1, 0xaa,0xa9,0xa5,0xcc,0xff,0xba,0xb4,0x21,0xff,0xe4,0xe8,0xe9,0x58,0xbc,0xf8,0x01, 0xe8,0xa9,0x42,0x83,0x93,0x1d,0xbd,0xee,0xd9,0xb3,0xaf,0x79,0xfa,0xe9,0xe7,0xca, 0x96,0xb0,0xd8,0x25,0xda,0xc1,0xe7,0xdc,0x5c,0x81,0xa7,0xe3,0x25,0x72,0x28,0xc3, 0xd3,0xb5,0xca,0x59,0x47,0x28,0xe0,0x57,0xb5,0x5e,0x2c,0x81,0xe7,0xb9,0x83,0x69, 0x6b,0xef,0x9e,0xbd,0xe5,0x1b,0x05,0xfe,0xaa,0xa9,0x5d,0x92,0xdf,0x22,0x9c,0x1a, 0x0b,0xe7,0x45,0xc0,0x79,0xbc,0x7c,0x34,0xf0,0x43,0xf3,0x42,0x0f,0x5f,0x87,0x58, 0xad,0x31,0x75,0x58,0xf3,0xa4,0x5d,0xf0,0xcb,0x0e,0x83,0x17,0x47,0x25,0x6f,0x90, 0xfa,0xb3,0x4b,0xda,0x1d,0xa4,0x8c,0xda,0xb8,0xa2,0xe1,0xfa,0x7c,0xb9,0xe1,0xa1, 0xcd,0x7f,0xca,0xb3,0x2e,0xa6,0xcd,0x75,0x41,0x6f,0xcb,0xfc,0x05,0xf3,0x9e,0x7c, 0xc3,0x0f,0x5f,0xf7,0xcb,0xaf,0x7d,0xfd,0xb5,0x9f,0x78,0xe6,0xb9,0xe7,0xee,0x68, 0x1d,0x1b,0x39,0x7a,0x7d,0xcf,0x8c,0xa9,0xcd,0x2c,0x6f,0xbb,0x06,0x81,0x83,0xa1, 0x48,0xd9,0x45,0x45,0x54,0xdb,0x2b,0xdb,0x9a,0xf9,0xe4,0x0b,0x43,0x10,0x48,0x2f, 0x45,0x30,0x0d,0x97,0x89,0xe0,0x98,0xe6,0x82,0x0e,0xe3,0x0c,0x00,0xc7,0xa7,0x31, 0x7e,0xc6,0x7d,0x8d,0xf6,0xa0,0x1e,0xb4,0xea,0xe1,0x4f,0xb6,0x65,0x08,0x75,0xda, 0xa4,0xe0,0xc0,0x62,0x6b,0xef,0xfe,0x7d,0x65,0xde,0x14,0x48,0x0e,0x84,0x8e,0x1d, 0x1f,0x2e,0x32,0xc1,0x4f,0x83,0xfa,0x28,0x43,0x79,0x7f,0xff,0x99,0x67,0x9b,0x03, 0x07,0x0f,0x94,0xc3,0x18,0xef,0x06,0x9e,0x18,0x09,0x43,0x5b,0xb8,0x05,0xa1,0xfa, 0x0a,0xf9,0xd9,0x75,0x03,0x5e,0x19,0x08,0x7a,0x0a,0x9e,0xea,0x00,0xda,0x78,0x09, 0x40,0x3f,0xf6,0xd8,0xee,0x27,0xe3,0xb1,0x06,0x39,0x61,0x8b,0x1b,0x8b,0x53,0x6b, 0x18,0xf6,0xb0,0xc8,0x12,0x6c,0x65,0x9b,0x1a,0x13,0xee,0x58,0xeb,0x58,0xac,0x03, 0x8e,0x37,0x87,0x23,0x48,0xd9,0x90,0x2d,0x6b,0xc0,0xd7,0xdd,0x13,0xfa,0x78,0xca, 0xa7,0x0c,0xf8,0xb3,0x1b,0x1c,0x79,0xbc,0x13,0x5f,0x5e,0x1b,0xf6,0x51,0xc7,0x0e, 0x29,0xa3,0x36,0xf4,0xcf,0xa0,0x50,0x0f,0xdc,0x6b,0x5f,0x6d,0x53,0xdf,0xd5,0x20, 0x6b,0x9d,0xaa,0x62,0x67,0x34,0x63,0x76,0xb3,0x70,0xfe,0x42,0xef,0x2a,0xf4,0xb6, 0xbd,0xf9,0xba,0x37,0xf6,0x0e,0x0f,0x1d,0x5b,0xeb,0x5d,0xb8,0xd1,0x93,0xa7,0xde, 0xfd,0xd8,0x23,0x8f,0x7c,0xf2,0x7b,0x8f,0x3d,0x7a,0x7d,0xfd,0x69,0x58,0x75,0x16, 0x41,0x09,0x8d,0x09,0x42,0x18,0xb9,0x27,0x14,0xa3,0xa9,0x97,0x30,0x85,0x33,0xd1, 0xa8,0x68,0x50,0xa4,0xe2,0x55,0xc7,0xaa,0x43,0x07,0xa8,0xcb,0x1e,0xa1,0x1d,0x3a, 0xea,0xe4,0xb5,0xa5,0x8c,0x8f,0x31,0x95,0x9f,0x61,0xc5,0x30,0xeb,0xa4,0x8d,0x22, 0x7a,0x3f,0x9c,0x89,0xfc,0xf5,0x54,0x7b,0x77,0x0b,0x44,0x2b,0x77,0xdb,0x1d,0xf8, 0x03,0xb1,0xcd,0x0b,0x2d,0x0c,0x22,0xc5,0x68,0xf8,0xeb,0x61,0x69,0x34,0x57,0xa0, 0x4c,0x2a,0x4e,0x09,0xda,0x5e,0x2f,0xb7,0x7d,0xb2,0x65,0x7a,0xe6,0x99,0xe7,0xa2, 0x6d,0x18,0x74,0x5c,0x27,0x72,0xc1,0xf5,0x40,0x48,0x60,0xea,0x28,0xd6,0x2a,0x9e, 0x62,0x5a,0xb0,0x3a,0x4c,0x52,0x4f,0x46,0xf4,0xe0,0x4b,0x69,0xbb,0xe4,0x6d,0x8a, 0x2d,0xfc,0xc6,0xcb,0xd3,0x3e,0x89,0x03,0x52,0xc6,0x74,0x2c,0xa0,0x2f,0x1c,0x65, 0xd5,0x4f,0x67,0x57,0xff,0xae,0x20,0x6d,0xec,0xd9,0x86,0xce,0x3c,0x75,0xea,0xb4, 0x1b,0xbb,0xbb,0xa7,0x7f,0x66,0xff,0xbe,0x7d,0xb6,0xd0,0xb7,0x86,0xad,0x7e,0xa7, 0x4e,0xee,0xcf,0x83,0x65,0xcb,0x96,0xdd,0x14,0x44,0x37,0x60,0x96,0x8c,0x18,0x3c, 0x1d,0x88,0xb0,0x2b,0xe6,0x84,0x17,0x69,0x70,0x32,0x4a,0xd3,0x40,0x8c,0x0d,0x2f, 0x13,0x1c,0x90,0x0a,0x81,0xe7,0x2b,0xaf,0x1c,0xcf,0x04,0xb3,0xac,0x77,0x03,0xd6, 0x5c,0xb8,0xba,0x7c,0x82,0xcd,0x49,0xdd,0xa3,0x8f,0x3f,0x1e,0x41,0xc3,0x11,0xd5, 0x00,0xda,0x83,0x6a,0x88,0xd8,0x47,0x47,0x8f,0xf7,0x90,0xc6,0x9b,0x44,0x74,0x78, 0xf4,0x91,0xc7,0x9a,0xfd,0xb1,0x58,0x84,0x06,0x07,0x1f,0xe0,0x9a,0x43,0x29,0x3a, 0x59,0x0e,0xac,0x25,0x2e,0xbc,0x60,0x55,0x39,0xe8,0x7a,0xea,0xc9,0xa7,0x63,0xc5, 0x7f,0xb0,0xcc,0xed,0xda,0xa7,0xfe,0x86,0xe7,0x63,0xc7,0x6c,0x85,0xbd,0x78,0xd2, 0xde,0x5c,0x76,0xe9,0x25,0x11,0x30,0xdd,0xcd,0x93,0x4f,0x3d,0x57,0xbe,0x32,0x02, 0xe8,0x87,0x3e,0xfc,0xd4,0x5f,0x5e,0x4a,0x67,0x2a,0xcf,0x20,0xa1,0x7b,0xda,0x1d, 0x9f,0xb4,0x3f,0x1a,0xca,0xb3,0x6d,0xb6,0x51,0x4f,0x7f,0xc9,0xe8,0xfc,0xfc,0x00, 0xaf,0xa3,0xee,0xe8,0xe6,0xd8,0xb1,0xfc,0xd3,0x1f,0x06,0xa5,0xc0,0xae,0x18,0x48, 0x20,0x1d,0x25,0x6a,0x73,0xe8,0x55,0x96,0x2f,0x25,0x10,0xa8,0x3a,0xa1,0x2a,0x49, 0x21,0x09,0x1d,0x49,0x80,0x64,0x59,0x2a,0x09,0x0f,0x24,0x4f,0xe0,0x8a,0xae,0x32, 0x21,0xc0,0xd0,0x03,0x4e,0xf9,0x62,0x5e,0xa6,0x98,0x17,0x30,0x6b,0xe0,0xd4,0x11, 0x03,0x4f,0xc9,0xc1,0x90,0xab,0xd1,0xab,0x3f,0xe6,0x6b,0xc7,0xa3,0x16,0x74,0xe5, 0xa3,0x50,0x21,0x23,0xdc,0x1c,0xb5,0x2a,0xed,0xda,0x93,0xd0,0xa2,0x97,0xf2,0xd4, 0xd5,0x36,0xce,0x1b,0xc0,0x46,0x0f,0xa9,0x1e,0x7d,0x57,0xa7,0x67,0xcf,0x62,0x6c, 0x6f,0x08,0x69,0xe3,0x10,0x0a,0x2f,0x72,0xfb,0xcd,0xa0,0x32,0x7a,0xa2,0x89,0xf6, 0x44,0xde,0xc9,0xcf,0x95,0x3e,0xda,0x65,0x50,0x29,0x47,0x23,0xe7,0x7e,0x76,0xca, 0x3a,0xed,0xc9,0x9d,0x38,0xe8,0xa3,0xab,0x1e,0x1d,0xb8,0xea,0xe5,0xd5,0x27,0x5f, 0x78,0x2f,0x04,0xe7,0x0d,0x00,0x0e,0xc6,0x50,0x43,0x42,0x22,0x2a,0x29,0x23,0x98, 0x2b,0xc2,0xc5,0xd8,0x61,0x04,0xf3,0x12,0x66,0x04,0x00,0xea,0xd3,0xc1,0x29,0x04, 0x80,0x5f,0x1d,0x57,0x87,0x29,0xe5,0xf2,0xc0,0x7d,0x2a,0x96,0xfc,0xd4,0xd7,0xb6, 0xb1,0x8d,0x2a,0x3f,0xe3,0x1e,0x0a,0x99,0x1c,0xc7,0xf6,0x14,0xbc,0xba,0x10,0xac, 0x3c,0xbd,0xff,0x6e,0xc1,0xe0,0x18,0x38,0x8f,0x66,0xed,0xff,0xb5,0x9f,0x3b,0xfe, 0xc1,0x47,0xc7,0xba,0xf0,0x05,0xae,0x00,0x46,0x23,0x8d,0x0b,0x8f,0x6c,0xea,0x9c, 0x3e,0x2e,0x5c,0xb8,0x30,0x74,0xed,0x2c,0x34,0xc8,0xa5,0x0e,0x1e,0xfd,0xe1,0x2a, 0x2b,0xf2,0x16,0xee,0x4d,0xe9,0x7d,0x0c,0xcf,0x76,0x16,0x89,0xf8,0xb0,0x8d,0x76, 0xf0,0x72,0x9a,0x03,0x55,0xf6,0xba,0xbd,0x4e,0x9d,0xb3,0x73,0xa4,0x9d,0x95,0x55, 0xdd,0xcf,0x76,0x08,0xb8,0xda,0x65,0x1d,0x5c,0x3c,0x81,0x32,0x3c,0xd5,0x27,0x8e, 0x7b,0xd7,0xc4,0x39,0x1f,0xb4,0xfc,0xd9,0x9f,0x7c,0x64,0xed,0x8c,0x99,0x33,0x7b, 0xc7,0xc2,0x80,0x3f,0xf9,0x7f,0xfd,0xeb,0x8d,0x0a,0xd7,0x5e,0xb6,0xf6,0xd0,0xde, 0xfd,0x7b,0x7b,0x30,0x40,0x0c,0x21,0x46,0xe5,0x08,0xf7,0x80,0x00,0x04,0x4b,0xc3, 0xa4,0x80,0x13,0xeb,0x80,0xab,0x72,0xca,0xa5,0x50,0x59,0x9e,0x4e,0x46,0x23,0xdb, 0xd7,0x2b,0x9a,0xd5,0x38,0xed,0x93,0x22,0xe0,0xca,0x79,0x7c,0x57,0xf9,0x2e,0x90, 0x1f,0x72,0x30,0xf2,0x23,0x8f,0x3c,0xda,0x1c,0x1a,0xf0,0x17,0x39,0xcc,0x81,0x76, 0x0f,0x75,0xd7,0xa1,0x3d,0x63,0xa2,0xbb,0x7c,0xf9,0x92,0xe6,0x82,0xd5,0xab,0x4a, 0x99,0x55,0xb9,0xdf,0xfa,0xef,0xdd,0x7f,0xa8,0xf4,0xd0,0x18,0x34,0x0b,0x7e,0x79, 0x54,0x1b,0xb8,0xb6,0x93,0x1c,0x2e,0x99,0x3a,0xfc,0x06,0xc1,0xe1,0xcd,0x37,0x1f, 0xfc,0x76,0x38,0x2f,0x86,0x5e,0x07,0x41,0xe1,0x6d,0x81,0xa3,0xdc,0x09,0x0b,0x1e, 0x16,0xb8,0x3e,0x20,0x7d,0xe1,0x9a,0x95,0x31,0x12,0x4e,0x6d,0x9e,0x79,0xba,0xaf, 0xd9,0xe9,0xbd,0x82,0xd0,0x31,0xed,0x41,0x4f,0xbc,0xd2,0x56,0x69,0x57,0x3a,0x55, 0xdb,0xd6,0x80,0x57,0xa6,0x8d,0x2b,0x1d,0x5c,0xa5,0x89,0x81,0x21,0x90,0x72,0xab, 0x9d,0x75,0xa0,0xd2,0xae,0xb6,0x97,0xb4,0xaf,0xf6,0x60,0xbb,0x8e,0x81,0x57,0xbd, 0xf2,0xaa,0x1b,0x6f,0xb8,0xfe,0xc7,0xc3,0x76,0xc7,0xcb,0xb1,0x78,0xb4,0xeb,0x7b, 0xe5,0xab,0x5f,0xb5,0xb9,0xf5,0xf0,0xc0,0xfe,0x5b,0x17,0x2e,0x9a,0x7f,0xc7,0x85, 0x6b,0x2e,0xba,0xe3,0xc9,0xa7,0x9f,0xda,0xf4,0x81,0x3f,0xfc,0xd0,0x1d,0x2d,0x93, 0x5a,0x7a,0x10,0x21,0x0c,0xa6,0x99,0xb2,0x8c,0x41,0xe5,0x5d,0x0d,0xff,0x19,0xbd, 0x7a,0x53,0xe2,0x10,0x38,0x05,0x4b,0x5c,0x02,0x13,0x5e,0x5d,0xd2,0x71,0xcd,0x7a, 0x49,0x9d,0xa1,0x36,0xeb,0x0c,0xf3,0x68,0x50,0x78,0xc7,0x8e,0x1d,0xe5,0x21,0x8e, 0x63,0x68,0xbf,0xea,0x31,0x4f,0x97,0xa7,0x79,0xa1,0x24,0x1a,0x22,0x9d,0x1c,0x99, 0xb7,0x40,0x63,0x30,0x74,0xf0,0x5d,0xb1,0x62,0x45,0xb3,0xe6,0x82,0xd5,0xcd,0xf2, 0xa5,0x4b,0x9a,0x59,0xb1,0xb8,0x9b,0x16,0x65,0xce,0x0c,0x3c,0xfc,0xf1,0x70,0x27, 0xec,0xd0,0x5c,0x10,0x7b,0xff,0x99,0xb3,0x7c,0x44,0xba,0x1e,0x11,0xfb,0x51,0x05, 0x79,0xec,0xf5,0x4f,0xc7,0x96,0xcf,0xca,0xde,0x9a,0x84,0x4c,0x02,0xd5,0xa7,0xea, 0x3c,0x19,0x34,0x6a,0x18,0x75,0xfc,0x60,0xd5,0x7b,0x0c,0xe4,0x48,0xdd,0x24,0x7a, 0x65,0x99,0x20,0xca,0x32,0x72,0xca,0x2b,0x43,0x13,0xb8,0x87,0xab,0x0e,0x0e,0x5b, 0x00,0x57,0x36,0x4e,0xba,0x70,0xf8,0x65,0x62,0x10,0x25,0x8f,0x6c,0x53,0x83,0x60, 0xac,0x67,0xfa,0xf4,0xe9,0x77,0x1c,0x3a,0x74,0xf0,0x8e,0xf0,0xd5,0x1d,0xab,0x56, 0xad,0xba,0x63,0xf9,0xf2,0xe5,0x9b,0x1e,0xfd,0xee,0x23,0xd7,0xb7,0xbd,0xe9,0xf5, 0xaf,0xf9,0xa8,0x23,0xcf,0xd9,0xb3,0x17,0x34,0xbb,0x77,0xef,0xeb,0xfd,0x87,0xaf, 0x7f,0xfd,0xa2,0x87,0xbf,0xfb,0x50,0x73,0xcc,0x13,0xb8,0xda,0xb8,0x10,0x72,0x8e, 0x2f,0xda,0x93,0x81,0xab,0xba,0x89,0xcc,0x08,0x22,0xef,0xf9,0x34,0x01,0x27,0x0e, 0x7b,0x20,0xa3,0x12,0x10,0x56,0xdb,0x89,0xb4,0x5c,0x29,0x08,0xea,0x29,0x1e,0x23, 0x9d,0xe5,0xe7,0x8b,0x17,0x7a,0xaf,0xbf,0xed,0xd3,0x33,0x73,0x46,0x71,0x2a,0x39, 0x45,0x75,0x10,0x88,0x56,0x16,0xa2,0x9e,0x11,0x08,0xc2,0x53,0xe5,0x05,0x0f,0xbf, 0xf1,0xcf,0xd1,0x44,0x8f,0xeb,0x09,0xc7,0x5b,0xdd,0x7b,0x9a,0xb8,0x30,0xa6,0x05, 0x2b,0xf7,0x05,0x0b,0x17,0x14,0x27,0x7a,0x70,0x54,0x7f,0x0b,0x98,0x3a,0xb7,0x95, 0x07,0x46,0x78,0x78,0x09,0x94,0x7e,0x7e,0x31,0xa4,0xa7,0xb1,0x87,0x17,0x56,0xfd, 0x48,0x04,0x0d,0x67,0x11,0x7e,0x42,0x7e,0xe8,0x50,0x9d,0x32,0xe8,0x2f,0x71,0x10, 0xdd,0xd2,0x16,0x6c,0xe0,0x1e,0xed,0x0c,0x4e,0xa0,0x73,0xc0,0x25,0x23,0x5d,0xe1, 0xaa,0x63,0x0f,0x7a,0xca,0x4b,0xda,0x4a,0xf2,0x68,0x68,0xe7,0xbe,0x4e,0x4d,0x95, 0x8e,0x72,0xb2,0xd6,0x00,0x12,0x48,0xed,0xe5,0x58,0xdb,0xc3,0x39,0x1f,0xbe,0x20, 0x73,0xf8,0xa8,0xeb,0xd0,0xa1,0x43,0x5d,0x6d,0xff,0xea,0x86,0x1f,0x3b,0xbc,0xa7, 0x7f,0xff,0x82,0x27,0x9f,0x7c,0xa6,0xff,0xf4,0xe9,0xb1,0xb7,0x3e,0xfd,0xd4,0xd3, 0x1f,0x79,0xea,0xc9,0x27,0xde,0x12,0xc3,0x5e,0x5d,0x85,0x04,0x60,0xc0,0x21,0x29, 0x34,0xe1,0x52,0xd8,0x64,0x48,0x59,0xca,0x89,0xe4,0x14,0x96,0x10,0x20,0x95,0x91, 0x28,0x87,0x06,0x9a,0x69,0xa0,0x54,0xc4,0x2b,0xdb,0xce,0xe9,0x95,0x6b,0x3b,0x71, 0x24,0x28,0xbd,0x3b,0x94,0x41,0xdf,0xd3,0x41,0x8f,0x6d,0x67,0x46,0x10,0xd8,0x1a, 0x46,0x9f,0x29,0x1f,0x7b,0xb0,0xfd,0x33,0x6b,0x52,0x54,0xf9,0xd2,0xa5,0x8b,0xcb, 0x55,0x00,0x84,0x16,0x45,0x8e,0x22,0x4b,0xd0,0x44,0xcb,0xdb,0xb2,0xe8,0x4a,0x51, 0x34,0x0e,0x9c,0x13,0x41,0x17,0xab,0xe7,0xd4,0xc7,0x43,0xa2,0x18,0x88,0x62,0x1a, 0x08,0xc7,0xc7,0xff,0xfc,0x20,0x84,0x41,0x97,0x2c,0x5e,0x5c,0x02,0x91,0x6d,0x9c, 0x3f,0x78,0xd0,0x84,0x3e,0xf9,0x81,0x3c,0x3d,0xc8,0x3f,0x11,0xd8,0x80,0xde,0xea, 0x13,0xdc,0x6b,0x57,0x02,0x3d,0xec,0xa1,0x0d,0x9b,0xa4,0x83,0x95,0x49,0xda,0x28, 0xcb,0x91,0xb4,0xd8,0x2d,0xda,0x8c,0xb3,0x2c,0xf7,0x29,0x83,0xd1,0xd9,0xb9,0x47, 0x6c,0x01,0x07,0x62,0xcb,0xf7,0x44,0x8c,0x02,0x6f,0x9a,0x3e,0x7d,0xc6,0x27,0x63, 0x2a,0x5c,0xbb,0x6f,0xdf,0xbe,0x3b,0x63,0xaa,0xfb,0xf5,0xf1,0x66,0xe7,0x82,0x6d, 0x60,0x2c,0xec,0x36,0x4c,0x8c,0xc4,0x7a,0x80,0x52,0x9d,0x97,0x02,0x0a,0x80,0xac, 0x87,0x4b,0xd0,0x14,0x00,0x50,0x0a,0xa4,0xa3,0x6b,0x20,0xe5,0xe1,0x50,0x75,0xa6, 0x7b,0x82,0x56,0x85,0xd5,0x85,0x63,0x62,0x48,0xb6,0x90,0x82,0xa7,0x5d,0x1a,0x87, 0x63,0x39,0xce,0x31,0x6d,0x4f,0x6c,0xb7,0x16,0x2f,0x5b,0x58,0x1c,0x61,0x8e,0xf6, 0xc4,0xcd,0xdf,0xf1,0x41,0x13,0x6d,0x3f,0x7d,0x9a,0x39,0x6b,0x7a,0xb4,0xad,0x2a, 0xa2,0x6f,0x11,0x79,0xf0,0xa0,0x9f,0x95,0x3b,0xe1,0x63,0xc8,0xea,0x20,0x47,0xbd, 0xe5,0x75,0xb1,0x08,0x3e,0xe7,0x0d,0x46,0x8d,0x0e,0x87,0x47,0xd1,0xce,0x13,0x3f, 0xbf,0x3a,0x92,0xe8,0x66,0x8d,0x50,0x3f,0x24,0x55,0xbf,0x4d,0x34,0x38,0x3c,0x54, 0x4e,0x07,0x7d,0x7e,0xc6,0x7b,0x0b,0xc0,0xe8,0x90,0x36,0x92,0xe8,0x9d,0x7a,0x08, 0x36,0x74,0x32,0xb0,0xe1,0xc9,0xeb,0xe9,0x6c,0x0b,0xd4,0xd3,0x57,0x3d,0xa8,0x3d, 0xb9,0x3a,0x9b,0xe3,0x5d,0xc9,0x9d,0x36,0x2d,0xb6,0x29,0x36,0xaf,0xf8,0xea,0xb4, 0xa9,0xf5,0x76,0x09,0x93,0x36,0xef,0xdc,0x79,0xfe,0x0f,0x44,0x9c,0x37,0x00,0x96, 0x2e,0x5d,0x7a,0x53,0x10,0x29,0x01,0x90,0x3d,0xbe,0xcc,0x83,0x61,0x0c,0x82,0x4c, 0x74,0x70,0x2a,0x90,0x8a,0xc1,0xd7,0x0e,0xa4,0x01,0x52,0x01,0xf8,0x79,0xf0,0x91, 0x74,0x08,0x2b,0x90,0xd0,0x50,0x06,0xb4,0x57,0xc7,0x99,0x7a,0x61,0xe2,0xc2,0xd1, 0xfb,0x4d,0x45,0x4e,0xe2,0xfc,0x3c,0xcb,0xe3,0xde,0x85,0x31,0x84,0x5b,0x0f,0xe0, 0xcf,0xb1,0xf5,0xd1,0xb0,0x3f,0x27,0x13,0xc6,0x8c,0xde,0xe9,0x47,0x25,0xfb,0xf6, 0x1f,0x68,0xfc,0x4d,0x20,0xa7,0x83,0x75,0x91,0x59,0x47,0x33,0x34,0x01,0x19,0xdc, 0x93,0xd5,0x63,0xe5,0xc5,0x8b,0x16,0x96,0x69,0xc2,0x73,0x06,0xf8,0x0e,0x52,0x52, 0x6f,0x5b,0x42,0xc7,0xc4,0xbe,0xa7,0x8c,0xae,0x3f,0x95,0xeb,0xe1,0x16,0x5a,0x82, 0xb4,0x7e,0x61,0xad,0x4e,0x69,0xf4,0xcf,0x0e,0xe0,0x5e,0x79,0x3a,0x8c,0xbc,0xc0, 0xbd,0x72,0xf7,0x69,0x47,0x65,0x80,0x4c,0xda,0x4a,0xa0,0x7c,0x84,0x22,0x70,0xd9, 0x06,0x6d,0x79,0x6d,0xe4,0x27,0xe2,0x6a,0x5f,0xf9,0xb3,0xdb,0xe9,0xcd,0x7b,0xf7, 0xee,0x7d,0xe1,0xa7,0x81,0x1f,0x7c,0xff,0xef,0xf6,0xfc,0xe8,0x8f,0xfc,0x48,0xd7, 0x17,0xbe,0xf8,0xa5,0xf2,0x7b,0xb1,0x98,0x1f,0xae,0x0a,0x06,0xe5,0xaf,0x87,0x83, 0x2a,0x4c,0xa6,0x3a,0x25,0x20,0x9e,0x42,0xba,0xcf,0x32,0x8a,0xa5,0xb2,0xae,0x84, 0x53,0x47,0x38,0x90,0x42,0x67,0x1e,0x1e,0x27,0x53,0x2c,0x8d,0xa2,0x4c,0xca,0x28, 0x17,0x00,0x78,0x95,0x00,0x09,0x96,0x31,0xbb,0x96,0xdf,0xd9,0x71,0x8a,0x5f,0xec, 0x1a,0x01,0x82,0x68,0x59,0x88,0x79,0x77,0xa0,0xca,0x53,0x03,0xd4,0xf7,0x7c,0x0c, 0xcf,0xe6,0x72,0x23,0x80,0xe1,0x1a,0x24,0x3d,0x32,0x48,0xa9,0x8b,0x9e,0xe8,0xf9, 0x82,0xef,0x0b,0x4f,0x9d,0x36,0xa5,0x8c,0x4e,0xa6,0x85,0x5a,0x47,0xe7,0xd6,0xf2, 0x55,0x90,0xbe,0xbe,0xbe,0xf2,0x8b,0x61,0x41,0x06,0x52,0x4e,0x4f,0x25,0xe5,0x25, 0xdb,0x40,0x7a,0xa0,0x9d,0x76,0x61,0x07,0x7a,0x65,0x59,0xda,0x02,0xc0,0x4d,0x48, 0xfc,0x04,0x78,0xec,0xa4,0x8c,0xf3,0xd3,0x4e,0xf0,0xc8,0x9f,0x00,0x0f,0x8e,0x32, 0x38,0xf5,0xbe,0xe5,0x78,0x8c,0xe8,0xe7,0xff,0x50,0xe4,0xc7,0xfe,0xeb,0x1f,0xfe, 0xd0,0xc2,0x45,0x8b,0xdf,0x3f,0x30,0x78,0x74,0xed,0xc5,0x2f,0xba,0xec,0xc3,0x7b, 0xf6,0xf6,0x6f,0x7d,0xcf,0xaf,0xbf,0x67,0xc3,0xce,0x5d,0xfd,0xe7,0x08,0x27,0x6b, 0x78,0x26,0x78,0xce,0xfd,0x98,0x50,0x3a,0xb7,0x24,0xf2,0x0c,0x98,0x82,0x11,0x24, 0xcb,0xd3,0xd0,0x68,0xe6,0xa2,0x06,0xad,0x74,0x72,0x0a,0xed,0x5e,0xd0,0xa0,0xa1, 0x6d,0x0e,0xe9,0xe8,0xc1,0x2f,0x6f,0xe3,0x8c,0xb7,0x03,0x4e,0xba,0x38,0xc8,0x10, 0xbe,0x70,0xc1,0x82,0x66,0xd9,0xd2,0xa5,0xcd,0x94,0x58,0x99,0x1b,0xfa,0x03,0xad, 0xac,0xcc,0x1f,0x7f,0xfc,0x7b,0x65,0x1e,0xcf,0x2f,0x81,0xe6,0x54,0x06,0xd0,0x02, 0xe4,0x92,0x27,0x9b,0xba,0xa9,0x53,0x3a,0x9b,0x8b,0x2e,0x5a,0x53,0x0e,0x78,0xd4, 0x19,0xfd,0x7c,0x4a,0x6e,0xc7,0x8e,0xed,0x11,0x4c,0xfd,0xc5,0xb9,0x7a,0x3d,0x7a, 0xa9,0x1b,0xdd,0x5d,0x41,0x3a,0x8a,0xec,0x49,0x5b,0x9d,0x7c,0xda,0x26,0x79,0x03, 0x79,0x7a,0xe3,0xad,0x1e,0x24,0x3e,0x60,0xc3,0xbc,0xc2,0x4d,0xbb,0xc9,0xb3,0x13, 0x70,0x9f,0x3e,0xd0,0xce,0x7d,0xda,0xe7,0x8a,0x2b,0x5e,0xba,0xf1,0x7d,0xef,0xfb, 0xdd,0x7b,0x9c,0x5c,0x1e,0x3f,0x7e,0xb4,0xc8,0x1f,0x6b,0x82,0x8d,0x2d,0x1b,0x7e, 0xef,0x77,0xf6,0x5f,0x71,0xc5,0x15,0xb3,0x57,0x5e,0x74,0x59,0xd3,0x39,0xa5,0xbb, 0x79,0xea,0xc9,0xa7,0x9a,0xf5,0xeb,0xdf,0x5e,0xbe,0x99,0x87,0x00,0x42,0x55,0x68, 0xce,0xae,0xbd,0x5a,0x00,0x20,0x80,0x39,0x05,0x09,0xea,0x3e,0x1d,0x9d,0xf5,0xd9, 0x36,0x87,0x78,0x6d,0x95,0xbb,0x4a,0x22,0x1a,0xa4,0x02,0x94,0x92,0x72,0x34,0x48, 0x45,0xb5,0x95,0x47,0x3f,0xdb,0x66,0x9b,0xe4,0xa9,0xe7,0x2b,0x77,0x16,0x3f,0x7b, 0xe6,0xac,0xf2,0xd2,0x48,0x77,0x77,0xac,0x2d,0x62,0xf5,0x66,0xa8,0xde,0xb6,0x6d, 0x7b,0x79,0x84,0x9c,0xef,0xfb,0x67,0x00,0x69,0x2f,0xa1,0x0f,0xe8,0xa3,0xd7,0x2f, 0x59,0xbc,0xa0,0x9c,0x20,0xfa,0x13,0xf8,0x82,0x68,0xcf,0x9e,0x3d,0xe3,0x9f,0xa0, 0xab,0xc6,0x33,0xcf,0x7b,0xd6,0x00,0xf0,0x97,0xd0,0x01,0xe9,0x60,0x72,0xe3,0x93, 0x76,0xca,0x72,0xfc,0x39,0x09,0xc8,0x2b,0xd3,0x1e,0x9e,0x36,0xc0,0x35,0x03,0x0a, 0x8e,0xe0,0x40,0x5f,0x5e,0x59,0xd2,0x11,0x30,0xea,0x92,0x5f,0xda,0x0a,0xb0,0xaf, 0x29,0x80,0x6d,0xde,0xf1,0x8e,0xb7,0x37,0x3f,0xfd,0xd3,0x3f,0x1b,0xeb,0x1b,0x7f, 0xd2,0xa6,0xbe,0x9f,0x30,0x38,0x38,0x38,0xd0,0xf6,0xa3,0x3f,0x78,0xcd,0xc5,0x27, 0x46,0x4e,0xac,0x1d,0x3c,0x76,0xb2,0xd9,0x17,0x0b,0x24,0x0a,0x7e,0xf5,0xae,0xaf, 0x9c,0x39,0xdd,0x4b,0xe3,0x24,0x53,0x79,0x4c,0xdd,0x83,0xac,0x4f,0x21,0x28,0x4c, 0x51,0x82,0x10,0x30,0xeb,0xe0,0x49,0x13,0x0d,0x0f,0xd0,0x4a,0xa1,0xb5,0xcb,0x94, 0x6d,0xa5,0xe4,0xad,0x4d,0xe5,0x5b,0x7f,0x3d,0x04,0xcf,0x90,0x9c,0x75,0x9e,0x57, 0x78,0xd9,0xc4,0x96,0xcc,0x47,0x22,0x2d,0x24,0x4d,0x0b,0x0e,0x68,0x04,0x61,0x79, 0x69,0x33,0xec,0x6b,0x1d,0x02,0xb2,0x5d,0xca,0x8b,0x97,0xe0,0xf3,0xf2,0xa8,0xf7, 0x0f,0x3c,0x58,0xda,0xf2,0x5c,0x5f,0x79,0xb0,0xe3,0x55,0xb1,0x6c,0x93,0xf2,0x48, 0xda,0x71,0x2e,0xc8,0x79,0x59,0x79,0x3a,0x4f,0x82,0xe3,0x9a,0xba,0xe0,0x99,0xf6, 0xc1,0x1b,0xae,0x36,0x40,0x59,0xb6,0x87,0x0f,0xe0,0xa7,0xee,0x19,0x48,0x46,0xaa, 0x94,0x59,0x39,0x50,0xae,0x6d,0x4e,0x15,0x29,0x9b,0x60,0xf5,0x50,0x8b,0x1d,0xac, 0x5f,0x8c,0x0a,0xe3,0xf2,0xfd,0xf5,0xd9,0x31,0x68,0x02,0x2c,0x5f,0x5a,0x7f,0x19, 0x64,0xef,0xab,0x07,0x61,0x82,0x18,0xa2,0x04,0xcc,0x7c,0x96,0x23,0x56,0x9d,0x51, 0xc9,0xc1,0x01,0x35,0x02,0xab,0x11,0x04,0x01,0x61,0x9c,0xcf,0xeb,0x61,0x1c,0x0f, 0x5f,0xbb,0xc4,0xd3,0x2e,0x0d,0x90,0xf4,0x29,0xce,0xb0,0xee,0xb5,0x47,0xc7,0x7d, 0x1a,0x38,0x03,0x4a,0x3d,0x5a,0xe4,0xe1,0xec,0x52,0xd6,0xd2,0x56,0x86,0xf0,0xe5, 0xcb,0x62,0x3b,0x18,0xbb,0x86,0x53,0xa7,0x4e,0x84,0x23,0xeb,0xaa,0xdd,0x7a,0x00, 0x2f,0x74,0x8c,0x6c,0x0e,0x97,0x38,0xbd,0x67,0xa6,0x43,0xa0,0x49,0x31,0x02,0xd6, 0xbf,0x50,0xba,0x73,0xe7,0xce,0x82,0x83,0x77,0x7e,0x39,0x3c,0x79,0x91,0x8d,0x8c, 0xe8,0xd4,0x9e,0x8e,0xab,0x5e,0x58,0xcf,0xe7,0xe1,0xc0,0xa7,0x2b,0x1d,0xc9,0x56, 0x30,0xe2,0x4a,0x76,0xf5,0x49,0x2b,0x79,0xb0,0x39,0x32,0x25,0x1f,0x34,0x1d,0x66, 0x59,0xef,0x64,0x9b,0xc4,0x77,0x4d,0x7a,0xca,0x33,0x4f,0x9e,0x89,0xbc,0xea,0x26, 0xe8,0x74,0xdf,0x9a,0x0b,0x56,0xde,0x7d,0xcf,0xd7,0xbe,0x71,0xe3,0x47,0x3e,0xf4, 0x21,0x27,0xbc,0x1b,0x66,0xcc,0xec,0xd9,0xfa,0xf6,0x1b,0x7f,0xfa,0x7d,0x2f,0x18, 0x00,0x61,0xe4,0x12,0x00,0x16,0x35,0x00,0x13,0x09,0x03,0xc2,0x11,0xc2,0x3d,0x21, 0x09,0x0f,0x94,0xab,0x57,0x46,0x40,0xf3,0x35,0xe3,0x70,0x18,0xa1,0xd4,0x1b,0x7a, 0xe0,0x68,0x9b,0x8a,0x64,0x74,0x2b,0x4f,0xba,0xe9,0x1c,0xed,0xb2,0x8d,0x7b,0x8a, 0xa9,0xd3,0x2e,0x79,0x2a,0x9b,0x38,0x92,0xa0,0x57,0x69,0x0b,0x98,0x49,0xe5,0x73, 0xf1,0x8b,0x16,0x2f,0x2c,0x07,0x40,0x86,0x6d,0x8b,0x46,0xf8,0xf8,0x70,0x18,0xd0, 0x3b,0xd0,0x37,0x82,0xec,0xdb,0xbb,0xb7,0xd9,0x1d,0x43,0xbe,0xb7,0x8f,0xf0,0x42, 0xb7,0xd6,0x9d,0x7d,0xd8,0x92,0xf2,0xe7,0x7a,0x06,0xce,0xc8,0x48,0xfd,0x3e,0xa2, 0x5e,0x46,0x2e,0x79,0x72,0xb2,0x47,0xde,0x03,0xd7,0xb4,0x81,0x7a,0x3c,0xd4,0x17, 0x3b,0xd0,0x21,0x70,0x94,0x97,0xc0,0xb7,0xe0,0x8d,0xf5,0x8d,0xba,0x3a,0xf5,0x54, 0xdd,0xa4,0xb3,0x7a,0x9e,0xed,0x2c,0xe4,0x70,0xaf,0x9c,0x6a,0xf5,0x57,0x49,0x63, 0x9b,0xb7,0xbf,0xc0,0x36,0xb0,0x8e,0xc3,0xcf,0x83,0x79,0x73,0xe7,0x95,0x3f,0x1a, 0x45,0x18,0x40,0x79,0xdf,0x0d,0x4c,0x63,0x33,0x40,0x32,0x4e,0x21,0xd4,0x71,0xb8, 0x7c,0x2a,0x46,0x81,0xa2,0x44,0xe4,0xb3,0x2c,0xeb,0x27,0x1a,0x20,0xd7,0x08,0x40, 0x79,0x06,0x90,0x94,0x4a,0x01,0xc1,0xa0,0x5e,0x4a,0x40,0x03,0x8e,0x32,0xf5,0x92, 0xf6,0xee,0x0d,0x7d,0xee,0xcb,0x2f,0x88,0x07,0x0e,0x37,0x87,0x62,0x65,0xcf,0xc1, 0x82,0x9a,0xbc,0xf8,0xd2,0xcd,0xdf,0x24,0xf0,0xce,0x81,0xbf,0xf6,0xe1,0x0f,0x3e, 0xf8,0xad,0x1f,0xa7,0x58,0xf8,0x49,0x79,0x06,0x82,0xa6,0xc0,0x49,0xdd,0x53,0xbe, 0x1c,0x95,0xaa,0x23,0x9d,0x71,0x9c,0x0d,0x80,0xc4,0x55,0x07,0x52,0xf6,0xbc,0xd2, 0x2d,0xf1,0x24,0xbf,0xb8,0xf2,0x54,0x33,0xed,0x86,0x3e,0x79,0xd3,0x56,0xe8,0x26, 0x94,0xba,0x28,0x43,0x4b,0x92,0x07,0x89,0xeb,0x75,0x75,0xaf,0xc9,0x47,0xbe,0x7f, 0xe0,0xf0,0xc0,0xf9,0xdf,0x09,0xf4,0xbf,0x8f,0xfe,0xb7,0x8f,0xac,0x0d,0x45,0x7b, 0xfe,0xfd,0x2f,0xdf,0x74,0xb7,0xfb,0x55,0x2b,0x57,0x6f,0x88,0x75,0xc1,0x4d,0xa3, 0xe5,0x59,0x72,0x5d,0x80,0x18,0x4a,0xf5,0x88,0x74,0x60,0x2a,0x94,0x40,0x18,0xc2, 0x11,0x7c,0xa2,0x33,0x95,0xe7,0x3d,0x20,0x98,0xf6,0x9c,0xc4,0x39,0xea,0xd0,0xe2, 0x08,0x75,0xf2,0x8c,0x8c,0x27,0x1c,0xd7,0xc4,0xc9,0x00,0x33,0x87,0xa7,0x92,0x78, 0xa4,0xb1,0xdd,0x4b,0xf0,0xd1,0xd3,0xc6,0xb9,0xbc,0x9f,0x42,0x7b,0xa6,0xc0,0x3c, 0x63,0xa1,0xb1,0x75,0x81,0x76,0xa6,0x22,0xf4,0xea,0xa7,0xeb,0x1d,0x4a,0x99,0x63, 0x63,0x61,0x1a,0x48,0xce,0xfb,0x75,0x21,0xf5,0x20,0x8d,0x8d,0x66,0x06,0x28,0x1a, 0xe4,0xcb,0xa0,0x3b,0x79,0x32,0x57,0xf0,0xd5,0x71,0xe4,0x52,0x4e,0xb6,0x89,0x0e, 0x92,0x4f,0xba,0x13,0x6d,0x89,0x8e,0x76,0x69,0x43,0xe5,0x1e,0x54,0x4d,0x8d,0x75, 0x49,0x06,0x04,0x50,0x97,0xf9,0xb4,0x13,0x9a,0xca,0xe1,0xd1,0x5d,0x1e,0x7f,0x7f, 0xc9,0xb4,0xad,0xad,0xa5,0xaf,0x7b,0xfa,0x94,0x6b,0x1e,0x7d,0xec,0x7b,0x7d,0x7f, 0x79,0xfb,0x6d,0x3d,0xc1,0x73,0x6d,0x0c,0xff,0xc5,0xd7,0xad,0x7f,0x71,0xeb,0xc7, 0x6f,0x5d,0xba,0x78,0xf1,0xa6,0xd5,0xab,0x57,0x6d,0xfa,0xee,0x43,0xdf,0xbe,0xe3, 0xaf,0x3f,0xf1,0x89,0x5b,0x63,0x4b,0x75,0x93,0x4a,0xef,0xc5,0xa5,0x80,0xde,0x8a, 0x31,0x04,0xe5,0xd0,0x49,0x00,0x02,0x97,0x1e,0x14,0x42,0x4b,0x94,0xc2,0x38,0xeb, 0x25,0x82,0xb9,0x4f,0x03,0xa6,0xe2,0x04,0x57,0x97,0x86,0xc1,0x23,0x69,0xa3,0x9b, 0xe5,0xf0,0xd5,0x25,0x1d,0xca,0xa6,0x72,0xea,0xd1,0x05,0xea,0xe0,0xc0,0x4d,0xe7, 0x27,0xcd,0xda,0x36,0x9c,0x19,0x71,0x68,0x7e,0x3e,0x7a,0xd4,0xdf,0xeb,0xf1,0x66, 0xd1,0xe1,0x58,0x13,0x0c,0xc6,0xa2,0x51,0x00,0x98,0x16,0xfc,0x56,0xd1,0x96,0xd6, 0x17,0x37,0x2b,0x7d,0xb4,0xd2,0x91,0x49,0x5b,0xca,0x3a,0xb2,0x08,0x48,0x7c,0x4c, 0x2f,0xca,0x53,0x1e,0x09,0x28,0x23,0x03,0x80,0x2f,0x2f,0xa5,0x1e,0x74,0xa0,0xb3, 0x11,0xc9,0xef,0x27,0x26,0xea,0xac,0xae,0x06,0xe7,0xd9,0x40,0x9c,0x48,0xeb,0xf9, 0x3c,0xc8,0x94,0x36,0x51,0x1f,0x83,0x57,0x94,0x9f,0xee,0xbd,0xfa,0xaa,0x2b,0x6f, 0x7d,0xf2,0xb1,0x47,0x6f,0xbd,0xe8,0xc2,0x35,0x3e,0xfe,0xd1,0x7b,0xfb,0x2d,0x1f, 0xaf,0x1f,0x05,0x3d,0x3a,0x78,0x68,0xfd,0xfc,0x85,0xf3,0x7b,0x16,0x2f,0x5d,0xd1, 0xb4,0xb6,0x4f,0xbe,0xfe,0xe4,0xa9,0x93,0xeb,0xdb,0x3b,0x62,0xbe,0x39,0x71,0xac, 0x71,0x35,0x87,0x86,0x3a,0xe1,0xfc,0x6a,0x18,0x3f,0xb5,0xf2,0xb0,0xa4,0x3c,0x15, 0x8b,0x11,0x22,0x85,0x04,0x98,0x53,0x22,0x95,0xa3,0x04,0xc1,0xd5,0xa7,0xf3,0x08, 0x2a,0xaf,0x3e,0x8d,0xca,0x08,0xa9,0x54,0x2a,0xa2,0x5d,0xf6,0x7e,0xf5,0x99,0x47, 0x2b,0x9d,0x0f,0xd2,0x19,0xe6,0x62,0x57,0x09,0x5d,0xc9,0x9b,0x3a,0x63,0x21,0xaf, 0xef,0x07,0x4f,0x9d,0xea,0xa5,0x0b,0x41,0x58,0x65,0x23,0x83,0x80,0x96,0x4c,0x0b, 0x8e,0x85,0xf1,0x40,0xcf,0xdb,0xc3,0x8c,0x4e,0x0e,0x29,0x8d,0x0c,0xf0,0x06,0xe9, 0x08,0x72,0x26,0x3d,0x23,0x88,0xc7,0xd2,0xf2,0xd9,0xee,0x6c,0x5d,0x1d,0x39,0x41, 0x95,0xad,0x2e,0x9a,0xe9,0x8f,0x16,0x3c,0x79,0x2f,0x98,0xb0,0x21,0x59,0x8a,0xae, 0x21,0x8f,0xf2,0xd4,0x97,0x5c,0xe8,0xa8,0x53,0xa6,0x0e,0x3d,0x41,0x28,0x8f,0x8e, 0x7b,0x75,0x45,0xbe,0xc2,0xb3,0xb5,0x59,0xba,0x78,0xf9,0xba,0x45,0x4b,0x97,0xad, 0xbf,0xe4,0xa5,0x2f,0x6d,0xa2,0xf7,0xdf,0xf6,0x8e,0x9f,0xf9,0xd9,0xf2,0xc5,0xb0, 0xb6,0x1f,0xfb,0xe1,0xeb,0x3a,0x43,0xf9,0xa5,0xa1,0xff,0xc0,0x63,0x8f,0x3d,0x3e, 0xb0,0x6f,0xdf,0x9e,0x81,0x47,0x1f,0xf9,0xae,0xcf,0x9c,0x75,0x21,0x04,0x10,0x4d, 0x27,0x65,0xcf,0xc5,0xcc,0xd5,0x36,0x2c,0x2e,0xc5,0x88,0x94,0xf2,0xac,0x3c,0x1f, 0xe2,0xa8,0x27,0x08,0xa3,0x02,0xf5,0x12,0x50,0xaf,0x2e,0x1d,0x87,0x57,0x1a,0x4e, 0x4a,0x7e,0xea,0x12,0x1f,0x4e,0x06,0x40,0x5e,0x95,0x25,0x4d,0xbd,0x30,0xe9,0x6a, 0x9b,0x6b,0x80,0xe4,0xaf,0x5c,0xe2,0x28,0x78,0xa9,0x83,0x32,0x7a,0xa1,0x97,0xf8, 0x15,0xef,0x54,0xa1,0x9f,0xba,0xa4,0x43,0xd5,0xc3,0x87,0xe3,0x3e,0x69,0x9d,0xa5, 0x5f,0x77,0x36,0x40,0xbb,0x94,0x8f,0xcc,0x40,0xfb,0xa4,0x09,0x32,0x30,0x40,0xca, 0xe2,0xaa,0x3e,0x69,0xcb,0xb3,0x55,0xd2,0x76,0x2f,0xa9,0x4b,0xba,0x70,0xe5,0x95, 0x6b,0x9f,0x65,0xe3,0xbf,0x6b,0x18,0x98,0x31,0x73,0x66,0xff,0xd6,0xad,0x7d,0x6b, 0xfe,0xdd,0xcf,0xfc,0xec,0x25,0xbf,0xfa,0x2b,0xbf,0x32,0xf6,0x2b,0xff,0xf1,0x57, 0x46,0xaa,0x04,0xcf,0x83,0xe5,0xcb,0x97,0x97,0x67,0x01,0xe9,0x10,0x46,0x90,0xf2, 0xa1,0x4d,0x02,0x45,0x08,0xc0,0x70,0x69,0x7c,0xc6,0xb5,0x68,0x92,0x57,0xaf,0x3d, 0x81,0x09,0xae,0xb7,0xa5,0xc0,0x12,0x5a,0xd6,0x16,0xc0,0x9b,0x37,0xd9,0xeb,0x94, 0x6b,0x43,0x09,0x7c,0x41,0x1a,0x24,0x79,0x01,0xf4,0xd3,0x28,0x49,0x3b,0x79,0xc1, 0x35,0x4a,0xa5,0xcc,0x52,0x6d,0x57,0x17,0x52,0xe8,0xc2,0x4b,0x43,0x25,0x30,0x3e, 0xdc,0x34,0x2a,0x9a,0xee,0xb5,0xc1,0x43,0x3d,0x9a,0xea,0xe5,0x9d,0x97,0x24,0x6f, 0x3c,0xd1,0x93,0xf4,0x62,0x80,0x67,0xea,0x05,0x12,0x27,0x69,0xb2,0x93,0xf6,0x69, 0x93,0xec,0xfd,0x59,0x0e,0xcf,0x55,0x1b,0xe5,0xda,0xc3,0x21,0x3b,0xda,0xae,0x70, 0x24,0x38,0xea,0x95,0xb1,0x8d,0x32,0x6c,0x27,0x77,0x76,0xf6,0x75,0x75,0x74,0xdc, 0xf0,0xc4,0x33,0x4f,0x6f,0xfe,0xf8,0x9f,0x7e,0xac,0x33,0xea,0x7e,0x22,0x70,0x3f, 0xff,0xf6,0x77,0xfc,0xdb,0x81,0x17,0x0c,0x80,0xa3,0x47,0x8f,0x96,0x2f,0x84,0xa4, 0x41,0xd2,0xe8,0x98,0x24,0x83,0xc5,0x8b,0x16,0x97,0x1f,0x42,0x52,0xc4,0x1f,0x50, 0xf0,0x3a,0x96,0xc3,0x16,0x0f,0x48,0x94,0x2d,0x5b,0xb6,0xac,0x18,0xc6,0x03,0x12, 0x07,0x37,0x7e,0x6d,0xe3,0x47,0x98,0x0c,0x52,0xfe,0x3c,0xcb,0x0c,0x4f,0xeb,0xc2, 0x01,0xc1,0xc7,0x2f,0x58,0x0e,0x1c,0x3a,0x54,0xce,0xd9,0xf1,0x2d,0x91,0x1b,0x75, 0x79,0x45,0x07,0xe0,0x3b,0x1a,0xbc,0x38,0xde,0xdf,0x0c,0xb2,0xc8,0x23,0xa3,0xf7, 0xf4,0x9d,0xcf,0x93,0x0d,0x58,0x30,0x3a,0x15,0xf4,0x2a,0x98,0x53,0x3c,0x09,0x2d, 0x0f,0x91,0xac,0xe8,0x41,0x3a,0x0d,0x90,0x57,0x5b,0x4e,0xa0,0x2b,0x5c,0x75,0x74, 0x57,0x57,0xf2,0x51,0xdf,0x33,0xa3,0xa7,0x99,0x1f,0x34,0xdd,0xfb,0x74,0x6c,0x47, 0x57,0x67,0x79,0x09,0xc4,0xdf,0x2c,0xe0,0x18,0xef,0x08,0xe4,0x49,0xa6,0x7b,0xc7, 0xe4,0x0e,0x92,0xd0,0xc4,0x2f,0x03,0x14,0xc8,0x03,0xe5,0x70,0x3d,0xc1,0xcc,0x80, 0x76,0xef,0xcc,0xc4,0xaf,0x90,0xd8,0x8b,0xde,0xec,0x49,0x2e,0x49,0xbd,0xb3,0x0c, 0x3f,0x4f,0x83,0x9f,0x1d,0x25,0xed,0x45,0x0f,0x32,0x5a,0xe0,0x4e,0x99,0x3c,0x79, 0xf3,0x8e,0xff,0x93,0x6d,0xa0,0x87,0x41,0x71,0x29,0x1f,0x8a,0x64,0x00,0x10,0x74, 0x83,0xa0,0x00,0xa8,0xbd,0x5b,0x9a,0x3d,0x67,0x76,0xf9,0x6d,0x9c,0x05,0xa2,0x9e, 0x00,0xe6,0xce,0xf3,0xe7,0xd5,0xeb,0xbc,0xe4,0x8f,0x2f,0xab,0x3b,0x74,0xe8,0x60, 0x79,0xa9,0x82,0x72,0x33,0x67,0xcd,0x2c,0x4f,0xf4,0xfc,0x21,0x07,0x8e,0xa3,0xa0, 0x07,0x2f,0x60,0xe6,0xcc,0xfa,0x25,0x6e,0x82,0x53,0x80,0x61,0xf0,0xe1,0x00,0x72, 0xa8,0x2b,0xf2,0xc4,0x82,0xce,0x13,0x40,0xe5,0x0c,0x7f,0x22,0x0c,0xe4,0x5b,0x3c, 0xe8,0x31,0x9a,0x72,0x2f,0xa5,0xf8,0x45,0xaf,0x15,0xbf,0x32,0xa9,0xea,0x52,0x83, 0x2b,0x81,0xb1,0x24,0x3c,0x01,0x9c,0xe4,0x45,0x86,0xc4,0x75,0xf5,0x94,0x71,0xce, 0xdc,0x39,0x11,0xf4,0x55,0x6e,0xc1,0x6c,0x1f,0xb5,0x68,0xd1,0xa2,0x33,0xbd,0x94, 0xce,0x1c,0x66,0x44,0xe3,0x7c,0x72,0x70,0x3e,0xfb,0x94,0x20,0x1a,0xa7,0x8f,0xde, 0xe2,0xc5,0x8b,0x8b,0x63,0xe1,0x69,0x0b,0xb7,0x7e,0x10,0xcb,0xcf,0xd6,0x0f,0x97, 0xc7,0xd2,0x00,0x3d,0x27,0x79,0x02,0x04,0x5f,0xf5,0xc0,0x3d,0xba,0xe6,0x7f,0x74, 0x04,0x3d,0x40,0x2b,0x83,0x4d,0xa0,0x04,0xb3,0xfe,0xc3,0x47,0x8e,0x9c,0x77,0x1b, 0xd8,0xf6,0x3f,0xfe,0xe8,0xf7,0xd6,0xfe,0xf8,0xf5,0x3f,0xf6,0x96,0x37,0x5c,0xfb, 0xfa,0xab,0xbe,0xf0,0xc5,0x2f,0x7d,0x43,0xe1,0xcc,0x9e,0x59,0x1b,0x4f,0x9d,0x1e, 0x9b,0x56,0xcf,0xfe,0xad,0xee,0xeb,0xb0,0x5e,0xe7,0x7b,0xc4,0x45,0x70,0xfd,0xc3, 0xcc,0x7e,0x47,0xef,0xa7,0xdb,0x1e,0x81,0x1e,0x13,0x6d,0xd1,0xeb,0x38,0xda,0x9f, 0x69,0xf1,0x01,0x87,0x7d,0xfb,0xf6,0x96,0x87,0x28,0x0e,0x95,0x5c,0x67,0x87,0xd0, 0xbe,0xa3,0xc7,0xac,0x7b,0xf6,0xee,0x2b,0xef,0xd9,0xb7,0xc5,0xbe,0xd9,0x99,0x83, 0x2f,0x74,0x50,0x8e,0x41,0x26,0x3a,0x5d,0x62,0xb0,0x34,0x60,0xf9,0x53,0x30,0xcb, 0x97,0x95,0x1f,0x80,0x78,0x5b,0xd8,0x7e,0x57,0x9d,0x51,0x05,0x5f,0x01,0x88,0x37, 0xc3,0x70,0x22,0x03,0xa2,0xa9,0x6d,0xdd,0xd3,0xd7,0x05,0x54,0x3a,0x37,0x79,0x64, 0x2f,0x95,0x57,0x9f,0x01,0x60,0xc8,0x17,0xd0,0x64,0x44,0x03,0x5f,0xc7,0xcc,0x4e, 0x49,0x01,0xa7,0x0f,0x0f,0x0f,0x96,0x51,0x8e,0xfe,0x9e,0x3b,0xe0,0x47,0x26,0x41, 0xc9,0x31,0x7e,0x3a,0x8e,0x5e,0xd1,0x25,0x02,0x78,0x46,0xf7,0xf4,0x72,0x3a,0xa9, 0x73,0xb0,0xaf,0x72,0x6f,0x1f,0x6b,0x97,0xb2,0xb0,0x63,0x8e,0x18,0x6c,0x4d,0x06, 0x1d,0x0a,0x5d,0x2f,0xb8,0xd2,0x71,0x70,0xb0,0xfe,0x29,0x7b,0xf2,0x92,0x4d,0xdd, 0x44,0xbd,0xca,0x28,0x13,0xb3,0xc6,0xb4,0xa9,0x93,0xbf,0x18,0xeb,0xba,0xfe,0x3f, 0xfc,0xe0,0x07,0xd7,0xbf,0xf9,0xcd,0x3f,0xba,0xee,0x55,0xaf,0xbc,0x7a,0xc1,0x57, 0xbf,0xba,0xe9,0x89,0xd6,0x18,0x22,0x6e,0x5d,0x30,0x7f,0xce,0x86,0x97,0xbf,0xfc, 0x15,0x1b,0xb6,0x6d,0xdd,0xb9,0xe5,0x93,0x7f,0xf3,0x37,0x0f,0x85,0x9a,0xf3,0x19, 0x02,0x51,0x82,0x54,0xc3,0x9d,0x1d,0x8e,0x29,0x25,0xa1,0x0c,0x4f,0x5e,0xb9,0x68, 0x23,0x40,0xae,0x48,0x95,0x73,0x24,0xa0,0xbc,0xde,0xa8,0xdc,0xd0,0x25,0x92,0xf5, 0x1a,0xf8,0x14,0x23,0x28,0x3e,0x78,0xb8,0xaa,0x4b,0x05,0x92,0x1f,0x1a,0x52,0x34, 0x29,0x38,0x86,0xda,0xac,0x47,0x1b,0x5d,0xe5,0xda,0xe9,0x9d,0x8c,0x2e,0x8f,0x87, 0x94,0x46,0x4a,0x3e,0x7a,0x8d,0x72,0x32,0xb9,0x4f,0xf9,0xf1,0xc8,0x3a,0x49,0x00, 0x01,0x38,0x46,0x92,0xbc,0x87,0xa3,0x0d,0x59,0xf5,0x58,0x40,0x86,0x0c,0x24,0x57, 0xf7,0x02,0xa0,0xf4,0xc4,0x00,0x34,0x8c,0x35,0xd6,0x3e,0xea,0x25,0x36,0x22,0x5b, 0xa6,0xb4,0x15,0xbd,0x04,0x84,0xad,0x29,0x3a,0x0e,0x99,0x42,0x9c,0x68,0x53,0xa7, 0x04,0x76,0x4b,0x5b,0xa7,0x0e,0xe4,0x55,0x2e,0x2f,0xa9,0x0f,0x9a,0x3d,0x2f,0x7b, 0xd9,0xcb,0x36,0xfd,0xd7,0x8f,0x7c,0xe4,0xa1,0xb5,0x6b,0x5f,0xba,0x61,0xdd,0x6b, 0xaf,0xdd,0x70,0xed,0xeb,0xde,0x78,0xc7,0x97,0xee,0xfc,0xe2,0xba,0xa8,0x6b,0x59, 0xeb,0xbb,0x71,0xbe,0x8f,0x7f,0x60,0xff,0x81,0xde,0x9d,0x3b,0x77,0xad,0x75,0xf6, 0x4c,0x28,0xc6,0xa3,0x2c,0x21,0x11,0x23,0x98,0x32,0xe0,0x4a,0x20,0xaf,0x4f,0x1b, 0xca,0x7c,0x3c,0x61,0xfe,0xfc,0x3a,0x37,0xd6,0xf7,0xe8,0xab,0x11,0x3d,0x95,0x53, 0x6f,0x98,0xd4,0xc3,0x29,0x42,0x29,0x02,0x03,0x0a,0xe3,0x45,0xe1,0x9c,0x4a,0xd2, 0x08,0x1c,0x05,0xf0,0x56,0x86,0x9e,0x2b,0xde,0x3e,0x64,0xc1,0xa8,0x4b,0x97,0x2e, 0x2d,0x3c,0x18,0xcb,0x5c,0xac,0x0e,0x3e,0xfa,0xda,0x67,0xe0,0x00,0x57,0xdb,0x40, 0x00,0x27,0x1d,0x05,0xe0,0x32,0x1c,0x59,0xd4,0xa1,0xa3,0x2c,0xe9,0x4d,0xe4,0x9f, 0xe5,0xee,0x05,0x21,0x7d,0x04,0x01,0x50,0xee,0x3d,0x05,0x74,0x95,0xa9,0xd3,0x86, 0xac,0x49,0x43,0xde,0xa8,0x22,0x68,0xf0,0xd4,0x26,0x93,0x80,0x66,0x2b,0x6f,0xee, 0xb2,0x3d,0x9d,0x8c,0x6a,0xb1,0x3b,0x2b,0x8e,0xf7,0xee,0xa2,0xc4,0xd6,0xda,0xd3, 0x21,0xf5,0x23,0x3b,0x7d,0x5d,0x01,0x7e,0x64,0x97,0x82,0x67,0x4f,0x4c,0x97,0x6b, 0xa7,0x4f,0x9f,0xde,0xe3,0x0f,0x5c,0xae,0x59,0x73,0x51,0xd8,0x6e,0x79,0xaf,0x77, 0x02,0xef,0x39,0x3e,0x32,0xda,0xf3,0xdc,0xd6,0x1d,0x4f,0xf4,0xef,0xde,0xf3,0xa6, 0x29,0x53,0xa6,0xdd,0xfc,0xd5,0xaf,0x7e,0xe5,0x2d,0x31,0xcc,0x3b,0x31,0x3a,0x43, 0x9c,0x70,0x79,0x55,0x46,0x11,0x43,0x10,0x87,0x53,0xd6,0x51,0xb1,0xde,0xe1,0x9b, 0xb9,0x39,0xf4,0x9a,0xc3,0x04,0x83,0x21,0x8e,0xa2,0x7a,0xa4,0x00,0xd0,0xc6,0xa2, 0xcf,0x83,0x0e,0x67,0xd5,0x16,0x93,0x47,0x87,0x8f,0x96,0x3f,0xf9,0x46,0x78,0x82, 0xbb,0xa2,0x9b,0x0e,0x42,0x0f,0xef,0x94,0x69,0xde,0x3c,0x2f,0x7b,0xb6,0x9e,0xe9, 0x71,0x0c,0x47,0x26,0x53,0xc8,0xb8,0xc2,0xe5,0x2a,0xb0,0x5c,0x73,0x0d,0x90,0x5b, 0x54,0xa0,0x1d,0x83,0x01,0x34,0xb5,0xc9,0x3c,0xbe,0xf0,0x5c,0xd1,0x25,0x8f,0xf6, 0x59,0xae,0x57,0x0b,0x7e,0xf7,0x16,0x98,0x1e,0xbb,0x0a,0x86,0x2a,0xd3,0xd1,0x82, 0x23,0x29,0xcb,0xb9,0x1d,0x3f,0xd0,0x3d,0xad,0xbb,0xb4,0x3f,0x70,0x70,0xff,0x78, 0x6f,0x3d,0xbb,0x35,0xc4,0x03,0xc8,0x93,0x47,0xfd,0x68,0x04,0x82,0xbf,0x90,0xe6, 0xc3,0x58,0x8e,0xb4,0x87,0x42,0x97,0xa0,0x5e,0x74,0xab,0x23,0xe5,0xd9,0x1d,0x00, 0x1e,0xec,0xa4,0x7d,0xca,0x1d,0x53,0x62,0x5f,0x5b,0x6b,0xcb,0x07,0x5e,0xf6,0xb2, 0x97,0xfe,0xc9,0xf6,0xed,0x3b,0x87,0xf7,0xef,0xdf,0xb7,0x35,0xfc,0x7b,0xe7,0xe4, 0xc9,0x5d,0xff,0xb3,0x76,0x87,0xe7,0x41,0x6f,0xef,0xca,0x9b,0x46,0x46,0x8e,0x6f, 0x20,0xd8,0x44,0xa1,0x08,0xc3,0x38,0x69,0x2c,0x2b,0x6c,0x73,0x18,0xc7,0xea,0xe5, 0x94,0xf5,0xf6,0x8d,0x48,0xe5,0x90,0x8b,0x2e,0xba,0xa8,0xbc,0x8b,0xef,0x2c,0xbe, 0xfe,0xb4,0xac,0xce,0x89,0x04,0xc4,0xd8,0xa2,0x6a,0xf1,0xe2,0x25,0xe5,0xbe,0xac, 0x76,0x0d,0x6d,0xe3,0x0e,0x21,0x38,0xe7,0xa2,0x43,0x06,0x00,0x8f,0x52,0xe6,0xd9, 0xe5,0xb1,0x06,0xf0,0xa4,0x0e,0x6f,0x38,0xe4,0xb1,0x4a,0x36,0x32,0x64,0x6f,0x24, 0xa7,0x11,0x42,0x40,0x5a,0x89,0x03,0xa4,0xac,0x61,0xaa,0x61,0xea,0x5f,0x29,0xa7, 0x5f,0x1a,0x8d,0x01,0xb3,0xe7,0xe0,0xa5,0x17,0xaa,0x33,0x1f,0x57,0x3c,0x8b,0xab, 0xae,0xa2,0xaf,0x7b,0x8e,0x45,0xdf,0xa1,0x53,0x8e,0x44,0xf9,0xa9,0x58,0x3c,0xec, 0x0a,0xc8,0xf0,0xc4,0x13,0x4f,0x94,0x32,0xb2,0xce,0x9d,0x33,0xb7,0xe8,0xbf,0x73, 0x77,0xfd,0xf9,0x98,0xd3,0x49,0xb6,0x49,0x39,0xe4,0xc9,0x4e,0x1f,0x1d,0x65,0xdb, 0xd6,0xbe,0x32,0x2a,0x18,0x1d,0x4d,0x6d,0xf0,0x3c,0x20,0x62,0x5f,0x23,0x84,0x8f, 0x52,0x7a,0xfe,0xa0,0x0d,0xd9,0x73,0x8a,0xc2,0x8b,0x0c,0x31,0x85,0x6c,0xde,0xbb, 0x77,0xcf,0x3f,0xfd,0xa7,0x61,0xde,0x89,0x37,0xbc,0x5b,0x68,0x04,0xbd,0x10,0xd0, 0xf0,0x54,0xe7,0xf4,0x04,0xca,0x58,0x50,0x79,0xe2,0x86,0xcc,0xbe,0x7d,0x07,0x42, 0x30,0x2f,0x94,0x2e,0x0f,0x07,0x99,0x9b,0x3d,0xaf,0xa6,0x18,0x9c,0xba,0x48,0x13, 0x40,0xda,0x51,0xc0,0xbb,0x76,0x2b,0x57,0xaf,0x2c,0x3f,0xaf,0xee,0xdf,0xbb,0xbb, 0x69,0xef,0x9c,0x54,0xde,0xe4,0x61,0x00,0x4a,0x48,0xd9,0x23,0x81,0x36,0x09,0x16, 0x5b,0x9c,0x03,0xd7,0x50,0xea,0xea,0xe3,0xd2,0x31,0x71,0x44,0x50,0x19,0xc2,0xf5, 0x84,0xfa,0x30,0x87,0xcc,0x9c,0x89,0xbf,0xab,0xde,0xc2,0x50,0x45,0x86,0x09,0x0e, 0x56,0x27,0x3f,0x11,0x1f,0x0e,0xc7,0xcb,0x0b,0x0c,0x27,0xa0,0xb6,0xae,0xfe,0xf6, 0x50,0x48,0xd4,0xec,0xd8,0xb1,0xad,0x0c,0xf1,0xd5,0x69,0xde,0x8c,0x3a,0x1e,0x9d, 0x60,0x7a,0x91,0x89,0xfc,0xe8,0xeb,0xa5,0x1c,0x87,0x16,0x3a,0xe6,0x7e,0x3f,0x39, 0x3b,0x38,0x70,0x28,0x68,0x98,0xea,0xea,0x94,0xc0,0x51,0x78,0xb5,0xb7,0x45,0x3b, 0x0f,0x7f,0x62,0x51,0x3d,0x3a,0x72,0xbc,0xe9,0x0a,0x5d,0xdb,0x62,0x4a,0x6e,0x8f, 0xeb,0xf1,0xe8,0x20,0xb1,0x7a,0x29,0x5f,0x29,0x49,0x99,0xd8,0xd9,0x11,0x34,0xfa, 0x19,0xb4,0x74,0xc0,0x1f,0x90,0x6d,0xa2,0xdf,0x9e,0x0f,0xad,0x7f,0x7e,0xcb,0x9f, 0x74,0xbf,0xef,0x37,0xdf,0xb3,0x76,0xc3,0x1f,0xfd,0x61,0xf9,0x40,0x34,0x38,0x39, 0x3a,0xda,0x43,0xa0,0x54,0x02,0x33,0x44,0x94,0x65,0x94,0xc9,0x63,0xe8,0x2a,0xd2, 0x38,0xd6,0x1c,0x4e,0x61,0x0a,0x11,0x28,0x85,0x60,0xd8,0x14,0x0e,0x30,0x90,0x39, 0x0e,0x5d,0x43,0x36,0x1a,0xf2,0xae,0x52,0x06,0x89,0xf6,0xda,0x25,0xa8,0x03,0x7a, 0x9c,0x7a,0xbc,0xb4,0x23,0xd3,0x8c,0x18,0x66,0xf1,0xb1,0xdb,0xd0,0x86,0xbc,0xe9, 0x4c,0xed,0x52,0xe6,0xbc,0x6a,0xe3,0x8a,0x0e,0x7e,0xca,0xe1,0x27,0xef,0x4c,0xee, 0xe1,0x55,0x7a,0x9d,0x65,0xc5,0x0f,0xc8,0x4d,0xcf,0xe2,0xb4,0x71,0xbd,0x72,0x88, 0xcf,0xfd,0x3c,0x67,0xc3,0x31,0xfd,0x4c,0xe4,0x9d,0x5b,0x37,0xb4,0x8d,0x56,0xe4, 0xa6,0x8b,0x91,0x42,0x3b,0x38,0x3a,0x83,0xb6,0x6c,0xea,0x94,0x15,0xfe,0x9c,0x18, 0x39,0xba,0x63,0xf7,0x00,0xc7,0x94,0x4b,0x37,0x01,0x68,0x3a,0x61,0x53,0xb6,0xc8, 0x51,0x1a,0x0d,0xe0,0x0c,0x26,0xe5,0x3a,0x1f,0xb4,0xbd,0xee,0xb5,0xaf,0xfc,0xcf, 0x31,0x27,0x7d,0x78,0x46,0xcf,0xac,0x77,0xdf,0xf4,0xae,0xff,0xd0,0x7b,0xd9,0xa5, 0x2f,0x5e,0xf7,0xe0,0x37,0x1f,0x78,0x8f,0xbf,0x86,0x45,0x60,0x40,0x50,0x4c,0xdd, 0x23,0x8e,0xb1,0x2b,0xa3,0x20,0x9e,0x11,0x2e,0xda,0x08,0xc3,0x20,0x86,0x6f,0x42, 0x11,0xb0,0xf6,0x9e,0xb3,0xa7,0x64,0xca,0xad,0x0f,0xb4,0x81,0x4f,0x79,0x43,0xb1, 0xbc,0xe1,0x99,0x51,0x28,0x92,0x0e,0x10,0x60,0x20,0x9d,0x9d,0x4a,0xc2,0x3f,0x63, 0xe8,0x18,0x96,0xfd,0x6c,0xdc,0x56,0x53,0x5d,0xc5,0xaf,0xc3,0x20,0x7c,0x4e,0x48, 0x19,0x8c,0x02,0xa9,0x03,0x99,0x6b,0x0f,0xae,0x01,0xa8,0x5c,0xd2,0x26,0xf5,0x27, 0x87,0x7b,0xcf,0x12,0x0c,0xf3,0x70,0xd1,0xe5,0x04,0x0e,0xb1,0xb8,0xe5,0xc4,0xb4, 0x81,0x72,0xf3,0x3e,0xbd,0x94,0x1b,0xa6,0x53,0x1f,0x60,0xda,0xca,0xfb,0x94,0x83, 0x9e,0x1c,0xee,0x77,0x06,0xfe,0x24,0xcd,0x9c,0xb0,0x8f,0x6f,0x0e,0xec,0x8b,0x29, 0xa6,0x3c,0xc2,0x8e,0x51,0xd4,0x6f,0x22,0xd1,0x9e,0xe6,0x83,0x55,0xd3,0xa6,0x16, 0xbb,0xfb,0x44,0x8e,0xb6,0x80,0x5c,0x80,0x1e,0x6c,0x8e,0xb6,0x27,0x9b,0xed,0x1d, 0x6d,0x5d,0x97,0x5e,0xfa,0xe2,0x07,0xb6,0x6f,0xdf,0xd1,0x77,0xeb,0xad,0xb7,0xdc, 0xb4,0xfe,0xc6,0xb7,0xff,0xd4,0xbf,0xf9,0xd7,0xff,0x66,0xe1,0x27,0x3e,0xf1,0xd7, 0x9b,0x5b,0x3e,0x74,0xf3,0x7b,0x46,0x5f,0x7e,0xd5,0xd5,0x93,0xbc,0x13,0xd8,0xb4, 0x74,0x36,0x1b,0xef,0xf8,0x74,0xf3,0xc7,0x1f,0xd9,0xd0,0x1c,0x1e,0x37,0x18,0x22, 0xae,0x16,0x4f,0x18,0x73,0x6c,0x21,0x1c,0x40,0x70,0x75,0x94,0xa6,0x8c,0x24,0x28, 0x28,0xc2,0x89,0x04,0x4b,0xa3,0x30,0x26,0xc1,0x04,0x87,0x72,0x2f,0x71,0x96,0xdf, 0xd8,0x05,0xa4,0xa1,0x0d,0xdd,0x68,0x6b,0xc3,0x40,0x68,0xcb,0xa3,0x07,0x87,0x52, 0x75,0x44,0xaa,0x73,0x75,0xf2,0xd2,0xc6,0x1f,0x6e,0xb2,0xd6,0x68,0xf5,0x0c,0x7c, 0xdc,0xe9,0x5e,0xe9,0xaa,0x5b,0xa7,0x2a,0x63,0xea,0x21,0xc8,0xd0,0x75,0x8f,0xae, 0xa4,0x9e,0x3e,0x92,0xba,0x4c,0xf8,0x91,0x1b,0x3d,0x0f,0xc3,0xd0,0x56,0x96,0xf8, 0x64,0x06,0xea,0xd1,0x21,0x8b,0x72,0x78,0xda,0xa7,0x1d,0xd2,0x06,0xda,0x66,0x87, 0x90,0x12,0x5f,0x3d,0x3e,0xfe,0xec,0x5c,0xda,0x48,0xf0,0x54,0x47,0xd6,0xe0,0x84, 0xe7,0x0a,0x4c,0xcb,0xf4,0x75,0x56,0xa3,0x0c,0x1d,0xf4,0xb4,0x61,0x17,0x1d,0x03, 0x90,0xcb,0x03,0xbd,0x9f,0xf8,0x89,0x9f,0x68,0x5e,0xfb,0xda,0x6b,0x06,0x56,0xac, 0x58,0x19,0xa3,0xd8,0xcc,0x9e,0x98,0xb2,0xee,0x8e,0xf5,0xc9,0x35,0x6d,0xd7,0x5d, 0xfb,0x9a,0xc9,0xed,0x9d,0x5d,0xaf,0x69,0x9d,0x34,0xb9,0xd9,0x7f,0xe8,0x70,0xdf, 0x93,0x4f,0x3c,0x31,0xf0,0xdd,0xef,0x7e,0xb7,0xc7,0xc1,0x0e,0xc2,0x04,0x49,0x21, 0x33,0x9f,0x0c,0x93,0x29,0xe1,0xe5,0x01,0x1c,0x8a,0x2b,0x9b,0x88,0xcf,0x20,0xd9, 0x26,0x0d,0x65,0x5d,0xe1,0x5a,0x1e,0xd5,0x16,0x7c,0x46,0xac,0x4e,0x48,0x63,0x29, 0xb7,0xc2,0x2e,0x73,0xf7,0x78,0x3b,0x90,0x06,0x64,0x60,0xef,0xfd,0x3b,0x0c,0xc1, 0xd7,0xc1,0x52,0x1a,0x56,0x90,0x29,0x23,0x07,0x7a,0x8e,0xaa,0x35,0x9f,0x48,0x23, 0x79,0xb9,0x2a,0x97,0xf0,0xac,0x32,0xd6,0x69,0x48,0x82,0x1b,0x2d,0x0b,0x3d,0x09, 0x9e,0x32,0x72,0x31,0x3a,0x1c,0xe5,0xae,0x8c,0xae,0x77,0x92,0x2d,0xcb,0x01,0x7d, 0x92,0x37,0x70,0x5f,0xe9,0xd6,0x7c,0xa5,0x5d,0x47,0x40,0x09,0x5d,0x90,0x6b,0x28, 0x7a,0xa0,0x5d,0xed,0x5d,0xcf,0xf9,0xd9,0x8e,0x7d,0x93,0x47,0xca,0x9e,0x74,0x3d, 0xbd,0xa5,0x5b,0x6c,0xfb,0x06,0xba,0xa7,0xcd,0x1c,0x68,0x6b,0x69,0x5f,0xe0,0xc7, 0x35,0x11,0x38,0x3d,0xff,0xfe,0x17,0x7e,0xe9,0x81,0xb6,0x2f,0x6d,0xfa,0xda,0x5d, 0xd7,0x5d,0xfb,0x86,0xad,0xfb,0xf7,0xec,0x79,0xb8,0x7f,0xc7,0xf6,0x1b,0x7f,0xe5, 0xd7,0x7e,0xf5,0x0f,0x62,0x78,0x5e,0x17,0x73,0x4e,0x2f,0x02,0x08,0xa5,0xf3,0x45, 0x9b,0x7c,0x32,0x29,0x0b,0x9a,0x88,0x34,0x43,0x9d,0x1d,0x00,0x50,0x47,0xc8,0x0c, 0x12,0x78,0xea,0x0c,0xfb,0xea,0xd0,0xa3,0x58,0x35,0x16,0xa3,0xd7,0x43,0x11,0x38, 0xd9,0x33,0xf5,0x6a,0xf7,0xf0,0xab,0xf3,0x0d,0x71,0xbe,0x37,0x18,0x23,0x41,0xe8, 0x25,0xc2,0x0d,0x93,0x8c,0x1c,0x12,0x16,0x3a,0x7e,0xca,0xe5,0xaf,0x74,0x94,0x3f, 0x2a,0x15,0x81,0x24,0x98,0xac,0xd6,0xeb,0xaf,0x86,0xa3,0x27,0xc7,0x62,0xcb,0x6b, 0x5f,0x1e,0xf5,0x92,0x0b,0x0d,0x41,0x99,0xc6,0x22,0x33,0x38,0x6b,0x3c,0x41,0x2c, 0x98,0x4f,0x15,0x9a,0x76,0x3c,0x29,0x53,0xea,0xc1,0x16,0x76,0x24,0x7e,0x53,0xe8, 0x68,0xdb,0x7b,0x85,0x46,0x1d,0x60,0x55,0x0e,0xe8,0x03,0xaf,0x3a,0xf7,0xac,0x93, 0x00,0x1a,0xd5,0xae,0x75,0x5a,0xab,0x74,0x05,0x8c,0x0e,0x67,0x5d,0x24,0xf8,0x6a, 0x60,0xa6,0x4d,0xb5,0x21,0x37,0xbd,0xd5,0x03,0xe5,0xd5,0x56,0xf5,0xb9,0x85,0x64, 0xe4,0xf0,0xf5,0xb4,0xf2,0xf7,0x91,0x23,0x58,0xb6,0x6d,0xdd,0xf6,0xeb,0x7f,0xfa, 0xb1,0x8f,0xbe,0xf5,0x45,0x17,0xae,0xd8,0xba,0x73,0xcb,0x96,0x87,0x0f,0xee,0xdf, 0xfb,0xc9,0x57,0xaf,0x7b,0xcd,0xc6,0x1a,0x26,0xcf,0x83,0x0b,0x2f,0xbc,0xf0,0xa6, 0x08,0x80,0x0d,0xe6,0x6f,0x91,0xc9,0x28,0x7e,0x80,0x49,0xa8,0x8c,0x60,0x4e,0x5a, 0xbd,0x7a,0x75,0x61,0x94,0x3d,0x0c,0x63,0x8b,0x16,0x5b,0x23,0xf7,0xea,0x18,0xcd, 0x8f,0x11,0xfd,0x88,0x22,0xa7,0x0f,0xc2,0xd6,0xde,0x55,0x87,0xb4,0x8b,0x2f,0xbe, 0x28,0xca,0xfc,0xbe,0xee,0x99,0x12,0x1c,0xf5,0x07,0x97,0x73,0x9b,0xe7,0x9e,0x7b, 0x2e,0x7a,0xb7,0xf7,0xf2,0xea,0x3b,0x7c,0xf9,0xb3,0xb0,0x65,0x51,0x5f,0xbe,0xdc, 0xf1,0xd4,0x53,0x61,0x18,0xc1,0xd1,0xd2,0xcc,0x08,0x27,0x95,0x2d,0x5f,0x38,0xc0, 0x1f,0x47,0x20,0x93,0x6f,0x02,0x31,0x18,0x9a,0xfe,0xc6,0xa0,0xbf,0xe5,0xe3,0xc3, 0x11,0x8e,0x71,0x41,0x3a,0x86,0x4c,0xe9,0x1c,0xa0,0x8d,0x9e,0x83,0x06,0x39,0x24, 0x34,0x94,0xb3,0xc7,0xf6,0xed,0xfe,0x38,0x95,0xbf,0x30,0x3e,0xbb,0x1c,0xc8,0xd0, 0xc7,0xbd,0x2d,0x9f,0xc5,0xa1,0x0f,0x56,0x25,0x3e,0x3b,0xa0,0x8f,0x97,0x2b,0x9a, 0xae,0x59,0x07,0xd8,0x80,0x83,0x75,0x26,0x75,0x74,0x55,0x2f,0xb9,0x07,0xe4,0xc3, 0x47,0x1b,0xe5,0xe8,0x25,0x4d,0xed,0x41,0x06,0x49,0xe6,0x05,0xf9,0xa9,0xb8,0xc6, 0x6e,0x6e,0x73,0x4c,0xdf,0xd7,0x7c,0xef,0xc9,0x27,0xea,0x43,0x97,0x09,0x50,0x25, 0x78,0x1e,0x70,0x6e,0x3a,0x1e,0x63,0x42,0x23,0x2c,0xa5,0xe0,0x29,0xa0,0x7d,0xa9, 0x07,0x32,0x0e,0x80,0x38,0x9e,0x11,0xf4,0x76,0x38,0x14,0x72,0x0f,0x18,0x88,0x51, 0xd0,0x4a,0x45,0x2c,0xaa,0x16,0x2f,0x5e,0x18,0x0a,0x9b,0xeb,0x0c,0x7b,0xf5,0xa1, 0x46,0x0d,0x90,0xb1,0xb2,0xe0,0xa1,0x88,0x04,0xc8,0x82,0xa6,0x5e,0x87,0x37,0x39, 0xf5,0x06,0x0b,0x2e,0x8b,0x26,0xc3,0x66,0x06,0x64,0x35,0xa4,0x91,0x46,0xaf,0x6a, 0xca,0xc7,0x26,0xf5,0x4e,0xc7,0xaa,0x69,0x34,0x06,0x4c,0x1d,0xdd,0x67,0x1e,0x7f, 0xbd,0x0b,0x6d,0xab,0x7e,0xf4,0x2c,0xdc,0x38,0x1e,0x0f,0x0b,0x56,0x6d,0xc9,0x82, 0x9f,0xf3,0x08,0x0b,0x3d,0xb6,0x30,0x1a,0xa2,0xaf,0x9e,0x8c,0xe8,0x71,0x44,0xf2, 0xc2,0xc7,0x3d,0x1c,0x7a,0xa9,0x07,0xa9,0x77,0x3a,0x4e,0xdb,0xb4,0x03,0x80,0x97, 0xf4,0xc8,0x83,0x6f,0xb6,0xaf,0xba,0xd6,0xbf,0x16,0xa2,0x2c,0xed,0x2b,0xef,0x93, 0xf8,0x7e,0xec,0x7c,0x3e,0xe7,0x83,0xf3,0x06,0x40,0x0c,0x1b,0x97,0x23,0x42,0x58, 0xc4,0x53,0x18,0x8c,0x53,0x38,0xe5,0x92,0x72,0x8e,0xcd,0x7c,0x2a,0x2a,0xaf,0xf7, 0x33,0x88,0x43,0x98,0xdc,0xba,0xa9,0x83,0x0b,0xf4,0x20,0x3c,0x8c,0x1a,0x45,0x99, 0x68,0x33,0x16,0x23,0x81,0xaf,0x7d,0x0c,0x1e,0x3e,0x52,0xfe,0x4a,0x67,0x1a,0xab, 0xd2,0xad,0x7f,0x21,0x1b,0xfe,0x44,0xc5,0x05,0x97,0x6f,0x07,0x70,0x52,0x7b,0x0c, 0xbd,0x02,0x23,0x1d,0x80,0x6e,0x09,0xca,0xd8,0x31,0x18,0x85,0xf0,0x03,0x64,0x4e, 0x83,0xa5,0x61,0x53,0x3e,0xf7,0x5e,0x26,0xc1,0x0b,0x1d,0x74,0xe1,0x02,0x3d,0x5c, 0x00,0xa8,0x13,0x00,0x76,0x17,0x49,0x47,0x9d,0xb6,0xb3,0x66,0x79,0x70,0x23,0xd8, 0x9d,0xf5,0x0b,0xba,0xfa,0xc5,0x10,0x09,0x7d,0x76,0x04,0x74,0x4b,0x5b,0x29,0x93, 0xb4,0xcf,0xc0,0x4e,0xdd,0xd3,0xb6,0x82,0x44,0xa2,0x83,0x4e,0x96,0xba,0x68,0x47, 0x4e,0x6d,0xe0,0x26,0x2d,0x7f,0x25,0xf4,0x78,0x8c,0x9e,0xc7,0x47,0x47,0x5b,0x5f, 0xf6,0x92,0x97,0x9e,0xf7,0xc9,0x6f,0xeb,0x1f,0x7f,0xe0,0x7d,0xeb,0x3f,0xfd,0x97, 0xb7,0x6e,0xfa,0xea,0x17,0x3f,0xb7,0xe9,0x3b,0x0f,0x3e,0xb0,0xe9,0x93,0x9f,0xf8, 0xeb,0x4d,0x93,0x26,0x75,0xac,0xa7,0x14,0xa6,0x08,0x12,0x12,0xb3,0x14,0x42,0x59, 0x1a,0x2c,0x19,0xe7,0x96,0x0c,0xa8,0xa7,0x88,0xde,0x93,0x79,0x75,0xda,0x02,0xb4, 0xcc,0x9b,0x8c,0xa8,0xe7,0x70,0x22,0x3c,0x8f,0x59,0xf1,0x50,0x6f,0xba,0xf0,0xad, 0x1f,0x7f,0x0d,0xdc,0x3d,0x19,0xba,0x03,0xdf,0x2f,0x78,0xfd,0x52,0x87,0x31,0xb5, 0x91,0x04,0x80,0xe9,0x0a,0x1f,0x47,0x6c,0xb9,0xcd,0x4b,0xbe,0xd6,0x18,0xe5,0x2b, 0x59,0x11,0x90,0x0e,0xa0,0xf2,0x7d,0x3f,0x00,0x07,0x2e,0xbe,0x79,0x4f,0xa7,0x28, 0x2a,0x7c,0xe9,0x58,0x03,0x9c,0xc3,0xaa,0x81,0x95,0xe7,0xfb,0x7f,0x64,0xe7,0x30, 0x78,0x95,0x96,0xbf,0x00,0x52,0x47,0x40,0xb8,0x65,0x7d,0x12,0x75,0x70,0x38,0x8d, 0x53,0x5d,0xc9,0xa5,0x3c,0x79,0xc0,0x97,0xdc,0xb3,0x3d,0x9d,0x94,0x57,0x59,0xea, 0x19,0x8a,0xfb,0xd4,0x9b,0xbc,0xf8,0x65,0xfb,0x4a,0x43,0x47,0xcd,0x85,0x75,0xd8, 0x20,0xf4,0x09,0x0b,0xd1,0xf9,0xb2,0xd7,0x5d,0xfb,0xba,0x70,0xf1,0xe7,0x37,0x7d, 0xf6,0x7f,0xfd,0xaf,0x4d,0x5f,0xfe,0xbb,0xbf,0xdf,0xf4,0xb9,0x8d,0x9f,0xd9,0xf4, 0xb7,0x9f,0xf8,0xeb,0x75,0xad,0xc3,0x83,0x47,0x6e,0x9d,0x3a,0x65,0xf2,0xba,0x85, 0x8b,0x97,0xad,0x9b,0xbb,0x60,0xc9,0xba,0xd8,0xfe,0xad,0x0b,0xba,0x85,0x00,0x20, 0x38,0x40,0xd8,0xb7,0xf2,0xcd,0x8d,0xe5,0x5d,0xbb,0xd8,0x86,0x60,0xe8,0xd0,0xc3, 0x3c,0xe8,0x5c,0x5c,0x8f,0xdf,0xb6,0xcd,0xd1,0xef,0x50,0x0c,0xcb,0xf6,0xc2,0x0e, 0x2b,0x9c,0x0d,0xf8,0x7b,0xbb,0x4b,0xca,0xd1,0x66,0x2a,0xd9,0x33,0xbd,0xa7,0x39, 0x36,0x7c,0xb4,0x19,0xf2,0xc5,0xcf,0x98,0xdb,0x25,0x7f,0x2d,0xcc,0x9b,0xc8,0xe5, 0x6d,0xe4,0x18,0xba,0xfd,0x8d,0x00,0xc3,0x7b,0x67,0x18,0xdb,0xc7,0x21,0xe4,0xe1, 0x08,0x0c,0x8b,0x3b,0xdb,0xa3,0x33,0x0b,0x53,0x3b,0x89,0xd0,0xd8,0xc7,0x1b,0x45, 0x81,0x13,0x36,0xce,0x30,0x02,0x95,0xa9,0x24,0x7a,0x84,0x2f,0x8a,0x2f,0x5a,0xb4, 0x30,0x46,0x9e,0x59,0x45,0x8e,0x34,0xae,0x2b,0x63,0xa6,0x81,0xab,0xbe,0x8c,0x6f, 0x58,0x36,0x54,0xd7,0x5d,0x88,0xc5,0x19,0xbe,0xca,0xfd,0x2d,0xe3,0xf6,0xb6,0x08, 0xd8,0x93,0xb1,0x90,0x1b,0x15,0x88,0x96,0x53,0xa6,0xb5,0xfa,0x94,0xd4,0xf7,0xf8, 0xe0,0x59,0x78,0x76,0x74,0xd4,0x37,0x78,0xe8,0x9d,0x0e,0x04,0x78,0x02,0x41,0xc1, 0xc1,0xe4,0x20,0x83,0x00,0xd0,0x83,0x73,0x98,0x07,0x70,0x95,0x65,0xa0,0x28,0x57, 0x9f,0xa3,0x6f,0x71,0x78,0xac,0xab,0x8c,0x5c,0x7c,0xe4,0xeb,0xa0,0xfe,0x6c,0x8d, 0x3f,0xdc,0x31,0x39,0x16,0xc3,0xb1,0x15,0xfc,0x81,0xb1,0x96,0x96,0x75,0x0b,0x16, 0x2d,0x59,0xf7,0x92,0x2b,0xaf,0x5c,0xf7,0xaa,0xd7,0xbe,0x76,0xdd,0xab,0x5f,0xfb, 0xda,0xde,0xd6,0xae,0xa9,0xdd,0x77,0x6f,0xdf,0xbe,0x73,0xe0,0xbe,0x7b,0xef,0x6d, 0xbe,0xf5,0xe0,0x83,0x77,0x3f,0xf7,0xcc,0xb3,0x77,0x0f,0x0f,0x1d,0x29,0x4c,0x32, 0xea,0x30,0x4e,0xa1,0x73,0x28,0x54,0xaf,0xcc,0xf0,0x68,0xee,0x77,0xe6,0xef,0x8d, 0x1c,0x43,0x7d,0xce,0xcb,0xd6,0x05,0xe6,0x4d,0x43,0xaf,0x24,0xea,0x8d,0x14,0x92, 0x93,0x2e,0x4f,0xb3,0xd0,0xa9,0xc2,0x8b,0xf2,0x7a,0x4e,0x00,0x18,0x4b,0xaf,0x16, 0xc6,0xda,0x59,0xf4,0x69,0x97,0x0f,0x55,0x18,0x44,0xca,0x91,0x0a,0x9d,0x34,0x28, 0x43,0x6a,0x5f,0x7e,0xcb,0x1f,0xc3,0x35,0x19,0x24,0xf2,0x98,0xa7,0x05,0xab,0xa0, 0x48,0xd0,0x8e,0x0c,0x00,0x9d,0x1c,0x91,0xf2,0x9e,0x4c,0x12,0x3b,0x24,0x8f,0xfc, 0xc5,0x94,0xdf,0x14,0x48,0xf2,0x9c,0x92,0xf2,0xc0,0xd5,0x26,0xa7,0x23,0x65,0xe8, 0x4e,0x74,0xb0,0x36,0xf2,0x69,0x63,0xf5,0xae,0xee,0xc9,0x8f,0xb7,0x94,0xfa,0x18, 0x39,0xd2,0x27,0xee,0x25,0x3c,0xdd,0xa7,0xdc,0xf8,0x00,0xf2,0x67,0x60,0xa3,0xf9, 0xf8,0xe3,0x8f,0xf7,0x0d,0x0c,0x0c,0xdc,0x1d,0xfe,0x19,0xd8,0xfc,0xd0,0x43,0xcd, 0xe3,0x8f,0x3d,0x36,0xb0,0x7d,0xdb,0xb6,0x81,0xd6,0x77,0xff,0xc6,0xcd,0xd7,0x1c, 0x3d,0x76,0xe2,0xc6,0x2d,0xcf,0xf5,0xdd,0x78,0xf7,0x5d,0x5f,0xb9,0xe1,0x03,0x1f, 0xfc,0xc0,0x35,0x61,0xf0,0x9f,0x0b,0x1a,0xdb,0x10,0x41,0x10,0x21,0x0c,0xe4,0x11, 0x94,0x30,0x05,0xca,0x32,0x51,0x86,0x10,0xf0,0x29,0x6e,0x4e,0x04,0xf0,0x73,0xce, 0xe5,0x4c,0x23,0x05,0x7a,0xa6,0x08,0x27,0x6b,0xe6,0x68,0x8e,0x5a,0xb0,0x60,0x61, 0xe9,0x0d,0x49,0x4f,0x30,0xf9,0xed,0x7d,0xd9,0x6e,0x46,0x24,0xa7,0xa1,0xd0,0x23, 0x9b,0x7b,0x57,0xb4,0xb2,0x4c,0x4a,0x43,0xeb,0x89,0xea,0x4c,0x27,0x40,0x9d,0xa1, 0x15,0xae,0x00,0x60,0xcc,0x74,0x0e,0x80,0x2b,0x78,0x6b,0xf0,0xd4,0x61,0x1d,0xc0, 0x91,0x72,0x4e,0x4e,0x67,0x01,0x67,0x0d,0xe9,0xac,0x20,0x1b,0x6d,0xea,0xfc,0xae, 0x8c,0xfc,0x82,0x18,0x1d,0x29,0x9d,0x0d,0x17,0x4f,0x38,0x64,0x49,0x7d,0x39,0x13, 0x6d,0xbc,0x52,0x36,0xfc,0xe0,0x69,0xa7,0x0e,0x8e,0x32,0x34,0xc8,0xa3,0xbd,0x72, 0x49,0x39,0xbc,0xa4,0x59,0xff,0xe8,0x45,0xf9,0x71,0x4e,0xdf,0x43,0x0f,0x3d,0x74, 0xcd,0x5b,0xde,0xf6,0xd6,0x6b,0xa2,0xfc,0xc6,0xe7,0x9e,0x7d,0xf6,0xc6,0x47,0x1e, 0x7e,0xf8,0xc6,0x57,0x5c,0x75,0xe5,0xf9,0xb7,0x81,0x97,0x5c,0x72,0x49,0x57,0x44, 0xcb,0x83,0x41,0xe8,0x12,0x4a,0xa4,0x10,0x94,0x76,0xcd,0xc8,0x5e,0xbd,0xfa,0x82, 0xf2,0x87,0x92,0x19,0x55,0x79,0x15,0xa2,0xfe,0x2d,0x01,0x5f,0xda,0xd2,0x5b,0x8d, 0x10,0xf6,0xf7,0xe6,0x4f,0x1f,0x69,0x82,0xeb,0x11,0xb1,0x37,0x55,0x0d,0x51,0x14, 0x11,0xd9,0x46,0x8c,0xdd,0xfd,0x7b,0x9a,0xa1,0xa8,0x17,0x14,0x82,0x47,0xfb,0xce, 0xe0,0x55,0xb6,0x89,0x41,0xf7,0xec,0x16,0xb3,0xad,0x59,0xb5,0x6a,0x75,0x19,0x71, 0x38,0x17,0x0d,0xa0,0x1d,0x5a,0x9e,0x08,0x52,0xdc,0xfe,0x7d,0xe5,0xca,0x15,0x65, 0x95,0x6e,0xb1,0x06,0x18,0xcd,0x53,0x34,0x4f,0xec,0xc8,0xc1,0x58,0x8c,0x06,0xe4, 0x19,0xd8,0x95,0x3e,0x74,0x24,0xb3,0x5d,0x8e,0x11,0x4c,0x70,0xd8,0x12,0xba,0xfa, 0xd3,0xb1,0x2b,0x7a,0x7b,0xcb,0x74,0x65,0xf4,0xb3,0xc6,0x70,0x3c,0xeb,0x29,0x21, 0xda,0x19,0x20,0x1c,0x01,0xd0,0x94,0x26,0x3a,0x34,0x13,0x7b,0xa6,0x03,0x13,0x9f, 0xf3,0x53,0xaf,0xc4,0x23,0x3b,0xba,0x29,0xb3,0x7b,0x29,0xd7,0x3f,0x79,0xe8,0x83, 0x06,0x1e,0xa0,0x65,0xac,0x2c,0x68,0x37,0xef,0xde,0xd3,0xff,0x4f,0x7f,0x1a,0x18, 0x2b,0xe9,0xb7,0x06,0x81,0xa5,0x98,0x95,0xcf,0xa4,0x07,0x64,0xf4,0x32,0x10,0x90, 0x57,0x4f,0x48,0xcc,0x29,0xe0,0xca,0x68,0xf2,0x86,0x77,0x0e,0xd1,0x7b,0xad,0xf6, 0x3d,0xce,0x04,0xf9,0x12,0x84,0x3f,0xef,0xe2,0xb3,0xef,0xfb,0x63,0x11,0xe8,0xfc, 0x9e,0xc3,0x38,0xc4,0x15,0xa4,0x92,0x5e,0x33,0x13,0x44,0x5e,0xa3,0x52,0x6f,0x2e, 0xae,0x07,0x34,0x75,0xd1,0x23,0x05,0x6a,0xc1,0xa7,0xb8,0x7c,0x2d,0xaf,0xbd,0x4c, 0x80,0x18,0xf2,0xc9,0x61,0x0a,0xf1,0x40,0xc5,0xaf,0x87,0x05,0x18,0x39,0x53,0x6e, 0x32,0xe6,0xc3,0x18,0x6d,0x53,0x3f,0x01,0x6b,0xa4,0x32,0x42,0x09,0x52,0x57,0x65, 0xce,0x26,0x9c,0xd3,0xfb,0x00,0xa5,0x75,0x90,0x75,0x8e,0x3a,0xf2,0xe7,0x01,0x52, 0xea,0x21,0x28,0x01,0x79,0xd0,0xe6,0x1c,0x7c,0x00,0x79,0xf1,0xc1,0x4f,0xb9,0x7a, 0x81,0x00,0xe0,0xa7,0xc3,0x95,0x73,0xae,0xbc,0x94,0x8e,0xce,0x80,0x75,0x6f,0x3d, 0x84,0x86,0x6b,0x1e,0xaa,0x79,0x8d,0x0d,0xde,0x0b,0xc1,0x79,0xb7,0x06,0xb1,0xfd, 0x5a,0x37,0x3c,0x34,0xf4,0xe6,0xfc,0x9b,0xfc,0xfe,0x61,0x92,0x11,0x97,0x02,0x62, 0xe2,0x18,0x16,0xd3,0x14,0x0c,0x53,0xa3,0x80,0x80,0xc1,0x98,0xe1,0xf5,0x44,0x7b, 0xf2,0xbd,0x7b,0xf7,0x84,0xf1,0xbc,0xb6,0x55,0xf7,0xd9,0xbe,0xa4,0xec,0xca,0xa9, 0xad,0x21,0xb4,0x37,0x8a,0x39,0x04,0x7d,0xd7,0xaa,0x5c,0x6b,0x09,0x10,0x75,0x78, 0x59,0x88,0xe1,0xe1,0x79,0x80,0x5e,0xcd,0x11,0xf8,0xe6,0x0a,0xd8,0xbd,0xf2,0x1a, 0x18,0x86,0x7f,0xdf,0x1a,0xf2,0x5c,0x7e,0x76,0x0c,0xfb,0x33,0x82,0xe6,0xc9,0xf2, 0xfc,0x9c,0x7c,0x8c,0x06,0xc8,0xcf,0x49,0x02,0xc4,0x88,0xc7,0x89,0xe9,0x28,0x01, 0x04,0xcf,0x34,0xa5,0xe7,0xe7,0xc8,0x44,0x3e,0x8b,0x54,0x5b,0x3c,0xdf,0x0b,0x52, 0x4f,0x6e,0x5b,0xde,0x0c,0xac,0x94,0xc7,0x42,0x66,0xe2,0xce,0x84,0x53,0xd9,0x46, 0x8f,0x65,0x2b,0xe6,0x64,0xd7,0x74,0x32,0xbc,0x0c,0x08,0x57,0x65,0xea,0x40,0x3a, 0x1c,0xa4,0xcd,0xd5,0xa3,0x57,0xcb,0xd9,0xa1,0xb6,0xa1,0x7f,0x50,0x42,0xfb,0x85, 0xff,0x5e,0xc0,0xf8,0xf5,0x1c,0x78,0xc9,0xe5,0x6b,0x6f,0x8a,0xc5,0x52,0x79,0x2d, 0xdc,0xf0,0x64,0x98,0x33,0xcc,0xa4,0x90,0x7a,0x80,0x3c,0xc3,0x3a,0x83,0x9f,0x18, 0x14,0x9c,0x9b,0xd1,0xcf,0x08,0x39,0xa7,0x52,0x1a,0x8e,0x3c,0x25,0xea,0x37,0x75, 0xea,0x48,0x82,0x07,0x60,0x78,0x82,0x6b,0x97,0x0a,0x27,0x7e,0x2a,0x59,0x15,0x3d, 0xbb,0xc0,0x71,0x9f,0x00,0x97,0x2c,0x68,0xd6,0x9e,0x53,0x69,0x59,0x73,0x28,0x47, 0x3f,0xa7,0x34,0x3c,0x5d,0xb5,0xc7,0x2b,0x8d,0x99,0x6d,0x95,0x91,0x1d,0x4e,0x26, 0xf5,0xca,0x33,0x78,0x6a,0x39,0x47,0x59,0xf3,0xd4,0xd7,0xb9,0xd9,0xc9,0x4a,0x3c, 0x1d,0x95,0xb4,0xeb,0x0e,0xa2,0x3a,0x18,0x54,0x1d,0xcb,0xf0,0x1c,0xb8,0x75,0x9d, 0x95,0xba,0xaa,0xd3,0xc6,0xbd,0xab,0x3a,0x74,0xd2,0x3e,0x29,0x73,0xd2,0x4a,0x3d, 0xe8,0x94,0x78,0x46,0x18,0xf5,0x7e,0xb1,0xdc,0xd6,0xd2,0xba,0x79,0xc7,0xae,0x9d, 0xff,0x07,0x53,0x40,0x7b,0x7b,0x5f,0x28,0x7f,0x9c,0x30,0xe6,0xe4,0x89,0x0a,0x23, 0x4e,0x30,0x42,0x4a,0x0c,0xeb,0x3e,0x8d,0x04,0xf2,0x3e,0x81,0x51,0x09,0xe8,0x4a, 0x40,0x49,0x3e,0x15,0x94,0xcf,0x84,0x66,0xb6,0x99,0x48,0x9b,0x0c,0xea,0x6a,0x9b, 0xda,0xde,0xbd,0x2b,0x48,0xf9,0xb2,0x77,0x01,0xf7,0x78,0xe1,0x91,0x0b,0x32,0x3a, 0x81,0xc4,0x53,0x37,0xb1,0xdd,0xf3,0x75,0x4a,0x43,0xe3,0xa3,0xad,0xc4,0xb8,0xa6, 0x3a,0x78,0x75,0xb8,0xf5,0x05,0x32,0x76,0xb2,0x3d,0x65,0xd2,0x1a,0x4c,0x68,0x48, 0x68,0x58,0x03,0x09,0x28,0xf9,0x2c,0x03,0xda,0x1b,0x79,0x80,0x36,0xca,0xb3,0xd3, 0xa4,0x6e,0x64,0x52,0x97,0x79,0xa0,0x5e,0x9e,0x8c,0x12,0x5c,0x6d,0xb3,0x0d,0x7d, 0x24,0x78,0x69,0x8f,0xf3,0xc1,0x79,0xa7,0x80,0x9d,0xbb,0x76,0x3d,0x31,0x63,0xfa, 0x8c,0x9f,0x0c,0x65,0x17,0x18,0xc6,0xfc,0x64,0x99,0x11,0x10,0xc2,0x64,0xa2,0x81, 0x09,0xa6,0x87,0x29,0x13,0x1c,0xea,0x19,0x06,0x88,0xc8,0x54,0x0a,0xb8,0x26,0x4e, 0xed,0x81,0x55,0x69,0x46,0x75,0x0f,0x08,0x9c,0xce,0xcc,0x69,0x04,0xbe,0x21,0x1a, 0x2e,0xda,0x39,0xc2,0x28,0x9f,0x68,0x28,0xb8,0x92,0xb6,0x68,0x18,0x65,0xd4,0x31, 0x54,0x96,0x67,0x1d,0x70,0xc5,0x1b,0x0d,0x29,0x65,0x4d,0x63,0x02,0xf9,0x89,0xf7, 0xda,0xc0,0x93,0x80,0x40,0x00,0x70,0xd0,0xae,0xed,0x2b,0x2f,0x38,0xf8,0xe2,0x5f, 0x47,0x80,0xba,0x56,0x52,0x07,0xdf,0xd4,0x20,0x09,0x02,0x4e,0x4f,0x3a,0xa9,0x33, 0x78,0xbe,0x8c,0xf2,0xea,0x53,0x87,0x89,0xb2,0xe4,0x35,0x6d,0x89,0x96,0x11,0x26, 0x30,0xfa,0x8f,0x0c,0x9e,0x7f,0x0a,0xa8,0x5c,0xce,0x03,0xf9,0x2e,0x7f,0xc8,0x5a, 0x22,0x89,0xe0,0x98,0x4b,0x14,0x20,0xb0,0xc7,0xb3,0xde,0x59,0xc3,0xc8,0x1c,0x4f, 0x19,0xca,0xc3,0x25,0x20,0x67,0xc1,0xd3,0xc6,0xbd,0x9e,0x23,0xa5,0x71,0xe0,0x55, 0xe3,0x54,0xe3,0x31,0xa6,0x72,0x79,0xc0,0x08,0x94,0x46,0x57,0x0f,0xb6,0xe5,0xaa, 0x3c,0xaa,0x53,0xd0,0xc6,0x43,0x1b,0xf4,0xd3,0x28,0x0c,0x44,0x66,0x2b,0xf3,0x34, 0x24,0x9a,0x78,0x55,0x47,0x97,0xa2,0x52,0x66,0xf8,0x86,0x93,0x78,0x69,0x44,0xf7, 0x95,0x4f,0x1d,0xb9,0xe8,0xa7,0x2a,0xcb,0x05,0x27,0xbd,0xea,0xef,0x10,0xea,0xf0, 0x4b,0x1e,0x34,0x39,0xdb,0x95,0x0c,0xae,0xa9,0x17,0xd0,0x16,0x28,0x23,0x6f,0xfd, 0xac,0x4d,0x7d,0x3a,0x8a,0x9e,0x69,0x41,0x1b,0x57,0x65,0x3a,0x20,0x9d,0xab,0x0f, 0x04,0x42,0x0d,0x40,0xb8,0xca,0x41,0x71,0x72,0x94,0x91,0x15,0xbe,0xba,0xf4,0x17, 0x39,0xd1,0x7b,0x21,0x78,0xc1,0x00,0xf0,0x51,0x02,0x3f,0xb8,0x70,0x74,0xca,0x68, 0x14,0x67,0xec,0x34,0x54,0x51,0x3a,0xea,0x4e,0x85,0x50,0x47,0x63,0x31,0x64,0xbb, 0xe6,0x0f,0x2b,0x0a,0x8a,0x2a,0x4c,0x8d,0x64,0x42,0xe4,0x3d,0x48,0x43,0x28,0x47, 0x2f,0x0d,0xa1,0x3c,0x1d,0xa4,0x1d,0xfc,0x74,0x96,0xe4,0x44,0xd1,0xc3,0x9c,0x0c, 0x34,0x81,0x84,0x46,0x8e,0x28,0xa0,0x1a,0xae,0xca,0x59,0x0d,0x5a,0xcf,0xe2,0xb5, 0x0d,0xd3,0x07,0x1d,0xce,0xa9,0x0b,0xaf,0xcc,0x57,0x23,0x56,0x03,0x69,0x9f,0xf2, 0xd5,0x5e,0x2c,0xe9,0x45,0x7a,0x99,0xe1,0xd7,0x7b,0xf8,0xf9,0xd7,0x4a,0x6c,0xf3, 0xea,0x82,0xb7,0x6e,0xbf,0x0c,0xf9,0xa6,0x8b,0x3a,0xaf,0x93,0x81,0xfc,0xe4,0x74, 0x05,0x19,0x0c,0xf4,0x55,0x5f,0xa7,0x12,0x3d,0x5f,0x80,0x55,0x9a,0x55,0x5f,0xa7, 0x8f,0x82,0xc7,0x48,0x50,0xe9,0xc1,0xe1,0xdc,0x1a,0xb0,0xe4,0xab,0x7a,0x68,0x53, 0x1f,0x70,0x55,0xe7,0xd7,0x00,0xa9,0xba,0x15,0xb9,0x43,0xb5,0x7f,0x56,0x00,0x30, 0xae,0xa8,0x66,0xd0,0xda,0x9b,0xf2,0x79,0x75,0x35,0x90,0x7b,0x0f,0x6f,0x28,0xc7, 0xd8,0xc9,0x44,0xbd,0x7c,0x26,0xf7,0x7a,0x06,0x3a,0x19,0xe9,0xf2,0x68,0xcb,0x4b, 0xe6,0xc0,0x6a,0x24,0x91,0xee,0x68,0xf3,0xec,0x1e,0x17,0xc0,0x41,0x07,0x7f,0x41, 0x92,0x3d,0x3d,0xcb,0x5d,0x93,0x1f,0x70,0x4d,0x07,0x80,0x94,0x3d,0xf5,0x01,0xd9, 0x2e,0x53,0x1d,0x2d,0xc8,0x8e,0x37,0xd9,0xea,0x30,0x9c,0xfa,0x25,0xcf,0xd4,0x2f, 0xf3,0x99,0xe0,0xb0,0x93,0xbc,0x36,0xae,0x39,0x14,0x6b,0xeb,0x45,0x56,0xed,0x38, 0x08,0x2f,0x7f,0x72,0x97,0x3d,0x94,0xe1,0x43,0x2f,0x6d,0xf2,0x3e,0xdb,0xca,0x2b, 0x47,0x03,0x5d,0xba,0x28,0x9b,0x98,0x52,0x46,0x3a,0xa7,0x8f,0xea,0x08,0x5d,0xa7, 0x52,0x38,0x2f,0x04,0x2f,0x58,0x83,0x88,0x04,0x10,0x47,0x68,0xa2,0x92,0x52,0xc6, 0xd5,0x44,0x87,0x80,0x12,0x1c,0x91,0x27,0x0c,0x25,0x27,0x1a,0x26,0x1d,0x4f,0xe1, 0xaa,0x64,0x1d,0xde,0xf4,0x6e,0x42,0xeb,0x11,0xf5,0x75,0xb1,0xda,0x03,0xf4,0x3a, 0xb8,0xa9,0x98,0x36,0xe8,0x00,0x8a,0x15,0x39,0xc6,0x95,0xcc,0x72,0x65,0xee,0xc9, 0x95,0x6d,0xdc,0x4b,0x39,0x6d,0x68,0x73,0x16,0xe4,0xad,0xa4,0x6b,0xaf,0xaa,0xf7, 0x55,0xaf,0xd4,0x0d,0x7f,0xed,0x81,0x32,0xf9,0x89,0x32,0x25,0x4f,0x74,0xc9,0x4b, 0x47,0xe5,0x70,0xd9,0xa3,0x0e,0xd3,0x95,0xc7,0xf3,0xa7,0xb2,0xa4,0x39,0x91,0x16, 0x90,0x4f,0xbe,0x29,0x47,0xea,0x98,0x32,0x4c,0xb4,0x45,0xd2,0x4b,0x7b,0x45,0x97, 0x38,0x23,0xd3,0x0b,0xc1,0x0b,0x06,0x00,0x43,0x21,0x86,0x90,0x3c,0x22,0x04,0x4a, 0x27,0x22,0xcc,0x4e,0x94,0x93,0x08,0x3d,0x51,0xa8,0x34,0x88,0xb2,0x22,0x4c,0xb4, 0x97,0x47,0xb3,0x2a,0x78,0xee,0x70,0xec,0x8d,0x1a,0xbd,0x43,0xc0,0xa4,0x21,0x52, 0x0e,0xc9,0x3d,0xc7,0xa1,0x49,0x41,0x43,0xa9,0x72,0x34,0x5d,0x53,0xae,0xc4,0x85, 0x63,0xfe,0x83,0x0f,0xd7,0x21,0x0d,0xba,0x82,0x8d,0x0c,0x49,0x8f,0x5c,0xe4,0xd7, 0x5e,0x1e,0xbe,0x7a,0x75,0x70,0x52,0x3f,0xe5,0x1e,0x2c,0x19,0xb6,0xf1,0x94,0x40, 0xda,0xc8,0x15,0x6d,0x7c,0xd5,0x95,0x07,0x57,0x91,0xb7,0xf3,0x50,0x9e,0x8e,0x4c, 0xfd,0x92,0x86,0x84,0xb7,0x04,0xd4,0xc3,0xab,0x36,0xaa,0xf6,0x4d,0x1b,0xa4,0x23, 0xe5,0x01,0xba,0x52,0xe2,0xa0,0xa5,0xad,0x84,0x1f,0x1a,0x79,0xff,0x42,0x50,0xb5, 0x38,0x0f,0xcc,0x9f,0x3f,0xff,0xaa,0x71,0xa6,0xfd,0x41,0xb8,0x3f,0x04,0xec,0x8f, 0xfb,0xfe,0x50,0xb4,0x3f,0x0c,0xd3,0x1f,0x44,0xfb,0xc3,0x87,0xfd,0xb1,0x08,0x2c, 0xf5,0x2d,0xad,0x2d,0x5d,0x1d,0xed,0x1d,0x5d,0x98,0x75,0xb4,0xb7,0x0f,0x4c,0x6a, 0x6f,0x7f,0x22,0x8c,0xd8,0x2f,0x85,0x93,0xbb,0x42,0x9d,0x2e,0x0f,0x7b,0xc0,0xe9, 0xb1,0xb1,0xcd,0xda,0x47,0x6f,0x38,0xde,0xde,0xde,0xd1,0x33,0x3d,0x0c,0x2b,0x20, 0x9c,0x5d,0x07,0xfd,0xcd,0x78,0x84,0xf0,0x5d,0x93,0xbb,0x3a,0x83,0x66,0x04,0xdb, 0xf8,0xb6,0x2f,0x34,0x2a,0xca,0x98,0x7a,0xaa,0xb2,0x46,0x22,0xbd,0x42,0xaf,0xd1, 0x0b,0xea,0x97,0x44,0x19,0xb3,0x98,0xaf,0x04,0x5d,0x0d,0x0c,0xeb,0x19,0x3c,0x8c, 0x5b,0x70,0xb5,0x67,0xa0,0xd2,0x0e,0x8d,0xb8,0xef,0x9a,0x1c,0x86,0x2d,0x46,0x1e, 0x1f,0xfd,0xc6,0x3b,0x8e,0x63,0xeb,0xf2,0x61,0xa9,0xc0,0x41,0xcb,0xf4,0xa0,0xde, 0x29,0xa0,0x37,0x94,0xd0,0x64,0x70,0x3f,0x6a,0x51,0x8f,0xbf,0xaf,0x8a,0xfb,0xb4, 0x3c,0x39,0x1c,0x5d,0xe3,0xa7,0xdc,0xa2,0x19,0xbe,0x3f,0xb3,0xef,0x0f,0x63,0xe3, 0x57,0xcb,0x23,0xe0,0x03,0x19,0x5b,0x3a,0xa3,0x83,0x6f,0x29,0x0c,0xc8,0x67,0x0e, 0x16,0x98,0x13,0x21,0xd7,0x14,0x82,0xa3,0xc8,0x3c,0x0e,0xda,0x57,0x28,0x23,0x6f, 0xff,0xe1,0x23,0x87,0xff,0xe9,0x07,0x41,0xff,0x1c,0xf8,0xf7,0xef,0x7c,0xe7,0xfa, 0xe8,0x1d,0xb7,0x3a,0x7b,0xdf,0xbe,0x6d,0xfb,0xdd,0x1f,0xf8,0xd0,0x87,0xae,0x19, 0xaf,0x6a,0x7e,0xee,0x67,0x7f,0xfa,0x7d,0xcb,0x96,0x2e,0x7d,0xaf,0xe7,0xf9,0xdf, 0xfe,0xd6,0xb7,0x37,0x7e,0xeb,0xc1,0x07,0x6f,0x7c,0xfc,0xa9,0xa7,0x07,0x56,0xaf, 0x5e,0xd9,0xfb,0x13,0x3f,0xf1,0x13,0x9b,0xae,0x78,0xd9,0x4b,0x7b,0x0f,0xee,0xdb, 0xd7,0xdc,0x73,0xdf,0x3d,0x1b,0xff,0xea,0xaf,0x3f,0x7d,0x83,0x36,0x17,0xac,0xe8, 0x5d,0xbb,0xfe,0xa7,0x6f,0xdc,0xd4,0x32,0x36,0xd6,0xe3,0x81,0xd0,0xfd,0xf7,0x7f, 0xe3,0xc3,0xfb,0x0f,0x1e,0xda,0xea,0x4f,0xc6,0x0c,0x0f,0x0e,0x36,0xeb,0xae,0xbd, 0x66,0x83,0x9f,0x7f,0x0f,0x0f,0x1c,0x6e,0x1e,0xda,0xfc,0xf0,0xcd,0x23,0xa7,0x46, 0x07,0xfc,0xc6,0xf1,0xf5,0x6f,0x78,0xe3,0xbb,0x56,0xae,0x58,0xd1,0xbb,0x67,0xf7, 0xee,0xe6,0xc1,0x07,0xbf,0xf9,0xe1,0xbd,0x7b,0xf6,0x6e,0x6d,0xc6,0x22,0xf0,0x5a, 0x4f,0x37,0x6f,0xf9,0xd7,0x6f,0xd9,0xe0,0x87,0x16,0x3e,0x1a,0xf5,0xf9,0x2f,0x7c, 0xe1,0xe6,0xfd,0xfb,0x0f,0xf8,0x6b,0x92,0xcd,0x8c,0x69,0x53,0x7b,0xae,0x7b,0xd3, 0x0f,0xbe,0xd7,0x57,0xc0,0x1f,0x7b,0xfc,0x7b,0xb7,0x7d,0xfd,0xeb,0xdf,0x7a,0x38, 0xfa,0x4d,0xe9,0x8d,0x57,0x5c,0xf1,0x92,0xf7,0x2e,0x5d,0xb6,0xb8,0x67,0x2c,0x86, 0xee,0x87,0xbf,0xfb,0xd8,0x87,0x77,0xef,0xea,0xdf,0x7a,0x72,0x34,0x16,0xa2,0x61, 0xec,0x37,0xdf,0xf0,0xe3,0x1b,0xfc,0xad,0x62,0x3f,0xd5,0xfa,0xe4,0x27,0xff,0xe6, 0xdd,0xb6,0xcb,0xce,0x04,0xe6,0x2f,0x58,0x74,0xf9,0x25,0x2f,0x5e,0xb3,0x7e,0xee, 0xec,0x19,0xde,0xae,0x1e,0xf8,0xdc,0xe7,0xbf,0x7c,0x73,0x84,0x5b,0xf9,0x5c,0xcb, 0x4b,0x5f,0xfa,0x92,0x37,0x5f,0xb0,0x7a,0xd5,0x3a,0x7f,0xdb,0x78,0xeb,0x8e,0xfe, 0xcd,0x9f,0xfd,0xcc,0x67,0x6e,0x0f,0xff,0x35,0x63,0x2d,0x6d,0xcd,0xc2,0x45,0x8b, 0xde,0xbc,0xe6,0xc2,0xd5,0xeb,0x3c,0x42,0x0e,0x1b,0x6e,0x7c,0xec,0x91,0x47,0xef, 0xe1,0xd8,0xd3,0x11,0x28,0x57,0x5f,0x7d,0xc5,0xbb,0xe6,0xcc,0x99,0xd7,0xbb,0x7f, 0xff,0xe1,0xcd,0xf7,0xdd,0x77,0xf7,0xed,0x46,0x17,0x01,0x61,0xa4,0xca,0x91,0x80, 0xd3,0x73,0xbb,0x9c,0x60,0x74,0x88,0x20,0x19,0x78,0xe4,0x91,0x47,0x6e,0x1b,0x2f, 0xfa,0xff,0x0f,0x0e,0xec,0x3b,0xb8,0x69,0xe4,0xf8,0x89,0xb1,0xe1,0xe1,0x63,0x9b, 0xc6,0x8b,0xce,0xc0,0xc0,0xc0,0x91,0x2d,0x47,0x8f,0x1e,0x1b,0x3b,0x70,0xe0,0xc0, 0x86,0xf1,0xa2,0x02,0xa7,0x4f,0x9e,0xea,0x39,0x35,0x7a,0x2a,0xec,0x7b,0xfa,0xa1, 0xf1,0xa2,0x33,0xb0,0x67,0xf7,0xbe,0x75,0xbb,0x76,0xee,0x1e,0x3b,0x75,0xea,0xf4, 0xad,0xe3,0x45,0x67,0xe0,0x99,0x67,0xb7,0xae,0xef,0xdb,0xb2,0x73,0x6c,0xcb,0x53, 0xdb,0xca,0x07,0xad,0x12,0xf6,0xec,0x3d,0xb4,0x76,0x70,0x78,0x64,0x6c,0xdf,0xc1, 0xe1,0xb1,0x67,0xb7,0xee,0xbe,0x7e,0xbc,0xb8,0xc0,0x91,0x43,0x43,0xeb,0x07,0x07, 0x8f,0x8e,0x1d,0x19,0x1c,0xfa,0xc0,0xfe,0xfd,0x07,0xcf,0x8c,0x8b,0x3b,0x76,0xec, 0xec,0x3e,0x3c,0x30,0xf8,0xf7,0x47,0x8e,0x0c,0x8f,0x1d,0x1d,0x3a,0xbe,0x7e,0xbc, 0xb8,0xc0,0xee,0x5d,0xdb,0xae,0x3f,0x3c,0x70,0x60,0xec,0xd0,0xc1,0xfd,0x63,0x07, 0x0f,0xec,0x3d,0xf3,0xe3,0x19,0xb0,0x75,0xcb,0xd6,0x9b,0xf6,0xee,0xdd,0x37,0x36, 0x34,0x34,0x7c,0x4e,0x1b,0xb0,0x6d,0xfb,0xf6,0x5b,0xf7,0x1d,0x3c,0x38,0x76,0xe0, 0xe0,0xa1,0x2d,0xe3,0x45,0x67,0x60,0xf8,0xe8,0x89,0x87,0x06,0x87,0x46,0xc6,0x8e, 0x0f,0x1f,0xbd,0x63,0xbc,0xe8,0x0c,0x7c,0xf9,0xcb,0x77,0x1d,0xda,0xb2,0x65,0xeb, 0x3f,0x6a,0x73,0xcf,0x3d,0xf7,0x6e,0xfa,0xe2,0x9d,0x77,0x8f,0x7d,0x76,0xe3,0x17, 0xff,0x91,0x6d,0xbf,0x1f,0x78,0xe1,0xc9,0xe1,0x9f,0x01,0xf7,0x7f,0xfd,0xbe,0xe6, 0xee,0x4d,0x9b,0x9a,0xa7,0x9f,0x7e,0x7a,0xbc,0xe4,0x2c,0xdc,0xb3,0xe9,0xab,0xcd, 0x23,0x0f,0x3f,0xdc,0xec,0xdc,0xbe,0xa3,0x7c,0x9d,0x2a,0xe1,0xb6,0x5b,0xfe,0xb4, 0xf7,0x7b,0x8f,0x3f,0xde,0x84,0xd2,0x3d,0xff,0xfd,0xbf,0xfd,0xcf,0x73,0xea,0x3e, 0xff,0xf7,0xff,0xab,0xe7,0x6b,0xf7,0xdd,0xdb,0x6c,0xfa,0xea,0x5d,0xe7,0x94,0x83, 0xaf,0x7e,0xe5,0xcb,0x3d,0x0f,0x3f,0xb4,0xb9,0x79,0xee,0xb9,0x67,0xcf,0xa9,0xfb, 0xe2,0xe7,0xff,0xbe,0xf9,0xf6,0x83,0xdf,0x6a,0xb6,0x6e,0xdd,0xde,0xec,0xdf,0xbb, 0xbf,0xbc,0xd9,0x9c,0x70,0xe7,0xe7,0xfe,0xae,0xe7,0x81,0x6f,0x7c,0xb3,0x79,0xe8, 0x3b,0x0f,0xcf,0x28,0x7f,0x4b,0x78,0x1c,0x3e,0xf1,0x97,0xb7,0x4f,0xb9,0xf7,0x9e, 0x7b,0xa7,0x6c,0xba,0xeb,0xbe,0x70,0xc0,0xdd,0xe7,0xb4,0xd9,0xf2,0xcc,0xd6,0x90, 0xb9,0xbf,0x39,0x70,0x60,0xb0,0x39,0x78,0x70,0xf0,0x1c,0x5e,0xf7,0x6e,0xfa,0x4a, 0xc7,0x57,0xef,0xba,0xab,0xf9,0xfc,0xe7,0x3f,0x7f,0x4e,0x9b,0xbf,0xf9,0xcb,0xdb, 0x7b,0xbe,0xf2,0xa5,0x2f,0x85,0x1c,0xdf,0x6e,0xb6,0xf6,0x6d,0x1d,0x2f,0xad,0xf0, 0x97,0xb7,0xff,0x59,0xc8,0xfd,0x50,0x04,0xf0,0x73,0x61,0xa7,0xa7,0xc6,0x4b,0x2b, 0x7c,0x61,0xe3,0xdf,0xf4,0x3c,0xfe,0xe8,0x63,0xcd,0x77,0xbe,0xf5,0xad,0x9e,0x0f, 0xff,0x97,0x0d,0xe7,0xf0,0x1a,0x3b,0xe5,0xaf,0x91,0x1d,0x8b,0x6d,0xf7,0xc9,0x7f, 0x64,0x8b,0xef,0x07,0xfe,0xc5,0x02,0xe0,0x6b,0x77,0x7d,0x61,0xce,0xc0,0x81,0xdd, 0xdd,0x8f,0x3e,0xf4,0xcd,0xe6,0x33,0x7f,0xfb,0x89,0xde,0xdf,0xbb,0xf9,0x77,0xce, 0xe9,0x2d,0xbb,0xb7,0x3e,0xd5,0x3c,0xfc,0xad,0xfb,0x43,0xb9,0x07,0xd6,0xdf,0x76, 0xcb,0xc7,0xce,0xd6,0x8d,0x9d,0x7c,0xef,0xa7,0x3e,0xf9,0x17,0xcd,0xa7,0xa3,0xcd, 0xa1,0x03,0xfb,0xce,0xe9,0x49,0x53,0x3a,0x5a,0x36,0xf4,0x3d,0xfd,0x68,0xf3,0xc0, 0xd7,0xee,0xb9,0xfe,0xe6,0xdf,0xfe,0x8d,0x75,0xe3,0xc5,0x15,0x4e,0x0e,0x6d,0xf8, 0x87,0xaf,0x7d,0xa5,0xf9,0xe6,0x37,0xee,0x7b,0xef,0xfb,0x7f,0xeb,0xb7,0xcf,0x18, 0x65,0x5a,0xe7,0xd8,0xba,0xaf,0x7d,0xf5,0xce,0x66,0xdb,0x33,0x8f,0x37,0xc7,0x8f, 0xec,0x7b,0xef,0x78,0x71,0x81,0xa3,0xc3,0x07,0x37,0xdc,0x7f,0xdf,0x5d,0xcd,0x77, 0xbf,0xf3,0xe0,0x3b,0xbf,0xf1,0xb5,0x7b,0x96,0x8d,0x17,0x37,0x9d,0x6d,0x2d,0x93, 0x9f,0x7d,0xea,0xbb,0xd7,0x6c,0x79,0xe6,0xd1,0x66,0xdb,0xd6,0xa7,0xcf,0x69,0xf3, 0xad,0x6f,0x3e,0xd0,0x7c,0xe5,0x4b,0x77,0x36,0x77,0x7e,0xe1,0x73,0xae,0x67,0x46, 0xaf,0x8d,0x7f,0xfb,0x89,0xce,0xa9,0x5d,0x2d,0x6f,0x7b,0xea,0xb1,0x87,0x9b,0x7b, 0xee,0xfa,0xe2,0x39,0x6d,0xba,0xa7,0x4d,0x5d,0x7b,0xf2,0xd8,0x91,0xf5,0x5f,0xbf, 0xeb,0xf3,0xcd,0x5d,0x9f,0xff,0x4c,0xcf,0x5f,0xfd,0xd9,0xc7,0xcf,0xc8,0x3e,0x7d, 0xea,0xe4,0xf5,0x0f,0x7f,0xeb,0xeb,0x6b,0xbf,0x11,0x72,0x3c,0xf2,0xf0,0xe6,0xf1, 0xd2,0x0a,0x6d,0xad,0xad,0xef,0x3d,0x3d,0x3a,0xdc,0xf3,0x8d,0x7f,0xb8,0xb7,0xe7, 0xd8,0xd1,0xa1,0x73,0x47,0xb6,0x5d,0x5b,0x23,0xf5,0x35,0xfb,0xfa,0xb7,0xaf,0xfd, 0xf3,0x5b,0x6e,0xf9,0x47,0x23,0xce,0x3f,0x17,0xfe,0xc5,0x02,0xa0,0xb3,0xb3,0xbd, 0x63,0xc6,0xb4,0xae,0xce,0x39,0x3d,0x93,0x9b,0xde,0x25,0x0b,0x7a,0x7a,0x97,0x2d, 0x3b,0xa7,0x57,0xf4,0x4c,0x8e,0x95,0xf9,0xd1,0xc3,0xb1,0x12,0x6c,0xed,0xeb,0x68, 0x9f,0x74,0xe6,0x0d,0xd5,0x65,0x8b,0x17,0x3e,0xdc,0x7a,0x7a,0xa4,0x39,0x72,0x60, 0xf7,0xc0,0x9c,0x59,0xdd,0x7d,0xe3,0xc5,0x05,0xba,0xbb,0x5a,0x37,0x47,0x0a,0x9c, 0xf9,0xcd,0x8b,0xd6,0xac,0x1e,0x2f,0xad,0xb0,0x68,0xde,0xac,0x66,0xee,0xac,0x29, 0x31,0x7f,0x77,0x34,0x0b,0xe6,0xd7,0x4f,0xa9,0x80,0xf6,0xb6,0xb1,0xcd,0xf3,0x67, 0x4f,0x8b,0x00,0x78,0x24,0x0c,0xb6,0xed,0x1c,0x0b,0xf7,0xcc,0xe8,0xea,0x6b,0x6f, 0x62,0x7b,0x79,0x62,0xa8,0x39,0x3e,0x5c,0xdf,0x0f,0x00,0x6b,0x56,0x2d,0x6b,0x66, 0x76,0xc7,0xae,0xe7,0xc4,0x60,0xd3,0x32,0x76,0xfc,0x9c,0x36,0x8b,0xe6,0xf7,0x34, 0xa7,0xa2,0xfc,0xf0,0x81,0x1d,0xcd,0xc8,0xd0,0xf0,0xf6,0xf1,0xe2,0xe6,0xc2,0x15, 0x8b,0x27,0xcf,0x9d,0xd5,0x3d,0x73,0x66,0x77,0x57,0xb3,0x70,0x4e,0xfd,0xd0,0x55, 0xc2,0xdc,0x59,0x3d,0x3b,0xe6,0xf4,0x4c,0xdb,0xda,0x33,0x25,0x76,0x03,0xd3,0x3a, 0x0f,0xc7,0x42,0xf1,0xf1,0xf1,0xaa,0x66,0xce,0xcc,0xee,0xbe,0x29,0x1d,0xcd,0x40, 0xdb,0xa9,0xa1,0xe8,0xd5,0xf5,0x5c,0x3f,0x21,0xe6,0xba,0xa6,0x3b,0xec,0xd4,0xbb, 0x74,0x51,0xb3,0x78,0x41,0xfd,0x0d,0x62,0x42,0x6b,0xc8,0x7d,0x6c,0x70,0x5f,0x73, 0x6a,0xf4,0xe8,0xc0,0xd8,0xc9,0x53,0xe7,0x7d,0xc3,0xf7,0x9f,0x03,0xff,0x62,0x01, 0xf0,0xf2,0x57,0xbf,0x7e,0xd7,0xc8,0xd1,0xe1,0x3f,0x3a,0x75,0x62,0x24,0x7a,0x40, 0xe7,0xe6,0xb7,0xdd,0xf8,0xb3,0xe5,0x4f,0xd0,0x25,0x0c,0x0d,0x0f,0xdd,0xee,0xe3, 0x4e,0x53,0x3b,0x5a,0x6f,0x79,0xdb,0xbf,0xbd,0xf1,0x8c,0xa3,0x9f,0xfa,0xde,0x77, 0x3f,0xdc,0xd1,0xde,0xba,0xb1,0xa7,0x7b,0xca,0x03,0xef,0xfc,0xa5,0x77,0x9d,0xd3, 0xe6,0xf0,0xe0,0xf0,0xfb,0x4f,0x9d,0x3e,0x35,0x30,0x76,0x7a,0xf4,0xee,0xf9,0x73, 0xe7,0x9c,0xe3,0x98,0x63,0x47,0x8f,0xde,0xd6,0xde,0xd2,0x6c,0x5b,0xb9,0x72,0xc9, 0xcf,0xfd,0xcc,0x2f,0xfd,0xf2,0x19,0x83,0xc4,0x62,0x68,0xf3,0xe8,0xe8,0xc8,0xc6, 0xc9,0x9d,0x2d,0x3b,0x26,0x4f,0x1a,0xf9,0xd5,0xf1,0xe2,0x02,0x3b,0xb7,0xef,0xbc, 0x26,0x7a,0xed,0xe6,0x9e,0xe9,0x93,0x37,0xae,0x5c,0x3e,0xff,0x4c,0x9b,0x58,0x4c, 0x0d,0xc4,0xea,0x7c,0x63,0xf7,0x94,0xce,0xa6,0x67,0x4a,0xfb,0x39,0x7f,0x58,0x21, 0x76,0x15,0x9b,0x67,0xce,0x98,0xbe,0x79,0xe9,0xbc,0xd9,0x07,0x96,0x2f,0x9c,0xfe, 0x9b,0xe3,0xc5,0xb6,0x83,0x87,0x87,0x87,0x06,0xdf,0x74,0x72,0xe4,0xd8,0xe1,0x99, 0x33,0xa6,0x9d,0xb3,0xc0,0xba,0xe2,0x35,0xaf,0x7f,0xe6,0xf0,0xe1,0x83,0xeb,0x4f, 0x9c,0x3a,0x1e,0x0b,0xbf,0xe3,0xb7,0xfd,0xf8,0xbf,0x7e,0xfb,0xde,0xf1,0xaa,0xe6, 0xea,0x6b,0x7f,0x64,0xe3,0xc1,0x03,0xfb,0x6f,0x8e,0xa8,0x8a,0x95,0xff,0xd8,0xed, 0xe3,0xc5,0x05,0x26,0x75,0x76,0x7e,0x66,0xf8,0xf0,0xc1,0x81,0x18,0x91,0x06,0x56, 0xf5,0x2e,0x3b,0xc7,0x16,0x63,0x27,0x47,0x6f,0x8f,0x0d,0x75,0x33,0x6d,0x6a,0xdb, 0x47,0xdf,0xf1,0xf3,0x3f,0x77,0x4e,0xdd,0x3f,0x1f,0x9a,0xe6,0xff,0x03,0x09,0x1b, 0x5e,0x8b,0xea,0xb3,0x30,0xb1,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, 0x60,0x82,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__static_css_main_9637a140_chunk_css = 1; #endif static const unsigned char FSDATA_ALIGN_PRE data__static_css_main_9637a140_chunk_css[] FSDATA_ALIGN_POST = { /* /static/css/main.9637a140.chunk.css (36 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x63,0x73,0x73,0x2f,0x6d,0x61,0x69,0x6e, 0x2e,0x39,0x36,0x33,0x37,0x61,0x31,0x34,0x30,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e, 0x63,0x73,0x73,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 169547 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x31,0x36,0x39,0x35,0x34,0x37,0x0d,0x0a, /* "Content-Type: text/css " (26 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x63,0x73,0x73,0x0d,0x0a,0x0d,0x0a, /* raw file data (169547 bytes) */ 0x2e,0x74,0x69,0x74,0x6c,0x65,0x2d,0x6c,0x6f,0x67,0x6f,0x7b,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x32,0x34,0x70,0x78,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2d, 0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x20,0x30,0x20,0x31,0x32,0x70,0x78,0x7d,0x2e, 0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x20,0x2a,0x2c,0x2e,0x6e,0x61,0x76,0x2d, 0x6c,0x69,0x6e,0x6b,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e, 0x38,0x37,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74, 0x6f,0x6f,0x6c,0x73,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62, 0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a,0x31,0x32,0x70,0x78,0x3b, 0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x70,0x78,0x3b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x3b,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d, 0x65,0x6e,0x64,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a, 0x63,0x65,0x6e,0x74,0x65,0x72,0x7d,0x2e,0x64,0x61,0x6e,0x67,0x65,0x72,0x2d,0x7a, 0x6f,0x6e,0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x34,0x70,0x78,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72, 0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x2d,0x70,0x72,0x65,0x66,0x65,0x72,0x65,0x6e, 0x63,0x65,0x29,0x7b,0x2e,0x74,0x69,0x74,0x6c,0x65,0x2d,0x6c,0x6f,0x67,0x6f,0x7b, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x3a,0x63,0x6c,0x6f,0x63,0x6b,0x77,0x69,0x73,0x65,0x2d,0x73,0x70,0x69,0x6e, 0x20,0x32,0x30,0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69, 0x6e,0x69,0x74,0x65,0x3b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x63, 0x6c,0x6f,0x63,0x6b,0x77,0x69,0x73,0x65,0x2d,0x73,0x70,0x69,0x6e,0x20,0x32,0x30, 0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74, 0x65,0x7d,0x7d,0x40,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6b,0x65,0x79,0x66, 0x72,0x61,0x6d,0x65,0x73,0x20,0x63,0x6c,0x6f,0x63,0x6b,0x77,0x69,0x73,0x65,0x2d, 0x73,0x70,0x69,0x6e,0x7b,0x30,0x25,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65, 0x28,0x30,0x64,0x65,0x67,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x30,0x64,0x65,0x67,0x29,0x7d,0x74,0x6f, 0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x31,0x74,0x75,0x72,0x6e,0x29, 0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74, 0x65,0x28,0x31,0x74,0x75,0x72,0x6e,0x29,0x7d,0x7d,0x40,0x6b,0x65,0x79,0x66,0x72, 0x61,0x6d,0x65,0x73,0x20,0x63,0x6c,0x6f,0x63,0x6b,0x77,0x69,0x73,0x65,0x2d,0x73, 0x70,0x69,0x6e,0x7b,0x30,0x25,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28, 0x30,0x64,0x65,0x67,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a, 0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x30,0x64,0x65,0x67,0x29,0x7d,0x74,0x6f,0x7b, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x31,0x74,0x75,0x72,0x6e,0x29,0x3b, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65, 0x28,0x31,0x74,0x75,0x72,0x6e,0x29,0x7d,0x7d,0x2e,0x63,0x61,0x72,0x64,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x30,0x70, 0x78,0x7d,0x74,0x61,0x62,0x6c,0x65,0x2e,0x70,0x69,0x6e,0x2d,0x6d,0x61,0x70,0x70, 0x69,0x6e,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x30,0x30,0x25,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c, 0x69,0x67,0x6e,0x3a,0x6d,0x69,0x64,0x64,0x6c,0x65,0x7d,0x74,0x61,0x62,0x6c,0x65, 0x2e,0x70,0x69,0x6e,0x2d,0x6d,0x61,0x70,0x70,0x69,0x6e,0x67,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x20,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x65,0x61,0x64,0x65,0x72, 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x35,0x30,0x70,0x78,0x7d,0x74,0x61,0x62,0x6c,0x65,0x2e, 0x70,0x69,0x6e,0x2d,0x6d,0x61,0x70,0x70,0x69,0x6e,0x67,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x70,0x69,0x6e,0x2d,0x69,0x6e,0x70,0x75, 0x74,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65, 0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x30,0x70, 0x78,0x7d,0x74,0x61,0x62,0x6c,0x65,0x2e,0x70,0x69,0x6e,0x2d,0x6d,0x61,0x70,0x70, 0x69,0x6e,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e, 0x70,0x69,0x6e,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2b,0x2e,0x69,0x6e,0x76,0x61,0x6c, 0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x32,0x30,0x70,0x78,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x70,0x78,0x7d,0x2e,0x73, 0x65,0x6c,0x65,0x63,0x74,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x6c,0x61,0x62, 0x65,0x6c,0x73,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x30,0x70,0x78, 0x7d,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d, 0x6c,0x61,0x62,0x65,0x6c,0x73,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d, 0x6c,0x61,0x62,0x65,0x6c,0x73,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69, 0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x35,0x30,0x70,0x78,0x7d,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x73,0x2d,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x6c,0x69, 0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x32,0x72,0x65,0x6d,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x70,0x78, 0x7d,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65, 0x6e,0x7d,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74, 0x6f,0x7d,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73, 0x74,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69, 0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3b,0x66, 0x6c,0x65,0x78,0x3a,0x31,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x3a,0x31,0x30,0x70,0x78,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x30, 0x7d,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73,0x74, 0x2d,0x74,0x69,0x74,0x6c,0x65,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x31,0x36,0x70,0x78,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68, 0x74,0x3a,0x36,0x30,0x30,0x7d,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x2d,0x6c,0x69,0x73,0x74,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x62,0x6f,0x64,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x30,0x30,0x76,0x68,0x20,0x2d,0x20,0x35, 0x36,0x70,0x78,0x29,0x3b,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x34, 0x30,0x30,0x70,0x78,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65, 0x78,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x35,0x36,0x70, 0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x31,0x30,0x70,0x78,0x20,0x32,0x30,0x70,0x78,0x7d,0x0a,0x0a,0x2f,0x2a,0x21,0x0a, 0x20,0x2a,0x20,0x42,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x20,0x76,0x35,0x2e, 0x31,0x2e,0x33,0x20,0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x65,0x74, 0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2e,0x63,0x6f,0x6d,0x2f,0x29,0x0a, 0x20,0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x32,0x30,0x31, 0x31,0x2d,0x32,0x30,0x32,0x31,0x20,0x54,0x68,0x65,0x20,0x42,0x6f,0x6f,0x74,0x73, 0x74,0x72,0x61,0x70,0x20,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x0a,0x20,0x2a,0x20, 0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x32,0x30,0x31,0x31,0x2d,0x32, 0x30,0x32,0x31,0x20,0x54,0x77,0x69,0x74,0x74,0x65,0x72,0x2c,0x20,0x49,0x6e,0x63, 0x2e,0x0a,0x20,0x2a,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x20,0x75,0x6e, 0x64,0x65,0x72,0x20,0x4d,0x49,0x54,0x20,0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f, 0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x74,0x77,0x62,0x73, 0x2f,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2f,0x62,0x6c,0x6f,0x62,0x2f, 0x6d,0x61,0x69,0x6e,0x2f,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x29,0x0a,0x20,0x2a, 0x2f,0x3a,0x72,0x6f,0x6f,0x74,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6c,0x75,0x65, 0x3a,0x23,0x30,0x64,0x36,0x65,0x66,0x64,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x69,0x6e, 0x64,0x69,0x67,0x6f,0x3a,0x23,0x36,0x36,0x31,0x30,0x66,0x32,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x70,0x75,0x72,0x70,0x6c,0x65,0x3a,0x23,0x36,0x66,0x34,0x32,0x63,0x31, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x69,0x6e,0x6b,0x3a,0x23,0x64,0x36,0x33,0x33, 0x38,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x72,0x65,0x64,0x3a,0x23,0x64,0x63,0x33, 0x35,0x34,0x35,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x6f,0x72,0x61,0x6e,0x67,0x65,0x3a, 0x23,0x66,0x64,0x37,0x65,0x31,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x79,0x65,0x6c, 0x6c,0x6f,0x77,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37,0x3b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x72,0x65,0x65,0x6e,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x61,0x6c,0x3a,0x23,0x32,0x30,0x63,0x39,0x39,0x37, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x63,0x79,0x61,0x6e,0x3a,0x23,0x30,0x64,0x63,0x61, 0x66,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x77,0x68,0x69,0x74,0x65,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x3a,0x23,0x36,0x63, 0x37,0x35,0x37,0x64,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x2d,0x64, 0x61,0x72,0x6b,0x3a,0x23,0x33,0x34,0x33,0x61,0x34,0x30,0x3b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x72,0x61,0x79,0x2d,0x31,0x30,0x30,0x3a,0x23,0x66,0x38,0x66,0x39,0x66, 0x61,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x2d,0x32,0x30,0x30,0x3a, 0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61, 0x79,0x2d,0x33,0x30,0x30,0x3a,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x2d,0x34,0x30,0x30,0x3a,0x23,0x63,0x65,0x64, 0x34,0x64,0x61,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x2d,0x35,0x30, 0x30,0x3a,0x23,0x61,0x64,0x62,0x35,0x62,0x64,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x72,0x61,0x79,0x2d,0x36,0x30,0x30,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x2d,0x37,0x30,0x30,0x3a,0x23,0x34, 0x39,0x35,0x30,0x35,0x37,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x72,0x61,0x79,0x2d, 0x38,0x30,0x30,0x3a,0x23,0x33,0x34,0x33,0x61,0x34,0x30,0x3b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x72,0x61,0x79,0x2d,0x39,0x30,0x30,0x3a,0x23,0x32,0x31,0x32,0x35,0x32, 0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x23, 0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x73,0x65,0x63,0x6f, 0x6e,0x64,0x61,0x72,0x79,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x23,0x31,0x39,0x38,0x37, 0x35,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x23,0x30,0x64, 0x63,0x61,0x66,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x64, 0x61,0x6e,0x67,0x65,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x23,0x32,0x31,0x32,0x35, 0x32,0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d, 0x72,0x67,0x62,0x3a,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2d,0x72,0x67,0x62,0x3a, 0x31,0x30,0x38,0x2c,0x31,0x31,0x37,0x2c,0x31,0x32,0x35,0x3b,0x2d,0x2d,0x62,0x73, 0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2d,0x72,0x67,0x62,0x3a,0x32,0x35,0x2c, 0x31,0x33,0x35,0x2c,0x38,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x69,0x6e,0x66,0x6f, 0x2d,0x72,0x67,0x62,0x3a,0x31,0x33,0x2c,0x32,0x30,0x32,0x2c,0x32,0x34,0x30,0x3b, 0x2d,0x2d,0x62,0x73,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2d,0x72,0x67,0x62, 0x3a,0x32,0x35,0x35,0x2c,0x31,0x39,0x33,0x2c,0x37,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x64,0x61,0x6e,0x67,0x65,0x72,0x2d,0x72,0x67,0x62,0x3a,0x31,0x32,0x33,0x2c,0x34, 0x35,0x2c,0x33,0x38,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2d, 0x72,0x67,0x62,0x3a,0x32,0x34,0x38,0x2c,0x32,0x34,0x39,0x2c,0x32,0x35,0x30,0x3b, 0x2d,0x2d,0x62,0x73,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x72,0x67,0x62,0x3a,0x33,0x33, 0x2c,0x33,0x37,0x2c,0x34,0x31,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x77,0x68,0x69,0x74, 0x65,0x2d,0x72,0x67,0x62,0x3a,0x32,0x35,0x35,0x2c,0x32,0x35,0x35,0x2c,0x32,0x35, 0x35,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6c,0x61,0x63,0x6b,0x2d,0x72,0x67,0x62, 0x3a,0x30,0x2c,0x30,0x2c,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x72,0x67,0x62,0x3a,0x33,0x33,0x2c,0x33,0x37, 0x2c,0x34,0x31,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x62,0x67, 0x2d,0x72,0x67,0x62,0x3a,0x32,0x33,0x33,0x2c,0x32,0x33,0x36,0x2c,0x32,0x33,0x39, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x61,0x6e,0x73,0x2d, 0x73,0x65,0x72,0x69,0x66,0x3a,0x73,0x79,0x73,0x74,0x65,0x6d,0x2d,0x75,0x69,0x2c, 0x2d,0x61,0x70,0x70,0x6c,0x65,0x2d,0x73,0x79,0x73,0x74,0x65,0x6d,0x2c,0x22,0x53, 0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x22,0x2c,0x52,0x6f,0x62,0x6f,0x74,0x6f,0x2c, 0x22,0x48,0x65,0x6c,0x76,0x65,0x74,0x69,0x63,0x61,0x20,0x4e,0x65,0x75,0x65,0x22, 0x2c,0x41,0x72,0x69,0x61,0x6c,0x2c,0x22,0x4e,0x6f,0x74,0x6f,0x20,0x53,0x61,0x6e, 0x73,0x22,0x2c,0x22,0x4c,0x69,0x62,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x53, 0x61,0x6e,0x73,0x22,0x2c,0x73,0x61,0x6e,0x73,0x2d,0x73,0x65,0x72,0x69,0x66,0x2c, 0x22,0x41,0x70,0x70,0x6c,0x65,0x20,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x45,0x6d,0x6f, 0x6a,0x69,0x22,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x20,0x45,0x6d, 0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x20,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x22,0x2c,0x22,0x4e,0x6f,0x74,0x6f,0x20,0x43,0x6f,0x6c, 0x6f,0x72,0x20,0x45,0x6d,0x6f,0x6a,0x69,0x22,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x66, 0x6f,0x6e,0x74,0x2d,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3a,0x53,0x46, 0x4d,0x6f,0x6e,0x6f,0x2d,0x52,0x65,0x67,0x75,0x6c,0x61,0x72,0x2c,0x4d,0x65,0x6e, 0x6c,0x6f,0x2c,0x4d,0x6f,0x6e,0x61,0x63,0x6f,0x2c,0x43,0x6f,0x6e,0x73,0x6f,0x6c, 0x61,0x73,0x2c,0x22,0x4c,0x69,0x62,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4d, 0x6f,0x6e,0x6f,0x22,0x2c,0x22,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65, 0x77,0x22,0x2c,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x3a,0x6c,0x69,0x6e,0x65,0x61, 0x72,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x31,0x38,0x30,0x64,0x65, 0x67,0x2c,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25, 0x2c,0x30,0x2e,0x31,0x35,0x29,0x2c,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25, 0x2c,0x31,0x30,0x30,0x25,0x2c,0x30,0x29,0x29,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62, 0x6f,0x64,0x79,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a, 0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x61, 0x6e,0x73,0x2d,0x73,0x65,0x72,0x69,0x66,0x29,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62, 0x6f,0x64,0x79,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72, 0x65,0x6d,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x66,0x6f,0x6e, 0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x34,0x30,0x30,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x2d, 0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x62,0x67,0x3a,0x23,0x65,0x39,0x65, 0x63,0x65,0x66,0x7d,0x2a,0x2c,0x3a,0x61,0x66,0x74,0x65,0x72,0x2c,0x3a,0x62,0x65, 0x66,0x6f,0x72,0x65,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x69,0x7a,0x69,0x6e,0x67,0x3a, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x78,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63, 0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x2d,0x70,0x72,0x65, 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x29,0x7b,0x3a,0x72,0x6f,0x6f,0x74,0x7b,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x2d,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x72,0x3a,0x73, 0x6d,0x6f,0x6f,0x74,0x68,0x7d,0x7d,0x62,0x6f,0x64,0x79,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x73,0x79,0x73,0x74,0x65,0x6d,0x2d,0x75, 0x69,0x2c,0x2d,0x61,0x70,0x70,0x6c,0x65,0x2d,0x73,0x79,0x73,0x74,0x65,0x6d,0x2c, 0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x22,0x2c,0x52,0x6f,0x62,0x6f,0x74, 0x6f,0x2c,0x22,0x48,0x65,0x6c,0x76,0x65,0x74,0x69,0x63,0x61,0x20,0x4e,0x65,0x75, 0x65,0x22,0x2c,0x41,0x72,0x69,0x61,0x6c,0x2c,0x22,0x4e,0x6f,0x74,0x6f,0x20,0x53, 0x61,0x6e,0x73,0x22,0x2c,0x22,0x4c,0x69,0x62,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e, 0x20,0x53,0x61,0x6e,0x73,0x22,0x2c,0x73,0x61,0x6e,0x73,0x2d,0x73,0x65,0x72,0x69, 0x66,0x2c,0x22,0x41,0x70,0x70,0x6c,0x65,0x20,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x45, 0x6d,0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x20, 0x45,0x6d,0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49, 0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x2c,0x22,0x4e,0x6f,0x74,0x6f,0x20,0x43, 0x6f,0x6c,0x6f,0x72,0x20,0x45,0x6d,0x6f,0x6a,0x69,0x22,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x6f,0x64,0x79,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c, 0x79,0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65, 0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x73, 0x69,0x7a,0x65,0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74, 0x3a,0x34,0x30,0x30,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74, 0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x66, 0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x29,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x6f,0x64,0x79,0x2d,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68, 0x74,0x29,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39, 0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x62,0x6f,0x64,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x3b,0x74,0x65,0x78,0x74, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x62,0x6f,0x64,0x79,0x2d,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x29, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x62,0x6f,0x64,0x79,0x2d,0x62,0x67,0x29,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x74,0x65,0x78,0x74,0x2d,0x73,0x69,0x7a,0x65,0x2d,0x61, 0x64,0x6a,0x75,0x73,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x61,0x70,0x2d,0x68,0x69,0x67,0x68,0x6c,0x69,0x67,0x68,0x74, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c, 0x30,0x2c,0x30,0x29,0x7d,0x68,0x72,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31, 0x72,0x65,0x6d,0x20,0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65, 0x72,0x69,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6c,0x6f, 0x72,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x3a,0x2e,0x32,0x35,0x7d,0x68,0x72,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x73, 0x69,0x7a,0x65,0x5d,0x29,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x70,0x78, 0x7d,0x2e,0x68,0x31,0x2c,0x2e,0x68,0x32,0x2c,0x2e,0x68,0x33,0x2c,0x2e,0x68,0x34, 0x2c,0x2e,0x68,0x35,0x2c,0x2e,0x68,0x36,0x2c,0x68,0x31,0x2c,0x68,0x32,0x2c,0x68, 0x33,0x2c,0x68,0x34,0x2c,0x68,0x35,0x2c,0x68,0x36,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x35,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x32,0x7d,0x2e,0x68,0x31,0x2c, 0x68,0x31,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c, 0x63,0x28,0x31,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x31,0x2e,0x35, 0x76,0x77,0x29,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x68, 0x31,0x2c,0x68,0x31,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x32, 0x2e,0x35,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x68,0x32,0x2c,0x68,0x32,0x7b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x33, 0x32,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x39,0x76,0x77,0x29,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x68,0x32,0x2c,0x68,0x32,0x7b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x32,0x72,0x65,0x6d,0x7d,0x7d,0x2e, 0x68,0x33,0x2c,0x68,0x33,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x33,0x72,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x36, 0x76,0x77,0x29,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x68, 0x33,0x2c,0x68,0x33,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31, 0x2e,0x37,0x35,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x68,0x34,0x2c,0x68,0x34,0x7b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e, 0x32,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x76,0x77,0x29,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x68,0x34,0x2c,0x68,0x34,0x7b, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x7d,0x7d,0x2e,0x68,0x35,0x2c,0x68,0x35,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x68,0x36,0x2c,0x68, 0x36,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d, 0x7d,0x70,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72, 0x65,0x6d,0x7d,0x61,0x62,0x62,0x72,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d, 0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x2d,0x74,0x69,0x74,0x6c,0x65,0x5d,0x2c, 0x61,0x62,0x62,0x72,0x5b,0x74,0x69,0x74,0x6c,0x65,0x5d,0x7b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x20,0x64,0x6f, 0x74,0x74,0x65,0x64,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x20,0x64, 0x6f,0x74,0x74,0x65,0x64,0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x68,0x65,0x6c, 0x70,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x65,0x78,0x74,0x2d,0x64, 0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x6b,0x69,0x70,0x2d,0x69, 0x6e,0x6b,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63, 0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x6b,0x69,0x70,0x2d,0x69,0x6e,0x6b, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x72,0x6d, 0x61,0x6c,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x69, 0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x6f,0x6c,0x2c,0x75,0x6c,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x32,0x72,0x65,0x6d,0x7d,0x64, 0x6c,0x2c,0x6f,0x6c,0x2c,0x75,0x6c,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x6f,0x6c,0x20,0x6f,0x6c,0x2c,0x6f,0x6c, 0x20,0x75,0x6c,0x2c,0x75,0x6c,0x20,0x6f,0x6c,0x2c,0x75,0x6c,0x20,0x75,0x6c,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d, 0x64,0x74,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x37, 0x30,0x30,0x7d,0x64,0x64,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x62,0x6c,0x6f,0x63,0x6b,0x71,0x75,0x6f, 0x74,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x20,0x30,0x20,0x31,0x72, 0x65,0x6d,0x7d,0x62,0x2c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x62,0x6f,0x6c,0x64,0x65,0x72,0x7d,0x2e, 0x73,0x6d,0x61,0x6c,0x6c,0x2c,0x73,0x6d,0x61,0x6c,0x6c,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x7d,0x2e,0x6d,0x61, 0x72,0x6b,0x2c,0x6d,0x61,0x72,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x2e,0x32,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x63,0x66,0x38,0x65,0x33,0x7d,0x73,0x75, 0x62,0x2c,0x73,0x75,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a, 0x65,0x3a,0x2e,0x37,0x35,0x65,0x6d,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69, 0x67,0x68,0x74,0x3a,0x30,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7d,0x73,0x75, 0x62,0x7b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2d,0x2e,0x32,0x35,0x65,0x6d,0x7d, 0x73,0x75,0x70,0x7b,0x74,0x6f,0x70,0x3a,0x2d,0x2e,0x35,0x65,0x6d,0x7d,0x61,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x74,0x65, 0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x75,0x6e, 0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x7d,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x61,0x34,0x30,0x34,0x36,0x7d,0x61,0x3a, 0x6e,0x6f,0x74,0x28,0x5b,0x68,0x72,0x65,0x66,0x5d,0x29,0x3a,0x6e,0x6f,0x74,0x28, 0x5b,0x63,0x6c,0x61,0x73,0x73,0x5d,0x29,0x2c,0x61,0x3a,0x6e,0x6f,0x74,0x28,0x5b, 0x68,0x72,0x65,0x66,0x5d,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x63,0x6c,0x61,0x73, 0x73,0x5d,0x29,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63, 0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x63,0x6f,0x64, 0x65,0x2c,0x6b,0x62,0x64,0x2c,0x70,0x72,0x65,0x2c,0x73,0x61,0x6d,0x70,0x7b,0x66, 0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x53,0x46,0x4d,0x6f,0x6e, 0x6f,0x2d,0x52,0x65,0x67,0x75,0x6c,0x61,0x72,0x2c,0x4d,0x65,0x6e,0x6c,0x6f,0x2c, 0x4d,0x6f,0x6e,0x61,0x63,0x6f,0x2c,0x43,0x6f,0x6e,0x73,0x6f,0x6c,0x61,0x73,0x2c, 0x22,0x4c,0x69,0x62,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x6f,0x6e,0x6f, 0x22,0x2c,0x22,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x22,0x2c, 0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x66, 0x61,0x6d,0x69,0x6c,0x79,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x66, 0x6f,0x6e,0x74,0x2d,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x29,0x3b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x65,0x6d,0x3b,0x64,0x69,0x72, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x74,0x72,0x3b,0x75,0x6e,0x69,0x63,0x6f, 0x64,0x65,0x2d,0x62,0x69,0x64,0x69,0x3a,0x62,0x69,0x64,0x69,0x2d,0x6f,0x76,0x65, 0x72,0x72,0x69,0x64,0x65,0x7d,0x70,0x72,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77, 0x3a,0x61,0x75,0x74,0x6f,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x2e,0x38,0x37,0x35,0x65,0x6d,0x7d,0x70,0x72,0x65,0x20,0x63,0x6f,0x64,0x65,0x7b, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69, 0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b, 0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x6e,0x6f,0x72,0x6d,0x61, 0x6c,0x7d,0x63,0x6f,0x64,0x65,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64, 0x36,0x33,0x33,0x38,0x34,0x3b,0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a, 0x62,0x72,0x65,0x61,0x6b,0x2d,0x77,0x6f,0x72,0x64,0x7d,0x61,0x3e,0x63,0x6f,0x64, 0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d, 0x6b,0x62,0x64,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x72,0x65, 0x6d,0x20,0x2e,0x34,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a, 0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d, 0x7d,0x6b,0x62,0x64,0x20,0x6b,0x62,0x64,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x30,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x65,0x6d, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x37,0x30,0x30, 0x7d,0x66,0x69,0x67,0x75,0x72,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30, 0x20,0x30,0x20,0x31,0x72,0x65,0x6d,0x7d,0x69,0x6d,0x67,0x2c,0x73,0x76,0x67,0x7b, 0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6d, 0x69,0x64,0x64,0x6c,0x65,0x7d,0x74,0x61,0x62,0x6c,0x65,0x7b,0x63,0x61,0x70,0x74, 0x69,0x6f,0x6e,0x2d,0x73,0x69,0x64,0x65,0x3a,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x3a, 0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7d,0x63,0x61,0x70,0x74,0x69,0x6f,0x6e, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36, 0x63,0x37,0x35,0x37,0x64,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e, 0x3a,0x6c,0x65,0x66,0x74,0x7d,0x74,0x68,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c, 0x69,0x67,0x6e,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x74,0x65,0x78,0x74, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d, 0x61,0x74,0x63,0x68,0x2d,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x74,0x62,0x6f,0x64, 0x79,0x2c,0x74,0x64,0x2c,0x74,0x66,0x6f,0x6f,0x74,0x2c,0x74,0x68,0x2c,0x74,0x68, 0x65,0x61,0x64,0x2c,0x74,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x20, 0x73,0x6f,0x6c,0x69,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x6c,0x61,0x62,0x65,0x6c, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d, 0x62,0x6c,0x6f,0x63,0x6b,0x7d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x62,0x75,0x74, 0x74,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2d,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x29,0x7b,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x7d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2c,0x69, 0x6e,0x70,0x75,0x74,0x2c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x2c,0x73,0x65, 0x6c,0x65,0x63,0x74,0x2c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69, 0x6c,0x79,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x66,0x6f,0x6e,0x74,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x6c,0x69,0x6e, 0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74, 0x7d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2c,0x73,0x65,0x6c,0x65,0x63,0x74,0x7b,0x74, 0x65,0x78,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f, 0x6e,0x65,0x7d,0x5b,0x72,0x6f,0x6c,0x65,0x3d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x5d, 0x7b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x7b,0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70, 0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x7d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x31,0x7d,0x5b,0x6c,0x69,0x73,0x74,0x5d,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x63,0x61,0x6c,0x65,0x6e,0x64,0x61,0x72,0x2d,0x70,0x69,0x63,0x6b,0x65, 0x72,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x5b,0x74,0x79,0x70,0x65,0x3d,0x62, 0x75,0x74,0x74,0x6f,0x6e,0x5d,0x2c,0x5b,0x74,0x79,0x70,0x65,0x3d,0x72,0x65,0x73, 0x65,0x74,0x5d,0x2c,0x5b,0x74,0x79,0x70,0x65,0x3d,0x73,0x75,0x62,0x6d,0x69,0x74, 0x5d,0x2c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x62,0x75,0x74,0x74, 0x6f,0x6e,0x7d,0x5b,0x74,0x79,0x70,0x65,0x3d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x5d, 0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x2c, 0x5b,0x74,0x79,0x70,0x65,0x3d,0x72,0x65,0x73,0x65,0x74,0x5d,0x3a,0x6e,0x6f,0x74, 0x28,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x2c,0x5b,0x74,0x79,0x70, 0x65,0x3d,0x73,0x75,0x62,0x6d,0x69,0x74,0x5d,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x2c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a, 0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x7b,0x63, 0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x3a,0x3a, 0x2d,0x6d,0x6f,0x7a,0x2d,0x66,0x6f,0x63,0x75,0x73,0x2d,0x69,0x6e,0x6e,0x65,0x72, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x74,0x65,0x78, 0x74,0x61,0x72,0x65,0x61,0x7b,0x72,0x65,0x73,0x69,0x7a,0x65,0x3a,0x76,0x65,0x72, 0x74,0x69,0x63,0x61,0x6c,0x7d,0x66,0x69,0x65,0x6c,0x64,0x73,0x65,0x74,0x7b,0x6d, 0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x3a,0x30,0x7d,0x6c,0x65,0x67,0x65,0x6e,0x64,0x7b,0x66,0x6c, 0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63, 0x28,0x31,0x2e,0x32,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x76,0x77, 0x29,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x69,0x6e, 0x68,0x65,0x72,0x69,0x74,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69, 0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b, 0x6c,0x65,0x67,0x65,0x6e,0x64,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x7d,0x6c,0x65,0x67,0x65,0x6e,0x64,0x2b, 0x2a,0x7b,0x63,0x6c,0x65,0x61,0x72,0x3a,0x6c,0x65,0x66,0x74,0x7d,0x3a,0x3a,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d, 0x65,0x64,0x69,0x74,0x2d,0x64,0x61,0x79,0x2d,0x66,0x69,0x65,0x6c,0x64,0x2c,0x3a, 0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x64,0x61,0x74,0x65,0x74,0x69,0x6d, 0x65,0x2d,0x65,0x64,0x69,0x74,0x2d,0x66,0x69,0x65,0x6c,0x64,0x73,0x2d,0x77,0x72, 0x61,0x70,0x70,0x65,0x72,0x2c,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x65,0x64,0x69,0x74,0x2d,0x68,0x6f, 0x75,0x72,0x2d,0x66,0x69,0x65,0x6c,0x64,0x2c,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x65,0x64,0x69,0x74, 0x2d,0x6d,0x69,0x6e,0x75,0x74,0x65,0x2c,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x65,0x64,0x69,0x74,0x2d, 0x6d,0x6f,0x6e,0x74,0x68,0x2d,0x66,0x69,0x65,0x6c,0x64,0x2c,0x3a,0x3a,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x65, 0x64,0x69,0x74,0x2d,0x74,0x65,0x78,0x74,0x2c,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x65,0x64,0x69,0x74, 0x2d,0x79,0x65,0x61,0x72,0x2d,0x66,0x69,0x65,0x6c,0x64,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x30,0x7d,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x69,0x6e,0x6e,0x65,0x72,0x2d,0x73,0x70,0x69,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x5b,0x74, 0x79,0x70,0x65,0x3d,0x73,0x65,0x61,0x72,0x63,0x68,0x5d,0x7b,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x2d,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x2d,0x32,0x70,0x78,0x3b, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e, 0x63,0x65,0x3a,0x74,0x65,0x78,0x74,0x66,0x69,0x65,0x6c,0x64,0x7d,0x3a,0x3a,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x65,0x61,0x72,0x63,0x68,0x2d,0x64,0x65, 0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x6e,0x65, 0x7d,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x2d,0x73,0x77,0x61,0x74,0x63,0x68,0x2d,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x7d,0x3a,0x3a,0x66,0x69,0x6c,0x65, 0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, 0x7b,0x66,0x6f,0x6e,0x74,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x3a,0x3a, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x65,0x2d,0x75,0x70,0x6c, 0x6f,0x61,0x64,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x66,0x6f,0x6e,0x74,0x3a, 0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x7d,0x6f,0x75,0x74,0x70,0x75,0x74,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7d,0x69,0x66, 0x72,0x61,0x6d,0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x7d,0x73,0x75, 0x6d,0x6d,0x61,0x72,0x79,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6c,0x69, 0x73,0x74,0x2d,0x69,0x74,0x65,0x6d,0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x7b, 0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x62, 0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7d,0x5b,0x68,0x69,0x64,0x64,0x65,0x6e,0x5d, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6c,0x65,0x61,0x64,0x7b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b, 0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x30,0x30,0x7d, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x31,0x7b,0x66,0x6f,0x6e,0x74,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x36,0x32,0x35,0x72, 0x65,0x6d,0x20,0x2b,0x20,0x34,0x2e,0x35,0x76,0x77,0x29,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x32,0x7d,0x40,0x6d,0x65,0x64, 0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32, 0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x31, 0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x35,0x72,0x65,0x6d,0x7d, 0x7d,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x32,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x37,0x35, 0x72,0x65,0x6d,0x20,0x2b,0x20,0x33,0x2e,0x39,0x76,0x77,0x29,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x30,0x30,0x3b,0x6c,0x69,0x6e, 0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x32,0x7d,0x40,0x6d,0x65, 0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d, 0x32,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x34,0x2e,0x35,0x72, 0x65,0x6d,0x7d,0x7d,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x33,0x7b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e, 0x35,0x32,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x33,0x2e,0x33,0x76,0x77,0x29,0x3b, 0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x30,0x30,0x3b, 0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x32,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x2d,0x33,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x34, 0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x34,0x7b, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31, 0x2e,0x34,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x32,0x2e,0x37,0x76,0x77,0x29, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x30,0x30, 0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x32, 0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x2d,0x34,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x33,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x2d,0x35,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c, 0x63,0x28,0x31,0x2e,0x34,0x32,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x32,0x2e,0x31, 0x76,0x77,0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a, 0x33,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x32,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x35,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x2d,0x36,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61, 0x6c,0x63,0x28,0x31,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x31,0x2e, 0x35,0x76,0x77,0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74, 0x3a,0x33,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x31,0x2e,0x32,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x36,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73, 0x69,0x7a,0x65,0x3a,0x32,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x75, 0x6e,0x73,0x74,0x79,0x6c,0x65,0x64,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c, 0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x69,0x6e,0x6c, 0x69,0x6e,0x65,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7d,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a, 0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35, 0x72,0x65,0x6d,0x7d,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x73,0x6d,0x7b, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d, 0x3b,0x74,0x65,0x78,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a, 0x75,0x70,0x70,0x65,0x72,0x63,0x61,0x73,0x65,0x7d,0x2e,0x62,0x6c,0x6f,0x63,0x6b, 0x71,0x75,0x6f,0x74,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x62,0x6c,0x6f,0x63, 0x6b,0x71,0x75,0x6f,0x74,0x65,0x3e,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69, 0x6c,0x64,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x30,0x7d,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x71,0x75,0x6f,0x74,0x65,0x2d,0x66, 0x6f,0x6f,0x74,0x65,0x72,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x2d,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73, 0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x71, 0x75,0x6f,0x74,0x65,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x3a,0x62,0x65,0x66,0x6f, 0x72,0x65,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x5c,0x32,0x30,0x31, 0x34,0x5c,0x30,0x30,0x41,0x30,0x22,0x7d,0x2e,0x69,0x6d,0x67,0x2d,0x66,0x6c,0x75, 0x69,0x64,0x2c,0x2e,0x69,0x6d,0x67,0x2d,0x74,0x68,0x75,0x6d,0x62,0x6e,0x61,0x69, 0x6c,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25, 0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x69,0x6d, 0x67,0x2d,0x74,0x68,0x75,0x6d,0x62,0x6e,0x61,0x69,0x6c,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65, 0x63,0x65,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73, 0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x66,0x69,0x67,0x75,0x72,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7d,0x2e, 0x66,0x69,0x67,0x75,0x72,0x65,0x2d,0x69,0x6d,0x67,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6c, 0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x7d,0x2e,0x66,0x69, 0x67,0x75,0x72,0x65,0x2d,0x63,0x61,0x70,0x74,0x69,0x6f,0x6e,0x7b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65, 0x72,0x2d,0x66,0x6c,0x75,0x69,0x64,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x2d,0x6c,0x67,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x2d,0x6d,0x64,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x73, 0x6d,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x78,0x6c,0x2c, 0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x78,0x78,0x6c,0x7b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x76,0x61,0x72, 0x28,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x2c,0x2e, 0x37,0x35,0x72,0x65,0x6d,0x29,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x2c,0x2e,0x37,0x35,0x72,0x65,0x6d, 0x29,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61, 0x75,0x74,0x6f,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x61,0x75,0x74,0x6f,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x37,0x36,0x70,0x78,0x29,0x7b,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x2d,0x73,0x6d,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x35,0x34,0x30,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28, 0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x36,0x38,0x70,0x78,0x29, 0x7b,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x6d,0x64,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x65,0x72,0x2d,0x73,0x6d,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x37,0x32,0x30,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20, 0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39,0x32,0x70,0x78, 0x29,0x7b,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x6c,0x67,0x2c,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x2d,0x6d,0x64,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x2d,0x73,0x6d,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x39,0x36,0x30,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28, 0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78, 0x29,0x7b,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x6c,0x67,0x2c,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x2d,0x6d,0x64,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x2d,0x73,0x6d,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65, 0x72,0x2d,0x78,0x6c,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x31,0x34,0x30,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d, 0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x34,0x30,0x30,0x70,0x78,0x29, 0x7b,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x6c,0x67,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x65,0x72,0x2d,0x6d,0x64,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x2d,0x73,0x6d,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x2d,0x78,0x6c,0x2c,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x78, 0x78,0x6c,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x33,0x32, 0x30,0x70,0x78,0x7d,0x7d,0x2e,0x72,0x6f,0x77,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x30,0x3b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78, 0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x63,0x61,0x6c,0x63,0x28,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x29,0x2a,0x2d,0x31, 0x29,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x63, 0x61,0x6c,0x63,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74, 0x74,0x65,0x72,0x2d,0x78,0x29,0x2a,0x2d,0x30,0x2e,0x35,0x29,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x76,0x61, 0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x29, 0x2a,0x2d,0x30,0x2e,0x35,0x29,0x7d,0x2e,0x72,0x6f,0x77,0x3e,0x2a,0x7b,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62, 0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x29,0x2a,0x30,0x2e,0x35,0x29, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x63,0x61, 0x6c,0x63,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74, 0x65,0x72,0x2d,0x78,0x29,0x2a,0x30,0x2e,0x35,0x29,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x29,0x7d,0x2e,0x63,0x6f,0x6c,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x31,0x20,0x30,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73, 0x2d,0x61,0x75,0x74,0x6f,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f, 0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x31,0x3e,0x2a,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c, 0x73,0x2d,0x32,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x72, 0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x33,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63, 0x6f,0x6c,0x73,0x2d,0x34,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d, 0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x35,0x3e,0x2a,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x32,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d, 0x36,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37, 0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x61,0x75,0x74,0x6f,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x32,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x33,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x63,0x6f, 0x6c,0x2d,0x34,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33, 0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x35,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x34,0x31,0x2e, 0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x36,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x37,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d, 0x38,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x39,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x35,0x25,0x7d,0x2e, 0x63,0x6f,0x6c,0x2d,0x31,0x30,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x33,0x2e,0x33,0x33, 0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x31,0x31,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d, 0x31,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x32,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x34,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x33,0x2e,0x33,0x33, 0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x35,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x34,0x31,0x2e,0x36,0x36, 0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x36,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x30,0x25,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x37,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x38,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x39,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74, 0x2d,0x31,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x38,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65, 0x74,0x2d,0x31,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x67,0x2d,0x30,0x2c, 0x2e,0x67,0x78,0x2d,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x78,0x3a,0x30,0x7d,0x2e,0x67,0x2d,0x30,0x2c,0x2e,0x67,0x79,0x2d,0x30, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x30, 0x7d,0x2e,0x67,0x2d,0x31,0x2c,0x2e,0x67,0x78,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x67,0x2d,0x31,0x2c,0x2e,0x67,0x79,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x67,0x2d,0x32,0x2c,0x2e,0x67,0x78,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x67,0x2d,0x32,0x2c,0x2e,0x67,0x79,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73,0x2d, 0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e, 0x67,0x2d,0x33,0x2c,0x2e,0x67,0x78,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d, 0x33,0x2c,0x2e,0x67,0x79,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74, 0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x34,0x2c, 0x2e,0x67,0x78,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x78,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x34,0x2c, 0x2e,0x67,0x79,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x79,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x35,0x2c, 0x2e,0x67,0x78,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x78,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x35,0x2c,0x2e,0x67, 0x79,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d, 0x79,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d, 0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x37,0x36,0x70,0x78,0x29,0x7b, 0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x30, 0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x73,0x6d,0x2d,0x61,0x75, 0x74,0x6f,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x72, 0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x73,0x6d,0x2d,0x31,0x3e,0x2a,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c, 0x73,0x2d,0x73,0x6d,0x2d,0x32,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x25, 0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x73,0x6d,0x2d,0x33,0x3e, 0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x73,0x6d,0x2d,0x34,0x3e,0x2a, 0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f, 0x6c,0x73,0x2d,0x73,0x6d,0x2d,0x35,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x30, 0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x73,0x6d,0x2d,0x36, 0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25, 0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x31, 0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36, 0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d, 0x34,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x34,0x31, 0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d, 0x36,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73, 0x6d,0x2d,0x37,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33, 0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x38,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73, 0x6d,0x2d,0x39,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x63,0x6f,0x6c, 0x2d,0x73,0x6d,0x2d,0x31,0x30,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x33,0x2e,0x33,0x33, 0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x31,0x31,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x31,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30, 0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37, 0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x32,0x35,0x25,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33, 0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x34,0x31,0x2e,0x36,0x36, 0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d, 0x36,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x30, 0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d,0x37,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x38,0x2e,0x33,0x33, 0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d, 0x38,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x36,0x36, 0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x73,0x6d,0x2d,0x39,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x37,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x73,0x6d,0x2d, 0x31,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38, 0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74, 0x2d,0x73,0x6d,0x2d,0x31,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x67,0x2d, 0x73,0x6d,0x2d,0x30,0x2c,0x2e,0x67,0x78,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x2d,0x2d, 0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x30,0x7d,0x2e,0x67, 0x2d,0x73,0x6d,0x2d,0x30,0x2c,0x2e,0x67,0x79,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x30,0x7d,0x2e, 0x67,0x2d,0x73,0x6d,0x2d,0x31,0x2c,0x2e,0x67,0x78,0x2d,0x73,0x6d,0x2d,0x31,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x73,0x6d,0x2d,0x31,0x2c,0x2e,0x67,0x79, 0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x79,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x73,0x6d, 0x2d,0x32,0x2c,0x2e,0x67,0x78,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x67,0x2d,0x73,0x6d,0x2d,0x32,0x2c,0x2e,0x67,0x79,0x2d,0x73,0x6d,0x2d,0x32, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x73,0x6d,0x2d,0x33,0x2c,0x2e,0x67,0x78, 0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x78,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x73,0x6d,0x2d,0x33, 0x2c,0x2e,0x67,0x79,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d, 0x73,0x6d,0x2d,0x34,0x2c,0x2e,0x67,0x78,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x2d,0x2d, 0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x73,0x6d,0x2d,0x34,0x2c,0x2e,0x67,0x79,0x2d,0x73, 0x6d,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d, 0x79,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x73,0x6d,0x2d,0x35, 0x2c,0x2e,0x67,0x78,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d, 0x73,0x6d,0x2d,0x35,0x2c,0x2e,0x67,0x79,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x2d,0x2d, 0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x33,0x72,0x65,0x6d, 0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x37,0x36,0x38,0x70,0x78,0x29,0x7b,0x2e,0x63,0x6f,0x6c,0x2d, 0x6d,0x64,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x30,0x7d,0x2e,0x72,0x6f,0x77, 0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6d,0x64,0x2d,0x61,0x75,0x74,0x6f,0x3e,0x2a,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f, 0x6c,0x73,0x2d,0x6d,0x64,0x2d,0x31,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30, 0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6d,0x64,0x2d, 0x32,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77, 0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6d,0x64,0x2d,0x33,0x3e,0x2a,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d, 0x63,0x6f,0x6c,0x73,0x2d,0x6d,0x64,0x2d,0x34,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x32,0x35,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6d,0x64, 0x2d,0x35,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x30,0x25,0x7d,0x2e,0x72,0x6f, 0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6d,0x64,0x2d,0x36,0x3e,0x2a,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c, 0x2d,0x6d,0x64,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74, 0x6f,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64, 0x2d,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25, 0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32, 0x35,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d, 0x6d,0x64,0x2d,0x35,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x34,0x31,0x2e,0x36,0x36,0x36,0x36, 0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x36,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x35,0x30,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x37,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f, 0x6c,0x2d,0x6d,0x64,0x2d,0x38,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x36,0x36,0x2e,0x36,0x36, 0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x39,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x31, 0x30,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64,0x2d,0x31,0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x39, 0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6d,0x64, 0x2d,0x31,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x6d,0x64,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65, 0x74,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65, 0x74,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x34,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x36,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x37,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x38,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36,0x36, 0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x39,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x37,0x35,0x25,0x7d, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x31,0x30,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38,0x33,0x2e,0x33,0x33,0x33, 0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6d,0x64,0x2d,0x31, 0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x39,0x31, 0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x30,0x2c, 0x2e,0x67,0x78,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75, 0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x30,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x30, 0x2c,0x2e,0x67,0x79,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x30,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d, 0x31,0x2c,0x2e,0x67,0x78,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d, 0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x31,0x2c,0x2e,0x67,0x79,0x2d,0x6d,0x64,0x2d,0x31, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x32,0x2c,0x2e,0x67, 0x78,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74, 0x65,0x72,0x2d,0x78,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6d,0x64, 0x2d,0x32,0x2c,0x2e,0x67,0x79,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x33,0x2c,0x2e,0x67,0x78,0x2d,0x6d,0x64,0x2d,0x33, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31, 0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x33,0x2c,0x2e,0x67,0x79,0x2d, 0x6d,0x64,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72, 0x2d,0x79,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x34,0x2c, 0x2e,0x67,0x78,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75, 0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67, 0x2d,0x6d,0x64,0x2d,0x34,0x2c,0x2e,0x67,0x79,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x35,0x2c,0x2e,0x67,0x78,0x2d, 0x6d,0x64,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72, 0x2d,0x78,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6d,0x64,0x2d,0x35,0x2c, 0x2e,0x67,0x79,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75, 0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x7d,0x40,0x6d,0x65, 0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39, 0x39,0x32,0x70,0x78,0x29,0x7b,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x31,0x20,0x30,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73, 0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61, 0x75,0x74,0x6f,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6c,0x67, 0x2d,0x31,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x72, 0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6c,0x67,0x2d,0x32,0x3e,0x2a,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73, 0x2d,0x6c,0x67,0x2d,0x33,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33, 0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d, 0x6c,0x67,0x2d,0x34,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e, 0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x6c,0x67,0x2d,0x35,0x3e,0x2a,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x32,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c, 0x73,0x2d,0x6c,0x67,0x2d,0x36,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e, 0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x61, 0x75,0x74,0x6f,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x63,0x6f, 0x6c,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x2e,0x33,0x33,0x33, 0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c, 0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33, 0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x35,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x34,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x36,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x37,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x38, 0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d, 0x38,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x39,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x35, 0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x31,0x30,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x38,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d, 0x6c,0x67,0x2d,0x31,0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36, 0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x6c,0x67,0x2d,0x31,0x32,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x6c,0x67,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6c,0x67,0x2d,0x31,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38,0x2e,0x33,0x33, 0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6c,0x67,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x36, 0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x6c,0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x32,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6c,0x67,0x2d, 0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x33, 0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x6c,0x67,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x34,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2d,0x6c,0x67,0x2d,0x36,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x6c,0x67,0x2d,0x37,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2d,0x6c,0x67,0x2d,0x38,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f, 0x66,0x66,0x73,0x65,0x74,0x2d,0x6c,0x67,0x2d,0x39,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2d,0x6c,0x67,0x2d,0x31,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x38,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x6c,0x67,0x2d,0x31,0x31,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36, 0x37,0x25,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x30,0x2c,0x2e,0x67,0x78,0x2d,0x6c, 0x67,0x2d,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d, 0x78,0x3a,0x30,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x30,0x2c,0x2e,0x67,0x79,0x2d, 0x6c,0x67,0x2d,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72, 0x2d,0x79,0x3a,0x30,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x31,0x2c,0x2e,0x67,0x78, 0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x78,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6c,0x67, 0x2d,0x31,0x2c,0x2e,0x67,0x79,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x32,0x2c,0x2e,0x67,0x78,0x2d,0x6c,0x67,0x2d, 0x32,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x32,0x2c,0x2e,0x67, 0x79,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74, 0x65,0x72,0x2d,0x79,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6c,0x67, 0x2d,0x33,0x2c,0x2e,0x67,0x78,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e, 0x67,0x2d,0x6c,0x67,0x2d,0x33,0x2c,0x2e,0x67,0x79,0x2d,0x6c,0x67,0x2d,0x33,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x72, 0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x34,0x2c,0x2e,0x67,0x78,0x2d,0x6c, 0x67,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d, 0x78,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x34, 0x2c,0x2e,0x67,0x79,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67, 0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e, 0x67,0x2d,0x6c,0x67,0x2d,0x35,0x2c,0x2e,0x67,0x78,0x2d,0x6c,0x67,0x2d,0x35,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x33,0x72, 0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x6c,0x67,0x2d,0x35,0x2c,0x2e,0x67,0x79,0x2d,0x6c, 0x67,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d, 0x79,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28, 0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78, 0x29,0x7b,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31, 0x20,0x30,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x6c,0x2d, 0x61,0x75,0x74,0x6f,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20, 0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d, 0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x6c,0x2d,0x31,0x3e,0x2a, 0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63, 0x6f,0x6c,0x73,0x2d,0x78,0x6c,0x2d,0x32,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35, 0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x6c,0x2d, 0x33,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33, 0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x6c,0x2d,0x34, 0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d, 0x63,0x6f,0x6c,0x73,0x2d,0x78,0x6c,0x2d,0x35,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x32,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x6c, 0x2d,0x36,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36, 0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c, 0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36, 0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d, 0x33,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78, 0x6c,0x2d,0x34,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33, 0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x34,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78, 0x6c,0x2d,0x36,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x63,0x6f,0x6c, 0x2d,0x78,0x6c,0x2d,0x37,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33, 0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x38,0x7b,0x66,0x6c, 0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c, 0x2d,0x78,0x6c,0x2d,0x39,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x31,0x30,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x33,0x2e, 0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x31, 0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x6c,0x2d,0x31,0x32,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x30,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x30, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25, 0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36, 0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x33, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x32,0x35,0x25, 0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33, 0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x35, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x34,0x31,0x2e, 0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78, 0x6c,0x2d,0x36,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x35,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x6c,0x2d,0x37, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x38,0x2e, 0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78, 0x6c,0x2d,0x38,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x36,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65, 0x74,0x2d,0x78,0x6c,0x2d,0x39,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78, 0x6c,0x2d,0x31,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x38,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2d,0x78,0x6c,0x2d,0x31,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e, 0x67,0x2d,0x78,0x6c,0x2d,0x30,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x6c,0x2d,0x30,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x30,0x7d, 0x2e,0x67,0x2d,0x78,0x6c,0x2d,0x30,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x6c,0x2d,0x30, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x30, 0x7d,0x2e,0x67,0x2d,0x78,0x6c,0x2d,0x31,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x6c,0x2d, 0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x6c,0x2d,0x31,0x2c,0x2e, 0x67,0x79,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74, 0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d, 0x78,0x6c,0x2d,0x32,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x2d,0x2d, 0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x6c,0x2d,0x32,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x6c, 0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x6c,0x2d,0x33,0x2c,0x2e, 0x67,0x78,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74, 0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x6c, 0x2d,0x33,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e, 0x67,0x2d,0x78,0x6c,0x2d,0x34,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x6c,0x2d,0x34,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x6c,0x2d,0x34,0x2c,0x2e,0x67,0x79, 0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65, 0x72,0x2d,0x79,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x6c, 0x2d,0x35,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x2e, 0x67,0x2d,0x78,0x6c,0x2d,0x35,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x6c,0x2d,0x35,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x33,0x72, 0x65,0x6d,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x34,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x63, 0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x30,0x7d, 0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75, 0x74,0x6f,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x72, 0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x3e,0x2a,0x7b, 0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f, 0x6c,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35, 0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x78,0x6c, 0x2d,0x33,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33, 0x33,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x78,0x6c, 0x2d,0x34,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x72,0x6f, 0x77,0x2d,0x63,0x6f,0x6c,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x3e,0x2a,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x32,0x30,0x25,0x7d,0x2e,0x72,0x6f,0x77,0x2d,0x63,0x6f,0x6c,0x73, 0x2d,0x78,0x78,0x6c,0x2d,0x36,0x3e,0x2a,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e, 0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d, 0x61,0x75,0x74,0x6f,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x63, 0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20, 0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x2e,0x33, 0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x32, 0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e, 0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30, 0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x35, 0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d, 0x78,0x78,0x6c,0x2d,0x35,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x34,0x31,0x2e,0x36,0x36,0x36, 0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x36,0x7b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d, 0x37,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x38,0x7b,0x66,0x6c,0x65,0x78,0x3a, 0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x36, 0x36,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78, 0x6c,0x2d,0x39,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74, 0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x35,0x25,0x7d,0x2e,0x63,0x6f,0x6c, 0x2d,0x78,0x78,0x6c,0x2d,0x31,0x30,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x38,0x33,0x2e,0x33, 0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x31, 0x31,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d, 0x2e,0x63,0x6f,0x6c,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x32,0x7b,0x66,0x6c,0x65,0x78, 0x3a,0x30,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x30,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c, 0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30, 0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38,0x2e,0x33,0x33,0x33, 0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x36, 0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d, 0x78,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x32,0x35,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78, 0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x33,0x33,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65, 0x74,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x34,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x6f, 0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x36,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x37,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x35,0x38,0x2e,0x33,0x33,0x33,0x33,0x33,0x25,0x7d, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x38,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x36,0x36,0x2e,0x36,0x36,0x36, 0x36,0x37,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d, 0x39,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x37,0x35, 0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x30, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x38,0x33,0x2e, 0x33,0x33,0x33,0x33,0x33,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2d,0x78, 0x78,0x6c,0x2d,0x31,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x39,0x31,0x2e,0x36,0x36,0x36,0x36,0x37,0x25,0x7d,0x2e,0x67,0x2d,0x78, 0x78,0x6c,0x2d,0x30,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x30,0x7d,0x2e, 0x67,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x78,0x6c,0x2d, 0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a, 0x30,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x2c,0x2e,0x67,0x78,0x2d,0x78, 0x78,0x6c,0x2d,0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72, 0x2d,0x78,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c, 0x2d,0x31,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x2d,0x2d,0x62, 0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x2c,0x2e,0x67,0x78,0x2d,0x78, 0x78,0x6c,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72, 0x2d,0x78,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d, 0x32,0x2c,0x2e,0x67,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x78,0x6c, 0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78, 0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x2c,0x2e, 0x67,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75, 0x74,0x74,0x65,0x72,0x2d,0x79,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78, 0x78,0x6c,0x2d,0x34,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x2c,0x2e,0x67,0x79, 0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74, 0x65,0x72,0x2d,0x79,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x67,0x2d,0x78, 0x78,0x6c,0x2d,0x35,0x2c,0x2e,0x67,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72,0x2d,0x78,0x3a,0x33,0x72,0x65, 0x6d,0x7d,0x2e,0x67,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x2c,0x2e,0x67,0x79,0x2d,0x78, 0x78,0x6c,0x2d,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x67,0x75,0x74,0x74,0x65,0x72, 0x2d,0x79,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x74,0x72, 0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x62,0x67,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62, 0x67,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x2e,0x30, 0x35,0x29,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63, 0x74,0x69,0x76,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35, 0x32,0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63, 0x74,0x69,0x76,0x65,0x2d,0x62,0x67,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x30,0x2e,0x31,0x29,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x72,0x67,0x62,0x61,0x28, 0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x2e,0x30,0x37,0x35,0x29,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61, 0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x74,0x6f,0x70,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x65,0x65,0x32,0x65,0x36, 0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x3e,0x3a,0x6e,0x6f,0x74,0x28,0x63,0x61,0x70, 0x74,0x69,0x6f,0x6e,0x29,0x3e,0x2a,0x3e,0x2a,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x29,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x70,0x78,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x69, 0x6e,0x73,0x65,0x74,0x20,0x30,0x20,0x30,0x20,0x30,0x20,0x39,0x39,0x39,0x39,0x70, 0x78,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x62,0x67,0x29,0x7d,0x2e,0x74,0x61,0x62, 0x6c,0x65,0x3e,0x74,0x62,0x6f,0x64,0x79,0x7b,0x76,0x65,0x72,0x74,0x69,0x63,0x61, 0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d, 0x2e,0x74,0x61,0x62,0x6c,0x65,0x3e,0x74,0x68,0x65,0x61,0x64,0x7b,0x76,0x65,0x72, 0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x3e,0x3a,0x6e,0x6f,0x74,0x28,0x3a, 0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x32,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69, 0x64,0x7d,0x2e,0x63,0x61,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x74,0x6f,0x70,0x7b,0x63, 0x61,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x69,0x64,0x65,0x3a,0x74,0x6f,0x70,0x7d, 0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x6d,0x3e,0x3a,0x6e,0x6f,0x74,0x28,0x63, 0x61,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3e,0x2a,0x3e,0x2a,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x3e,0x3a,0x6e,0x6f,0x74,0x28, 0x63,0x61,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3e,0x2a,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x20,0x30,0x7d,0x2e,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x3e,0x3a,0x6e, 0x6f,0x74,0x28,0x63,0x61,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3e,0x2a,0x3e,0x2a,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x20,0x31, 0x70,0x78,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72, 0x6c,0x65,0x73,0x73,0x3e,0x3a,0x6e,0x6f,0x74,0x28,0x63,0x61,0x70,0x74,0x69,0x6f, 0x6e,0x29,0x3e,0x2a,0x3e,0x2a,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x6c,0x65,0x73,0x73,0x3e,0x3a, 0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64, 0x29,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x30,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69, 0x70,0x65,0x64,0x3e,0x74,0x62,0x6f,0x64,0x79,0x3e,0x74,0x72,0x3a,0x6e,0x74,0x68, 0x2d,0x6f,0x66,0x2d,0x74,0x79,0x70,0x65,0x28,0x6f,0x64,0x64,0x29,0x3e,0x2a,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x63,0x65,0x6e, 0x74,0x2d,0x62,0x67,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62,0x67,0x29,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x29,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76, 0x65,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x63, 0x65,0x6e,0x74,0x2d,0x62,0x67,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x62,0x67,0x29, 0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x29,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72, 0x3e,0x74,0x62,0x6f,0x64,0x79,0x3e,0x74,0x72,0x3a,0x68,0x6f,0x76,0x65,0x72,0x3e, 0x2a,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x63, 0x65,0x6e,0x74,0x2d,0x62,0x67,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x29,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x29,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23, 0x64,0x62,0x64,0x63,0x64,0x64,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62,0x67,0x3a,0x23,0x64,0x30, 0x64,0x31,0x64,0x32,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30, 0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63, 0x74,0x69,0x76,0x65,0x2d,0x62,0x67,0x3a,0x23,0x63,0x35,0x63,0x36,0x63,0x37,0x3b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76, 0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67, 0x3a,0x23,0x63,0x62,0x63,0x63,0x63,0x63,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x30,0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x63,0x35, 0x63,0x36,0x63,0x37,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x65,0x63,0x6f, 0x6e,0x64,0x61,0x72,0x79,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x62,0x67,0x3a,0x23,0x65,0x32,0x65,0x33,0x65,0x35,0x3b,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62, 0x67,0x3a,0x23,0x64,0x37,0x64,0x38,0x64,0x61,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x62,0x67,0x3a,0x23,0x63,0x62, 0x63,0x63,0x63,0x65,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30, 0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76, 0x65,0x72,0x2d,0x62,0x67,0x3a,0x23,0x64,0x31,0x64,0x32,0x64,0x34,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x30,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x63,0x62,0x63,0x63,0x63,0x65,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23,0x64,0x31,0x65,0x37,0x64,0x64,0x3b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65, 0x64,0x2d,0x62,0x67,0x3a,0x23,0x63,0x37,0x64,0x62,0x64,0x32,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x62,0x67,0x3a, 0x23,0x62,0x63,0x64,0x30,0x63,0x37,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x23,0x63,0x31,0x64,0x36,0x63,0x63, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x62,0x63,0x64,0x30,0x63,0x37,0x7d,0x2e,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23,0x63,0x66,0x66,0x34,0x66,0x63,0x3b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65, 0x64,0x2d,0x62,0x67,0x3a,0x23,0x63,0x35,0x65,0x38,0x65,0x66,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x62,0x67,0x3a, 0x23,0x62,0x61,0x64,0x63,0x65,0x33,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x23,0x62,0x66,0x65,0x32,0x65,0x39, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x62,0x61,0x64,0x63,0x65,0x33,0x7d,0x2e,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23,0x66,0x66,0x66,0x33,0x63, 0x64,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72, 0x69,0x70,0x65,0x64,0x2d,0x62,0x67,0x3a,0x23,0x66,0x32,0x65,0x37,0x63,0x33,0x3b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72,0x69,0x70, 0x65,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d, 0x62,0x67,0x3a,0x23,0x65,0x36,0x64,0x62,0x62,0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x23,0x65,0x63,0x65, 0x31,0x62,0x65,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68, 0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x36,0x64,0x62,0x62,0x39,0x7d, 0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x7b,0x2d,0x2d, 0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23,0x65,0x35,0x64, 0x35,0x64,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73, 0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62,0x67,0x3a,0x23,0x64,0x61,0x63,0x61,0x63, 0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74,0x72, 0x69,0x70,0x65,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76, 0x65,0x2d,0x62,0x67,0x3a,0x23,0x63,0x65,0x63,0x30,0x62,0x66,0x3b,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x23,0x64, 0x34,0x63,0x35,0x63,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30, 0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x63,0x65,0x63,0x30,0x62, 0x66,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23,0x66,0x38, 0x66,0x39,0x66,0x61,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62,0x67,0x3a,0x23,0x65,0x63,0x65,0x64, 0x65,0x65,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74, 0x72,0x69,0x70,0x65,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69, 0x76,0x65,0x2d,0x62,0x67,0x3a,0x23,0x64,0x66,0x65,0x30,0x65,0x31,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x23, 0x65,0x35,0x65,0x36,0x65,0x37,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30, 0x30,0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x66,0x65,0x30, 0x65,0x31,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x64,0x61,0x72,0x6b,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x67,0x3a,0x23,0x32,0x31, 0x32,0x35,0x32,0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x2d,0x62,0x67,0x3a,0x23,0x32,0x63,0x33,0x30, 0x33,0x34,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x74, 0x72,0x69,0x70,0x65,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69, 0x76,0x65,0x2d,0x62,0x67,0x3a,0x23,0x33,0x37,0x33,0x62,0x33,0x65,0x3b,0x2d,0x2d, 0x62,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x62,0x67,0x3a,0x23, 0x33,0x32,0x33,0x35,0x33,0x39,0x3b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x68,0x6f,0x76,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x37,0x33,0x62, 0x33,0x65,0x7d,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x65,0x73,0x70,0x6f,0x6e, 0x73,0x69,0x76,0x65,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x78,0x3a, 0x61,0x75,0x74,0x6f,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6f,0x76,0x65, 0x72,0x66,0x6c,0x6f,0x77,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x3a, 0x74,0x6f,0x75,0x63,0x68,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x61, 0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x37,0x35,0x2e,0x39,0x38,0x70,0x78, 0x29,0x7b,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73, 0x69,0x76,0x65,0x2d,0x73,0x6d,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d, 0x78,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e, 0x67,0x3a,0x74,0x6f,0x75,0x63,0x68,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20, 0x28,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x36,0x37,0x2e,0x39, 0x38,0x70,0x78,0x29,0x7b,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x65,0x73,0x70, 0x6f,0x6e,0x73,0x69,0x76,0x65,0x2d,0x6d,0x64,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x2d,0x78,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x69,0x6e,0x67,0x3a,0x74,0x6f,0x75,0x63,0x68,0x7d,0x7d,0x40,0x6d,0x65,0x64, 0x69,0x61,0x20,0x28,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39, 0x31,0x2e,0x39,0x38,0x70,0x78,0x29,0x7b,0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72, 0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76,0x65,0x2d,0x6c,0x67,0x7b,0x6f,0x76,0x65, 0x72,0x66,0x6c,0x6f,0x77,0x2d,0x78,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x3a,0x74,0x6f,0x75,0x63,0x68,0x7d,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x31,0x39,0x39,0x2e,0x39,0x38,0x70,0x78,0x29,0x7b,0x2e,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76,0x65,0x2d,0x78,0x6c, 0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x78,0x3a,0x61,0x75,0x74,0x6f, 0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f, 0x77,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x3a,0x74,0x6f,0x75,0x63, 0x68,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x61,0x78,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x33,0x39,0x39,0x2e,0x39,0x38,0x70,0x78,0x29,0x7b, 0x2e,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76, 0x65,0x2d,0x78,0x78,0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x78, 0x3a,0x61,0x75,0x74,0x6f,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e,0x67, 0x3a,0x74,0x6f,0x75,0x63,0x68,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x6c,0x61, 0x62,0x65,0x6c,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x66,0x6f,0x72, 0x6d,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x74,0x6f,0x70,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d, 0x20,0x2b,0x20,0x31,0x70,0x78,0x29,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37,0x35, 0x72,0x65,0x6d,0x20,0x2b,0x20,0x31,0x70,0x78,0x29,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x66,0x6f,0x6e,0x74,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x6c,0x69,0x6e, 0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x7d,0x2e,0x63,0x6f, 0x6c,0x2d,0x66,0x6f,0x72,0x6d,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x2d,0x6c,0x67,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x63,0x61,0x6c,0x63, 0x28,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x31,0x70,0x78,0x29,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x63,0x61,0x6c, 0x63,0x28,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x31,0x70,0x78,0x29,0x3b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x63,0x6f,0x6c,0x2d,0x66,0x6f,0x72,0x6d,0x2d,0x6c,0x61,0x62,0x65,0x6c, 0x2d,0x73,0x6d,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x31,0x70, 0x78,0x29,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20, 0x31,0x70,0x78,0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e, 0x38,0x37,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x74,0x65,0x78, 0x74,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38, 0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35, 0x37,0x64,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x3b, 0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x34,0x30,0x30,0x3b, 0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6c,0x69,0x70,0x3a,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62, 0x6f,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f, 0x6c,0x69,0x64,0x20,0x23,0x63,0x65,0x64,0x34,0x64,0x61,0x3b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75, 0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65, 0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64, 0x75,0x63,0x65,0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f, 0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f, 0x6c,0x5b,0x74,0x79,0x70,0x65,0x3d,0x66,0x69,0x6c,0x65,0x5d,0x7b,0x6f,0x76,0x65, 0x72,0x66,0x6c,0x6f,0x77,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x5b,0x74,0x79,0x70,0x65,0x3d, 0x66,0x69,0x6c,0x65,0x5d,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x72,0x65,0x61,0x64,0x6f,0x6e, 0x6c,0x79,0x5d,0x29,0x7b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e, 0x74,0x65,0x72,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f, 0x6c,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32, 0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x61,0x34,0x61, 0x38,0x61,0x62,0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x3b,0x62,0x6f, 0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c,0x38,0x30, 0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x64,0x61,0x74,0x65,0x2d,0x61,0x6e,0x64,0x2d,0x74,0x69,0x6d,0x65,0x2d,0x76,0x61, 0x6c,0x75,0x65,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x65,0x6d, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x70,0x6c, 0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x31,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a, 0x2d,0x6d,0x73,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x70,0x6c,0x61,0x63,0x65,0x68, 0x6f,0x6c,0x64,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37, 0x35,0x37,0x64,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a,0x70,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x5b,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x5d,0x7b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x3a,0x31,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x3a,0x3a,0x66,0x69,0x6c,0x65,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x2d, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e, 0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x2d,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2d,0x2e, 0x37,0x35,0x72,0x65,0x6d,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x65,0x6e,0x64,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x65,0x6e, 0x64,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b, 0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x20,0x73,0x6f,0x6c, 0x69,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x69, 0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x65,0x6e,0x64,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x63, 0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69, 0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65, 0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69, 0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77, 0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75, 0x74,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72, 0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a,0x66,0x69,0x6c,0x65,0x2d,0x73,0x65,0x6c, 0x65,0x63,0x74,0x6f,0x72,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x68,0x6f,0x76,0x65, 0x72,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29, 0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x5d,0x29, 0x3a,0x3a,0x66,0x69,0x6c,0x65,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x2d, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x64,0x65,0x30,0x65,0x33,0x7d, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x65,0x2d,0x75,0x70,0x6c,0x6f, 0x61,0x64,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2d,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d, 0x20,0x2d,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x65,0x6e,0x64,0x3a,0x2e,0x37,0x35,0x72, 0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65, 0x2d,0x65,0x6e,0x64,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63, 0x65,0x66,0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74, 0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x20, 0x73,0x6f,0x6c,0x69,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x65,0x6e,0x64,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x30,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x6f,0x72,0x20, 0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74, 0x2c,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f, 0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20, 0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74, 0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35,0x73, 0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31, 0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20, 0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74, 0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31, 0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62, 0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65, 0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63, 0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65, 0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a, 0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x65,0x2d,0x75,0x70, 0x6c,0x6f,0x61,0x64,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e, 0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x3a,0x68,0x6f,0x76,0x65,0x72,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69, 0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x72,0x65,0x61, 0x64,0x6f,0x6e,0x6c,0x79,0x5d,0x29,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x66,0x69,0x6c,0x65,0x2d,0x75,0x70,0x6c,0x6f,0x61,0x64,0x2d,0x62,0x75,0x74, 0x74,0x6f,0x6e,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x64,0x65,0x30,0x65,0x33,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70,0x6c,0x61,0x69,0x6e, 0x74,0x65,0x78,0x74,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f, 0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x30,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b, 0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x3a,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72, 0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x70,0x78,0x20,0x30,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e, 0x74,0x72,0x6f,0x6c,0x2d,0x70,0x6c,0x61,0x69,0x6e,0x74,0x65,0x78,0x74,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6c,0x67,0x2c,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70,0x6c,0x61, 0x69,0x6e,0x74,0x65,0x78,0x74,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e, 0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x32,0x70,0x78,0x29,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x72, 0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x2e,0x32,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e, 0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x3a,0x3a,0x66,0x69,0x6c,0x65,0x2d,0x73,0x65, 0x6c,0x65,0x63,0x74,0x6f,0x72,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72, 0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2d,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x65,0x6e,0x64,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d, 0x65,0x6e,0x64,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x3a,0x3a,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x65,0x2d,0x75,0x70,0x6c,0x6f,0x61,0x64,0x2d, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x3a,0x2d,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x2e,0x35,0x72,0x65, 0x6d,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x65,0x6e,0x64,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x65,0x6e,0x64,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x2d,0x6c,0x67,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x63, 0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x31,0x72,0x65,0x6d, 0x20,0x2b,0x20,0x32,0x70,0x78,0x29,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6c, 0x67,0x3a,0x3a,0x66,0x69,0x6c,0x65,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72, 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2d,0x31,0x72,0x65,0x6d,0x3b,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x65,0x6e, 0x64,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x69,0x6e, 0x6c,0x69,0x6e,0x65,0x2d,0x65,0x6e,0x64,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6c,0x67,0x3a,0x3a, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x65,0x2d,0x75,0x70,0x6c, 0x6f,0x61,0x64,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2d,0x31,0x72,0x65, 0x6d,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x65,0x6e,0x64,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x65,0x6e,0x64,0x3a,0x31,0x72,0x65,0x6d, 0x7d,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e, 0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x32,0x70,0x78,0x29,0x7d,0x74,0x65,0x78, 0x74,0x61,0x72,0x65,0x61,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x2d,0x73,0x6d,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x35, 0x72,0x65,0x6d,0x20,0x2b,0x20,0x32,0x70,0x78,0x29,0x7d,0x74,0x65,0x78,0x74,0x61, 0x72,0x65,0x61,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x2d,0x6c,0x67,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x63, 0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x31,0x72,0x65,0x6d, 0x20,0x2b,0x20,0x32,0x70,0x78,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x7b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x33,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75, 0x74,0x6f,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x33,0x37,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x72,0x65,0x61,0x64,0x6f, 0x6e,0x6c,0x79,0x5d,0x29,0x7b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x2d,0x73,0x77,0x61,0x74,0x63,0x68,0x7b,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x2e,0x35,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x2d,0x73,0x77,0x61,0x74,0x63,0x68,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31, 0x2e,0x35,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62, 0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20, 0x32,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20, 0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x2d,0x6d,0x6f,0x7a,0x2d,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e, 0x37,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x33,0x70,0x78,0x29,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x34,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63, 0x65,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d, 0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d, 0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72, 0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67, 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77, 0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73, 0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30, 0x20,0x31,0x36,0x20,0x31,0x36,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74, 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20,0x73,0x74, 0x72,0x6f,0x6b,0x65,0x3d,0x27,0x25,0x32,0x33,0x33,0x34,0x33,0x61,0x34,0x30,0x27, 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x3d, 0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c, 0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x32,0x27, 0x20,0x64,0x3d,0x27,0x4d,0x32,0x20,0x35,0x6c,0x36,0x20,0x36,0x20,0x36,0x2d,0x36, 0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22, 0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70, 0x65,0x61,0x74,0x3a,0x6e,0x6f,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x72,0x69,0x67,0x68,0x74,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x20,0x63, 0x65,0x6e,0x74,0x65,0x72,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x36,0x70,0x78,0x20,0x31,0x32,0x70,0x78,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64, 0x20,0x23,0x63,0x65,0x64,0x34,0x64,0x61,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d, 0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f, 0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f, 0x75,0x74,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65,0x61, 0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x61,0x70,0x70,0x65,0x61, 0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63, 0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65, 0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x7b,0x74, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x61,0x34,0x61,0x38,0x61,0x62,0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x3a, 0x30,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30, 0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37, 0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x5b,0x6d,0x75,0x6c,0x74,0x69,0x70, 0x6c,0x65,0x5d,0x2c,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x5b,0x73,0x69,0x7a,0x65,0x5d,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x73,0x69,0x7a,0x65, 0x3d,0x22,0x31,0x22,0x5d,0x29,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x6e,0x6f,0x6e, 0x65,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x2d,0x6d, 0x6f,0x7a,0x2d,0x66,0x6f,0x63,0x75,0x73,0x72,0x69,0x6e,0x67,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x74, 0x65,0x78,0x74,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30, 0x20,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73, 0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e, 0x38,0x37,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x6c,0x67,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31, 0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c, 0x6f,0x63,0x6b,0x3b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x31,0x2e,0x35,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x31,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x20,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x7b,0x66,0x6c,0x6f, 0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2d,0x31,0x2e,0x35,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x7b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x65, 0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35, 0x65,0x6d,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67, 0x6e,0x3a,0x74,0x6f,0x70,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70,0x65,0x61,0x74, 0x3a,0x6e,0x6f,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x35, 0x30,0x25,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61, 0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x32,0x35,0x29,0x3b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x70,0x72,0x69,0x6e, 0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x61,0x64,0x6a,0x75,0x73,0x74,0x3a,0x65, 0x78,0x61,0x63,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x61,0x64,0x6a,0x75,0x73, 0x74,0x3a,0x65,0x78,0x61,0x63,0x74,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68, 0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x5b,0x74,0x79,0x70,0x65,0x3d,0x63, 0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x5d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x65,0x6d,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x5b,0x74, 0x79,0x70,0x65,0x3d,0x72,0x61,0x64,0x69,0x6f,0x5d,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x35,0x30,0x25,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69, 0x6c,0x74,0x65,0x72,0x3a,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x28, 0x39,0x30,0x25,0x29,0x3b,0x66,0x69,0x6c,0x74,0x65,0x72,0x3a,0x62,0x72,0x69,0x67, 0x68,0x74,0x6e,0x65,0x73,0x73,0x28,0x39,0x30,0x25,0x29,0x7d,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x61,0x34,0x61,0x38,0x61,0x62,0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x3a,0x30,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20, 0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28, 0x37,0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a, 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34, 0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x5b, 0x74,0x79,0x70,0x65,0x3d,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x5d,0x7b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a, 0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f, 0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d, 0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c, 0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77, 0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20, 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30,0x20,0x32,0x30,0x20, 0x32,0x30,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x66,0x69, 0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65, 0x3d,0x27,0x25,0x32,0x33,0x66,0x66,0x66,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65, 0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x3d,0x27,0x72,0x6f,0x75,0x6e,0x64,0x27, 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e, 0x3d,0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x33,0x27,0x20,0x64,0x3d,0x27,0x4d,0x36,0x20, 0x31,0x30,0x6c,0x33,0x20,0x33,0x20,0x36,0x2d,0x36,0x27,0x2f,0x25,0x33,0x45,0x25, 0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x63,0x68, 0x65,0x63,0x6b,0x65,0x64,0x5b,0x74,0x79,0x70,0x65,0x3d,0x72,0x61,0x64,0x69,0x6f, 0x5d,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61, 0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61, 0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73, 0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77, 0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, 0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x2d,0x34,0x20,0x2d, 0x34,0x20,0x38,0x20,0x38,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x63,0x69,0x72,0x63, 0x6c,0x65,0x20,0x72,0x3d,0x27,0x32,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25, 0x32,0x33,0x66,0x66,0x66,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76, 0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65, 0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x5b,0x74,0x79,0x70,0x65,0x3d,0x63,0x68, 0x65,0x63,0x6b,0x62,0x6f,0x78,0x5d,0x3a,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d, 0x69,0x6e,0x61,0x74,0x65,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35, 0x30,0x35,0x37,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69, 0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69, 0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61, 0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76, 0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, 0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f, 0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20, 0x30,0x20,0x32,0x30,0x20,0x32,0x30,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61, 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20,0x73, 0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x25,0x32,0x33,0x66,0x66,0x66,0x27,0x20,0x73, 0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x3d,0x27,0x72, 0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e, 0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74, 0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x33,0x27,0x20,0x64, 0x3d,0x27,0x4d,0x36,0x20,0x31,0x30,0x68,0x38,0x27,0x2f,0x25,0x33,0x45,0x25,0x33, 0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x7b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76, 0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x66,0x69, 0x6c,0x74,0x65,0x72,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7e, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x6c,0x61,0x62,0x65, 0x6c,0x2c,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e, 0x70,0x75,0x74,0x5b,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x5d,0x7e,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x7b, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x73,0x77,0x69,0x74,0x63,0x68,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x32,0x2e,0x35,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68, 0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x32,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x2d,0x32,0x2e,0x35,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74, 0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b, 0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33, 0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70, 0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30, 0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d, 0x27,0x2d,0x34,0x20,0x2d,0x34,0x20,0x38,0x20,0x38,0x27,0x25,0x33,0x45,0x25,0x33, 0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x72,0x3d,0x27,0x33,0x27,0x20,0x66,0x69, 0x6c,0x6c,0x3d,0x27,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30, 0x2e,0x32,0x35,0x29,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67, 0x25,0x33,0x45,0x22,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x32,0x65,0x6d,0x3b,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x2e,0x31,0x35, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65, 0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64, 0x75,0x63,0x65,0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x77,0x69,0x74,0x63, 0x68,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e, 0x70,0x75,0x74,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e, 0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x77,0x69,0x74,0x63, 0x68,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e, 0x70,0x75,0x74,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22, 0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78, 0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38, 0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68, 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67, 0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42, 0x6f,0x78,0x3d,0x27,0x2d,0x34,0x20,0x2d,0x34,0x20,0x38,0x20,0x38,0x27,0x25,0x33, 0x45,0x25,0x33,0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x72,0x3d,0x27,0x33,0x27, 0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x61,0x34,0x61,0x38,0x61,0x62, 0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22, 0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74, 0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x31,0x30,0x30, 0x25,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61, 0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61, 0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73, 0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77, 0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, 0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x2d,0x34,0x20,0x2d, 0x34,0x20,0x38,0x20,0x38,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x63,0x69,0x72,0x63, 0x6c,0x65,0x20,0x72,0x3d,0x27,0x33,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25, 0x32,0x33,0x66,0x66,0x66,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76, 0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65, 0x63,0x6b,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x63,0x6c, 0x69,0x70,0x3a,0x72,0x65,0x63,0x74,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x29, 0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a, 0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x5b,0x64,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x5d,0x2b,0x2e,0x62,0x74,0x6e,0x7b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d, 0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x3a,0x6e,0x6f,0x6e,0x65,0x3b, 0x66,0x69,0x6c,0x74,0x65,0x72,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x3a,0x2e,0x36,0x35,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61, 0x6e,0x67,0x65,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x68, 0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72, 0x65,0x6e,0x74,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65, 0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x61,0x70,0x70,0x65, 0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61, 0x6e,0x67,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x73,0x6c,0x69,0x64,0x65,0x72,0x2d,0x74,0x68,0x75,0x6d,0x62,0x7b, 0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30, 0x20,0x31,0x70,0x78,0x20,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x2c,0x30,0x20,0x30, 0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37, 0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x3a,0x3a, 0x2d,0x6d,0x6f,0x7a,0x2d,0x72,0x61,0x6e,0x67,0x65,0x2d,0x74,0x68,0x75,0x6d,0x62, 0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20, 0x30,0x20,0x31,0x70,0x78,0x20,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x2c,0x30,0x20, 0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28, 0x37,0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d, 0x66,0x6f,0x63,0x75,0x73,0x2d,0x6f,0x75,0x74,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x30,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65, 0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x6c,0x69,0x64,0x65,0x72, 0x2d,0x74,0x68,0x75,0x6d,0x62,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x72,0x65, 0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2d,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x31,0x72,0x65,0x6d,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65, 0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73, 0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61, 0x64,0x6f,0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e, 0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75, 0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e, 0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c, 0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35,0x73,0x20, 0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e, 0x6f,0x6e,0x65,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66, 0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69, 0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x73,0x6c,0x69,0x64,0x65,0x72,0x2d,0x74,0x68,0x75,0x6d,0x62,0x7b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67, 0x65,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x6c,0x69,0x64,0x65, 0x72,0x2d,0x74,0x68,0x75,0x6d,0x62,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x63,0x38,0x63,0x62,0x63,0x64,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61, 0x6e,0x67,0x65,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x6c,0x69, 0x64,0x65,0x72,0x2d,0x72,0x75,0x6e,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x74,0x72,0x61, 0x63,0x6b,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x68,0x65, 0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x63,0x75,0x72, 0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x65, 0x65,0x32,0x65,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x31,0x72,0x65,0x6d, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x3a,0x2d,0x6d, 0x6f,0x7a,0x2d,0x72,0x61,0x6e,0x67,0x65,0x2d,0x74,0x68,0x75,0x6d,0x62,0x7b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x31,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x2d,0x6d,0x6f,0x7a,0x2d, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73, 0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65, 0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73, 0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d, 0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d, 0x6f,0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75, 0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x61,0x70, 0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65, 0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64, 0x75,0x63,0x65,0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65, 0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d,0x72,0x61,0x6e,0x67,0x65,0x2d,0x74,0x68,0x75, 0x6d,0x62,0x7b,0x2d,0x6d,0x6f,0x7a,0x2d,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72, 0x61,0x6e,0x67,0x65,0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d,0x72,0x61,0x6e,0x67,0x65, 0x2d,0x74,0x68,0x75,0x6d,0x62,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x63,0x38,0x63,0x62,0x63,0x64,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e, 0x67,0x65,0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d,0x72,0x61,0x6e,0x67,0x65,0x2d,0x74, 0x72,0x61,0x63,0x6b,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x63, 0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x64,0x65,0x65,0x32,0x65,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x31,0x72, 0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d, 0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x6c,0x69,0x64,0x65,0x72, 0x2d,0x74,0x68,0x75,0x6d,0x62,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x61,0x64,0x62,0x35,0x62,0x64,0x7d, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x3a,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d,0x72,0x61,0x6e,0x67,0x65, 0x2d,0x74,0x68,0x75,0x6d,0x62,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x61,0x64,0x62,0x35,0x62,0x64,0x7d, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2c,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x7b,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x33,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x32, 0x70,0x78,0x29,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x32,0x35,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74, 0x69,0x6e,0x67,0x3e,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a, 0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65, 0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72, 0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72, 0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x2d,0x6f,0x72,0x69,0x67, 0x69,0x6e,0x3a,0x30,0x20,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e,0x3a,0x30,0x20,0x30,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x20,0x2e, 0x31,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x20,0x2e,0x31,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74, 0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x20,0x2e,0x31,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d, 0x6f,0x75,0x74,0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x31, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x20,0x2e,0x31,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74, 0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x31,0x73,0x20,0x65, 0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x31,0x73, 0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d,0x65, 0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64, 0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75, 0x63,0x65,0x29,0x7b,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69, 0x6e,0x67,0x3e,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31, 0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61, 0x72,0x65,0x6e,0x74,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74, 0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f, 0x6c,0x3a,0x2d,0x6d,0x73,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x70,0x6c,0x61,0x63, 0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72, 0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x3a,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c, 0x64,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70, 0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61, 0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x2d,0x6d,0x73,0x2d,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x29,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x36,0x32,0x35, 0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x2e,0x36,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x6e,0x6f,0x74,0x28,0x3a, 0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d,0x73,0x68,0x6f,0x77, 0x6e,0x29,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31, 0x2e,0x36,0x32,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x36,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x61,0x75,0x74,0x6f,0x66,0x69,0x6c,0x6c,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x36,0x32,0x35,0x72,0x65, 0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x2e,0x36,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66, 0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65, 0x6c,0x65,0x63,0x74,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70, 0x3a,0x31,0x2e,0x36,0x32,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x36,0x32,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x6e,0x6f, 0x74,0x28,0x3a,0x2d,0x6d,0x73,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x70,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x29,0x7e,0x6c,0x61,0x62,0x65,0x6c,0x7b, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x36,0x35,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x2e,0x38,0x35,0x29, 0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59,0x28,0x2d,0x2e,0x35,0x72, 0x65,0x6d,0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2e, 0x31,0x35,0x72,0x65,0x6d,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f, 0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7e,0x6c,0x61,0x62,0x65,0x6c,0x2c, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x6e,0x6f,0x74, 0x28,0x3a,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d,0x73,0x68, 0x6f,0x77,0x6e,0x29,0x7e,0x6c,0x61,0x62,0x65,0x6c,0x2c,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x7e,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x2e,0x36,0x35,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65, 0x28,0x2e,0x38,0x35,0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59, 0x28,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61, 0x74,0x65,0x58,0x28,0x2e,0x31,0x35,0x72,0x65,0x6d,0x29,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x2e,0x38,0x35,0x29, 0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59,0x28,0x2d,0x2e,0x35,0x72, 0x65,0x6d,0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2e, 0x31,0x35,0x72,0x65,0x6d,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f, 0x61,0x74,0x69,0x6e,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x75,0x74,0x6f, 0x66,0x69,0x6c,0x6c,0x7e,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x3a,0x2e,0x36,0x35,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x2e, 0x38,0x35,0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59,0x28,0x2d, 0x2e,0x35,0x72,0x65,0x6d,0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65, 0x58,0x28,0x2e,0x31,0x35,0x72,0x65,0x6d,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66, 0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x2e,0x38,0x35,0x29,0x20,0x74, 0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59,0x28,0x2d,0x2e,0x35,0x72,0x65,0x6d, 0x29,0x20,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2e,0x31,0x35, 0x72,0x65,0x6d,0x29,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74, 0x69,0x76,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78, 0x3b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x3b, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x73,0x74,0x72,0x65, 0x74,0x63,0x68,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e, 0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c, 0x65,0x63,0x74,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c, 0x61,0x74,0x69,0x76,0x65,0x3b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61, 0x75,0x74,0x6f,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x25,0x3b,0x6d,0x69,0x6e, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c, 0x65,0x63,0x74,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65, 0x78,0x3a,0x33,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x20,0x2e,0x62,0x74,0x6e,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a, 0x32,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e, 0x62,0x74,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65, 0x78,0x3a,0x33,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x74,0x65,0x78,0x74,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c, 0x65,0x78,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63, 0x65,0x6e,0x74,0x65,0x72,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x33, 0x37,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x34,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x77,0x68,0x69,0x74, 0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31, 0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x63,0x65,0x64,0x34,0x64,0x61, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73, 0x65,0x6c,0x65,0x63,0x74,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x74,0x65,0x78,0x74,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d, 0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x73,0x6d, 0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x73,0x6d,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x73,0x6d,0x3e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x73,0x6d, 0x3e,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x74,0x65, 0x78,0x74,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a, 0x65,0x3a,0x2e,0x38,0x37,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x7d,0x2e,0x69, 0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2c,0x2e,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x73,0x6d,0x3e,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x7d,0x2e,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2e,0x68,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69, 0x64,0x61,0x74,0x69,0x6f,0x6e,0x3e,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x6e,0x74,0x68,0x2d,0x6c,0x61,0x73,0x74, 0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x6e,0x2b,0x34,0x29,0x2c,0x2e,0x69,0x6e,0x70, 0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2e,0x68,0x61,0x73,0x2d,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x3e,0x3a,0x6e,0x74,0x68,0x2d,0x6c,0x61,0x73, 0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x6e,0x2b,0x33,0x29,0x3a,0x6e,0x6f,0x74, 0x28,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x29,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x68,0x61,0x73,0x2d,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3e,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x6e,0x74,0x68,0x2d,0x6c,0x61, 0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x6e,0x2b,0x33,0x29,0x2c,0x2e,0x69, 0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28,0x2e, 0x68,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3e, 0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64, 0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x29,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x30,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e, 0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c, 0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x76,0x61,0x6c,0x69, 0x64,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e, 0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x29,0x3a, 0x6e,0x6f,0x74,0x28,0x2e,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x69,0x6e,0x76,0x61,0x6c, 0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x29,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x30,0x7d,0x2e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61, 0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d,0x2e,0x76,0x61,0x6c, 0x69,0x64,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f,0x70, 0x3a,0x31,0x30,0x30,0x25,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x35,0x3b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6d,0x61,0x78, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x31,0x72,0x65, 0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35, 0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x2e, 0x39,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69, 0x64,0x7e,0x2e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63, 0x6b,0x2c,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x76,0x61,0x6c, 0x69,0x64,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2c,0x2e,0x77,0x61,0x73,0x2d, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x3a,0x76,0x61,0x6c,0x69,0x64, 0x7e,0x2e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b, 0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20, 0x3a,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x74,0x6f, 0x6f,0x6c,0x74,0x69,0x70,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c, 0x6f,0x63,0x6b,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f, 0x6c,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77,0x61,0x73,0x2d, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x76,0x61,0x6c,0x69,0x64,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37, 0x35,0x34,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x37, 0x35,0x72,0x65,0x6d,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61, 0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63, 0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43, 0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30, 0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27, 0x30,0x20,0x30,0x20,0x38,0x20,0x38,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61, 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x31,0x39,0x38,0x37, 0x35,0x34,0x27,0x20,0x64,0x3d,0x27,0x4d,0x32,0x2e,0x33,0x20,0x36,0x2e,0x37,0x33, 0x4c,0x2e,0x36,0x20,0x34,0x2e,0x35,0x33,0x63,0x2d,0x2e,0x34,0x2d,0x31,0x2e,0x30, 0x34,0x2e,0x34,0x36,0x2d,0x31,0x2e,0x34,0x20,0x31,0x2e,0x31,0x2d,0x2e,0x38,0x6c, 0x31,0x2e,0x31,0x20,0x31,0x2e,0x34,0x20,0x33,0x2e,0x34,0x2d,0x33,0x2e,0x38,0x63, 0x2e,0x36,0x2d,0x2e,0x36,0x33,0x20,0x31,0x2e,0x36,0x2d,0x2e,0x32,0x37,0x20,0x31, 0x2e,0x32,0x2e,0x37,0x6c,0x2d,0x34,0x20,0x34,0x2e,0x36,0x63,0x2d,0x2e,0x34,0x33, 0x2e,0x35,0x2d,0x2e,0x38,0x2e,0x34,0x2d,0x31,0x2e,0x31,0x2e,0x31,0x7a,0x27,0x2f, 0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70,0x65,0x61, 0x74,0x3a,0x6e,0x6f,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x72,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37,0x35,0x65, 0x6d,0x20,0x2b,0x20,0x2e,0x31,0x38,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x65, 0x6e,0x74,0x65,0x72,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37,0x35,0x65,0x6d,0x20, 0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x61,0x6c,0x63,0x28, 0x2e,0x37,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x69, 0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77, 0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x76,0x61,0x6c,0x69,0x64, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x62,0x6f,0x78,0x2d, 0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x2c,0x31,0x33,0x35,0x2c, 0x38,0x34,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x76,0x61,0x6c, 0x69,0x64,0x2c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69, 0x64,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x37,0x35, 0x72,0x65,0x6d,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x6f,0x70,0x20,0x63,0x61,0x6c, 0x63,0x28,0x2e,0x33,0x37,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x31,0x38,0x37,0x35, 0x72,0x65,0x6d,0x29,0x20,0x72,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x63,0x28, 0x2e,0x33,0x37,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x31,0x38,0x37,0x35,0x72,0x65, 0x6d,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e, 0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61, 0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65, 0x6c,0x65,0x63,0x74,0x3a,0x76,0x61,0x6c,0x69,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d, 0x76,0x61,0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c,0x74,0x69, 0x70,0x6c,0x65,0x5d,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x73,0x69,0x7a,0x65,0x5d, 0x29,0x2c,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69, 0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c, 0x74,0x69,0x70,0x6c,0x65,0x5d,0x29,0x5b,0x73,0x69,0x7a,0x65,0x3d,0x22,0x31,0x22, 0x5d,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64, 0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x76,0x61, 0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c, 0x65,0x5d,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x73,0x69,0x7a,0x65,0x5d,0x29,0x2c, 0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x76,0x61,0x6c,0x69, 0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x5d, 0x29,0x5b,0x73,0x69,0x7a,0x65,0x3d,0x22,0x31,0x22,0x5d,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x34,0x2e,0x31,0x32,0x35,0x72, 0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d, 0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d, 0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72, 0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67, 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77, 0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73, 0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30, 0x20,0x31,0x36,0x20,0x31,0x36,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74, 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20,0x73,0x74, 0x72,0x6f,0x6b,0x65,0x3d,0x27,0x25,0x32,0x33,0x33,0x34,0x33,0x61,0x34,0x30,0x27, 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x3d, 0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c, 0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x32,0x27, 0x20,0x64,0x3d,0x27,0x4d,0x32,0x20,0x35,0x6c,0x36,0x20,0x36,0x20,0x36,0x2d,0x36, 0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22, 0x29,0x2c,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67, 0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65, 0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78, 0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77, 0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67, 0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30,0x20,0x38, 0x20,0x38,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x66,0x69, 0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x31,0x39,0x38,0x37,0x35,0x34,0x27,0x20,0x64, 0x3d,0x27,0x4d,0x32,0x2e,0x33,0x20,0x36,0x2e,0x37,0x33,0x4c,0x2e,0x36,0x20,0x34, 0x2e,0x35,0x33,0x63,0x2d,0x2e,0x34,0x2d,0x31,0x2e,0x30,0x34,0x2e,0x34,0x36,0x2d, 0x31,0x2e,0x34,0x20,0x31,0x2e,0x31,0x2d,0x2e,0x38,0x6c,0x31,0x2e,0x31,0x20,0x31, 0x2e,0x34,0x20,0x33,0x2e,0x34,0x2d,0x33,0x2e,0x38,0x63,0x2e,0x36,0x2d,0x2e,0x36, 0x33,0x20,0x31,0x2e,0x36,0x2d,0x2e,0x32,0x37,0x20,0x31,0x2e,0x32,0x2e,0x37,0x6c, 0x2d,0x34,0x20,0x34,0x2e,0x36,0x63,0x2d,0x2e,0x34,0x33,0x2e,0x35,0x2d,0x2e,0x38, 0x2e,0x34,0x2d,0x31,0x2e,0x31,0x2e,0x31,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25,0x33, 0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x69,0x67,0x68,0x74,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x20,0x63,0x65,0x6e,0x74, 0x65,0x72,0x2c,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x72,0x69,0x67,0x68,0x74,0x20, 0x32,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x36,0x70,0x78,0x20,0x31,0x32,0x70, 0x78,0x2c,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e, 0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37,0x35, 0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d,0x76,0x61, 0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73, 0x65,0x6c,0x65,0x63,0x74,0x3a,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f, 0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72, 0x67,0x62,0x61,0x28,0x32,0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x2e,0x32, 0x35,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69, 0x6e,0x70,0x75,0x74,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77, 0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x76, 0x61,0x6c,0x69,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2e,0x69,0x73,0x2d,0x76, 0x61,0x6c,0x69,0x64,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x2e,0x77,0x61, 0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x76,0x61, 0x6c,0x69,0x64,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x7b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39, 0x38,0x37,0x35,0x34,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64, 0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20, 0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28, 0x32,0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74, 0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x2c,0x2e,0x77,0x61,0x73, 0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x76,0x61,0x6c, 0x69,0x64,0x7e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x6c, 0x61,0x62,0x65,0x6c,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37, 0x35,0x34,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69, 0x6e,0x6c,0x69,0x6e,0x65,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x7e,0x2e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66, 0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2e,0x35,0x65,0x6d,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x69,0x6e, 0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x2c, 0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e, 0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x76,0x61,0x6c,0x69,0x64,0x2c, 0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e, 0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x76,0x61,0x6c,0x69,0x64,0x7b,0x7a, 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d, 0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77,0x61,0x73, 0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64, 0x20,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x76,0x61,0x6c,0x69,0x64, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x33, 0x7d,0x2e,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61, 0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x65,0x6d,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x69,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x7b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74, 0x6f,0x70,0x3a,0x31,0x30,0x30,0x25,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a, 0x35,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6d, 0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72, 0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x31, 0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38, 0x37,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x31,0x32,0x33,0x2c,0x34,0x35,0x2c,0x33,0x38, 0x2c,0x2e,0x39,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x69,0x73,0x2d,0x69,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66, 0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x2c,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61, 0x6c,0x69,0x64,0x7e,0x2e,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x64,0x20,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x69,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x2c,0x2e, 0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x3a,0x69, 0x6e,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2d, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x62,0x6c,0x6f,0x63,0x6b,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e, 0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x69,0x6e,0x76,0x61, 0x6c,0x69,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65, 0x6d,0x20,0x2b,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x29,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c, 0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67, 0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66, 0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d, 0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x77,0x69,0x64, 0x74,0x68,0x3d,0x27,0x31,0x32,0x27,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x27, 0x31,0x32,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x25,0x32,0x33,0x37,0x62,0x32,0x64,0x32, 0x36,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x63, 0x78,0x3d,0x27,0x36,0x27,0x20,0x63,0x79,0x3d,0x27,0x36,0x27,0x20,0x72,0x3d,0x27, 0x34,0x2e,0x35,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d, 0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20,0x64,0x3d,0x27,0x4d,0x35,0x2e,0x38,0x20, 0x33,0x2e,0x36,0x68,0x2e,0x34,0x4c,0x36,0x20,0x36,0x2e,0x35,0x7a,0x27,0x2f,0x25, 0x33,0x45,0x25,0x33,0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x63,0x78,0x3d,0x27, 0x36,0x27,0x20,0x63,0x79,0x3d,0x27,0x38,0x2e,0x32,0x27,0x20,0x72,0x3d,0x27,0x2e, 0x36,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x37,0x62,0x32,0x64, 0x32,0x36,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x6e,0x6f,0x6e,0x65, 0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22, 0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70, 0x65,0x61,0x74,0x3a,0x6e,0x6f,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x72,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37, 0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x31,0x38,0x37,0x35,0x72,0x65,0x6d,0x29,0x20, 0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37,0x35,0x65, 0x6d,0x20,0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x61,0x6c, 0x63,0x28,0x2e,0x37,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65, 0x6d,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64, 0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x69, 0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32, 0x36,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30, 0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31, 0x32,0x33,0x2c,0x34,0x35,0x2c,0x33,0x38,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x77, 0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x65,0x78, 0x74,0x61,0x72,0x65,0x61,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2c,0x74,0x65,0x78,0x74,0x61, 0x72,0x65,0x61,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31, 0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x29,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x74,0x6f,0x70,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37,0x35, 0x65,0x6d,0x20,0x2b,0x20,0x2e,0x31,0x38,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x72, 0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37,0x35,0x65,0x6d, 0x20,0x2b,0x20,0x2e,0x31,0x38,0x37,0x35,0x72,0x65,0x6d,0x29,0x7d,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d,0x69,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c,0x74,0x69, 0x70,0x6c,0x65,0x5d,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x73,0x69,0x7a,0x65,0x5d, 0x29,0x2c,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69, 0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d, 0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x5d,0x29,0x5b,0x73,0x69,0x7a,0x65,0x3d,0x22, 0x31,0x22,0x5d,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74, 0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a, 0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c, 0x74,0x69,0x70,0x6c,0x65,0x5d,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x73,0x69,0x7a, 0x65,0x5d,0x29,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74, 0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a, 0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x6d,0x75,0x6c, 0x74,0x69,0x70,0x6c,0x65,0x5d,0x29,0x5b,0x73,0x69,0x7a,0x65,0x3d,0x22,0x31,0x22, 0x5d,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x34,0x2e,0x31,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64, 0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d, 0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c, 0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74, 0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f, 0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f, 0x78,0x3d,0x27,0x30,0x20,0x30,0x20,0x31,0x36,0x20,0x31,0x36,0x27,0x25,0x33,0x45, 0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f, 0x6e,0x65,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x25,0x32,0x33,0x33, 0x34,0x33,0x61,0x34,0x30,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69, 0x6e,0x65,0x63,0x61,0x70,0x3d,0x27,0x72,0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74, 0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x27,0x72, 0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3d,0x27,0x32,0x27,0x20,0x64,0x3d,0x27,0x4d,0x32,0x20,0x35,0x6c,0x36, 0x20,0x36,0x20,0x36,0x2d,0x36,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73, 0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x2c,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74, 0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b, 0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33, 0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70, 0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30, 0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x31, 0x32,0x27,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x27,0x31,0x32,0x27,0x20,0x66, 0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b, 0x65,0x3d,0x27,0x25,0x32,0x33,0x37,0x62,0x32,0x64,0x32,0x36,0x27,0x25,0x33,0x45, 0x25,0x33,0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x63,0x78,0x3d,0x27,0x36,0x27, 0x20,0x63,0x79,0x3d,0x27,0x36,0x27,0x20,0x72,0x3d,0x27,0x34,0x2e,0x35,0x27,0x2f, 0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x73,0x74,0x72,0x6f,0x6b, 0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x27,0x72,0x6f,0x75,0x6e, 0x64,0x27,0x20,0x64,0x3d,0x27,0x4d,0x35,0x2e,0x38,0x20,0x33,0x2e,0x36,0x68,0x2e, 0x34,0x4c,0x36,0x20,0x36,0x2e,0x35,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43, 0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x63,0x78,0x3d,0x27,0x36,0x27,0x20,0x63,0x79, 0x3d,0x27,0x38,0x2e,0x32,0x27,0x20,0x72,0x3d,0x27,0x2e,0x36,0x27,0x20,0x66,0x69, 0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x37,0x62,0x32,0x64,0x32,0x36,0x27,0x20,0x73, 0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x2f,0x25,0x33,0x45, 0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x69,0x67,0x68,0x74,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x20,0x63,0x65, 0x6e,0x74,0x65,0x72,0x2c,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x72,0x69,0x67,0x68, 0x74,0x20,0x32,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x36,0x70,0x78,0x20,0x31, 0x32,0x70,0x78,0x2c,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37,0x35,0x65,0x6d,0x20,0x2b, 0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e, 0x37,0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x7d, 0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69,0x73,0x2d, 0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77, 0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f, 0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x3b,0x62,0x6f,0x78, 0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x32,0x33,0x2c,0x34,0x35, 0x2c,0x33,0x38,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2e,0x69,0x73,0x2d,0x69,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64, 0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32, 0x64,0x32,0x36,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d, 0x69,0x6e,0x70,0x75,0x74,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64, 0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61, 0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68, 0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64, 0x32,0x36,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69, 0x6e,0x70,0x75,0x74,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64, 0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a, 0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62, 0x61,0x28,0x31,0x32,0x33,0x2c,0x34,0x35,0x2c,0x33,0x38,0x2c,0x2e,0x32,0x35,0x29, 0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70, 0x75,0x74,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x2c, 0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e, 0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74, 0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7e,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75,0x74,0x7e,0x2e,0x69, 0x6e,0x76,0x61,0x6c,0x69,0x64,0x2d,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x65,0x6d, 0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x69, 0x6e,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77,0x61,0x73, 0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2c,0x2e,0x77, 0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x69,0x6e, 0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7b,0x7a, 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x32,0x7d,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2e,0x69, 0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c, 0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e, 0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x3a,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x7a, 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x33,0x7d,0x2e,0x62,0x74,0x6e,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f, 0x63,0x6b,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x34, 0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31, 0x2e,0x35,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39, 0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74, 0x65,0x72,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69, 0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6d,0x69,0x64,0x64,0x6c,0x65,0x3b,0x63,0x75, 0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x6d,0x73,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73, 0x65,0x6c,0x65,0x63,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x75,0x73,0x65,0x72,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61, 0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a, 0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70, 0x61,0x72,0x65,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x33, 0x37,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x6f, 0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f, 0x75,0x74,0x2c,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e, 0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f, 0x75,0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31, 0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72, 0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65, 0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x62,0x74,0x6e,0x7b,0x74,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x62,0x74,0x6e, 0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31, 0x32,0x35,0x32,0x39,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x7b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x3b, 0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30, 0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c, 0x38,0x30,0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2e, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x3a,0x64,0x69, 0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x66,0x69,0x65,0x6c,0x64,0x73,0x65,0x74,0x3a, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x2e,0x62,0x74,0x6e,0x7b,0x70,0x6f, 0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x36,0x35,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35, 0x30,0x35,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72, 0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72, 0x79,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x33,0x65,0x34,0x34,0x34,0x61,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x61,0x34,0x30,0x34,0x36, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30, 0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31, 0x30,0x30,0x2c,0x31,0x30,0x36,0x2c,0x31,0x31,0x32,0x2c,0x2e,0x35,0x29,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e, 0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x61,0x34,0x30,0x34,0x36,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x37,0x33,0x63,0x34, 0x31,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74, 0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x70, 0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d, 0x61,0x72,0x79,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d, 0x61,0x72,0x79,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68, 0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x30,0x30,0x2c,0x31,0x30,0x36,0x2c,0x31, 0x31,0x32,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d, 0x61,0x72,0x79,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37, 0x35,0x37,0x64,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64, 0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61, 0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65, 0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x35,0x63,0x36,0x33,0x36, 0x61,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x35,0x36,0x35,0x65,0x36,0x34,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63, 0x6f,0x6e,0x64,0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f, 0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d, 0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x33,0x30,0x2c,0x31,0x33,0x38, 0x2c,0x31,0x34,0x35,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68, 0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d, 0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74, 0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62, 0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x35,0x36,0x35,0x65,0x36,0x34, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x35, 0x31,0x35,0x38,0x35,0x65,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63, 0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64, 0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a, 0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x73,0x68, 0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72, 0x79,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64, 0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20, 0x72,0x67,0x62,0x61,0x28,0x31,0x33,0x30,0x2c,0x31,0x33,0x38,0x2c,0x31,0x34,0x35, 0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64, 0x61,0x72,0x79,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38, 0x37,0x35,0x34,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73, 0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73, 0x73,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x35,0x37,0x33,0x34,0x37,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x34,0x36,0x63,0x34,0x33, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30, 0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x36, 0x30,0x2c,0x31,0x35,0x33,0x2c,0x31,0x31,0x30,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x61,0x63, 0x74,0x69,0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d, 0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x34,0x36,0x63,0x34,0x33,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x33,0x36,0x35,0x33,0x66, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75, 0x63,0x63,0x65,0x73,0x73,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65, 0x73,0x73,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c, 0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65, 0x73,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61, 0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x20,0x72,0x67,0x62,0x61,0x28,0x36,0x30,0x2c,0x31,0x35,0x33,0x2c,0x31,0x31,0x30, 0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x75,0x63,0x63,0x65,0x73, 0x73,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39, 0x38,0x37,0x35,0x34,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x69, 0x6e,0x66,0x6f,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x7d,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66, 0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66, 0x6f,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30, 0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x33,0x31,0x64,0x32,0x66,0x32,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x35,0x63,0x66,0x66,0x32, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d, 0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x31,0x2c,0x31,0x37,0x32,0x2c, 0x32,0x30,0x34,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65, 0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x69, 0x6e,0x66,0x6f,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63, 0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e, 0x66,0x6f,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x33,0x64,0x64,0x35,0x66,0x33,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x32,0x35,0x63,0x66,0x66,0x32,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66, 0x6f,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e, 0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a, 0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62, 0x61,0x28,0x31,0x31,0x2c,0x31,0x37,0x32,0x2c,0x32,0x30,0x34,0x2c,0x2e,0x35,0x29, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x64,0x69, 0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30, 0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x7d, 0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x63,0x31,0x30,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e, 0x69,0x6e,0x67,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e, 0x69,0x6e,0x67,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x61,0x32,0x63,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x37, 0x32,0x30,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30, 0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61, 0x28,0x32,0x31,0x37,0x2c,0x31,0x36,0x34,0x2c,0x36,0x2c,0x2e,0x35,0x29,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e, 0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x64,0x33,0x39,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x37,0x32, 0x30,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74, 0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x77, 0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e, 0x69,0x6e,0x67,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e, 0x69,0x6e,0x67,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68, 0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x31,0x37,0x2c,0x31,0x36,0x34,0x2c,0x36, 0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66, 0x63,0x31,0x30,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x64, 0x61,0x6e,0x67,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x39,0x32, 0x36,0x32,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x36,0x32,0x32,0x34,0x31,0x65,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68, 0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64, 0x61,0x6e,0x67,0x65,0x72,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65, 0x72,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64, 0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20, 0x72,0x67,0x62,0x61,0x28,0x31,0x34,0x33,0x2c,0x37,0x37,0x2c,0x37,0x31,0x2c,0x2e, 0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63, 0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63, 0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e, 0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x36,0x32,0x32,0x34,0x31,0x65,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x35,0x63,0x32,0x32,0x31,0x64, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e, 0x67,0x65,0x72,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64, 0x61,0x6e,0x67,0x65,0x72,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x73,0x68,0x6f, 0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30, 0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61, 0x28,0x31,0x34,0x33,0x2c,0x37,0x37,0x2c,0x37,0x31,0x2c,0x2e,0x35,0x29,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32, 0x36,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x38,0x66,0x39,0x66,0x61,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68, 0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x68,0x6f, 0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x39,0x66,0x61,0x66,0x62,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x39,0x66,0x61,0x66,0x62,0x7d,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69, 0x67,0x68,0x74,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68, 0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x31,0x31,0x2c,0x32,0x31,0x32,0x2c,0x32, 0x31,0x33,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69, 0x67,0x68,0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63, 0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68, 0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30, 0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x66,0x39,0x66,0x61,0x66,0x62,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x39,0x66,0x61,0x66,0x62,0x7d, 0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76, 0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68, 0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68, 0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x61,0x63,0x74,0x69,0x76,0x65, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74, 0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f, 0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x31,0x31,0x2c,0x32, 0x31,0x32,0x2c,0x32,0x31,0x33,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d, 0x6c,0x69,0x67,0x68,0x74,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x38,0x66,0x39,0x66,0x61,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x64,0x61,0x72,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64, 0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64, 0x61,0x72,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x63,0x31,0x66,0x32,0x33,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x61,0x31,0x65, 0x32,0x31,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f, 0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x36,0x36,0x2c,0x37,0x30, 0x2c,0x37,0x33,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65, 0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64, 0x61,0x72,0x6b,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63, 0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2c,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61, 0x72,0x6b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x31,0x61,0x31,0x65,0x32,0x31,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x31,0x63,0x31,0x66,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72, 0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e, 0x73,0x68,0x6f,0x77,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a, 0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62, 0x61,0x28,0x36,0x36,0x2c,0x37,0x30,0x2c,0x37,0x33,0x2c,0x2e,0x35,0x29,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61, 0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34, 0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39, 0x35,0x30,0x35,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69, 0x6d,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73, 0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38,0x37, 0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d, 0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69, 0x6d,0x61,0x72,0x79,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f, 0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f, 0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x61, 0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65, 0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72, 0x69,0x6d,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d, 0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f, 0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x61, 0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79, 0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65, 0x2e,0x73,0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f, 0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c,0x38,0x30, 0x2c,0x38,0x37,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35, 0x37,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f, 0x6e,0x64,0x61,0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37, 0x35,0x37,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a, 0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63, 0x6f,0x6e,0x64,0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30, 0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61, 0x28,0x31,0x30,0x38,0x2c,0x31,0x31,0x37,0x2c,0x31,0x32,0x35,0x2c,0x2e,0x35,0x29, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64, 0x61,0x72,0x79,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73, 0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e, 0x64,0x61,0x72,0x79,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63, 0x37,0x35,0x37,0x64,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63, 0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73, 0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f, 0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f, 0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x30,0x38,0x2c,0x31, 0x31,0x37,0x2c,0x31,0x32,0x35,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72, 0x79,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72, 0x79,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70, 0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65, 0x73,0x73,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35, 0x34,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20, 0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28, 0x32,0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63, 0x63,0x65,0x73,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73, 0x73,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68, 0x6f,0x77,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37, 0x35,0x34,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65, 0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f, 0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e, 0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e, 0x65,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x61,0x63,0x74,0x69,0x76,0x65, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f, 0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72, 0x67,0x62,0x61,0x28,0x32,0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x2e,0x35, 0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73, 0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x75,0x63, 0x63,0x65,0x73,0x73,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61, 0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x3a, 0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66, 0x6f,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69, 0x6e,0x66,0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68, 0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x33,0x2c,0x32,0x30,0x32,0x2c,0x32,0x34, 0x30,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30, 0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x69,0x6e,0x66,0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e, 0x65,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69, 0x6e,0x66,0x6f,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20, 0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x33, 0x2c,0x32,0x30,0x32,0x2c,0x32,0x34,0x30,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69, 0x6e,0x67,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x63,0x31,0x30,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66, 0x63,0x31,0x30,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72, 0x6e,0x69,0x6e,0x67,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73, 0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x35,0x2c,0x31,0x39,0x33,0x2c, 0x37,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72, 0x6e,0x69,0x6e,0x67,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e, 0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61, 0x72,0x6e,0x69,0x6e,0x67,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74, 0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a, 0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30, 0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x31,0x30,0x37,0x7d, 0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76, 0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77, 0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72, 0x6e,0x69,0x6e,0x67,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x2e,0x73,0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62, 0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x35,0x2c, 0x31,0x39,0x33,0x2c,0x37,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f, 0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63, 0x31,0x30,0x37,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61, 0x6e,0x67,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64, 0x32,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x68,0x6f,0x76,0x65, 0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37, 0x62,0x32,0x64,0x32,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x62,0x74,0x6e,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74,0x6e, 0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e, 0x67,0x65,0x72,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68, 0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x31,0x32,0x33,0x2c,0x34,0x35,0x2c,0x33,0x38, 0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a, 0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65, 0x72,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64, 0x61,0x6e,0x67,0x65,0x72,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72, 0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65, 0x2e,0x73,0x68,0x6f,0x77,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x61,0x63,0x74,0x69,0x76,0x65, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62, 0x32,0x64,0x32,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e, 0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30, 0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61, 0x28,0x31,0x32,0x33,0x2c,0x34,0x35,0x2c,0x33,0x38,0x2c,0x2e,0x35,0x29,0x7d,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67, 0x65,0x72,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e, 0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x3a, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x37,0x62,0x32,0x64,0x32,0x36,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72, 0x65,0x6e,0x74,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38, 0x66,0x39,0x66,0x61,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f, 0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x68,0x6f,0x76, 0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x38,0x66,0x39,0x66,0x61,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2c, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67, 0x68,0x74,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61, 0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x34,0x38,0x2c,0x32,0x34,0x39,0x2c,0x32,0x35, 0x30,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69, 0x67,0x68,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68, 0x6f,0x77,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x6c,0x69,0x67,0x68,0x74,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x38,0x66,0x39,0x66,0x61,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63, 0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e, 0x73,0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x61,0x63, 0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d,0x73, 0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x32,0x34,0x38,0x2c,0x32,0x34,0x39,0x2c, 0x32,0x35,0x30,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x7d, 0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72, 0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64, 0x61,0x72,0x6b,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65, 0x2d,0x64,0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x62,0x6f,0x78,0x2d, 0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x33,0x33,0x2c,0x33,0x37,0x2c,0x34, 0x31,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74, 0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b, 0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x61,0x63,0x74,0x69, 0x76,0x65,0x2b,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d, 0x64,0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62, 0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e, 0x65,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x2e,0x73,0x68,0x6f,0x77,0x3a,0x66,0x6f,0x63,0x75, 0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64, 0x61,0x72,0x6b,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20, 0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x33,0x33, 0x2c,0x33,0x37,0x2c,0x34,0x31,0x2c,0x2e,0x35,0x29,0x7d,0x2e,0x62,0x74,0x6e,0x2d, 0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68, 0x74,0x3a,0x34,0x30,0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35, 0x30,0x35,0x37,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x33,0x61,0x34,0x30,0x34,0x36,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e, 0x62,0x74,0x6e,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d, 0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x62, 0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c,0x67,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33, 0x72,0x65,0x6d,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x73, 0x6d,0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x6d,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35, 0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38, 0x37,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x7d,0x2e,0x66,0x61,0x64,0x65,0x7b, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x20,0x2e,0x31,0x35,0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72, 0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65, 0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x66,0x61,0x64,0x65,0x7b,0x74,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x66,0x61, 0x64,0x65,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x73,0x68,0x6f,0x77,0x29,0x7b,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x7d,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73, 0x65,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x73,0x68,0x6f,0x77,0x29,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x63,0x6f,0x6c,0x6c,0x61, 0x70,0x73,0x69,0x6e,0x67,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x74, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x65,0x69,0x67,0x68,0x74, 0x20,0x2e,0x33,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63, 0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65, 0x29,0x7b,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x7b,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e, 0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x2e,0x63,0x6f,0x6c,0x6c,0x61, 0x70,0x73,0x65,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x7b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x30,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75, 0x74,0x6f,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x77,0x69, 0x64,0x74,0x68,0x20,0x2e,0x33,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65, 0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64, 0x75,0x63,0x65,0x29,0x7b,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67, 0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f, 0x6e,0x74,0x61,0x6c,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2c, 0x2e,0x64,0x72,0x6f,0x70,0x65,0x6e,0x64,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x73,0x74, 0x61,0x72,0x74,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x75,0x70,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x7b,0x77, 0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61, 0x70,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d, 0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a, 0x2e,0x32,0x35,0x35,0x65,0x6d,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22, 0x22,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x33,0x65, 0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20, 0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c, 0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a, 0x65,0x6d,0x70,0x74,0x79,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x7a,0x2d,0x69,0x6e,0x64, 0x65,0x78,0x3a,0x31,0x30,0x30,0x30,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x6e,0x6f,0x6e,0x65,0x3b,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x30,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x20,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x74,0x65,0x78,0x74,0x2d, 0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x6c,0x69,0x73,0x74,0x2d, 0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70, 0x3a,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x78,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67, 0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x35,0x29,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e, 0x75,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72, 0x5d,0x7b,0x74,0x6f,0x70,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6c,0x65,0x66,0x74,0x3a, 0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x31,0x32, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d, 0x65,0x6e,0x75,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x73,0x74,0x61, 0x72,0x74,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65, 0x72,0x5d,0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65, 0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d, 0x65,0x6e,0x75,0x2d,0x65,0x6e,0x64,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x65,0x6e,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x65,0x6e,0x64,0x5b,0x64,0x61,0x74, 0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67, 0x68,0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x35,0x37,0x36,0x70,0x78,0x29,0x7b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x73,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74, 0x61,0x72,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65, 0x6e,0x75,0x2d,0x73,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x73,0x6d,0x2d, 0x65,0x6e,0x64,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x65,0x6e,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x6d,0x65,0x6e,0x75,0x2d,0x73,0x6d,0x2d,0x65,0x6e,0x64,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x37,0x36,0x38,0x70,0x78,0x29,0x7b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74, 0x61,0x72,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65, 0x6e,0x75,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x61,0x72,0x74,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x6d,0x64,0x2d, 0x65,0x6e,0x64,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x65,0x6e,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x6d,0x65,0x6e,0x75,0x2d,0x6d,0x64,0x2d,0x65,0x6e,0x64,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x39,0x39,0x32,0x70,0x78,0x29,0x7b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74, 0x61,0x72,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65, 0x6e,0x75,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x6c,0x67,0x2d, 0x65,0x6e,0x64,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x65,0x6e,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x6d,0x65,0x6e,0x75,0x2d,0x6c,0x67,0x2d,0x65,0x6e,0x64,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x7d,0x40, 0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73, 0x74,0x61,0x72,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d, 0x65,0x6e,0x75,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x5b,0x64,0x61,0x74, 0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67, 0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x78,0x6c, 0x2d,0x65,0x6e,0x64,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x65,0x6e,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x5b,0x64,0x61,0x74, 0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x72,0x69,0x67, 0x68,0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x34,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74,0x61, 0x72,0x74,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x5b, 0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b, 0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65,0x66,0x74,0x3a, 0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75, 0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x65,0x6e,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e, 0x64,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72, 0x5d,0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61, 0x75,0x74,0x6f,0x7d,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x75,0x70,0x20,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x5d,0x7b,0x74,0x6f,0x70,0x3a, 0x61,0x75,0x74,0x6f,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x30,0x30,0x25, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x31,0x32,0x35, 0x72,0x65,0x6d,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x75,0x70,0x20,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x61,0x66,0x74, 0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e, 0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d,0x3b,0x76,0x65,0x72,0x74,0x69, 0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d, 0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64, 0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x33,0x65,0x6d,0x20, 0x73,0x6f,0x6c,0x69,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61, 0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x75,0x70, 0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x3a,0x65,0x6d,0x70,0x74,0x79,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f, 0x70,0x65,0x6e,0x64,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d, 0x65,0x6e,0x75,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70, 0x65,0x72,0x5d,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x72,0x69,0x67,0x68,0x74,0x3a, 0x61,0x75,0x74,0x6f,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x31,0x32,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x64,0x72,0x6f,0x70,0x65,0x6e,0x64,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62, 0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d,0x3b,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74, 0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c, 0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x33,0x65,0x6d,0x20, 0x73,0x6f,0x6c,0x69,0x64,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x65,0x6e,0x64,0x20,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a, 0x65,0x6d,0x70,0x74,0x79,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x65, 0x6e,0x64,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x76,0x65,0x72,0x74,0x69,0x63, 0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70, 0x73,0x74,0x61,0x72,0x74,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x6d,0x65,0x6e,0x75,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70, 0x70,0x65,0x72,0x5d,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x72,0x69,0x67,0x68,0x74, 0x3a,0x31,0x30,0x30,0x25,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x31,0x32,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x73,0x74,0x61,0x72,0x74,0x20,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x61,0x66, 0x74,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69, 0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d,0x3b,0x76,0x65,0x72,0x74, 0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x2e,0x32,0x35,0x35,0x65, 0x6d,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x3b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x73, 0x74,0x61,0x72,0x74,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74, 0x6f,0x67,0x67,0x6c,0x65,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63, 0x6b,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x32,0x35,0x35,0x65,0x6d,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x2e,0x32,0x35,0x35,0x65,0x6d,0x3b,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x22,0x22,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f, 0x70,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61, 0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e, 0x33,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70, 0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x73,0x74,0x61,0x72,0x74, 0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x3a,0x65,0x6d,0x70,0x74,0x79,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f, 0x70,0x73,0x74,0x61,0x72,0x74,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x30,0x7d, 0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x64,0x69,0x76,0x69,0x64,0x65, 0x72,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x30,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x74,0x6f,0x70,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72, 0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x35,0x29,0x7d,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x63,0x6c,0x65,0x61,0x72, 0x3a,0x62,0x6f,0x74,0x68,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68, 0x74,0x3a,0x34,0x30,0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32, 0x35,0x32,0x39,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x69, 0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f, 0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x77,0x68,0x69,0x74, 0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x65,0x32,0x31,0x32,0x35,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65, 0x39,0x65,0x63,0x65,0x66,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x61,0x63,0x74,0x69,0x76, 0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78, 0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65, 0x6d,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x61,0x64,0x62,0x35,0x62,0x64,0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72, 0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72, 0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2e,0x73,0x68,0x6f,0x77,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x7d,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x72,0x65,0x6d,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x77,0x68, 0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70, 0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x2d, 0x74,0x65,0x78,0x74,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f, 0x63,0x6b,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31, 0x32,0x35,0x32,0x39,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d, 0x65,0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x64,0x65,0x65,0x32,0x65,0x36,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x34,0x33,0x61,0x34,0x30,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x35,0x29,0x7d,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b, 0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72, 0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61, 0x28,0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x31,0x35,0x29,0x7d, 0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64, 0x61,0x72,0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x61,0x63,0x74, 0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65, 0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x61,0x64,0x62,0x35,0x62,0x64,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72, 0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x64,0x69,0x76,0x69, 0x64,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x35,0x29, 0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x2d, 0x64,0x61,0x72,0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x74,0x65,0x78,0x74,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x64,0x65,0x65,0x32,0x65,0x36,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x61,0x64,0x62,0x35,0x62,0x64,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x3b,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6d,0x69, 0x64,0x64,0x6c,0x65,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x7b,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b, 0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61, 0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65, 0x63,0x6b,0x65,0x64,0x2b,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2b,0x2e, 0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x61,0x63,0x74, 0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65, 0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x68,0x6f,0x76,0x65, 0x72,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2b, 0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e, 0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2b,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x3e,0x2e,0x62,0x74,0x6e,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x61,0x63,0x74, 0x69,0x76,0x65,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e, 0x62,0x74,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x74, 0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72, 0x61,0x70,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x20,0x2e,0x69,0x6e,0x70,0x75, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75, 0x74,0x6f,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62, 0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69, 0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x2c,0x2e,0x62,0x74,0x6e,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x6e,0x6f,0x74,0x28,0x3a, 0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x7d,0x2e,0x62, 0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68, 0x69,0x6c,0x64,0x29,0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c, 0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x29, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3a,0x6e,0x6f, 0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x3e, 0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e, 0x2e,0x62,0x74,0x6e,0x3a,0x6e,0x74,0x68,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x6e, 0x2b,0x33,0x29,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x3a, 0x6e,0x6f,0x74,0x28,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x68,0x65,0x63,0x6b,0x29,0x2b, 0x2e,0x62,0x74,0x6e,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d, 0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d,0x73,0x70,0x6c,0x69,0x74, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x35,0x36,0x32,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x36,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d,0x73, 0x70,0x6c,0x69,0x74,0x3a,0x61,0x66,0x74,0x65,0x72,0x2c,0x2e,0x64,0x72,0x6f,0x70, 0x65,0x6e,0x64,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f, 0x67,0x67,0x6c,0x65,0x2d,0x73,0x70,0x6c,0x69,0x74,0x3a,0x61,0x66,0x74,0x65,0x72, 0x2c,0x2e,0x64,0x72,0x6f,0x70,0x75,0x70,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d,0x73,0x70,0x6c,0x69,0x74,0x3a, 0x61,0x66,0x74,0x65,0x72,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x30,0x7d,0x2e,0x64,0x72,0x6f,0x70,0x73,0x74,0x61,0x72,0x74,0x20,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d, 0x73,0x70,0x6c,0x69,0x74,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x73,0x6d,0x3e,0x2e,0x62,0x74,0x6e,0x2b,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d, 0x73,0x70,0x6c,0x69,0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x73,0x6d,0x2b,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d,0x73, 0x70,0x6c,0x69,0x74,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x6c,0x67,0x3e,0x2e,0x62, 0x74,0x6e,0x2b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x2d,0x73,0x70,0x6c,0x69,0x74,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x6c, 0x67,0x2b,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x2d,0x73,0x70,0x6c,0x69,0x74,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x37,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72, 0x74,0x69,0x63,0x61,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61, 0x72,0x74,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62, 0x74,0x6e,0x2c,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65, 0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x62,0x74, 0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c, 0x3e,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28, 0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61, 0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73, 0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x74,0x6f,0x70,0x3a,0x2d,0x31,0x70,0x78,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74, 0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73, 0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61, 0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74, 0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x29,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x3e,0x2e,0x62,0x74,0x6e,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74, 0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x3e,0x2e,0x62,0x74,0x6e,0x2c,0x2e,0x62,0x74, 0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c, 0x3e,0x2e,0x62,0x74,0x6e,0x7e,0x2e,0x62,0x74,0x6e,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72, 0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6e, 0x61,0x76,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b, 0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x6c,0x69, 0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e, 0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35, 0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f, 0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e, 0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65, 0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64, 0x75,0x63,0x65,0x29,0x7b,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x74, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d, 0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c, 0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x61,0x34,0x30,0x34,0x36,0x7d,0x2e,0x6e, 0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f, 0x6e,0x65,0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x74,0x61,0x62,0x73,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f, 0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x7d,0x2e,0x6e,0x61,0x76, 0x2d,0x74,0x61,0x62,0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2d,0x31, 0x70,0x78,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x6e,0x6f, 0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f, 0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6e,0x61, 0x76,0x2d,0x74,0x61,0x62,0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6e,0x61,0x76,0x2d,0x74,0x61,0x62,0x73, 0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65, 0x39,0x65,0x63,0x65,0x66,0x20,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x20,0x23,0x64, 0x65,0x65,0x32,0x65,0x36,0x3b,0x69,0x73,0x6f,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x3a, 0x69,0x73,0x6f,0x6c,0x61,0x74,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x74,0x61,0x62, 0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35, 0x37,0x64,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61, 0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x74,0x61, 0x62,0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x73,0x68,0x6f, 0x77,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2c,0x2e,0x6e,0x61,0x76, 0x2d,0x74,0x61,0x62,0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39, 0x35,0x30,0x35,0x37,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x65,0x65,0x32, 0x65,0x36,0x20,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x20,0x23,0x65,0x39,0x65,0x63, 0x65,0x66,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x74,0x61,0x62,0x73,0x20,0x2e,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d, 0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e, 0x6e,0x61,0x76,0x2d,0x70,0x69,0x6c,0x6c,0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c, 0x69,0x6e,0x6b,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x70,0x69,0x6c,0x6c,0x73,0x20,0x2e,0x6e,0x61, 0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x2e,0x6e, 0x61,0x76,0x2d,0x70,0x69,0x6c,0x6c,0x73,0x20,0x2e,0x73,0x68,0x6f,0x77,0x3e,0x2e, 0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x6e,0x61, 0x76,0x2d,0x66,0x69,0x6c,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d, 0x2c,0x2e,0x6e,0x61,0x76,0x2d,0x66,0x69,0x6c,0x6c,0x3e,0x2e,0x6e,0x61,0x76,0x2d, 0x6c,0x69,0x6e,0x6b,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75, 0x74,0x6f,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65, 0x6e,0x74,0x65,0x72,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x6a,0x75,0x73,0x74,0x69,0x66, 0x69,0x65,0x64,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x2c,0x2e,0x6e, 0x61,0x76,0x2d,0x6a,0x75,0x73,0x74,0x69,0x66,0x69,0x65,0x64,0x3e,0x2e,0x6e,0x61, 0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x62,0x61,0x73,0x69, 0x73,0x3a,0x30,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31,0x3b, 0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65, 0x72,0x7d,0x2e,0x6e,0x61,0x76,0x2d,0x66,0x69,0x6c,0x6c,0x20,0x2e,0x6e,0x61,0x76, 0x2d,0x69,0x74,0x65,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2c, 0x2e,0x6e,0x61,0x76,0x2d,0x6a,0x75,0x73,0x74,0x69,0x66,0x69,0x65,0x64,0x20,0x2e, 0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69, 0x6e,0x6b,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x74, 0x61,0x62,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3e,0x2e,0x74,0x61,0x62,0x2d, 0x70,0x61,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e, 0x65,0x7d,0x2e,0x74,0x61,0x62,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3e,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62, 0x6c,0x6f,0x63,0x6b,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x7b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78, 0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x3b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x6a,0x75, 0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70, 0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x3e,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x3e,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x66,0x6c,0x75,0x69,0x64,0x2c,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x3e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65, 0x72,0x2d,0x6c,0x67,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x3e,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x6d,0x64,0x2c,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x3e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x73,0x6d, 0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x3e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x2d,0x78,0x6c,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x3e,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x78,0x78,0x6c,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d, 0x77,0x72,0x61,0x70,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b, 0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x33,0x31,0x32,0x35,0x72,0x65,0x6d, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x2e,0x33,0x31,0x32,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e,0x74,0x2d, 0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x74,0x65,0x78, 0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f, 0x77,0x72,0x61,0x70,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c, 0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c, 0x75,0x6d,0x6e,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x30,0x3b,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f, 0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e, 0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x6e,0x61,0x76,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65, 0x6e,0x75,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x61,0x74, 0x69,0x63,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x65,0x78,0x74,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x63, 0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x62,0x61,0x73, 0x69,0x73,0x3a,0x31,0x30,0x30,0x25,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f, 0x77,0x3a,0x31,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a, 0x63,0x65,0x6e,0x74,0x65,0x72,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74, 0x6f,0x67,0x67,0x6c,0x65,0x72,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x6c, 0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72, 0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73, 0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f, 0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f, 0x75,0x74,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65, 0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f, 0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f, 0x67,0x67,0x6c,0x65,0x72,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x74,0x65,0x78,0x74, 0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65, 0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x3b,0x62,0x6f,0x78,0x2d,0x73, 0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x72,0x2d,0x69,0x63,0x6f,0x6e,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x2e,0x35,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x35,0x65,0x6d,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x6d,0x69,0x64,0x64,0x6c,0x65,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3a,0x6e,0x6f, 0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x35,0x30,0x25,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x31,0x30,0x30,0x25,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76, 0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x7b,0x6d,0x61,0x78,0x2d,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x37,0x35,0x76,0x68,0x3b,0x6d,0x61,0x78,0x2d,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x37,0x35,0x76,0x68,0x29,0x3b, 0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x35,0x37,0x36,0x70,0x78,0x29,0x7b,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x6a,0x75,0x73,0x74, 0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78, 0x2d,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65, 0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x6e,0x61,0x76,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x6d,0x65,0x6e,0x75,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62, 0x73,0x6f,0x6c,0x75,0x74,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65, 0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x6e,0x61,0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x6e,0x61,0x76,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x2e,0x6e,0x61,0x76, 0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x62,0x61,0x73,0x69,0x73, 0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61, 0x6e,0x76,0x61,0x73,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6f,0x66,0x66,0x63, 0x61,0x6e,0x76,0x61,0x73,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x69, 0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b, 0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x30,0x30,0x3b,0x66,0x6c,0x65, 0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31,0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c, 0x69,0x74,0x79,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65, 0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6f,0x66,0x66, 0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74,0x6f,0x70,0x7b,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f, 0x70,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x30,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61, 0x6e,0x64,0x2d,0x73,0x6d,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73, 0x2d,0x62,0x6f,0x64,0x79,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c, 0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f, 0x77,0x2d,0x79,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x7d,0x40,0x6d,0x65, 0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x37, 0x36,0x38,0x70,0x78,0x29,0x7b,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x2d,0x6d,0x64,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61, 0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61, 0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61, 0x76,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70, 0x61,0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e, 0x61,0x76,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e, 0x75,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c, 0x75,0x74,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61, 0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61, 0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e, 0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76, 0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77, 0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x62,0x61,0x73,0x69,0x73,0x3a,0x61,0x75, 0x74,0x6f,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e, 0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x72,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70, 0x61,0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61, 0x73,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x6e,0x68,0x65, 0x72,0x69,0x74,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a,0x2d,0x69, 0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x30,0x30,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67, 0x72,0x6f,0x77,0x3a,0x31,0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79, 0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f, 0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e, 0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65, 0x78,0x70,0x61,0x6e,0x64,0x2d,0x6d,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e, 0x76,0x61,0x73,0x2d,0x74,0x6f,0x70,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61, 0x75,0x74,0x6f,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d, 0x6d,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f, 0x64,0x79,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b, 0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79, 0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61, 0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39,0x32,0x70, 0x78,0x29,0x7b,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e, 0x64,0x2d,0x6c,0x67,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e, 0x6f,0x77,0x72,0x61,0x70,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74, 0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d, 0x6c,0x67,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x7b,0x66, 0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f, 0x77,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64, 0x2d,0x6c,0x67,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20, 0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65, 0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d, 0x6c,0x67,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e, 0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x6c, 0x67,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x2d,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x2d,0x6c,0x67,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x66,0x6c,0x65,0x78,0x2d,0x62,0x61,0x73,0x69,0x73,0x3a,0x61,0x75,0x74,0x6f,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x6c, 0x67,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65, 0x72,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64, 0x2d,0x6c,0x67,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x68, 0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f, 0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e, 0x64,0x2d,0x6c,0x67,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x7b, 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74, 0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65, 0x78,0x3a,0x31,0x30,0x30,0x30,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77, 0x3a,0x31,0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3a,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65, 0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x6c, 0x67,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61, 0x6e,0x64,0x2d,0x6c,0x67,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73, 0x2d,0x74,0x6f,0x70,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x6c,0x67,0x20, 0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x64,0x79,0x7b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65, 0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x30,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d, 0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29, 0x7b,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d, 0x78,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77, 0x72,0x61,0x70,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x6c, 0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78, 0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x7b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x7d,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x6c, 0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x6e,0x61, 0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x6c,0x20, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x2d,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x76,0x69,0x73,0x69, 0x62,0x6c,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61, 0x6e,0x64,0x2d,0x78,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x66,0x6c, 0x65,0x78,0x2d,0x62,0x61,0x73,0x69,0x73,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x6c,0x20, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x2c, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78, 0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x68,0x65,0x61, 0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65, 0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d, 0x78,0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x7b,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a, 0x31,0x30,0x30,0x30,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31, 0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3a,0x76,0x69,0x73,0x69, 0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x6c,0x20, 0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64, 0x2d,0x78,0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74, 0x6f,0x70,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x6e,0x61,0x76, 0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x6c,0x20,0x2e,0x6f, 0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d, 0x67,0x72,0x6f,0x77,0x3a,0x30,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30, 0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x76,0x69,0x73,0x69, 0x62,0x6c,0x65,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x34,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x78, 0x6c,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72, 0x61,0x70,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c, 0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78, 0x78,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x7b,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78, 0x78,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e, 0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78, 0x78,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x2d,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x76, 0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65, 0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x62,0x61,0x73,0x69,0x73,0x3a,0x61,0x75,0x74, 0x6f,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64, 0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x72,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70, 0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65, 0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61, 0x6e,0x76,0x61,0x73,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x6e, 0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a, 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x30,0x30,0x3b,0x66,0x6c,0x65,0x78, 0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31,0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69, 0x74,0x79,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e, 0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x74, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a, 0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70, 0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6f,0x66, 0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74,0x6f,0x70,0x7b,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70, 0x61,0x6e,0x64,0x2d,0x78,0x78,0x6c,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x7d,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x7b,0x66,0x6c, 0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66, 0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x6e,0x61,0x76,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x65,0x78,0x70,0x61,0x6e,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e, 0x61,0x76,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e, 0x75,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c, 0x75,0x74,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61, 0x6e,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e, 0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x20,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x2d,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x76,0x69,0x73,0x69,0x62, 0x6c,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e, 0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70, 0x73,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x62, 0x61,0x73,0x69,0x73,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65, 0x78,0x70,0x61,0x6e,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69, 0x74,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64, 0x65,0x78,0x3a,0x31,0x30,0x30,0x30,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f, 0x77,0x3a,0x31,0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3a,0x76, 0x69,0x73,0x69,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65, 0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x20, 0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64, 0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74,0x6f,0x70,0x7b, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x20,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76, 0x62,0x61,0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x62,0x72,0x61,0x6e,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6e,0x61,0x76, 0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e, 0x39,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74, 0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x6e,0x61, 0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x35,0x35,0x29,0x7d,0x2e,0x6e,0x61, 0x76,0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c, 0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76, 0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c, 0x30,0x2c,0x2e,0x37,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c,0x69, 0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20, 0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c, 0x30,0x2c,0x30,0x2c,0x2e,0x33,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61, 0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74, 0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x73,0x68, 0x6f,0x77,0x3e,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x39, 0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30, 0x2c,0x2e,0x35,0x35,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31, 0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x2d, 0x69,0x63,0x6f,0x6e,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a, 0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68, 0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73, 0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f, 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30, 0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30, 0x20,0x30,0x20,0x33,0x30,0x20,0x33,0x30,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70, 0x61,0x74,0x68,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x72,0x67,0x62,0x61, 0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x2e,0x35,0x35,0x29,0x27,0x20,0x73,0x74, 0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x3d,0x27,0x72,0x6f, 0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74,0x65, 0x72,0x6c,0x69,0x6d,0x69,0x74,0x3d,0x27,0x31,0x30,0x27,0x20,0x73,0x74,0x72,0x6f, 0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x32,0x27,0x20,0x64,0x3d,0x27, 0x4d,0x34,0x20,0x37,0x68,0x32,0x32,0x4d,0x34,0x20,0x31,0x35,0x68,0x32,0x32,0x4d, 0x34,0x20,0x32,0x33,0x68,0x32,0x32,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f, 0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74, 0x65,0x78,0x74,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30, 0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x35,0x35,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x74,0x65,0x78,0x74,0x20,0x61,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6c, 0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x65,0x78, 0x74,0x20,0x61,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x74,0x65,0x78,0x74,0x20,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x39, 0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e, 0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x2c,0x2e,0x6e,0x61, 0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e, 0x61,0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30, 0x25,0x2c,0x2e,0x35,0x35,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64, 0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20, 0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61, 0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69, 0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68, 0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x37, 0x35,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x6e,0x61,0x76, 0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c,0x31, 0x30,0x30,0x25,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61, 0x76,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20, 0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x20,0x2e,0x73,0x68,0x6f, 0x77,0x3e,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x66,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x64, 0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30, 0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x35,0x35,0x29,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28, 0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x31,0x29,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x2d,0x69,0x63,0x6f,0x6e,0x7b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65, 0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65, 0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74, 0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d, 0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e, 0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27, 0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30,0x20,0x33,0x30, 0x20,0x33,0x30,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x73, 0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x35,0x2c, 0x32,0x35,0x35,0x2c,0x32,0x35,0x35,0x2c,0x30,0x2e,0x35,0x35,0x29,0x27,0x20,0x73, 0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x3d,0x27,0x72, 0x6f,0x75,0x6e,0x64,0x27,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74, 0x65,0x72,0x6c,0x69,0x6d,0x69,0x74,0x3d,0x27,0x31,0x30,0x27,0x20,0x73,0x74,0x72, 0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x27,0x32,0x27,0x20,0x64,0x3d, 0x27,0x4d,0x34,0x20,0x37,0x68,0x32,0x32,0x4d,0x34,0x20,0x31,0x35,0x68,0x32,0x32, 0x4d,0x34,0x20,0x32,0x33,0x68,0x32,0x32,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43, 0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74, 0x65,0x78,0x74,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30, 0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x35,0x35,0x29,0x7d,0x2e,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62, 0x61,0x72,0x2d,0x74,0x65,0x78,0x74,0x20,0x61,0x2c,0x2e,0x6e,0x61,0x76,0x62,0x61, 0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74, 0x65,0x78,0x74,0x20,0x61,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6e,0x61,0x76, 0x62,0x61,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72, 0x2d,0x74,0x65,0x78,0x74,0x20,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x7d,0x2e,0x63,0x61,0x72,0x64,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65, 0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c, 0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c, 0x75,0x6d,0x6e,0x3b,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x3b, 0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a,0x62,0x72,0x65,0x61,0x6b,0x2d, 0x77,0x6f,0x72,0x64,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70,0x3a,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x62,0x6f,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78, 0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c, 0x30,0x2c,0x2e,0x31,0x32,0x35,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x63,0x61, 0x72,0x64,0x3e,0x68,0x72,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a, 0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x2e,0x63, 0x61,0x72,0x64,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3a, 0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31, 0x70,0x78,0x29,0x7d,0x2e,0x63,0x61,0x72,0x64,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20, 0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63, 0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78, 0x29,0x7d,0x2e,0x63,0x61,0x72,0x64,0x3e,0x2e,0x63,0x61,0x72,0x64,0x2d,0x68,0x65, 0x61,0x64,0x65,0x72,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2c,0x2e,0x63,0x61,0x72,0x64,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2b,0x2e,0x63,0x61,0x72,0x64,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x63,0x61, 0x72,0x64,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31, 0x20,0x61,0x75,0x74,0x6f,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72, 0x65,0x6d,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x74,0x69,0x74,0x6c,0x65,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x73,0x75,0x62,0x74,0x69,0x74,0x6c, 0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2d,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x73,0x75,0x62,0x74,0x69, 0x74,0x6c,0x65,0x2c,0x2e,0x63,0x61,0x72,0x64,0x2d,0x74,0x65,0x78,0x74,0x3a,0x6c, 0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d, 0x6c,0x69,0x6e,0x6b,0x2b,0x2e,0x63,0x61,0x72,0x64,0x2d,0x6c,0x69,0x6e,0x6b,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d, 0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x30,0x33, 0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30, 0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x32,0x35,0x29,0x7d,0x2e,0x63,0x61,0x72,0x64, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68, 0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20, 0x31,0x70,0x78,0x29,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x20,0x30,0x20,0x30,0x7d,0x2e,0x63,0x61,0x72, 0x64,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x30,0x33,0x29,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69, 0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x32, 0x35,0x29,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x3a, 0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x20,0x30,0x20,0x63,0x61,0x6c, 0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x20, 0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70, 0x78,0x29,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x2d, 0x74,0x61,0x62,0x73,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x61, 0x62,0x73,0x20,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x2d, 0x70,0x69,0x6c,0x6c,0x73,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x63,0x61, 0x72,0x64,0x2d,0x69,0x6d,0x67,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65, 0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x63,0x61, 0x72,0x64,0x2d,0x69,0x6d,0x67,0x2c,0x2e,0x63,0x61,0x72,0x64,0x2d,0x69,0x6d,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x63,0x61,0x72,0x64,0x2d,0x69,0x6d, 0x67,0x2d,0x74,0x6f,0x70,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25, 0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x69,0x6d,0x67,0x2c,0x2e,0x63,0x61,0x72,0x64, 0x2d,0x69,0x6d,0x67,0x2d,0x74,0x6f,0x70,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70, 0x78,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69, 0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x63, 0x61,0x72,0x64,0x2d,0x69,0x6d,0x67,0x2c,0x2e,0x63,0x61,0x72,0x64,0x2d,0x69,0x6d, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20, 0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31, 0x70,0x78,0x29,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e, 0x2e,0x63,0x61,0x72,0x64,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x37,0x36, 0x70,0x78,0x29,0x7b,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x7b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65, 0x78,0x2d,0x66,0x6c,0x6f,0x77,0x3a,0x72,0x6f,0x77,0x20,0x77,0x72,0x61,0x70,0x7d, 0x2e,0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72, 0x64,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64,0x2b,0x2e,0x63,0x61, 0x72,0x64,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e, 0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64, 0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64, 0x29,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67, 0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x3a, 0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x20,0x2e,0x63,0x61,0x72, 0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x2c,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x3a, 0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x20,0x2e,0x63,0x61,0x72, 0x64,0x2d,0x69,0x6d,0x67,0x2d,0x74,0x6f,0x70,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e, 0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d, 0x63,0x68,0x69,0x6c,0x64,0x29,0x20,0x2e,0x63,0x61,0x72,0x64,0x2d,0x66,0x6f,0x6f, 0x74,0x65,0x72,0x2c,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e, 0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d, 0x63,0x68,0x69,0x6c,0x64,0x29,0x20,0x2e,0x63,0x61,0x72,0x64,0x2d,0x69,0x6d,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x3e,0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73, 0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d, 0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x63, 0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64,0x3a, 0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64, 0x29,0x20,0x2e,0x63,0x61,0x72,0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x2c,0x2e, 0x63,0x61,0x72,0x64,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64, 0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c, 0x64,0x29,0x20,0x2e,0x63,0x61,0x72,0x64,0x2d,0x69,0x6d,0x67,0x2d,0x74,0x6f,0x70, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74,0x28, 0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x20,0x2e,0x63, 0x61,0x72,0x64,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x2c,0x2e,0x63,0x61,0x72,0x64, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x3e,0x2e,0x63,0x61,0x72,0x64,0x3a,0x6e,0x6f,0x74, 0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x20,0x2e, 0x63,0x61,0x72,0x64,0x2d,0x69,0x6d,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65, 0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x7d,0x2e,0x61,0x63, 0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65, 0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x20,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x74,0x65, 0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x3b, 0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x61,0x6e,0x63,0x68,0x6f,0x72,0x3a, 0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d, 0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73, 0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d, 0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f, 0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f, 0x75,0x74,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63, 0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65, 0x29,0x7b,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74, 0x74,0x6f,0x6e,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e, 0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x63,0x6f,0x6c,0x6c, 0x61,0x70,0x73,0x65,0x64,0x29,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x32, 0x34,0x38,0x34,0x65,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x64,0x65,0x65,0x65,0x65,0x3b,0x62,0x6f, 0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x69,0x6e,0x73,0x65,0x74,0x20,0x30, 0x20,0x2d,0x31,0x70,0x78,0x20,0x30,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x2e,0x31,0x32,0x35,0x29,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64, 0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x6e,0x6f,0x74,0x28,0x2e, 0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x64,0x29,0x3a,0x61,0x66,0x74,0x65,0x72, 0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67, 0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67, 0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65, 0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78, 0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77, 0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67, 0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30,0x20,0x31, 0x36,0x20,0x31,0x36,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x34, 0x32,0x34,0x38,0x34,0x65,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68, 0x20,0x66,0x69,0x6c,0x6c,0x2d,0x72,0x75,0x6c,0x65,0x3d,0x27,0x65,0x76,0x65,0x6e, 0x6f,0x64,0x64,0x27,0x20,0x64,0x3d,0x27,0x4d,0x31,0x2e,0x36,0x34,0x36,0x20,0x34, 0x2e,0x36,0x34,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31,0x2e,0x37, 0x30,0x38,0x20,0x30,0x4c,0x38,0x20,0x31,0x30,0x2e,0x32,0x39,0x33,0x6c,0x35,0x2e, 0x36,0x34,0x36,0x2d,0x35,0x2e,0x36,0x34,0x37,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30, 0x20,0x30,0x31,0x2e,0x37,0x30,0x38,0x2e,0x37,0x30,0x38,0x6c,0x2d,0x36,0x20,0x36, 0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31,0x2d,0x2e,0x37,0x30,0x38,0x20, 0x30,0x6c,0x2d,0x36,0x2d,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31, 0x30,0x2d,0x2e,0x37,0x30,0x38,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f, 0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74, 0x65,0x28,0x2d,0x31,0x38,0x30,0x64,0x65,0x67,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x2d,0x31,0x38,0x30, 0x64,0x65,0x67,0x29,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x3a,0x22,0x22,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69, 0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69, 0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61, 0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76, 0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, 0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f, 0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20, 0x30,0x20,0x31,0x36,0x20,0x31,0x36,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x27,0x25, 0x32,0x33,0x32,0x31,0x32,0x35,0x32,0x39,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70, 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x2d,0x72,0x75,0x6c,0x65,0x3d,0x27,0x65, 0x76,0x65,0x6e,0x6f,0x64,0x64,0x27,0x20,0x64,0x3d,0x27,0x4d,0x31,0x2e,0x36,0x34, 0x36,0x20,0x34,0x2e,0x36,0x34,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30, 0x31,0x2e,0x37,0x30,0x38,0x20,0x30,0x4c,0x38,0x20,0x31,0x30,0x2e,0x32,0x39,0x33, 0x6c,0x35,0x2e,0x36,0x34,0x36,0x2d,0x35,0x2e,0x36,0x34,0x37,0x61,0x2e,0x35,0x2e, 0x35,0x20,0x30,0x20,0x30,0x31,0x2e,0x37,0x30,0x38,0x2e,0x37,0x30,0x38,0x6c,0x2d, 0x36,0x20,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31,0x2d,0x2e,0x37, 0x30,0x38,0x20,0x30,0x6c,0x2d,0x36,0x2d,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30, 0x20,0x30,0x31,0x30,0x2d,0x2e,0x37,0x30,0x38,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25, 0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3a,0x6e,0x6f, 0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x32,0x73, 0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x20,0x2e,0x32,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75, 0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x72,0x61, 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x32,0x73,0x20,0x65,0x61,0x73,0x65,0x2d, 0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x32,0x73,0x20,0x65,0x61,0x73, 0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20, 0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64, 0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b, 0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64, 0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x32,0x7d,0x2e,0x61,0x63,0x63,0x6f, 0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x33,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x61,0x34,0x61,0x38,0x61, 0x62,0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x3b,0x62,0x6f,0x78,0x2d, 0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38, 0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f, 0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64, 0x69,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65, 0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c, 0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31, 0x32,0x35,0x29,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x6f,0x66,0x2d,0x74,0x79,0x70, 0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e, 0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66, 0x69,0x72,0x73,0x74,0x2d,0x6f,0x66,0x2d,0x74,0x79,0x70,0x65,0x20,0x2e,0x61,0x63, 0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31, 0x70,0x78,0x29,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x6f, 0x66,0x2d,0x74,0x79,0x70,0x65,0x29,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x6f,0x66,0x2d,0x74,0x79,0x70, 0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d, 0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x6f,0x66,0x2d,0x74,0x79,0x70, 0x65,0x20,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74, 0x74,0x6f,0x6e,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x64,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64, 0x69,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x6f,0x66, 0x2d,0x74,0x79,0x70,0x65,0x20,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e, 0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x61,0x63, 0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x20,0x31,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x66,0x6c,0x75, 0x73,0x68,0x20,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e, 0x2d,0x66,0x6c,0x75,0x73,0x68,0x20,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x66, 0x6c,0x75,0x73,0x68,0x20,0x2e,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x61, 0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x66,0x6c,0x75,0x73,0x68,0x20,0x2e, 0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c, 0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x61,0x63,0x63,0x6f,0x72, 0x64,0x69,0x6f,0x6e,0x2d,0x66,0x6c,0x75,0x73,0x68,0x20,0x2e,0x61,0x63,0x63,0x6f, 0x72,0x64,0x69,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x20,0x2e,0x61,0x63,0x63,0x6f, 0x72,0x64,0x69,0x6f,0x6e,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x62,0x72, 0x65,0x61,0x64,0x63,0x72,0x75,0x6d,0x62,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a, 0x77,0x72,0x61,0x70,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65, 0x6d,0x3b,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e, 0x65,0x7d,0x2e,0x62,0x72,0x65,0x61,0x64,0x63,0x72,0x75,0x6d,0x62,0x2d,0x69,0x74, 0x65,0x6d,0x2b,0x2e,0x62,0x72,0x65,0x61,0x64,0x63,0x72,0x75,0x6d,0x62,0x2d,0x69, 0x74,0x65,0x6d,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x62,0x72,0x65,0x61,0x64,0x63,0x72,0x75, 0x6d,0x62,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x62,0x72,0x65,0x61,0x64,0x63,0x72, 0x75,0x6d,0x62,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b, 0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x3a,0x22,0x2f,0x22,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x72,0x65,0x61,0x64,0x63, 0x72,0x75,0x6d,0x62,0x2d,0x64,0x69,0x76,0x69,0x64,0x65,0x72,0x2c,0x22,0x2f,0x22, 0x29,0x7d,0x2e,0x62,0x72,0x65,0x61,0x64,0x63,0x72,0x75,0x6d,0x62,0x2d,0x69,0x74, 0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x7d,0x2e,0x70,0x61,0x67,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b, 0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x7d, 0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65, 0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x66,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73, 0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x3b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31, 0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20, 0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74, 0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x2e,0x31, 0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x62, 0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x20,0x2e,0x31,0x35,0x73,0x20,0x65, 0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d,0x40,0x6d,0x65,0x64,0x69, 0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63, 0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65, 0x29,0x7b,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x70, 0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x7a, 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x32,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x7d,0x2e,0x70, 0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e, 0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x61,0x34,0x30,0x34,0x36,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x65,0x39,0x65,0x63,0x65,0x66,0x7d,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e, 0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a, 0x33,0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e,0x65,0x3a,0x30,0x3b,0x62,0x6f,0x78,0x2d, 0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38, 0x37,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65, 0x6d,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69, 0x6c,0x64,0x29,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x7d, 0x2e,0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x7a,0x2d,0x69, 0x6e,0x64,0x65,0x78,0x3a,0x33,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66, 0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d, 0x2e,0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x64,0x65,0x65,0x32,0x65,0x36,0x7d,0x2e,0x70,0x61,0x67, 0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e, 0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2e,0x37,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x70, 0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63, 0x68,0x69,0x6c,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e, 0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63, 0x68,0x69,0x6c,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67, 0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x70,0x61,0x67,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x67,0x20, 0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x20,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x7d,0x2e,0x70,0x61,0x67,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c, 0x67,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72, 0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c, 0x69,0x6e,0x6b,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c, 0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c, 0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d, 0x7d,0x2e,0x70,0x61,0x67,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x67,0x20, 0x2e,0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d, 0x63,0x68,0x69,0x6c,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67, 0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d,0x7d, 0x2e,0x70,0x61,0x67,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x6d,0x20,0x2e, 0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x72,0x65,0x6d, 0x7d,0x2e,0x70,0x61,0x67,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x6d,0x20, 0x2e,0x70,0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74, 0x2d,0x63,0x68,0x69,0x6c,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e, 0x6b,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x7d,0x2e, 0x70,0x61,0x67,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x6d,0x20,0x2e,0x70, 0x61,0x67,0x65,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68, 0x69,0x6c,0x64,0x20,0x2e,0x70,0x61,0x67,0x65,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x7d,0x2e,0x62, 0x61,0x64,0x67,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c, 0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x33,0x35,0x65,0x6d,0x20,0x2e,0x36,0x35,0x65,0x6d,0x3b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x37,0x35,0x65,0x6d,0x3b,0x66,0x6f, 0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x37,0x30,0x30,0x3b,0x6c,0x69, 0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67, 0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x77,0x68,0x69,0x74,0x65,0x2d,0x73, 0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x76,0x65,0x72,0x74, 0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x62,0x61,0x73,0x65,0x6c, 0x69,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x62,0x61,0x64,0x67,0x65,0x3a, 0x65,0x6d,0x70,0x74,0x79,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f, 0x6e,0x65,0x7d,0x2e,0x62,0x74,0x6e,0x20,0x2e,0x62,0x61,0x64,0x67,0x65,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65, 0x3b,0x74,0x6f,0x70,0x3a,0x2d,0x31,0x70,0x78,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69, 0x76,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72, 0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f, 0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x68,0x65,0x61,0x64, 0x69,0x6e,0x67,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69, 0x74,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x66,0x6f, 0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x37,0x30,0x30,0x7d,0x2e,0x61, 0x6c,0x65,0x72,0x74,0x2d,0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x69,0x62,0x6c,0x65, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33, 0x72,0x65,0x6d,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x64,0x69,0x73,0x6d,0x69, 0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x6c,0x6f,0x73, 0x65,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c, 0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x72,0x69,0x67,0x68,0x74,0x3a, 0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x32,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d, 0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x63,0x33,0x30,0x33,0x34,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x64,0x62,0x64,0x63,0x64,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x63,0x38,0x63,0x62,0x63,0x64,0x7d,0x2e,0x61,0x6c,0x65, 0x72,0x74,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x20,0x2e,0x61,0x6c,0x65,0x72, 0x74,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x33, 0x32,0x36,0x32,0x61,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x73,0x65,0x63,0x6f, 0x6e,0x64,0x61,0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x31,0x34, 0x36,0x34,0x62,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x32,0x65,0x33,0x65,0x35,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x33,0x64,0x36,0x64, 0x38,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61, 0x72,0x79,0x20,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x34,0x33,0x38,0x33,0x63,0x7d,0x2e,0x61,0x6c, 0x65,0x72,0x74,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x30,0x66,0x35,0x31,0x33,0x32,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x31,0x65,0x37, 0x64,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x62,0x61,0x64,0x62,0x63,0x63,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x73, 0x75,0x63,0x63,0x65,0x73,0x73,0x20,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x6c,0x69, 0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x63,0x34,0x31,0x32,0x38, 0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x69,0x6e,0x66,0x6f,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x30,0x35,0x35,0x31,0x36,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x63,0x66,0x66, 0x34,0x66,0x63,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x62,0x36,0x65,0x66,0x66,0x62,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d, 0x69,0x6e,0x66,0x6f,0x20,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x6c,0x69,0x6e,0x6b, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x34,0x34,0x31,0x34,0x64,0x7d,0x2e, 0x61,0x6c,0x65,0x72,0x74,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x36,0x36,0x34,0x64,0x30,0x33,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66, 0x66,0x33,0x63,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x65,0x63,0x62,0x35,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74, 0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x20,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d, 0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x35,0x32,0x33,0x65, 0x30,0x32,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x61,0x31,0x62,0x31,0x37,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x65,0x35,0x64,0x35,0x64,0x34,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x37,0x63,0x30,0x62,0x65,0x7d,0x2e,0x61,0x6c, 0x65,0x72,0x74,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x20,0x2e,0x61,0x6c,0x65,0x72, 0x74,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x33,0x62, 0x31,0x36,0x31,0x32,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x6c,0x69,0x67,0x68, 0x74,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x33,0x36,0x34,0x36,0x34,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x66,0x65,0x66,0x65,0x66,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x64,0x66,0x64,0x66,0x65,0x7d,0x2e,0x61, 0x6c,0x65,0x72,0x74,0x2d,0x6c,0x69,0x67,0x68,0x74,0x20,0x2e,0x61,0x6c,0x65,0x72, 0x74,0x2d,0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x66, 0x35,0x30,0x35,0x30,0x7d,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d,0x64,0x61,0x72,0x6b, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x34,0x31,0x36,0x31,0x39,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x64,0x33,0x64,0x33,0x64,0x34,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x62,0x63,0x62,0x65,0x62,0x66,0x7d,0x2e,0x61,0x6c, 0x65,0x72,0x74,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x61,0x6c,0x65,0x72,0x74,0x2d, 0x6c,0x69,0x6e,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x30,0x31,0x32, 0x31,0x34,0x7d,0x40,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6b,0x65,0x79,0x66, 0x72,0x61,0x6d,0x65,0x73,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62, 0x61,0x72,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x73,0x7b,0x30,0x25,0x7b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x2d,0x78,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x7d,0x40,0x6b,0x65,0x79,0x66,0x72, 0x61,0x6d,0x65,0x73,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x61, 0x72,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x73,0x7b,0x30,0x25,0x7b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x2d,0x78,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x7d,0x2e,0x70,0x72,0x6f,0x67,0x72,0x65, 0x73,0x73,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x70, 0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2c,0x2e,0x70,0x72,0x6f,0x67,0x72,0x65,0x73, 0x73,0x2d,0x62,0x61,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c, 0x65,0x78,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x68,0x69,0x64,0x64, 0x65,0x6e,0x7d,0x2e,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x61,0x72, 0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c, 0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x77,0x68,0x69,0x74,0x65, 0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x77,0x69,0x64,0x74,0x68,0x20,0x2e,0x36,0x73,0x20,0x65,0x61,0x73,0x65, 0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73, 0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a, 0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x70,0x72,0x6f,0x67,0x72,0x65,0x73, 0x73,0x2d,0x62,0x61,0x72,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, 0x2d,0x62,0x61,0x72,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x64,0x7b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x6c,0x69, 0x6e,0x65,0x61,0x72,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x34,0x35, 0x64,0x65,0x67,0x2c,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c,0x31,0x30, 0x30,0x25,0x2c,0x2e,0x31,0x35,0x29,0x20,0x32,0x35,0x25,0x2c,0x74,0x72,0x61,0x6e, 0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x30,0x2c,0x74,0x72,0x61,0x6e,0x73,0x70, 0x61,0x72,0x65,0x6e,0x74,0x20,0x35,0x30,0x25,0x2c,0x68,0x73,0x6c,0x61,0x28,0x30, 0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x31,0x35,0x29,0x20,0x30,0x2c, 0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e, 0x31,0x35,0x29,0x20,0x37,0x35,0x25,0x2c,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72, 0x65,0x6e,0x74,0x20,0x30,0x2c,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e, 0x74,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x31,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x7d,0x2e,0x70,0x72, 0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x61,0x72,0x2d,0x61,0x6e,0x69,0x6d,0x61, 0x74,0x65,0x64,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d, 0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62, 0x61,0x72,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x73,0x20,0x31,0x73,0x20,0x6c,0x69, 0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65,0x3b,0x61,0x6e, 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, 0x2d,0x62,0x61,0x72,0x2d,0x73,0x74,0x72,0x69,0x70,0x65,0x73,0x20,0x31,0x73,0x20, 0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d, 0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, 0x2d,0x62,0x61,0x72,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x7b,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a, 0x6e,0x6f,0x6e,0x65,0x3b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e, 0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c, 0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c, 0x75,0x6d,0x6e,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x6e,0x75,0x6d,0x62,0x65,0x72,0x65,0x64,0x7b,0x6c,0x69,0x73, 0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x2d,0x74,0x79,0x70,0x65,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x63,0x6f,0x75,0x6e,0x74,0x65,0x72,0x2d,0x72,0x65,0x73,0x65,0x74,0x3a, 0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x6e,0x75,0x6d,0x62,0x65,0x72,0x65,0x64,0x3e,0x6c,0x69,0x3a, 0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63, 0x6f,0x75,0x6e,0x74,0x65,0x72,0x73,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c, 0x22,0x2e,0x22,0x29,0x20,0x22,0x2e,0x20,0x22,0x3b,0x63,0x6f,0x75,0x6e,0x74,0x65, 0x72,0x2d,0x69,0x6e,0x63,0x72,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x73,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x7b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39, 0x35,0x30,0x35,0x37,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a, 0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x6f, 0x76,0x65,0x72,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x74,0x65,0x78,0x74, 0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f, 0x6e,0x3a,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x32,0x31,0x32,0x35,0x32,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x39,0x65,0x63,0x65,0x66,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69, 0x76,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31, 0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32, 0x39,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f, 0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67, 0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x32,0x35,0x29,0x7d,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a, 0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74, 0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x3b,0x70,0x6f, 0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b, 0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x32,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30, 0x35,0x37,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2d,0x31,0x70,0x78, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x70,0x78,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69, 0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68, 0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d, 0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a, 0x6f,0x6e,0x74,0x61,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c, 0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67, 0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c, 0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e, 0x74,0x61,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x3e, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65, 0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61, 0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70, 0x78,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x35,0x37,0x36,0x70,0x78,0x29,0x7b,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61, 0x6c,0x2d,0x73,0x6d,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x73, 0x6d,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c, 0x2d,0x73,0x6d,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61, 0x6c,0x2d,0x73,0x6d,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c, 0x2d,0x73,0x6d,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a, 0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x73,0x6d,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31, 0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61, 0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x36,0x38,0x70, 0x78,0x29,0x7b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68, 0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6d,0x64,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69, 0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6d,0x64,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74, 0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f, 0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6d,0x64,0x3e,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73, 0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68, 0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6d,0x64,0x3e,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63, 0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a, 0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f, 0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6d,0x64,0x3e,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6d,0x64, 0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78, 0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x39,0x39,0x32,0x70,0x78,0x29,0x7b,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61, 0x6c,0x2d,0x6c,0x67,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6c, 0x67,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c, 0x2d,0x6c,0x67,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61, 0x6c,0x2d,0x6c,0x67,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c, 0x2d,0x6c,0x67,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a, 0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x6c,0x67,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31, 0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61, 0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30, 0x70,0x78,0x29,0x7b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x6c,0x7b,0x66,0x6c, 0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77, 0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72, 0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73, 0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68, 0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x6c,0x3e,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61, 0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x6c,0x3e,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61, 0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68, 0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x6c,0x3e,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78, 0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70, 0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x34,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e, 0x74,0x61,0x6c,0x2d,0x78,0x78,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61, 0x6c,0x2d,0x78,0x78,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x66,0x69,0x72,0x73,0x74,0x2d,0x63,0x68,0x69, 0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72, 0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f, 0x6e,0x74,0x61,0x6c,0x2d,0x78,0x78,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63, 0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d, 0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69, 0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x78,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x6f,0x72,0x69, 0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x78,0x6c,0x3e,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2b,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70, 0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x2d,0x78,0x78,0x6c, 0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x2b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78, 0x7d,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x66,0x6c, 0x75,0x73,0x68,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x66,0x6c,0x75,0x73,0x68,0x3e,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x30,0x20,0x30,0x20,0x31,0x70,0x78,0x7d,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x66,0x6c,0x75,0x73,0x68,0x3e,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6c, 0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x32,0x63,0x33,0x30,0x33,0x34,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x62,0x64,0x63,0x64,0x64,0x7d, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x32,0x63,0x33,0x30,0x33,0x34,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x63,0x35,0x63,0x36, 0x63,0x37,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x63,0x33,0x30,0x33,0x34,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x63,0x33,0x30, 0x33,0x34,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x34,0x31,0x34,0x36,0x34,0x62,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x32, 0x65,0x33,0x65,0x35,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d, 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x65, 0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68, 0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x31,0x34,0x36, 0x34,0x62,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x63,0x62,0x63,0x63,0x63,0x65,0x7d,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x65,0x63, 0x6f,0x6e,0x64,0x61,0x72,0x79,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x63, 0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x34,0x31,0x34,0x36,0x34,0x62,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x31,0x34,0x36,0x34,0x62,0x7d,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73, 0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x66, 0x35,0x31,0x33,0x32,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x31,0x65,0x37,0x64,0x64,0x7d,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73, 0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x66,0x35,0x31,0x33,0x32,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x62,0x63,0x64,0x30,0x63,0x37, 0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67, 0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x30,0x66,0x35,0x31,0x33,0x32,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x66,0x35,0x31,0x33,0x32, 0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x2d,0x69,0x6e,0x66,0x6f,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x35, 0x35,0x31,0x36,0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x63,0x66,0x66,0x34,0x66,0x63,0x7d,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x69, 0x6e,0x66,0x6f,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x2d,0x69,0x6e,0x66,0x6f,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x6f, 0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x35,0x35,0x31,0x36, 0x30,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x62,0x61,0x64,0x63,0x65,0x33,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x69,0x6e,0x66,0x6f, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x35,0x35,0x31, 0x36,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x35,0x35,0x31,0x36,0x30,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x36,0x34,0x64,0x30,0x33,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x33,0x63,0x64,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x77, 0x61,0x72,0x6e,0x69,0x6e,0x67,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x6f, 0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x36,0x34,0x64,0x30, 0x33,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x65,0x36,0x64,0x62,0x62,0x39,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x77,0x61,0x72,0x6e, 0x69,0x6e,0x67,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x63,0x74,0x69,0x76, 0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36, 0x36,0x34,0x64,0x30,0x33,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x36,0x36,0x34,0x64,0x30,0x33,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x64,0x61,0x6e,0x67, 0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x61,0x31,0x62,0x31,0x37, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x65,0x35,0x64,0x35,0x64,0x34,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x64,0x61,0x6e,0x67,0x65, 0x72,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d, 0x64,0x61,0x6e,0x67,0x65,0x72,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75, 0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x6f, 0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x61,0x31,0x62,0x31, 0x37,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x63,0x65,0x63,0x30,0x62,0x66,0x7d,0x2e,0x6c,0x69,0x73,0x74, 0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x64,0x61,0x6e,0x67, 0x65,0x72,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x61, 0x31,0x62,0x31,0x37,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x34,0x61,0x31,0x62,0x31,0x37,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6c,0x69,0x67,0x68,0x74, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x33,0x36,0x34,0x36,0x34,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x65,0x66,0x65,0x66,0x65,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x6c, 0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6c,0x69,0x67, 0x68,0x74,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x33,0x36,0x34,0x36,0x34,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x65,0x35,0x65,0x35,0x65,0x35,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2e,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x33,0x36,0x34,0x36,0x34,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x33, 0x36,0x34,0x36,0x34,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x2d,0x64,0x61,0x72,0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x31,0x34,0x31,0x36,0x31,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x64,0x33,0x64,0x33,0x64, 0x34,0x7d,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74, 0x65,0x6d,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x2d,0x69,0x74,0x65,0x6d,0x2d,0x64,0x61,0x72,0x6b,0x2e,0x6c,0x69,0x73,0x74,0x2d, 0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f, 0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31, 0x34,0x31,0x36,0x31,0x39,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x62,0x65,0x62,0x65,0x62,0x66,0x7d,0x2e, 0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x2d, 0x64,0x61,0x72,0x6b,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d, 0x69,0x74,0x65,0x6d,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x31,0x34,0x31,0x36,0x31,0x39,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x31,0x34,0x31,0x36,0x31,0x39,0x7d,0x2e,0x62,0x74,0x6e, 0x2d,0x63,0x6c,0x6f,0x73,0x65,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x69,0x7a,0x69,0x6e, 0x67,0x3a,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x62,0x6f,0x78,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31, 0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x65,0x6d, 0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65, 0x6e,0x74,0x20,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61, 0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73, 0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77, 0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, 0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27,0x30,0x20,0x30,0x20, 0x31,0x36,0x20,0x31,0x36,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68, 0x20,0x64,0x3d,0x27,0x4d,0x2e,0x32,0x39,0x33,0x2e,0x32,0x39,0x33,0x61,0x31,0x20, 0x31,0x20,0x30,0x20,0x30,0x31,0x31,0x2e,0x34,0x31,0x34,0x20,0x30,0x4c,0x38,0x20, 0x36,0x2e,0x35,0x38,0x36,0x20,0x31,0x34,0x2e,0x32,0x39,0x33,0x2e,0x32,0x39,0x33, 0x61,0x31,0x20,0x31,0x20,0x30,0x20,0x31,0x31,0x31,0x2e,0x34,0x31,0x34,0x20,0x31, 0x2e,0x34,0x31,0x34,0x4c,0x39,0x2e,0x34,0x31,0x34,0x20,0x38,0x6c,0x36,0x2e,0x32, 0x39,0x33,0x20,0x36,0x2e,0x32,0x39,0x33,0x61,0x31,0x20,0x31,0x20,0x30,0x20,0x30, 0x31,0x2d,0x31,0x2e,0x34,0x31,0x34,0x20,0x31,0x2e,0x34,0x31,0x34,0x4c,0x38,0x20, 0x39,0x2e,0x34,0x31,0x34,0x6c,0x2d,0x36,0x2e,0x32,0x39,0x33,0x20,0x36,0x2e,0x32, 0x39,0x33,0x61,0x31,0x20,0x31,0x20,0x30,0x20,0x30,0x31,0x2d,0x31,0x2e,0x34,0x31, 0x34,0x2d,0x31,0x2e,0x34,0x31,0x34,0x4c,0x36,0x2e,0x35,0x38,0x36,0x20,0x38,0x20, 0x2e,0x32,0x39,0x33,0x20,0x31,0x2e,0x37,0x30,0x37,0x61,0x31,0x20,0x31,0x20,0x30, 0x20,0x30,0x31,0x30,0x2d,0x31,0x2e,0x34,0x31,0x34,0x7a,0x27,0x2f,0x25,0x33,0x45, 0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x20,0x35,0x30,0x25, 0x2f,0x31,0x65,0x6d,0x20,0x61,0x75,0x74,0x6f,0x20,0x6e,0x6f,0x2d,0x72,0x65,0x70, 0x65,0x61,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x62,0x74, 0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65, 0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x37,0x35,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x6c,0x6f,0x73,0x65,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x3a,0x30,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a, 0x30,0x20,0x30,0x20,0x30,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62, 0x61,0x28,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x2c,0x2e,0x32,0x35,0x29,0x3b, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63, 0x6c,0x6f,0x73,0x65,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x2e,0x62, 0x74,0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x7b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73, 0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x75,0x73, 0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x2d, 0x6d,0x73,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x6e, 0x6f,0x6e,0x65,0x3b,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a, 0x6e,0x6f,0x6e,0x65,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x32,0x35, 0x7d,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x2d,0x77,0x68,0x69,0x74, 0x65,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72, 0x3a,0x69,0x6e,0x76,0x65,0x72,0x74,0x28,0x31,0x29,0x20,0x67,0x72,0x61,0x79,0x73, 0x63,0x61,0x6c,0x65,0x28,0x31,0x30,0x30,0x25,0x29,0x20,0x62,0x72,0x69,0x67,0x68, 0x74,0x6e,0x65,0x73,0x73,0x28,0x32,0x30,0x30,0x25,0x29,0x3b,0x66,0x69,0x6c,0x74, 0x65,0x72,0x3a,0x69,0x6e,0x76,0x65,0x72,0x74,0x28,0x31,0x29,0x20,0x67,0x72,0x61, 0x79,0x73,0x63,0x61,0x6c,0x65,0x28,0x31,0x30,0x30,0x25,0x29,0x20,0x62,0x72,0x69, 0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x28,0x32,0x30,0x30,0x25,0x29,0x7d,0x2e,0x74, 0x6f,0x61,0x73,0x74,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x33,0x35,0x30,0x70,0x78, 0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x72,0x65, 0x6d,0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73, 0x3a,0x61,0x75,0x74,0x6f,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25, 0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x38,0x35,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70,0x3a,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x62,0x6f,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70, 0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x2e,0x31,0x29,0x3b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f, 0x77,0x3a,0x30,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x20,0x72, 0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x35,0x29,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x7d,0x2e,0x74,0x6f,0x61,0x73,0x74,0x2e,0x73,0x68,0x6f,0x77,0x69, 0x6e,0x67,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x7d,0x2e,0x74,0x6f, 0x61,0x73,0x74,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x73,0x68,0x6f,0x77,0x29,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x74,0x6f,0x61, 0x73,0x74,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x7b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61,0x78,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x6d,0x61,0x78, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d, 0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x74,0x6f,0x61, 0x73,0x74,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3e,0x3a,0x6e,0x6f, 0x74,0x28,0x3a,0x6c,0x61,0x73,0x74,0x2d,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x37,0x35, 0x72,0x65,0x6d,0x7d,0x2e,0x74,0x6f,0x61,0x73,0x74,0x2d,0x68,0x65,0x61,0x64,0x65, 0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65, 0x72,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20, 0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63, 0x37,0x35,0x37,0x64,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c, 0x31,0x30,0x30,0x25,0x2c,0x2e,0x38,0x35,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70,0x3a,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67, 0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x30,0x35,0x29,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70, 0x78,0x29,0x7d,0x2e,0x74,0x6f,0x61,0x73,0x74,0x2d,0x68,0x65,0x61,0x64,0x65,0x72, 0x20,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2d,0x2e,0x33,0x37,0x35,0x72,0x65, 0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x37, 0x35,0x72,0x65,0x6d,0x7d,0x2e,0x74,0x6f,0x61,0x73,0x74,0x2d,0x62,0x6f,0x64,0x79, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b, 0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a,0x62,0x72,0x65,0x61,0x6b,0x2d, 0x77,0x6f,0x72,0x64,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x66,0x69,0x78,0x65,0x64,0x3b,0x74,0x6f,0x70,0x3a,0x30, 0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a, 0x31,0x30,0x35,0x35,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x68,0x65,0x69, 0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f, 0x77,0x2d,0x78,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x6f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x6f,0x75,0x74,0x6c,0x69, 0x6e,0x65,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c, 0x6f,0x67,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61, 0x74,0x69,0x76,0x65,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x61,0x75,0x74,0x6f,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65, 0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2e,0x66,0x61,0x64,0x65,0x20,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x7b,0x74,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x33,0x73,0x20,0x65,0x61,0x73,0x65, 0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x33,0x73,0x20,0x65,0x61, 0x73,0x65,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x33,0x73,0x20, 0x65,0x61,0x73,0x65,0x2d,0x6f,0x75,0x74,0x2c,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x33,0x73,0x20,0x65, 0x61,0x73,0x65,0x2d,0x6f,0x75,0x74,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c, 0x61,0x74,0x65,0x59,0x28,0x2d,0x35,0x30,0x70,0x78,0x29,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59, 0x28,0x2d,0x35,0x30,0x70,0x78,0x29,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28, 0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d, 0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x2e,0x66,0x61,0x64,0x65,0x20,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2e,0x73,0x68,0x6f,0x77,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61, 0x6c,0x6f,0x67,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x73,0x74,0x61,0x74,0x69,0x63,0x20,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x7b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63, 0x61,0x6c,0x65,0x28,0x31,0x2e,0x30,0x32,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66, 0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x31,0x2e,0x30,0x32,0x29,0x7d, 0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2d,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x31,0x30,0x30,0x25,0x20,0x2d,0x20,0x31,0x72,0x65,0x6d, 0x29,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2d, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x20,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7b,0x6d,0x61,0x78,0x2d,0x68,0x65, 0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62, 0x6c,0x65,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2d,0x63,0x65,0x6e, 0x74,0x65,0x72,0x65,0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c, 0x65,0x78,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63, 0x65,0x6e,0x74,0x65,0x72,0x3b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x30,0x30,0x25,0x20,0x2d,0x20,0x31,0x72,0x65, 0x6d,0x29,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74, 0x69,0x76,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78, 0x3b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30, 0x25,0x3b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73, 0x3a,0x61,0x75,0x74,0x6f,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70,0x3a,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x62,0x6f,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31, 0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c, 0x30,0x2c,0x30,0x2c,0x2e,0x32,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d,0x3b,0x6f,0x75,0x74,0x6c, 0x69,0x6e,0x65,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x62,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66, 0x69,0x78,0x65,0x64,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a, 0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x35,0x30,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x31,0x30,0x30,0x76,0x68,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x7d,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2e,0x66,0x61, 0x64,0x65,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x7d,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2e,0x73,0x68,0x6f, 0x77,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72, 0x69,0x6e,0x6b,0x3a,0x30,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62, 0x65,0x74,0x77,0x65,0x65,0x6e,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31, 0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65, 0x32,0x65,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c, 0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28, 0x2e,0x33,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x72,0x65,0x6d,0x20, 0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x68,0x65, 0x61,0x64,0x65,0x72,0x20,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2d,0x2e,0x35,0x72, 0x65,0x6d,0x20,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x20,0x61,0x75,0x74,0x6f,0x7d,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x74,0x69,0x74,0x6c,0x65,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x6c,0x69,0x6e,0x65, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x7d,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x66,0x6c,0x65,0x78,0x3a,0x31, 0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x31,0x72,0x65,0x6d,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x6f,0x6f,0x74, 0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b, 0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x3b,0x66, 0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30,0x3b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b, 0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x2e,0x37,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65, 0x65,0x32,0x65,0x36,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78, 0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d, 0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63, 0x28,0x2e,0x33,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x3e,0x2a,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x40,0x6d,0x65,0x64, 0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x37, 0x36,0x70,0x78,0x29,0x7b,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69,0x61,0x6c, 0x6f,0x67,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30,0x30, 0x70,0x78,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x2e,0x37,0x35,0x72,0x65, 0x6d,0x20,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64,0x69, 0x61,0x6c,0x6f,0x67,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x7b, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x30,0x30,0x25, 0x20,0x2d,0x20,0x33,0x2e,0x35,0x72,0x65,0x6d,0x29,0x7d,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x2d,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x65, 0x64,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x63,0x61,0x6c, 0x63,0x28,0x31,0x30,0x30,0x25,0x20,0x2d,0x20,0x33,0x2e,0x35,0x72,0x65,0x6d,0x29, 0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x73,0x6d,0x7b,0x6d,0x61,0x78,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x33,0x30,0x30,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64, 0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39, 0x32,0x70,0x78,0x29,0x7b,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x6c,0x67,0x2c,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x78,0x6c,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x38,0x30,0x30,0x70,0x78,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61, 0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30, 0x70,0x78,0x29,0x7b,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x78,0x6c,0x7b,0x6d,0x61, 0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x31,0x34,0x30,0x70,0x78,0x7d,0x7d, 0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65, 0x6e,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x6d,0x61, 0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x68,0x65,0x69, 0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a, 0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72, 0x65,0x65,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x62,0x6f,0x64,0x79,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79, 0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c, 0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x6f,0x6f,0x74,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x30,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x61, 0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x37,0x35,0x2e,0x39,0x38,0x70,0x78, 0x29,0x7b,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72, 0x65,0x65,0x6e,0x2d,0x73,0x6d,0x2d,0x64,0x6f,0x77,0x6e,0x7b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30, 0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x73,0x6d, 0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x73,0x6d,0x2d,0x64, 0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x68,0x65,0x61,0x64,0x65, 0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72, 0x65,0x65,0x6e,0x2d,0x73,0x6d,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77, 0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x73,0x6d,0x2d,0x64,0x6f,0x77, 0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d, 0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x37,0x36,0x37,0x2e,0x39,0x38,0x70,0x78,0x29,0x7b,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x6d, 0x64,0x2d,0x64,0x6f,0x77,0x6e,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30, 0x76,0x77,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75, 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x6d,0x64,0x2d,0x64,0x6f,0x77,0x6e, 0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7b, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c, 0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x6d,0x64,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x6d, 0x64,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x62,0x6f, 0x64,0x79,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75, 0x74,0x6f,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63, 0x72,0x65,0x65,0x6e,0x2d,0x6d,0x64,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x7d,0x40,0x6d,0x65,0x64, 0x69,0x61,0x20,0x28,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39, 0x31,0x2e,0x39,0x38,0x70,0x78,0x29,0x7b,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x6c,0x67,0x2d,0x64,0x6f,0x77, 0x6e,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x6d,0x61, 0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x68,0x65,0x69, 0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a, 0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72, 0x65,0x65,0x6e,0x2d,0x6c,0x67,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7b,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x31,0x30,0x30,0x25,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d, 0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65, 0x6e,0x2d,0x6c,0x67,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x6c,0x67,0x2d,0x64,0x6f,0x77, 0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x6f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d, 0x6c,0x67,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66, 0x6f,0x6f,0x74,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x30,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d, 0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x31,0x39,0x39,0x2e,0x39,0x38, 0x70,0x78,0x29,0x7b,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73, 0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x6c,0x2d,0x64,0x6f,0x77,0x6e,0x7b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x7d,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d, 0x78,0x6c,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30, 0x30,0x25,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x6c, 0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x68,0x65,0x61, 0x64,0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73, 0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x6c,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x6c,0x2d,0x64, 0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x6f,0x6f,0x74,0x65, 0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a, 0x30,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x61,0x78,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x31,0x33,0x39,0x39,0x2e,0x39,0x38,0x70,0x78,0x29,0x7b, 0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65, 0x6e,0x2d,0x78,0x78,0x6c,0x2d,0x64,0x6f,0x77,0x6e,0x7b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30, 0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x78,0x6c, 0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x78,0x6c,0x2d, 0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x68,0x65,0x61,0x64, 0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x30,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63, 0x72,0x65,0x65,0x6e,0x2d,0x78,0x78,0x6c,0x2d,0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d, 0x6f,0x64,0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75,0x74,0x6f,0x7d,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x2d,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x78,0x78,0x6c,0x2d, 0x64,0x6f,0x77,0x6e,0x20,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x66,0x6f,0x6f,0x74, 0x65,0x72,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x30,0x7d,0x7d,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x7b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x7a, 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x38,0x30,0x3b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x3a,0x30,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x73, 0x79,0x73,0x74,0x65,0x6d,0x2d,0x75,0x69,0x2c,0x2d,0x61,0x70,0x70,0x6c,0x65,0x2d, 0x73,0x79,0x73,0x74,0x65,0x6d,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49, 0x22,0x2c,0x52,0x6f,0x62,0x6f,0x74,0x6f,0x2c,0x22,0x48,0x65,0x6c,0x76,0x65,0x74, 0x69,0x63,0x61,0x20,0x4e,0x65,0x75,0x65,0x22,0x2c,0x41,0x72,0x69,0x61,0x6c,0x2c, 0x22,0x4e,0x6f,0x74,0x6f,0x20,0x53,0x61,0x6e,0x73,0x22,0x2c,0x22,0x4c,0x69,0x62, 0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x53,0x61,0x6e,0x73,0x22,0x2c,0x73,0x61, 0x6e,0x73,0x2d,0x73,0x65,0x72,0x69,0x66,0x2c,0x22,0x41,0x70,0x70,0x6c,0x65,0x20, 0x43,0x6f,0x6c,0x6f,0x72,0x20,0x45,0x6d,0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53,0x65, 0x67,0x6f,0x65,0x20,0x55,0x49,0x20,0x45,0x6d,0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53, 0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x2c, 0x22,0x4e,0x6f,0x74,0x6f,0x20,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x45,0x6d,0x6f,0x6a, 0x69,0x22,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x76, 0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x61,0x6e, 0x73,0x2d,0x73,0x65,0x72,0x69,0x66,0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74, 0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x66,0x6f,0x6e,0x74,0x2d, 0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x34,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65,0x2d, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x3b,0x74,0x65,0x78,0x74,0x2d, 0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x74,0x65,0x78,0x74,0x2d, 0x61,0x6c,0x69,0x67,0x6e,0x3a,0x73,0x74,0x61,0x72,0x74,0x3b,0x74,0x65,0x78,0x74, 0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65, 0x3b,0x74,0x65,0x78,0x74,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x74,0x65,0x78,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6c,0x65,0x74,0x74,0x65,0x72,0x2d,0x73,0x70,0x61, 0x63,0x69,0x6e,0x67,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x77,0x6f,0x72,0x64, 0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x77,0x6f, 0x72,0x64,0x2d,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x3a,0x6e,0x6f,0x72,0x6d,0x61, 0x6c,0x3b,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f, 0x72,0x6d,0x61,0x6c,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a, 0x61,0x75,0x74,0x6f,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e, 0x38,0x37,0x35,0x72,0x65,0x6d,0x3b,0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70, 0x3a,0x62,0x72,0x65,0x61,0x6b,0x2d,0x77,0x6f,0x72,0x64,0x3b,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x3a,0x30,0x7d,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2e,0x73, 0x68,0x6f,0x77,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x39,0x7d,0x2e, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x38,0x72, 0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x2e,0x34,0x72,0x65,0x6d,0x7d, 0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69, 0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65, 0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x74,0x72,0x61,0x6e,0x73,0x70,0x61, 0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x74,0x79,0x6c, 0x65,0x3a,0x73,0x6f,0x6c,0x69,0x64,0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c, 0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f, 0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d, 0x74,0x6f,0x70,0x5d,0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x2d,0x74,0x6f,0x70,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x34,0x72, 0x65,0x6d,0x20,0x30,0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65, 0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x74,0x6f,0x70, 0x5d,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77, 0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x74,0x6f,0x70, 0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70, 0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e, 0x3d,0x74,0x6f,0x70,0x5d,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61, 0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x2c,0x2e,0x62,0x73,0x2d, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x74,0x6f,0x70,0x20,0x2e,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72, 0x65,0x7b,0x74,0x6f,0x70,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x34,0x72,0x65,0x6d,0x20,0x2e,0x34, 0x72,0x65,0x6d,0x20,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x7d,0x2e,0x62,0x73,0x2d, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74, 0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x5e,0x3d,0x72,0x69,0x67,0x68,0x74,0x5d,0x2c,0x2e,0x62,0x73,0x2d,0x74, 0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x65,0x6e,0x64,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x30,0x20,0x2e,0x34,0x72,0x65,0x6d,0x7d,0x2e,0x62,0x73,0x2d,0x74, 0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x5e,0x3d,0x72,0x69,0x67,0x68,0x74,0x5d,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x2d,0x65,0x6e,0x64,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69, 0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x2e,0x34,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x2e,0x38,0x72,0x65,0x6d,0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c, 0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f, 0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d, 0x72,0x69,0x67,0x68,0x74,0x5d,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d, 0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x2c,0x2e,0x62,0x73, 0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x65,0x6e,0x64,0x20,0x2e,0x74,0x6f, 0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f, 0x72,0x65,0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x34,0x72,0x65,0x6d, 0x20,0x2e,0x34,0x72,0x65,0x6d,0x20,0x2e,0x34,0x72,0x65,0x6d,0x20,0x30,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x30,0x30,0x30,0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70, 0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x5d,0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x34,0x72,0x65,0x6d,0x20,0x30,0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f, 0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d, 0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x5e,0x3d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x5d,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x2e,0x74,0x6f,0x6f, 0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b,0x74,0x6f,0x70,0x3a,0x30, 0x7d,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74, 0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x5d, 0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a, 0x62,0x65,0x66,0x6f,0x72,0x65,0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x20,0x2e,0x34,0x72,0x65,0x6d, 0x20,0x2e,0x34,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x7d, 0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f, 0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x6c,0x65,0x66,0x74,0x5d,0x2c,0x2e,0x62, 0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x20,0x2e,0x34,0x72,0x65,0x6d,0x7d, 0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f, 0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x6c,0x65,0x66,0x74,0x5d,0x20,0x2e,0x74, 0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x2c,0x2e,0x62,0x73, 0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x73,0x74,0x61,0x72,0x74,0x20,0x2e, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b,0x72,0x69, 0x67,0x68,0x74,0x3a,0x30,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x34,0x72,0x65, 0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x2e,0x38,0x72,0x65,0x6d,0x7d,0x2e, 0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x75,0x74,0x6f,0x5b, 0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x6c,0x65,0x66,0x74,0x5d,0x20,0x2e,0x74,0x6f, 0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f, 0x72,0x65,0x2c,0x2e,0x62,0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x73, 0x74,0x61,0x72,0x74,0x20,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72, 0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x6c,0x65,0x66,0x74,0x3a, 0x2d,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x2e,0x34,0x72,0x65,0x6d,0x20,0x30,0x20,0x2e,0x34,0x72,0x65,0x6d,0x20, 0x2e,0x34,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66, 0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x7d,0x2e,0x74,0x6f, 0x6f,0x6c,0x74,0x69,0x70,0x2d,0x69,0x6e,0x6e,0x65,0x72,0x7b,0x6d,0x61,0x78,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x30,0x30,0x70,0x78,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d, 0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78,0x74, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x30,0x30,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65, 0x72,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c, 0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30, 0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x37,0x30,0x3b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x6d,0x61,0x78,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x37,0x36,0x70,0x78,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x73,0x79,0x73,0x74,0x65,0x6d,0x2d,0x75, 0x69,0x2c,0x2d,0x61,0x70,0x70,0x6c,0x65,0x2d,0x73,0x79,0x73,0x74,0x65,0x6d,0x2c, 0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x22,0x2c,0x52,0x6f,0x62,0x6f,0x74, 0x6f,0x2c,0x22,0x48,0x65,0x6c,0x76,0x65,0x74,0x69,0x63,0x61,0x20,0x4e,0x65,0x75, 0x65,0x22,0x2c,0x41,0x72,0x69,0x61,0x6c,0x2c,0x22,0x4e,0x6f,0x74,0x6f,0x20,0x53, 0x61,0x6e,0x73,0x22,0x2c,0x22,0x4c,0x69,0x62,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e, 0x20,0x53,0x61,0x6e,0x73,0x22,0x2c,0x73,0x61,0x6e,0x73,0x2d,0x73,0x65,0x72,0x69, 0x66,0x2c,0x22,0x41,0x70,0x70,0x6c,0x65,0x20,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x45, 0x6d,0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49,0x20, 0x45,0x6d,0x6f,0x6a,0x69,0x22,0x2c,0x22,0x53,0x65,0x67,0x6f,0x65,0x20,0x55,0x49, 0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x2c,0x22,0x4e,0x6f,0x74,0x6f,0x20,0x43, 0x6f,0x6c,0x6f,0x72,0x20,0x45,0x6d,0x6f,0x6a,0x69,0x22,0x3b,0x66,0x6f,0x6e,0x74, 0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x61,0x6e,0x73,0x2d,0x73,0x65,0x72,0x69,0x66, 0x29,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x72, 0x6d,0x61,0x6c,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a, 0x34,0x30,0x30,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x35,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c, 0x65,0x66,0x74,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x73, 0x74,0x61,0x72,0x74,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x65,0x78,0x74,0x2d,0x73, 0x68,0x61,0x64,0x6f,0x77,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x65,0x78,0x74,0x2d, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6c, 0x65,0x74,0x74,0x65,0x72,0x2d,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x3a,0x6e,0x6f, 0x72,0x6d,0x61,0x6c,0x3b,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a, 0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x77,0x6f,0x72,0x64,0x2d,0x73,0x70,0x61,0x63, 0x69,0x6e,0x67,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x77,0x68,0x69,0x74,0x65, 0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x6c,0x69, 0x6e,0x65,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x61,0x75,0x74,0x6f,0x3b,0x66,0x6f, 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x2e,0x38,0x37,0x35,0x72,0x65,0x6d,0x3b, 0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a,0x62,0x72,0x65,0x61,0x6b,0x2d, 0x77,0x6f,0x72,0x64,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70,0x3a,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x62,0x6f,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x70, 0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x2e,0x32,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d,0x7d,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x20,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72, 0x6f,0x77,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f, 0x6c,0x75,0x74,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f, 0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x68,0x65, 0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x20,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72, 0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72,0x2c,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65, 0x72,0x20,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77, 0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x22,0x22,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x73,0x6f,0x6c,0x69,0x64,0x7d,0x2e, 0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75,0x74,0x6f,0x5b, 0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x74,0x6f,0x70,0x5d,0x3e,0x2e,0x70,0x6f,0x70, 0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x2c,0x2e,0x62,0x73,0x2d,0x70, 0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3e,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31, 0x70,0x78,0x29,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72, 0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x74,0x6f,0x70,0x5d, 0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a, 0x62,0x65,0x66,0x6f,0x72,0x65,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76, 0x65,0x72,0x2d,0x74,0x6f,0x70,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x30, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x32,0x35, 0x29,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75, 0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x74,0x6f,0x70,0x5d,0x3e,0x2e, 0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x61,0x66, 0x74,0x65,0x72,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72, 0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x30,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72, 0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65, 0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x72,0x69,0x67, 0x68,0x74,0x5d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72, 0x6f,0x77,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x65, 0x6e,0x64,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f, 0x77,0x7b,0x6c,0x65,0x66,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2d,0x2e,0x35,0x72, 0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65, 0x6d,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75, 0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x72,0x69,0x67,0x68,0x74,0x5d, 0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a, 0x62,0x65,0x66,0x6f,0x72,0x65,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76, 0x65,0x72,0x2d,0x65,0x6e,0x64,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x6c,0x65,0x66, 0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72, 0x65,0x6d,0x20,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68, 0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f, 0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d, 0x72,0x69,0x67,0x68,0x74,0x5d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x61,0x72,0x72,0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72,0x2c,0x2e,0x62,0x73,0x2d, 0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x65,0x6e,0x64,0x3e,0x2e,0x70,0x6f,0x70, 0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72, 0x7b,0x6c,0x65,0x66,0x74,0x3a,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72, 0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61, 0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d, 0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x5d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f, 0x77,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72, 0x72,0x6f,0x77,0x7b,0x74,0x6f,0x70,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2d,0x2e,0x35, 0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x62,0x73,0x2d,0x70, 0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x5e,0x3d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x5d,0x3e,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65, 0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72, 0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x20,0x2e, 0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72, 0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e, 0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75,0x74,0x6f,0x5b, 0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x5d,0x3e,0x2e, 0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x61,0x66, 0x74,0x65,0x72,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x61,0x72,0x72,0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x74,0x6f,0x70,0x3a, 0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x30,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f, 0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x5d,0x20,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x2c,0x2e, 0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x20,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x68,0x65,0x61,0x64,0x65, 0x72,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a,0x30, 0x3b,0x6c,0x65,0x66,0x74,0x3a,0x35,0x30,0x25,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x72, 0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2d, 0x2e,0x35,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22, 0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31, 0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30, 0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75,0x74, 0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x6c,0x65,0x66,0x74,0x5d,0x3e,0x2e, 0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x2c,0x2e,0x62, 0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x73,0x74,0x61,0x72,0x74,0x3e, 0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x7b,0x72, 0x69,0x67,0x68,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2d,0x2e,0x35,0x72,0x65,0x6d, 0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x35, 0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x7d, 0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x75,0x74,0x6f, 0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x6c,0x65,0x66,0x74,0x5d,0x3e,0x2e,0x70, 0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66, 0x6f,0x72,0x65,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d, 0x73,0x74,0x61,0x72,0x74,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61, 0x72,0x72,0x6f,0x77,0x3a,0x62,0x65,0x66,0x6f,0x72,0x65,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x30,0x20,0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e, 0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c, 0x30,0x2c,0x2e,0x32,0x35,0x29,0x7d,0x2e,0x62,0x73,0x2d,0x70,0x6f,0x70,0x6f,0x76, 0x65,0x72,0x2d,0x61,0x75,0x74,0x6f,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70, 0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5e,0x3d,0x6c, 0x65,0x66,0x74,0x5d,0x3e,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72, 0x72,0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72,0x2c,0x2e,0x62,0x73,0x2d,0x70,0x6f, 0x70,0x6f,0x76,0x65,0x72,0x2d,0x73,0x74,0x61,0x72,0x74,0x3e,0x2e,0x70,0x6f,0x70, 0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72,0x6f,0x77,0x3a,0x61,0x66,0x74,0x65,0x72, 0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x20,0x30,0x20, 0x2e,0x35,0x72,0x65,0x6d,0x20,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x66,0x7d,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x68,0x65,0x61,0x64, 0x65,0x72,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x20,0x31,0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x31,0x72,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x70,0x78,0x20, 0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30, 0x2c,0x2e,0x32,0x29,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d, 0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63, 0x28,0x2e,0x33,0x72,0x65,0x6d,0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x3b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x72,0x65,0x6d, 0x20,0x2d,0x20,0x31,0x70,0x78,0x29,0x7d,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x3a,0x65,0x6d,0x70,0x74,0x79,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x31,0x72,0x65,0x6d,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32, 0x35,0x32,0x39,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x7b,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x7d, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x65, 0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x7b,0x74,0x6f,0x75,0x63,0x68,0x2d,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x70,0x61,0x6e,0x2d,0x79,0x7d,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x2d,0x69,0x6e,0x6e,0x65,0x72,0x7b,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77, 0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65, 0x6c,0x2d,0x69,0x6e,0x6e,0x65,0x72,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x63,0x6c,0x65,0x61, 0x72,0x3a,0x62,0x6f,0x74,0x68,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22, 0x22,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x6c,0x61,0x74,0x69, 0x76,0x65,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x3b, 0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x3b,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2d,0x31,0x30,0x30,0x25,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x62,0x61,0x63,0x6b,0x66,0x61,0x63,0x65,0x2d,0x76,0x69,0x73,0x69,0x62,0x69, 0x6c,0x69,0x74,0x79,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x62,0x61,0x63,0x6b, 0x66,0x61,0x63,0x65,0x2d,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3a, 0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66, 0x6f,0x72,0x6d,0x20,0x2e,0x36,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d, 0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x36,0x73,0x20,0x65,0x61,0x73, 0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x36, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20, 0x2e,0x36,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d, 0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x69,0x74,0x65,0x6d,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6e,0x65,0x78,0x74,0x2c,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x70,0x72,0x65,0x76,0x2c,0x2e, 0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2e,0x61,0x63, 0x74,0x69,0x76,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f, 0x63,0x6b,0x7d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2e,0x63,0x61,0x72,0x6f,0x75, 0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x65,0x6e,0x64,0x2c,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6e,0x65,0x78,0x74, 0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x29,0x7b,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61, 0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x31,0x30,0x30,0x25,0x29,0x3b,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74, 0x65,0x58,0x28,0x31,0x30,0x30,0x25,0x29,0x7d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73, 0x74,0x61,0x72,0x74,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x70,0x72,0x65,0x76,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x65,0x6e,0x64,0x29, 0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2d,0x31, 0x30,0x30,0x25,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2d,0x31,0x30,0x30,0x25,0x29, 0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x66,0x61,0x64,0x65,0x20, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x7b,0x6f, 0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x2d,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3a,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61, 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x2d,0x66,0x61,0x64,0x65,0x20,0x2e,0x63,0x61,0x72,0x6f,0x75, 0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x6e,0x65,0x78,0x74,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x74,0x61,0x72, 0x74,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x66,0x61,0x64,0x65, 0x20,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d, 0x70,0x72,0x65,0x76,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74, 0x65,0x6d,0x2d,0x65,0x6e,0x64,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x66,0x61,0x64,0x65,0x20,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d, 0x69,0x74,0x65,0x6d,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x7b,0x7a,0x2d,0x69,0x6e, 0x64,0x65,0x78,0x3a,0x31,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x7d, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x66,0x61,0x64,0x65,0x20,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d, 0x69,0x74,0x65,0x6d,0x2d,0x65,0x6e,0x64,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73, 0x65,0x6c,0x2d,0x66,0x61,0x64,0x65,0x20,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2e, 0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x30,0x3b,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x20,0x30,0x73,0x20,0x2e,0x36, 0x73,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72, 0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73, 0x65,0x6c,0x2d,0x66,0x61,0x64,0x65,0x20,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2e, 0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x65,0x6e, 0x64,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x66,0x61,0x64,0x65, 0x20,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65, 0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x63, 0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d, 0x6e,0x65,0x78,0x74,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70,0x72,0x65,0x76,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f, 0x70,0x3a,0x30,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a,0x2d,0x69, 0x6e,0x64,0x65,0x78,0x3a,0x31,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a, 0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x35,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x30,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78, 0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x2e,0x35,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x20,0x2e,0x31,0x35,0x73,0x20,0x65,0x61,0x73,0x65,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d, 0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6e,0x65,0x78,0x74,0x2c,0x2e,0x63, 0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d, 0x70,0x72,0x65,0x76,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d, 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6e,0x65,0x78,0x74,0x3a,0x66,0x6f,0x63, 0x75,0x73,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e, 0x74,0x72,0x6f,0x6c,0x2d,0x6e,0x65,0x78,0x74,0x3a,0x68,0x6f,0x76,0x65,0x72,0x2c, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f, 0x6c,0x2d,0x70,0x72,0x65,0x76,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70, 0x72,0x65,0x76,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x6f,0x75,0x74,0x6c,0x69,0x6e, 0x65,0x3a,0x30,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x39,0x7d,0x2e, 0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x2d,0x70,0x72,0x65,0x76,0x7b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6e, 0x65,0x78,0x74,0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x7d,0x2e,0x63,0x61,0x72, 0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6e,0x65, 0x78,0x74,0x2d,0x69,0x63,0x6f,0x6e,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65, 0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70,0x72,0x65,0x76,0x2d,0x69, 0x63,0x6f,0x6e,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69, 0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32, 0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x32,0x72,0x65,0x6d,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70,0x65,0x61, 0x74,0x3a,0x6e,0x6f,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x35,0x30,0x25,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x73, 0x69,0x7a,0x65,0x3a,0x31,0x30,0x30,0x25,0x20,0x31,0x30,0x30,0x25,0x7d,0x2e,0x63, 0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d, 0x70,0x72,0x65,0x76,0x2d,0x69,0x63,0x6f,0x6e,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22, 0x64,0x61,0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78, 0x6d,0x6c,0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38, 0x2c,0x25,0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68, 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67, 0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42, 0x6f,0x78,0x3d,0x27,0x30,0x20,0x30,0x20,0x31,0x36,0x20,0x31,0x36,0x27,0x20,0x66, 0x69,0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x66,0x66,0x66,0x27,0x25,0x33,0x45,0x25, 0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x27,0x4d,0x31,0x31,0x2e,0x33,0x35, 0x34,0x20,0x31,0x2e,0x36,0x34,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30, 0x31,0x30,0x20,0x2e,0x37,0x30,0x38,0x4c,0x35,0x2e,0x37,0x30,0x37,0x20,0x38,0x6c, 0x35,0x2e,0x36,0x34,0x37,0x20,0x35,0x2e,0x36,0x34,0x36,0x61,0x2e,0x35,0x2e,0x35, 0x20,0x30,0x20,0x30,0x31,0x2d,0x2e,0x37,0x30,0x38,0x2e,0x37,0x30,0x38,0x6c,0x2d, 0x36,0x2d,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31,0x30,0x2d,0x2e, 0x37,0x30,0x38,0x6c,0x36,0x2d,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30, 0x31,0x2e,0x37,0x30,0x38,0x20,0x30,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43, 0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75, 0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6e,0x65,0x78,0x74, 0x2d,0x69,0x63,0x6f,0x6e,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61,0x74,0x61, 0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3b,0x63, 0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25,0x33,0x43, 0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30, 0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x27, 0x30,0x20,0x30,0x20,0x31,0x36,0x20,0x31,0x36,0x27,0x20,0x66,0x69,0x6c,0x6c,0x3d, 0x27,0x25,0x32,0x33,0x66,0x66,0x66,0x27,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61, 0x74,0x68,0x20,0x64,0x3d,0x27,0x4d,0x34,0x2e,0x36,0x34,0x36,0x20,0x31,0x2e,0x36, 0x34,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31,0x2e,0x37,0x30,0x38, 0x20,0x30,0x6c,0x36,0x20,0x36,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31, 0x30,0x20,0x2e,0x37,0x30,0x38,0x6c,0x2d,0x36,0x20,0x36,0x61,0x2e,0x35,0x2e,0x35, 0x20,0x30,0x20,0x30,0x31,0x2d,0x2e,0x37,0x30,0x38,0x2d,0x2e,0x37,0x30,0x38,0x4c, 0x31,0x30,0x2e,0x32,0x39,0x33,0x20,0x38,0x20,0x34,0x2e,0x36,0x34,0x36,0x20,0x32, 0x2e,0x33,0x35,0x34,0x61,0x2e,0x35,0x2e,0x35,0x20,0x30,0x20,0x30,0x31,0x30,0x2d, 0x2e,0x37,0x30,0x38,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x2f,0x73,0x76, 0x67,0x25,0x33,0x45,0x22,0x29,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x73,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x72,0x69, 0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x6c, 0x65,0x66,0x74,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x32,0x3b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x3b,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e, 0x74,0x65,0x72,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x35,0x25,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65, 0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x35, 0x25,0x3b,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e, 0x65,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x6e,0x64,0x69, 0x63,0x61,0x74,0x6f,0x72,0x73,0x20,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d, 0x74,0x61,0x72,0x67,0x65,0x74,0x5d,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x69,0x7a,0x69, 0x6e,0x67,0x3a,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x62,0x6f,0x78,0x3b,0x66, 0x6c,0x65,0x78,0x3a,0x30,0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x3b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x33,0x30,0x70,0x78,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x33, 0x70,0x78,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x70,0x78,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x70,0x78,0x3b,0x74,0x65, 0x78,0x74,0x2d,0x69,0x6e,0x64,0x65,0x6e,0x74,0x3a,0x2d,0x39,0x39,0x39,0x70,0x78, 0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x66,0x66,0x66,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6c,0x69,0x70,0x3a,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x30,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64, 0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x30,0x70,0x78,0x20, 0x73,0x6f,0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e, 0x74,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x3b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x20, 0x2e,0x36,0x73,0x20,0x65,0x61,0x73,0x65,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20, 0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64, 0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61, 0x74,0x6f,0x72,0x73,0x20,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x61, 0x72,0x67,0x65,0x74,0x5d,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x73,0x20,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x7d,0x2e,0x63, 0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x61,0x70,0x74,0x69,0x6f,0x6e,0x7b, 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74, 0x65,0x3b,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x35,0x25,0x3b,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x6c,0x65,0x66,0x74,0x3a, 0x31,0x35,0x25,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x32,0x35,0x72,0x65,0x6d,0x3b,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x3b,0x74,0x65,0x78,0x74,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x7d,0x2e,0x63,0x61,0x72, 0x6f,0x75,0x73,0x65,0x6c,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6e,0x65,0x78, 0x74,0x2d,0x69,0x63,0x6f,0x6e,0x2c,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d, 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70,0x72,0x65,0x76,0x2d,0x69,0x63,0x6f, 0x6e,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72, 0x3a,0x69,0x6e,0x76,0x65,0x72,0x74,0x28,0x31,0x29,0x20,0x67,0x72,0x61,0x79,0x73, 0x63,0x61,0x6c,0x65,0x28,0x31,0x30,0x30,0x29,0x3b,0x66,0x69,0x6c,0x74,0x65,0x72, 0x3a,0x69,0x6e,0x76,0x65,0x72,0x74,0x28,0x31,0x29,0x20,0x67,0x72,0x61,0x79,0x73, 0x63,0x61,0x6c,0x65,0x28,0x31,0x30,0x30,0x29,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75, 0x73,0x65,0x6c,0x2d,0x64,0x61,0x72,0x6b,0x20,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73, 0x65,0x6c,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x73,0x20,0x5b,0x64, 0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x61,0x72,0x67,0x65,0x74,0x5d,0x7b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x30,0x30,0x30,0x7d,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x64, 0x61,0x72,0x6b,0x20,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x63,0x61, 0x70,0x74,0x69,0x6f,0x6e,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30, 0x7d,0x40,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6b,0x65,0x79,0x66,0x72,0x61, 0x6d,0x65,0x73,0x20,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x62,0x6f,0x72,0x64, 0x65,0x72,0x7b,0x74,0x6f,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x31, 0x74,0x75,0x72,0x6e,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a, 0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x31,0x74,0x75,0x72,0x6e,0x29,0x7d,0x7d,0x40, 0x6b,0x65,0x79,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x73,0x70,0x69,0x6e,0x6e,0x65, 0x72,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x7b,0x74,0x6f,0x7b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f, 0x74,0x61,0x74,0x65,0x28,0x31,0x74,0x75,0x72,0x6e,0x29,0x3b,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x31,0x74,0x75, 0x72,0x6e,0x29,0x7d,0x7d,0x2e,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x62,0x6f, 0x72,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c, 0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x32,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x32,0x72,0x65,0x6d, 0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a, 0x2d,0x2e,0x31,0x32,0x35,0x65,0x6d,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x2e, 0x32,0x35,0x65,0x6d,0x20,0x73,0x6f,0x6c,0x69,0x64,0x3b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x65,0x6d,0x20,0x73,0x6f, 0x6c,0x69,0x64,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x35,0x30, 0x25,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x62,0x6f,0x72,0x64, 0x65,0x72,0x20,0x2e,0x37,0x35,0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69, 0x6e,0x66,0x69,0x6e,0x69,0x74,0x65,0x3b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x3a,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72, 0x20,0x2e,0x37,0x35,0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66, 0x69,0x6e,0x69,0x74,0x65,0x7d,0x2e,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x3b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x2e,0x32,0x65, 0x6d,0x7d,0x40,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6b,0x65,0x79,0x66,0x72, 0x61,0x6d,0x65,0x73,0x20,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67,0x72,0x6f, 0x77,0x7b,0x30,0x25,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61, 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x30,0x29,0x3b, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28, 0x30,0x29,0x7d,0x35,0x30,0x25,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31, 0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x3a,0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x40,0x6b,0x65,0x79,0x66,0x72,0x61,0x6d, 0x65,0x73,0x20,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67,0x72,0x6f,0x77,0x7b, 0x30,0x25,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x30,0x29,0x3b,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x73,0x63,0x61,0x6c,0x65,0x28,0x30,0x29, 0x7d,0x35,0x30,0x25,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x2d, 0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a, 0x6e,0x6f,0x6e,0x65,0x7d,0x7d,0x2e,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67, 0x72,0x6f,0x77,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69, 0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x32, 0x72,0x65,0x6d,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x32,0x72,0x65,0x6d,0x3b, 0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x2d, 0x2e,0x31,0x32,0x35,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43, 0x6f,0x6c,0x6f,0x72,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x35,0x30,0x25,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30, 0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, 0x6f,0x6e,0x3a,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67,0x72,0x6f,0x77,0x20, 0x2e,0x37,0x35,0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69, 0x6e,0x69,0x74,0x65,0x3b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x73, 0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67,0x72,0x6f,0x77,0x20,0x2e,0x37,0x35,0x73, 0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65, 0x7d,0x2e,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x73, 0x6d,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x72,0x65,0x6d,0x3b,0x68,0x65,0x69, 0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20, 0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x72,0x65,0x64,0x75,0x63,0x65,0x64, 0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x65,0x64,0x75,0x63,0x65,0x29,0x7b, 0x2e,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x2c, 0x2e,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x2d,0x67,0x72,0x6f,0x77,0x7b,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2d, 0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x31,0x2e,0x35,0x73,0x3b,0x61,0x6e, 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x31,0x2e,0x35,0x73,0x7d,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61, 0x73,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x69,0x78,0x65,0x64, 0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65, 0x78,0x3a,0x31,0x30,0x34,0x35,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x3b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3b,0x6d,0x61,0x78,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c, 0x69,0x74,0x79,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6c,0x69,0x70, 0x3a,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x78,0x3b,0x6f,0x75,0x74, 0x6c,0x69,0x6e,0x65,0x3a,0x30,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66, 0x6f,0x72,0x6d,0x20,0x2e,0x33,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d, 0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x33,0x73,0x20,0x65,0x61,0x73, 0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x2e,0x33, 0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x2c,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20, 0x2e,0x33,0x73,0x20,0x65,0x61,0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d, 0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x2d,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x65,0x64,0x75,0x63,0x65,0x29,0x7b,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61, 0x73,0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e, 0x65,0x7d,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x61, 0x63,0x6b,0x64,0x72,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x66,0x69,0x78,0x65,0x64,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x34,0x30,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x3b,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x30,0x30,0x76,0x68,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f, 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x30,0x30,0x7d,0x2e, 0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x61,0x63,0x6b,0x64,0x72, 0x6f,0x70,0x2e,0x66,0x61,0x64,0x65,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x30,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x2e,0x73,0x68,0x6f,0x77,0x7b,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x66,0x6c,0x65,0x78,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73, 0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65, 0x74,0x77,0x65,0x65,0x6e,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72, 0x65,0x6d,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x68,0x65, 0x61,0x64,0x65,0x72,0x20,0x2e,0x62,0x74,0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2d,0x2e,0x35, 0x72,0x65,0x6d,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x2d,0x2e,0x35,0x72,0x65,0x6d,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e, 0x76,0x61,0x73,0x2d,0x74,0x69,0x74,0x6c,0x65,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x3b,0x6c,0x69,0x6e,0x65,0x2d,0x68, 0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61, 0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67, 0x72,0x6f,0x77,0x3a,0x31,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72, 0x65,0x6d,0x3b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x79,0x3a,0x61,0x75, 0x74,0x6f,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30, 0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x34,0x30,0x30,0x70,0x78,0x3b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f, 0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e, 0x32,0x29,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28, 0x2d,0x31,0x30,0x30,0x25,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2d,0x31,0x30,0x30, 0x25,0x29,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x65,0x6e, 0x64,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b, 0x77,0x69,0x64,0x74,0x68,0x3a,0x34,0x30,0x30,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69, 0x64,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x32,0x29, 0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x31,0x30, 0x30,0x25,0x29,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72, 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x31,0x30,0x30,0x25,0x29,0x7d,0x2e, 0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74,0x6f,0x70,0x7b,0x74,0x6f, 0x70,0x3a,0x30,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67,0x62,0x61, 0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x32,0x29,0x3b,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61, 0x6e,0x73,0x6c,0x61,0x74,0x65,0x59,0x28,0x2d,0x31,0x30,0x30,0x25,0x29,0x3b,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61, 0x74,0x65,0x59,0x28,0x2d,0x31,0x30,0x30,0x25,0x29,0x7d,0x2e,0x6f,0x66,0x66,0x63, 0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x6f,0x66, 0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74,0x6f,0x70,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x30,0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x33,0x30,0x76,0x68,0x3b,0x6d,0x61,0x78,0x2d,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61, 0x73,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x74,0x6f,0x70,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x67, 0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x32,0x29,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74, 0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59,0x28,0x31,0x30,0x30,0x25,0x29,0x3b, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c, 0x61,0x74,0x65,0x59,0x28,0x31,0x30,0x30,0x25,0x29,0x7d,0x2e,0x6f,0x66,0x66,0x63, 0x61,0x6e,0x76,0x61,0x73,0x2e,0x73,0x68,0x6f,0x77,0x7b,0x2d,0x77,0x65,0x62,0x6b, 0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e, 0x65,0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6e,0x6f,0x6e,0x65, 0x7d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f, 0x63,0x6b,0x3b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x65, 0x6d,0x3b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e, 0x3a,0x6d,0x69,0x64,0x64,0x6c,0x65,0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x77, 0x61,0x69,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6c,0x6f, 0x72,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x70,0x6c, 0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x62,0x74,0x6e,0x3a,0x62,0x65, 0x66,0x6f,0x72,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c, 0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x22,0x22,0x7d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65, 0x72,0x2d,0x78,0x73,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x2e,0x36,0x65,0x6d,0x7d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65, 0x72,0x2d,0x73,0x6d,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x2e,0x38,0x65,0x6d,0x7d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65, 0x72,0x2d,0x6c,0x67,0x7b,0x6d,0x69,0x6e,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x32,0x65,0x6d,0x7d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x2d,0x67,0x6c,0x6f,0x77,0x20,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f, 0x6c,0x64,0x65,0x72,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x2d,0x67,0x6c,0x6f,0x77,0x20,0x32,0x73,0x20,0x65,0x61,0x73,0x65,0x2d, 0x69,0x6e,0x2d,0x6f,0x75,0x74,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65,0x3b, 0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70,0x6c,0x61,0x63,0x65,0x68, 0x6f,0x6c,0x64,0x65,0x72,0x2d,0x67,0x6c,0x6f,0x77,0x20,0x32,0x73,0x20,0x65,0x61, 0x73,0x65,0x2d,0x69,0x6e,0x2d,0x6f,0x75,0x74,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69, 0x74,0x65,0x7d,0x40,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6b,0x65,0x79,0x66, 0x72,0x61,0x6d,0x65,0x73,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65, 0x72,0x2d,0x67,0x6c,0x6f,0x77,0x7b,0x35,0x30,0x25,0x7b,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x3a,0x2e,0x32,0x7d,0x7d,0x40,0x6b,0x65,0x79,0x66,0x72,0x61,0x6d,0x65, 0x73,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d,0x67,0x6c, 0x6f,0x77,0x7b,0x35,0x30,0x25,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e, 0x32,0x7d,0x7d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d, 0x77,0x61,0x76,0x65,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61,0x73, 0x6b,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x6c,0x69,0x6e,0x65,0x61,0x72,0x2d,0x67, 0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x31,0x33,0x30,0x64,0x65,0x67,0x2c,0x23, 0x30,0x30,0x30,0x20,0x35,0x35,0x25,0x2c,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x2e,0x38,0x29,0x20,0x37,0x35,0x25,0x2c,0x23,0x30,0x30,0x30,0x20, 0x39,0x35,0x25,0x29,0x3b,0x6d,0x61,0x73,0x6b,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a, 0x6c,0x69,0x6e,0x65,0x61,0x72,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28, 0x31,0x33,0x30,0x64,0x65,0x67,0x2c,0x23,0x30,0x30,0x30,0x20,0x35,0x35,0x25,0x2c, 0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x38,0x29,0x20,0x37, 0x35,0x25,0x2c,0x23,0x30,0x30,0x30,0x20,0x39,0x35,0x25,0x29,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x6d,0x61,0x73,0x6b,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x32, 0x30,0x30,0x25,0x20,0x31,0x30,0x30,0x25,0x3b,0x6d,0x61,0x73,0x6b,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x32,0x30,0x30,0x25,0x20,0x31,0x30,0x30,0x25,0x3b,0x2d,0x77,0x65, 0x62,0x6b,0x69,0x74,0x2d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70, 0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d,0x77,0x61,0x76,0x65,0x20, 0x32,0x73,0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69, 0x74,0x65,0x3b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d,0x77,0x61,0x76,0x65,0x20,0x32,0x73, 0x20,0x6c,0x69,0x6e,0x65,0x61,0x72,0x20,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65, 0x7d,0x40,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x6b,0x65,0x79,0x66,0x72,0x61, 0x6d,0x65,0x73,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2d, 0x77,0x61,0x76,0x65,0x7b,0x74,0x6f,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x6d,0x61,0x73,0x6b,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x32, 0x30,0x30,0x25,0x20,0x30,0x3b,0x6d,0x61,0x73,0x6b,0x2d,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x2d,0x32,0x30,0x30,0x25,0x20,0x30,0x7d,0x7d,0x40,0x6b,0x65, 0x79,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c, 0x64,0x65,0x72,0x2d,0x77,0x61,0x76,0x65,0x7b,0x74,0x6f,0x7b,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x6d,0x61,0x73,0x6b,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3a,0x2d,0x32,0x30,0x30,0x25,0x20,0x30,0x3b,0x6d,0x61,0x73,0x6b,0x2d,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x32,0x30,0x30,0x25,0x20,0x30,0x7d, 0x7d,0x2e,0x63,0x6c,0x65,0x61,0x72,0x66,0x69,0x78,0x3a,0x61,0x66,0x74,0x65,0x72, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x63, 0x6c,0x65,0x61,0x72,0x3a,0x62,0x6f,0x74,0x68,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x22,0x22,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x70,0x72,0x69,0x6d,0x61, 0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37, 0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a,0x66, 0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x70,0x72,0x69,0x6d,0x61, 0x72,0x79,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x33,0x61,0x34,0x30,0x34,0x36,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x73,0x65,0x63, 0x6f,0x6e,0x64,0x61,0x72,0x79,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63, 0x37,0x35,0x37,0x64,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x73,0x65,0x63,0x6f,0x6e, 0x64,0x61,0x72,0x79,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x6e,0x6b, 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x3a,0x68,0x6f,0x76,0x65,0x72, 0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x35,0x36,0x35,0x65,0x36,0x34,0x7d,0x2e, 0x6c,0x69,0x6e,0x6b,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x7d,0x2e,0x6c,0x69,0x6e,0x6b, 0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e, 0x6c,0x69,0x6e,0x6b,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x68,0x6f,0x76, 0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x34,0x36,0x63,0x34,0x33, 0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x69,0x6e,0x66,0x6f,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x30,0x64,0x63,0x61,0x66,0x30,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d, 0x69,0x6e,0x66,0x6f,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x6e,0x6b, 0x2d,0x69,0x6e,0x66,0x6f,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x33,0x64,0x64,0x35,0x66,0x33,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d, 0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66, 0x66,0x63,0x31,0x30,0x37,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x77,0x61,0x72,0x6e, 0x69,0x6e,0x67,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x6e,0x6b,0x2d, 0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63,0x64,0x33,0x39,0x7d,0x2e,0x6c,0x69,0x6e, 0x6b,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x37,0x62,0x32,0x64,0x32,0x36,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x64,0x61,0x6e, 0x67,0x65,0x72,0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x6e,0x6b,0x2d, 0x64,0x61,0x6e,0x67,0x65,0x72,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x36,0x32,0x32,0x34,0x31,0x65,0x7d,0x2e,0x6c,0x69,0x6e,0x6b, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38, 0x66,0x39,0x66,0x61,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x6c,0x69,0x67,0x68,0x74, 0x3a,0x66,0x6f,0x63,0x75,0x73,0x2c,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x6c,0x69,0x67, 0x68,0x74,0x3a,0x68,0x6f,0x76,0x65,0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23, 0x66,0x39,0x66,0x61,0x66,0x62,0x7d,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x64,0x61,0x72, 0x6b,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x7d, 0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x66,0x6f,0x63,0x75,0x73, 0x2c,0x2e,0x6c,0x69,0x6e,0x6b,0x2d,0x64,0x61,0x72,0x6b,0x3a,0x68,0x6f,0x76,0x65, 0x72,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x61,0x31,0x65,0x32,0x31,0x7d, 0x2e,0x72,0x61,0x74,0x69,0x6f,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31, 0x30,0x30,0x25,0x7d,0x2e,0x72,0x61,0x74,0x69,0x6f,0x3a,0x62,0x65,0x66,0x6f,0x72, 0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x61,0x73,0x70,0x65,0x63,0x74,0x2d,0x72,0x61,0x74,0x69, 0x6f,0x29,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x7d,0x2e,0x72, 0x61,0x74,0x69,0x6f,0x3e,0x2a,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x6c, 0x65,0x66,0x74,0x3a,0x30,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25, 0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e,0x72,0x61, 0x74,0x69,0x6f,0x2d,0x31,0x78,0x31,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x61,0x73,0x70, 0x65,0x63,0x74,0x2d,0x72,0x61,0x74,0x69,0x6f,0x3a,0x31,0x30,0x30,0x25,0x7d,0x2e, 0x72,0x61,0x74,0x69,0x6f,0x2d,0x34,0x78,0x33,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x61, 0x73,0x70,0x65,0x63,0x74,0x2d,0x72,0x61,0x74,0x69,0x6f,0x3a,0x37,0x35,0x25,0x7d, 0x2e,0x72,0x61,0x74,0x69,0x6f,0x2d,0x31,0x36,0x78,0x39,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x61,0x73,0x70,0x65,0x63,0x74,0x2d,0x72,0x61,0x74,0x69,0x6f,0x3a,0x35,0x36, 0x2e,0x32,0x35,0x25,0x7d,0x2e,0x72,0x61,0x74,0x69,0x6f,0x2d,0x32,0x31,0x78,0x39, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x61,0x73,0x70,0x65,0x63,0x74,0x2d,0x72,0x61,0x74, 0x69,0x6f,0x3a,0x34,0x32,0x2e,0x38,0x35,0x37,0x31,0x34,0x25,0x7d,0x2e,0x66,0x69, 0x78,0x65,0x64,0x2d,0x74,0x6f,0x70,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x7d,0x2e,0x66, 0x69,0x78,0x65,0x64,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x66,0x69,0x78, 0x65,0x64,0x2d,0x74,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x66,0x69,0x78,0x65,0x64,0x3b,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x6c,0x65, 0x66,0x74,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x33, 0x30,0x7d,0x2e,0x66,0x69,0x78,0x65,0x64,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x7d,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79, 0x2d,0x74,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b,0x74,0x6f,0x70, 0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x32,0x30,0x7d, 0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74, 0x68,0x3a,0x35,0x37,0x36,0x70,0x78,0x29,0x7b,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79, 0x2d,0x73,0x6d,0x2d,0x74,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b, 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b, 0x74,0x6f,0x70,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30, 0x32,0x30,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x36,0x38,0x70,0x78,0x29,0x7b,0x2e,0x73,0x74, 0x69,0x63,0x6b,0x79,0x2d,0x6d,0x64,0x2d,0x74,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x74,0x69, 0x63,0x6b,0x79,0x3b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x69, 0x63,0x6b,0x79,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65, 0x78,0x3a,0x31,0x30,0x32,0x30,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28, 0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39,0x32,0x70,0x78,0x29, 0x7b,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x6c,0x67,0x2d,0x74,0x6f,0x70,0x7b, 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x7a,0x2d, 0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x32,0x30,0x7d,0x7d,0x40,0x6d,0x65,0x64, 0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32, 0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x78,0x6c, 0x2d,0x74,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x69,0x63,0x6b,0x79,0x3b,0x74,0x6f,0x70, 0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x32,0x30,0x7d, 0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x34,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x73,0x74,0x69,0x63, 0x6b,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x74,0x6f,0x70,0x7b,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x74,0x69,0x63, 0x6b,0x79,0x3b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x69,0x63, 0x6b,0x79,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78, 0x3a,0x31,0x30,0x32,0x30,0x7d,0x7d,0x2e,0x68,0x73,0x74,0x61,0x63,0x6b,0x7b,0x66, 0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f, 0x77,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65, 0x6e,0x74,0x65,0x72,0x7d,0x2e,0x68,0x73,0x74,0x61,0x63,0x6b,0x2c,0x2e,0x76,0x73, 0x74,0x61,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65, 0x78,0x3b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74,0x72, 0x65,0x74,0x63,0x68,0x7d,0x2e,0x76,0x73,0x74,0x61,0x63,0x6b,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x3b,0x66,0x6c,0x65,0x78,0x2d, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e, 0x7d,0x2e,0x76,0x69,0x73,0x75,0x61,0x6c,0x6c,0x79,0x2d,0x68,0x69,0x64,0x64,0x65, 0x6e,0x2c,0x2e,0x76,0x69,0x73,0x75,0x61,0x6c,0x6c,0x79,0x2d,0x68,0x69,0x64,0x64, 0x65,0x6e,0x2d,0x66,0x6f,0x63,0x75,0x73,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x6f,0x74, 0x28,0x3a,0x66,0x6f,0x63,0x75,0x73,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x66,0x6f, 0x63,0x75,0x73,0x2d,0x77,0x69,0x74,0x68,0x69,0x6e,0x29,0x7b,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70, 0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x70,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2d,0x31,0x70,0x78, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x63,0x6c,0x69,0x70,0x3a,0x72,0x65,0x63,0x74,0x28,0x30, 0x2c,0x30,0x2c,0x30,0x2c,0x30,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f, 0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x65,0x64,0x2d,0x6c,0x69,0x6e, 0x6b,0x3a,0x61,0x66,0x74,0x65,0x72,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0x74,0x6f,0x70,0x3a,0x30,0x3b, 0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x3b,0x6c,0x65,0x66,0x74,0x3a,0x30,0x3b,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a, 0x31,0x3b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x7d,0x2e,0x74,0x65, 0x78,0x74,0x2d,0x74,0x72,0x75,0x6e,0x63,0x61,0x74,0x65,0x7b,0x6f,0x76,0x65,0x72, 0x66,0x6c,0x6f,0x77,0x3a,0x68,0x69,0x64,0x64,0x65,0x6e,0x3b,0x74,0x65,0x78,0x74, 0x2d,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x65,0x6c,0x6c,0x69,0x70,0x73, 0x69,0x73,0x3b,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e, 0x6f,0x77,0x72,0x61,0x70,0x7d,0x2e,0x76,0x72,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74,0x72,0x65,0x74,0x63, 0x68,0x3b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x3b,0x6d,0x69,0x6e,0x2d, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x65,0x6d,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x43,0x6f,0x6c,0x6f,0x72,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x3a,0x2e,0x32,0x35,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x62,0x61,0x73,0x65, 0x6c,0x69,0x6e,0x65,0x7b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c, 0x69,0x67,0x6e,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x74,0x6f, 0x70,0x7b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e, 0x3a,0x74,0x6f,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x6d,0x69,0x64,0x64,0x6c,0x65,0x7b,0x76,0x65,0x72, 0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6d,0x69,0x64,0x64, 0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b,0x76,0x65,0x72,0x74,0x69, 0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x74,0x65,0x78,0x74,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7b,0x76,0x65, 0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x74,0x65,0x78, 0x74,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x74,0x65,0x78,0x74,0x2d,0x74, 0x6f,0x70,0x7b,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x2d,0x61,0x6c,0x69,0x67, 0x6e,0x3a,0x74,0x65,0x78,0x74,0x2d,0x74,0x6f,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x73,0x74,0x61,0x72, 0x74,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x65,0x6e, 0x64,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x6e, 0x6f,0x6e,0x65,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x2d,0x30,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x2d,0x32,0x35,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x32,0x35,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x2d,0x35,0x30,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x2d,0x37,0x35,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e, 0x37,0x35,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x2d,0x31,0x30,0x30,0x7b,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6f,0x76,0x65, 0x72,0x66,0x6c,0x6f,0x77,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x68, 0x69,0x64,0x64,0x65,0x6e,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x68, 0x69,0x64,0x64,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x76,0x69,0x73,0x69,0x62,0x6c, 0x65,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x76,0x69,0x73,0x69,0x62, 0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x7b,0x6f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x69,0x6e,0x6c,0x69,0x6e, 0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x69,0x6e, 0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x62,0x6c,0x6f, 0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x67,0x72, 0x69,0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x67,0x72,0x69,0x64,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x74,0x61,0x62, 0x6c,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c, 0x6c,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x63,0x65,0x6c,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64, 0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6e,0x6f, 0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x73,0x68,0x61,0x64,0x6f, 0x77,0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x2e, 0x35,0x72,0x65,0x6d,0x20,0x31,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x30, 0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x31,0x35,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x73,0x68,0x61,0x64,0x6f,0x77,0x2d,0x73,0x6d,0x7b,0x62, 0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x2e,0x31,0x32,0x35, 0x72,0x65,0x6d,0x20,0x2e,0x32,0x35,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28, 0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e,0x30,0x37,0x35,0x29,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x73,0x68,0x61,0x64,0x6f,0x77,0x2d,0x6c,0x67, 0x7b,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x30,0x20,0x31,0x72, 0x65,0x6d,0x20,0x33,0x72,0x65,0x6d,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30, 0x2c,0x30,0x2c,0x2e,0x31,0x37,0x35,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x73,0x68,0x61,0x64,0x6f,0x77,0x2d,0x6e,0x6f,0x6e,0x65,0x7b, 0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x6e,0x6f,0x6e,0x65,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x2d,0x73,0x74,0x61,0x74,0x69,0x63,0x7b,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x73,0x74,0x61,0x74,0x69,0x63,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2d,0x72, 0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2d,0x61,0x62, 0x73,0x6f,0x6c,0x75,0x74,0x65,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2d,0x66,0x69,0x78, 0x65,0x64,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x69,0x78,0x65, 0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x74,0x69,0x63,0x6b,0x79,0x7b,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x74, 0x69,0x63,0x6b,0x79,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x74,0x69,0x63,0x6b,0x79,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x6f,0x70,0x2d,0x30,0x7b, 0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x6f,0x70,0x2d,0x35,0x30,0x7b,0x74,0x6f,0x70,0x3a,0x35,0x30,0x25,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x6f,0x70,0x2d,0x31, 0x30,0x30,0x7b,0x74,0x6f,0x70,0x3a,0x31,0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x30,0x7b, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x35,0x30,0x7b,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x35,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x31,0x30,0x30,0x7b,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x73,0x74,0x61,0x72,0x74,0x2d,0x30,0x7b,0x6c,0x65, 0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x73,0x74,0x61,0x72,0x74,0x2d,0x35,0x30,0x7b,0x6c,0x65,0x66,0x74,0x3a,0x35,0x30, 0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x73,0x74,0x61, 0x72,0x74,0x2d,0x31,0x30,0x30,0x7b,0x6c,0x65,0x66,0x74,0x3a,0x31,0x30,0x30,0x25, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x65,0x6e,0x64,0x2d, 0x30,0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x65,0x6e,0x64,0x2d,0x35,0x30,0x7b,0x72,0x69,0x67,0x68, 0x74,0x3a,0x35,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x65,0x6e,0x64,0x2d,0x31,0x30,0x30,0x7b,0x72,0x69,0x67,0x68,0x74,0x3a,0x31, 0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74, 0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x2d,0x6d,0x69,0x64,0x64,0x6c,0x65,0x7b, 0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x35,0x30,0x25, 0x2c,0x2d,0x35,0x30,0x25,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73, 0x6c,0x61,0x74,0x65,0x28,0x2d,0x35,0x30,0x25,0x2c,0x2d,0x35,0x30,0x25,0x29,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x6c,0x61,0x74,0x65,0x2d,0x6d,0x69,0x64,0x64,0x6c,0x65,0x2d,0x78,0x7b,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a, 0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28,0x2d,0x35,0x30,0x25,0x29, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x58,0x28, 0x2d,0x35,0x30,0x25,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x2d,0x6d,0x69,0x64,0x64,0x6c, 0x65,0x2d,0x79,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x59, 0x28,0x2d,0x35,0x30,0x25,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x74,0x72,0x61,0x6e,0x73, 0x6c,0x61,0x74,0x65,0x59,0x28,0x2d,0x35,0x30,0x25,0x29,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23, 0x64,0x65,0x65,0x32,0x65,0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x30,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x74,0x6f,0x70,0x3a,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23, 0x64,0x65,0x65,0x32,0x65,0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x30,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x65,0x6e, 0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31, 0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65,0x32,0x65,0x36, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x65,0x6e,0x64,0x2d,0x30,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31, 0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65,0x32,0x65,0x36, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x30,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x64,0x65,0x65,0x32,0x65, 0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x73,0x74,0x61,0x72,0x74,0x2d,0x30,0x7b,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x70,0x72,0x69,0x6d, 0x61,0x72,0x79,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x65,0x63,0x6f,0x6e, 0x64,0x61,0x72,0x79,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x75,0x63,0x63, 0x65,0x73,0x73,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x23,0x31,0x39,0x38,0x37,0x35,0x34,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x69,0x6e,0x66,0x6f,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x30,0x64, 0x63,0x61,0x66,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x7b,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x63, 0x31,0x30,0x37,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62,0x32,0x64,0x32, 0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x38,0x66,0x39,0x66,0x61,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x64,0x61,0x72,0x6b,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x23,0x32,0x31,0x32,0x35,0x32,0x39,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x68,0x69, 0x74,0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x23,0x66,0x66,0x66,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x31,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x70,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x32,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x32,0x70,0x78,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x33,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a, 0x33,0x70,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x34,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77, 0x69,0x64,0x74,0x68,0x3a,0x34,0x70,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x35,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x70,0x78,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x77,0x2d,0x32,0x35,0x7b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x32,0x35,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x77,0x2d,0x35,0x30,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x35,0x30, 0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x77,0x2d,0x37, 0x35,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x35,0x25,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x77,0x2d,0x31,0x30,0x30,0x7b,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x77,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x77,0x2d,0x31,0x30,0x30,0x7b,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68, 0x3a,0x31,0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x76,0x77,0x2d,0x31,0x30,0x30,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30, 0x30,0x76,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x69,0x6e,0x2d,0x76,0x77,0x2d,0x31,0x30,0x30,0x7b,0x6d,0x69,0x6e,0x2d,0x77,0x69, 0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x76,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x68,0x2d,0x32,0x35,0x7b,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x32,0x35,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x68,0x2d,0x35,0x30,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x35,0x30,0x25,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x68,0x2d,0x37,0x35,0x7b, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x37,0x35,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x68,0x2d,0x31,0x30,0x30,0x7b,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x68,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x68,0x2d,0x31,0x30,0x30,0x7b,0x6d,0x61,0x78,0x2d,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x30,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x76,0x68,0x2d,0x31,0x30,0x30,0x7b,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x31,0x30,0x30,0x76,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x69,0x6e,0x2d,0x76,0x68,0x2d,0x31,0x30,0x30,0x7b,0x6d,0x69,0x6e, 0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31,0x30,0x30,0x76,0x68,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x66,0x69, 0x6c,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x72,0x6f,0x77,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x7b,0x66, 0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f, 0x6c,0x75,0x6d,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65, 0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x63,0x6f,0x6c,0x75, 0x6d,0x6e,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e, 0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x30,0x7b, 0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77, 0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73, 0x68,0x72,0x69,0x6e,0x6b,0x2d,0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72, 0x69,0x6e,0x6b,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x31,0x7b,0x66, 0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x31,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61, 0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6e,0x6f,0x77,0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61, 0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x2d,0x72,0x65, 0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a, 0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x30,0x7b,0x67,0x72, 0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x31,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67, 0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x32,0x7b, 0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61, 0x70,0x2d,0x33,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x67,0x61,0x70,0x2d,0x34,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x67,0x61,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x35,0x7b,0x67,0x72,0x69,0x64, 0x2d,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x6a,0x75, 0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2d,0x65,0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74, 0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x63,0x65,0x6e,0x74, 0x65,0x72,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61, 0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x7b,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61, 0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79,0x7b,0x6a,0x75,0x73,0x74, 0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63, 0x65,0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d, 0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x73,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x73,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x73,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69, 0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x73,0x74,0x72,0x65,0x74,0x63, 0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x73,0x74, 0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73, 0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e, 0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x63,0x65,0x6e,0x74,0x65, 0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d, 0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77, 0x65,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x61,0x72,0x6f, 0x75,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x74, 0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x61,0x75,0x74,0x6f, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61, 0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x73,0x65,0x6c,0x66,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69, 0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74,0x72,0x65, 0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x66,0x69,0x72,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x2d,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x30,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x31,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x32,0x7b,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x32,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x33,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x33,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x34,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x34,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x35,0x7b,0x6f,0x72, 0x64,0x65,0x72,0x3a,0x35,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x61,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65, 0x72,0x3a,0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x34,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x78,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x31,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x32,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x33,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x31,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x32,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x35,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x74,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, 0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x30,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x31,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x65,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x65,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x61,0x75,0x74,0x6f,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74, 0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d, 0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d, 0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x62,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x34,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62, 0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x62,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x32,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x34,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73, 0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x73,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x31,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x32,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d, 0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x32,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x33,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x34,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x35, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x33,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x35,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x30,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x32,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x33, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d, 0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x74,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x65,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x65,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x33,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d, 0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x65,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x32, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x62,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x35,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x73,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73, 0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x73,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x35,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6f,0x6e, 0x74,0x2d,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x53,0x46,0x4d,0x6f,0x6e,0x6f,0x2d,0x52, 0x65,0x67,0x75,0x6c,0x61,0x72,0x2c,0x4d,0x65,0x6e,0x6c,0x6f,0x2c,0x4d,0x6f,0x6e, 0x61,0x63,0x6f,0x2c,0x43,0x6f,0x6e,0x73,0x6f,0x6c,0x61,0x73,0x2c,0x22,0x4c,0x69, 0x62,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x6f,0x6e,0x6f,0x22,0x2c,0x22, 0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x22,0x2c,0x6d,0x6f,0x6e, 0x6f,0x73,0x70,0x61,0x63,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x76,0x61,0x72, 0x28,0x2d,0x2d,0x62,0x73,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x6d,0x6f,0x6e,0x6f,0x73, 0x70,0x61,0x63,0x65,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x73,0x2d,0x31,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20, 0x31,0x2e,0x35,0x76,0x77,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x73,0x2d,0x32,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x33,0x32,0x35,0x72,0x65,0x6d,0x20,0x2b, 0x20,0x2e,0x39,0x76,0x77,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x73,0x2d,0x33,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x33,0x72,0x65,0x6d,0x20,0x2b,0x20,0x2e, 0x36,0x76,0x77,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x73,0x2d,0x34,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x63, 0x61,0x6c,0x63,0x28,0x31,0x2e,0x32,0x37,0x35,0x72,0x65,0x6d,0x20,0x2b,0x20,0x2e, 0x33,0x76,0x77,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x73,0x2d,0x35,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x73,0x2d,0x36,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x73,0x74,0x2d,0x69,0x74,0x61,0x6c,0x69,0x63,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x69,0x74,0x61,0x6c,0x69,0x63,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x73,0x74,0x2d,0x6e,0x6f,0x72, 0x6d,0x61,0x6c,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e, 0x6f,0x72,0x6d,0x61,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x77,0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x77, 0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x30,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x66,0x77,0x2d,0x6c,0x69,0x67,0x68,0x74,0x65,0x72,0x7b, 0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x6c,0x69,0x67,0x68, 0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66, 0x77,0x2d,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65, 0x69,0x67,0x68,0x74,0x3a,0x34,0x30,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x77,0x2d,0x62,0x6f,0x6c,0x64,0x7b,0x66,0x6f,0x6e,0x74, 0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x37,0x30,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x77,0x2d,0x62,0x6f,0x6c,0x64,0x65,0x72, 0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x62,0x6f,0x6c, 0x64,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6c, 0x68,0x2d,0x31,0x7b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a, 0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6c,0x68,0x2d, 0x73,0x6d,0x7b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x31, 0x2e,0x32,0x35,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6c, 0x68,0x2d,0x62,0x61,0x73,0x65,0x7b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x31,0x2e,0x35,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6c,0x68,0x2d,0x6c,0x67,0x7b,0x6c,0x69,0x6e,0x65,0x2d,0x68,0x65,0x69, 0x67,0x68,0x74,0x3a,0x32,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x74,0x65,0x78,0x74, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x65,0x6e,0x64,0x7b, 0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x72,0x69,0x67,0x68,0x74, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74, 0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69, 0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x74,0x65,0x78,0x74,0x2d,0x64, 0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x64, 0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x75,0x6e,0x64,0x65,0x72,0x6c, 0x69,0x6e,0x65,0x7b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x64,0x65, 0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x69,0x6e,0x65,0x2d,0x74,0x68, 0x72,0x6f,0x75,0x67,0x68,0x7b,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72, 0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x69,0x6e,0x65,0x2d,0x74,0x68,0x72,0x6f,0x75, 0x67,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65, 0x78,0x74,0x2d,0x6c,0x6f,0x77,0x65,0x72,0x63,0x61,0x73,0x65,0x7b,0x74,0x65,0x78, 0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x6c,0x6f,0x77,0x65, 0x72,0x63,0x61,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x75,0x70,0x70,0x65,0x72,0x63,0x61,0x73,0x65,0x7b, 0x74,0x65,0x78,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x75, 0x70,0x70,0x65,0x72,0x63,0x61,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x63,0x61,0x70,0x69,0x74,0x61,0x6c, 0x69,0x7a,0x65,0x7b,0x74,0x65,0x78,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x3a,0x63,0x61,0x70,0x69,0x74,0x61,0x6c,0x69,0x7a,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x77,0x72, 0x61,0x70,0x7b,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e, 0x6f,0x72,0x6d,0x61,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x6e,0x6f,0x77,0x72,0x61,0x70,0x7b,0x77,0x68,0x69, 0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d, 0x62,0x72,0x65,0x61,0x6b,0x7b,0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a, 0x62,0x72,0x65,0x61,0x6b,0x2d,0x77,0x6f,0x72,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a, 0x62,0x72,0x65,0x61,0x6b,0x2d,0x77,0x6f,0x72,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x70,0x72,0x69,0x6d,0x61, 0x72,0x79,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38,0x37,0x2c,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61, 0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x31, 0x30,0x38,0x2c,0x31,0x31,0x37,0x2c,0x31,0x32,0x35,0x2c,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2d,0x72,0x67,0x62,0x29,0x2c, 0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x32, 0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x73, 0x75,0x63,0x63,0x65,0x73,0x73,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74, 0x65,0x78,0x74,0x2d,0x69,0x6e,0x66,0x6f,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65, 0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x31,0x33,0x2c,0x32,0x30,0x32,0x2c,0x32, 0x34,0x30,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28, 0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x72,0x67, 0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x77,0x61,0x72,0x6e,0x69, 0x6e,0x67,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x32,0x35,0x35,0x2c,0x31,0x39,0x33,0x2c,0x37,0x2c,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62, 0x73,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76, 0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x7b,0x2d,0x2d, 0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x31,0x32,0x33, 0x2c,0x34,0x35,0x2c,0x33,0x38,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72, 0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x64,0x61,0x6e, 0x67,0x65,0x72,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62, 0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74, 0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x72,0x67,0x62,0x61,0x28,0x32,0x34,0x38,0x2c,0x32,0x34,0x39,0x2c,0x32,0x35, 0x30,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76, 0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x6c,0x69,0x67,0x68,0x74,0x2d,0x72,0x67, 0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x64,0x61,0x72,0x6b,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x33, 0x33,0x2c,0x33,0x37,0x2c,0x34,0x31,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x64,0x61, 0x72,0x6b,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d, 0x62,0x6c,0x61,0x63,0x6b,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x6c,0x61,0x63,0x6b,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74, 0x65,0x78,0x74,0x2d,0x77,0x68,0x69,0x74,0x65,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x35,0x2c,0x32,0x35,0x35, 0x2c,0x32,0x35,0x35,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65, 0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x77,0x68,0x69,0x74,0x65, 0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x62,0x6f, 0x64,0x79,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x33,0x33,0x2c,0x33,0x37,0x2c,0x34,0x31,0x2c,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x6f,0x64,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x72,0x67,0x62,0x29, 0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f, 0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x36,0x63,0x37,0x35,0x37,0x64, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74, 0x2d,0x62,0x6c,0x61,0x63,0x6b,0x2d,0x35,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74, 0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x2e, 0x35,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65, 0x78,0x74,0x2d,0x77,0x68,0x69,0x74,0x65,0x2d,0x35,0x30,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25,0x2c, 0x31,0x30,0x30,0x25,0x2c,0x2e,0x35,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x72,0x65,0x73,0x65,0x74,0x7b,0x2d, 0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x3a,0x31,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x69,0x6e,0x68,0x65,0x72,0x69,0x74, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x2d,0x32,0x35,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x32, 0x35,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x2d, 0x35,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x2d,0x37,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65, 0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x37,0x35,0x7d,0x2e, 0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x2d,0x31,0x30,0x30, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x3a,0x31,0x7d,0x2e,0x62,0x67,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x37,0x33,0x2c,0x38,0x30,0x2c,0x38, 0x37,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61, 0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62, 0x67,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72, 0x67,0x62,0x61,0x28,0x31,0x30,0x38,0x2c,0x31,0x31,0x37,0x2c,0x31,0x32,0x35,0x2c, 0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72, 0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x73, 0x65,0x63,0x6f,0x6e,0x64,0x61,0x72,0x79,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61, 0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62, 0x67,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62, 0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x32,0x35,0x2c,0x31,0x33,0x35,0x2c,0x38,0x34,0x2c,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29, 0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b, 0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62, 0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x73,0x75,0x63,0x63,0x65, 0x73,0x73,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d,0x69,0x6e,0x66,0x6f, 0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f, 0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x31,0x33,0x2c,0x32,0x30,0x32,0x2c, 0x32,0x34,0x30,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d, 0x62,0x73,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72, 0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67, 0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61, 0x28,0x32,0x35,0x35,0x2c,0x31,0x39,0x33,0x2c,0x37,0x2c,0x76,0x61,0x72,0x28,0x2d, 0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61, 0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x77,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d,0x64,0x61,0x6e,0x67,0x65, 0x72,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x31,0x32,0x33,0x2c,0x34,0x35, 0x2c,0x33,0x38,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63, 0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d, 0x62,0x73,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76, 0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x62,0x67,0x2d,0x6c,0x69,0x67,0x68,0x74,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61, 0x28,0x32,0x34,0x38,0x2c,0x32,0x34,0x39,0x2c,0x32,0x35,0x30,0x2c,0x76,0x61,0x72, 0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67, 0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x6c,0x69,0x67,0x68, 0x74,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d,0x64,0x61,0x72,0x6b,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x31,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x33,0x33,0x2c,0x33,0x37,0x2c,0x34,0x31, 0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x64,0x61,0x72,0x6b,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d, 0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d,0x62,0x6c, 0x61,0x63,0x6b,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c, 0x30,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c, 0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x6c,0x61,0x63,0x6b,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28, 0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29, 0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d, 0x77,0x68,0x69,0x74,0x65,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x32,0x35, 0x35,0x2c,0x32,0x35,0x35,0x2c,0x32,0x35,0x35,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d, 0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x67,0x62,0x61,0x28, 0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x77,0x68,0x69,0x74,0x65,0x2d,0x72, 0x67,0x62,0x29,0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d, 0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d,0x62,0x6f,0x64,0x79,0x7b,0x2d,0x2d,0x62, 0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x72,0x67,0x62,0x61,0x28,0x32,0x33,0x33,0x2c,0x32,0x33,0x36,0x2c,0x32,0x33,0x39, 0x2c,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x72,0x67,0x62,0x61,0x28,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x73,0x2d, 0x62,0x6f,0x64,0x79,0x2d,0x62,0x67,0x2d,0x72,0x67,0x62,0x29,0x2c,0x76,0x61,0x72, 0x28,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x29,0x29,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67, 0x2d,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x7b,0x2d,0x2d,0x62, 0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x3b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x2d,0x31,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x2e,0x31,0x7d,0x2e,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x2d,0x32,0x35,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f, 0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x32,0x35,0x7d,0x2e,0x62,0x67,0x2d,0x6f, 0x70,0x61,0x63,0x69,0x74,0x79,0x2d,0x35,0x30,0x7b,0x2d,0x2d,0x62,0x73,0x2d,0x62, 0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x35,0x7d,0x2e,0x62,0x67, 0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x2d,0x37,0x35,0x7b,0x2d,0x2d,0x62,0x73, 0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x2e,0x37,0x35,0x7d, 0x2e,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x2d,0x31,0x30,0x30,0x7b, 0x2d,0x2d,0x62,0x73,0x2d,0x62,0x67,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a, 0x31,0x7d,0x2e,0x62,0x67,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x7b,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a, 0x6c,0x69,0x6e,0x65,0x61,0x72,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28, 0x31,0x38,0x30,0x64,0x65,0x67,0x2c,0x68,0x73,0x6c,0x61,0x28,0x30,0x2c,0x30,0x25, 0x2c,0x31,0x30,0x30,0x25,0x2c,0x2e,0x31,0x35,0x29,0x2c,0x68,0x73,0x6c,0x61,0x28, 0x30,0x2c,0x30,0x25,0x2c,0x31,0x30,0x30,0x25,0x2c,0x30,0x29,0x29,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62, 0x73,0x2d,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x29,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x2d,0x61,0x6c,0x6c,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x75, 0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x61,0x6c,0x6c,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x2d,0x6d,0x73,0x2d,0x75,0x73,0x65, 0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x61,0x6c,0x6c,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x3a,0x61,0x6c,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x61,0x75, 0x74,0x6f,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x2d,0x6d,0x73,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73, 0x65,0x6c,0x65,0x63,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x6e,0x6f,0x6e, 0x65,0x7b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73, 0x65,0x6c,0x65,0x63,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x2d,0x6d,0x73,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73,0x65, 0x6c,0x65,0x63,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a, 0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x65,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d, 0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x61,0x75, 0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f, 0x75,0x6e,0x64,0x65,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x30,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64, 0x65,0x64,0x2d,0x31,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69, 0x75,0x73,0x3a,0x2e,0x32,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x32,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f, 0x75,0x6e,0x64,0x65,0x64,0x2d,0x33,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x63, 0x69,0x72,0x63,0x6c,0x65,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x35,0x30,0x25,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x70,0x69,0x6c,0x6c,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x35,0x30, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72, 0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x74,0x6f,0x70,0x7b,0x62,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x65,0x6e,0x64,0x2c, 0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x74,0x6f,0x70,0x7b,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61, 0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x65, 0x6e,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x2d,0x72,0x69,0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x2e, 0x72,0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x6c,0x65,0x66,0x74, 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x65, 0x64,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74, 0x6f,0x70,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x7b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c, 0x69,0x74,0x79,0x3a,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65, 0x7b,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3a,0x68,0x69,0x64,0x64, 0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x40,0x6d,0x65, 0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x35, 0x37,0x36,0x70,0x78,0x29,0x7b,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x73,0x6d,0x2d, 0x73,0x74,0x61,0x72,0x74,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61, 0x74,0x2d,0x73,0x6d,0x2d,0x65,0x6e,0x64,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x72, 0x69,0x67,0x68,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x6f,0x61,0x74,0x2d,0x73,0x6d,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x66,0x6c, 0x6f,0x61,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x7b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x69, 0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x73,0x6d, 0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62, 0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x73,0x6d,0x2d,0x67,0x72,0x69,0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x67,0x72,0x69,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x74,0x61,0x62,0x6c,0x65,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x72,0x6f,0x77,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c, 0x6c,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d, 0x63,0x65,0x6c,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x73,0x6d,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c, 0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e, 0x65,0x2d,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x64,0x2d,0x73,0x6d,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x66,0x69,0x6c,0x6c, 0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73, 0x6d,0x2d,0x72,0x6f,0x77,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x63,0x6f,0x6c,0x75, 0x6d,0x6e,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x72,0x6f,0x77,0x2d, 0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72, 0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x6d,0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2d,0x72,0x65,0x76, 0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2d,0x72,0x65,0x76,0x65,0x72, 0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x6d,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x30,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x67,0x72,0x6f,0x77, 0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73, 0x6d,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x73,0x68,0x72,0x69, 0x6e,0x6b,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b, 0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x6d,0x2d,0x77,0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x6e,0x6f,0x77, 0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f, 0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x73,0x6d,0x2d,0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76, 0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77, 0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x73,0x6d,0x2d,0x30,0x7b, 0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x67, 0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67, 0x61,0x70,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x67, 0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x73, 0x6d,0x2d,0x34,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61, 0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x67,0x72,0x69, 0x64,0x2d,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x73,0x74,0x61,0x72, 0x74,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x65,0x6e,0x64,0x7b,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66, 0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e, 0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73, 0x6d,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66, 0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d, 0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x7b,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61, 0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79,0x7b,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73, 0x70,0x61,0x63,0x65,0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65, 0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61, 0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x65,0x6e,0x64, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65, 0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x73,0x6d,0x2d, 0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65, 0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73, 0x2d,0x73,0x6d,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e, 0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x73,0x74,0x72,0x65, 0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a, 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x2d,0x73,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61, 0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x65, 0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65, 0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x62,0x65, 0x74,0x77,0x65,0x65,0x6e,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65, 0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x61,0x72, 0x6f,0x75,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x73,0x6d,0x2d,0x73,0x74,0x72,0x65, 0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d, 0x73,0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65, 0x6c,0x66,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x73,0x6d, 0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c, 0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65, 0x6c,0x66,0x2d,0x73,0x6d,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73, 0x65,0x6c,0x66,0x2d,0x73,0x6d,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x73,0x65,0x6c,0x66,0x2d,0x73,0x6d,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e, 0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x62,0x61,0x73, 0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x73,0x6d,0x2d,0x73, 0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c, 0x66,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d,0x2d,0x66,0x69, 0x72,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x2d,0x31,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d, 0x2d,0x30,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d,0x2d,0x31, 0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6f, 0x72,0x64,0x65,0x72,0x3a,0x32,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x33,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x34,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x35, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x73,0x6d,0x2d,0x6c,0x61,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a, 0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x73, 0x6d,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x2d,0x73,0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78, 0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x78,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x73,0x6d,0x2d,0x35,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x73,0x6d,0x2d,0x61,0x75, 0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x73,0x6d, 0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x73,0x6d,0x2d,0x32, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x73,0x6d, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x73,0x6d, 0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x79,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, 0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x79,0x2d,0x73,0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x74,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x74,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x73,0x6d, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74, 0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x73,0x6d,0x2d,0x61,0x75,0x74,0x6f, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x73, 0x6d,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65, 0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x73,0x6d, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x65,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x73, 0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x62,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x73, 0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x73,0x6d,0x2d, 0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x73,0x6d,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x73,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x73,0x6d,0x2d,0x35, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d, 0x73,0x6d,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x78,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x73, 0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x78,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x73,0x6d,0x2d,0x34,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78, 0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x79,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x73, 0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x79,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x73,0x6d,0x2d,0x34,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79, 0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f, 0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x74,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x74,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x73, 0x6d,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x74,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x73,0x6d,0x2d, 0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d, 0x73,0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x73, 0x6d,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x65,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x73,0x6d,0x2d, 0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x62,0x2d,0x73,0x6d,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d, 0x73,0x6d,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x73,0x6d,0x2d,0x33,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x73, 0x6d,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x73, 0x6d,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73, 0x2d,0x73,0x6d,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x73,0x6d,0x2d,0x32,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x73,0x6d, 0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x73,0x2d,0x73,0x6d,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x73,0x6d,0x2d,0x35,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74, 0x2d,0x73,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x73,0x6d,0x2d,0x65,0x6e,0x64, 0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x72,0x69,0x67,0x68, 0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78, 0x74,0x2d,0x73,0x6d,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x74,0x65,0x78,0x74, 0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20, 0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x37,0x36,0x38,0x70,0x78, 0x29,0x7b,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x61,0x72, 0x74,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x6d,0x64, 0x2d,0x65,0x6e,0x64,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x72,0x69,0x67,0x68,0x74, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61, 0x74,0x2d,0x6d,0x64,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a, 0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x6d,0x64,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6d,0x64,0x2d,0x69,0x6e,0x6c,0x69,0x6e, 0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6d,0x64,0x2d,0x62,0x6c,0x6f, 0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6d,0x64, 0x2d,0x67,0x72,0x69,0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x67,0x72, 0x69,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d, 0x6d,0x64,0x2d,0x74,0x61,0x62,0x6c,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x74,0x61,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x64,0x2d,0x6d,0x64,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72, 0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d, 0x6d,0x64,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6d,0x64, 0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c, 0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d, 0x6d,0x64,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c, 0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d, 0x6d,0x64,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x66,0x69,0x6c,0x6c,0x7b,0x66,0x6c,0x65, 0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x72,0x6f, 0x77,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x7b,0x66, 0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f, 0x6c,0x75,0x6d,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65, 0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6d, 0x64,0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65, 0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6d, 0x64,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72, 0x6f,0x77,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x31,0x7b,0x66, 0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x73,0x68, 0x72,0x69,0x6e,0x6b,0x2d,0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69, 0x6e,0x6b,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x31, 0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x31,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6d, 0x64,0x2d,0x77,0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70, 0x3a,0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6d,0x64,0x2d,0x6e,0x6f,0x77,0x72,0x61,0x70,0x7b, 0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6d,0x64,0x2d,0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65, 0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x2d, 0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x67,0x72,0x69,0x64, 0x2d,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x67,0x72,0x69,0x64,0x2d, 0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6d, 0x64,0x2d,0x32,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x67,0x72,0x69,0x64,0x2d, 0x67,0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6d,0x64,0x2d,0x34,0x7b, 0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x67,0x61,0x70,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61, 0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x6a,0x75, 0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x65,0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d, 0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d, 0x64,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x62,0x65, 0x74,0x77,0x65,0x65,0x6e,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77, 0x65,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d, 0x64,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61, 0x72,0x6f,0x75,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x2d,0x6d,0x64,0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79,0x7b,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65, 0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x6d, 0x64,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e, 0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x63,0x65,0x6e,0x74, 0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63, 0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x6d,0x64,0x2d, 0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x73,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x73,0x74,0x72,0x65, 0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d, 0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x65,0x6e,0x64,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65, 0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d, 0x64,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x62,0x65,0x74,0x77,0x65,0x65, 0x6e,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73, 0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x74, 0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6d,0x64,0x2d,0x61, 0x75,0x74,0x6f,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x61, 0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x61, 0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c, 0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6d, 0x64,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66, 0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d, 0x6d,0x64,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x73,0x65,0x6c,0x66,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c, 0x66,0x2d,0x6d,0x64,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e, 0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6d,0x64,0x2d,0x73,0x74,0x72,0x65,0x74, 0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74, 0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6d,0x64,0x2d,0x66,0x69,0x72,0x73,0x74,0x7b, 0x6f,0x72,0x64,0x65,0x72,0x3a,0x2d,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6f, 0x72,0x64,0x65,0x72,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x32,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x33, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x34,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x6d,0x64,0x2d,0x35,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x35,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6d,0x64, 0x2d,0x6c,0x61,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x36,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6d,0x64,0x2d,0x30,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x2d,0x6d,0x64,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a, 0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x78,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6d,0x64,0x2d, 0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78, 0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x78,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x78,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6d,0x64,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x79,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6d,0x64, 0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6d,0x64, 0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75, 0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74, 0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74, 0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6d,0x64,0x2d, 0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x74,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, 0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x74,0x2d,0x6d,0x64,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6d,0x64,0x2d,0x30,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6d,0x64,0x2d, 0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x65,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6d, 0x64,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6d,0x64,0x2d,0x61,0x75, 0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x62,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6d,0x64, 0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x62,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6d,0x64,0x2d,0x34,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x62,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6d,0x64,0x2d,0x61,0x75,0x74,0x6f, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61, 0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x73,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6d,0x64, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x73,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6d,0x64,0x2d,0x61, 0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6d,0x64, 0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6d, 0x64,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6d, 0x64,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6d,0x64, 0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6d, 0x64,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6d, 0x64,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6d,0x64,0x2d,0x31,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78, 0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x78,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6d,0x64,0x2d, 0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6d, 0x64,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6d,0x64,0x2d,0x31,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79, 0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f, 0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x79,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6d,0x64,0x2d, 0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6d, 0x64,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d, 0x6d,0x64,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6d,0x64,0x2d,0x33,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6d, 0x64,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x74,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6d,0x64,0x2d,0x30,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6d,0x64,0x2d,0x31, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x65,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6d,0x64,0x2d,0x33,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65, 0x2d,0x6d,0x64,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6d, 0x64,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x62,0x2d,0x6d,0x64,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6d,0x64,0x2d,0x32, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x62,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6d,0x64,0x2d,0x34,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x62,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6d,0x64,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6d,0x64,0x2d, 0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x73,0x2d,0x6d,0x64,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6d,0x64,0x2d,0x33,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6d, 0x64,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6d,0x64,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6d,0x64,0x2d, 0x73,0x74,0x61,0x72,0x74,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e, 0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x6d,0x64,0x2d,0x65,0x6e,0x64,0x7b,0x74,0x65,0x78, 0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6d,0x64, 0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69, 0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e, 0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x39,0x39,0x32,0x70,0x78,0x29,0x7b,0x2e,0x66, 0x6c,0x6f,0x61,0x74,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x66,0x6c, 0x6f,0x61,0x74,0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x6c,0x67,0x2d,0x65,0x6e,0x64, 0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x6c,0x67, 0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6e,0x6f,0x6e,0x65, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67, 0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x69,0x6e,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c, 0x6f,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69, 0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x67,0x72,0x69, 0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x67,0x72,0x69,0x64,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62, 0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d, 0x6c,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x66,0x6c,0x65, 0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x69, 0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x6c,0x67,0x2d,0x6e, 0x6f,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6c,0x67,0x2d,0x66,0x69,0x6c,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20, 0x31,0x20,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6c,0x67,0x2d,0x72,0x6f,0x77,0x7b,0x66,0x6c, 0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6c,0x67,0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6c,0x67,0x2d,0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b, 0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6c,0x67,0x2d,0x63,0x6f, 0x6c,0x75,0x6d,0x6e,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75, 0x6d,0x6e,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6c,0x67,0x2d,0x67,0x72, 0x6f,0x77,0x2d,0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6c,0x67,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x67,0x72,0x6f,0x77,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6c,0x67,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b, 0x2d,0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78, 0x2d,0x6c,0x67,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x31,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6c,0x67,0x2d,0x77,0x72, 0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61, 0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65, 0x78,0x2d,0x6c,0x67,0x2d,0x6e,0x6f,0x77,0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78, 0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x6c,0x67,0x2d, 0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65, 0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67, 0x61,0x70,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61, 0x70,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6c,0x67,0x2d,0x32,0x7b, 0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61, 0x70,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67, 0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x67,0x72,0x69,0x64, 0x2d,0x67,0x61,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d, 0x6c,0x67,0x2d,0x35,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x33,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66, 0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73, 0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d, 0x6c,0x67,0x2d,0x65,0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x63,0x65, 0x6e,0x74,0x65,0x72,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x62,0x65,0x74,0x77,0x65,0x65, 0x6e,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x61,0x72, 0x6f,0x75,0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e, 0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d, 0x65,0x76,0x65,0x6e,0x6c,0x79,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x65,0x76,0x65, 0x6e,0x6c,0x79,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a, 0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x73,0x2d,0x6c,0x67,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65, 0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x62,0x61,0x73,0x65, 0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73, 0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73, 0x2d,0x6c,0x67,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72, 0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e, 0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x63,0x65, 0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63, 0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x2d,0x6c,0x67,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65, 0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x2d,0x6c,0x67,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x74,0x72,0x65,0x74,0x63, 0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x7b, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x61,0x75,0x74,0x6f,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73, 0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6c,0x67,0x2d,0x65,0x6e, 0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65, 0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6c,0x67,0x2d,0x63, 0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66, 0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x6c,0x67, 0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x73,0x65,0x6c,0x66,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73, 0x65,0x6c,0x66,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74,0x72,0x65,0x74,0x63, 0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x6c,0x67,0x2d,0x66,0x69,0x72,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65, 0x72,0x3a,0x2d,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x32,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x6c,0x67,0x2d,0x33,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x33,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x67, 0x2d,0x34,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x34,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x67,0x2d,0x35, 0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x35,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x67,0x2d,0x6c,0x61,0x73, 0x74,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6c, 0x67,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6c, 0x67,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x33,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x6c,0x67,0x2d, 0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6c, 0x67,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6c,0x67,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6c, 0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x6c, 0x67,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x78,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x78,0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d, 0x6c,0x67,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x79,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74, 0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74, 0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6c,0x67,0x2d, 0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6c,0x67,0x2d, 0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x74,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, 0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x6c,0x67, 0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74, 0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d, 0x6c,0x67,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6c,0x67,0x2d,0x34,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x65,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6c, 0x67,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x62,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62, 0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x6c, 0x67,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x62,0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6c,0x67, 0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6c, 0x67,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6c,0x67, 0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x6c,0x67,0x2d,0x61,0x75,0x74,0x6f,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6c,0x67, 0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6c,0x67,0x2d,0x32,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6c,0x67,0x2d,0x33,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x6c,0x67,0x2d,0x35,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6c,0x67,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6c,0x67,0x2d, 0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78, 0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x78,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6c,0x67,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6c,0x67,0x2d, 0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79, 0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f, 0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x79,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6c,0x67,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6c,0x67,0x2d,0x31, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x74,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74, 0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x6c,0x67,0x2d,0x34,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74, 0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f, 0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x65,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d, 0x6c,0x67,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x6c,0x67,0x2d, 0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x65,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6c,0x67,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6c, 0x67,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6c,0x67,0x2d,0x32,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d, 0x6c,0x67,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x6c,0x67,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d, 0x6c,0x67,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6c,0x67,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6c,0x67,0x2d,0x31,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d, 0x6c,0x67,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6c,0x67,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x6c,0x67,0x2d,0x34,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x73,0x2d,0x6c,0x67,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6c,0x67,0x2d,0x73,0x74,0x61,0x72, 0x74,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66, 0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78, 0x74,0x2d,0x6c,0x67,0x2d,0x65,0x6e,0x64,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c, 0x69,0x67,0x6e,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x6c,0x67,0x2d,0x63,0x65,0x6e, 0x74,0x65,0x72,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63, 0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64, 0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x66,0x6c,0x6f,0x61, 0x74,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x66,0x6c,0x6f,0x61,0x74, 0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x66,0x6c, 0x6f,0x61,0x74,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x78,0x6c,0x2d,0x6e,0x6f, 0x6e,0x65,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x69,0x6e, 0x6c,0x69,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c, 0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64, 0x2d,0x78,0x6c,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d, 0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x67,0x72,0x69,0x64,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x67,0x72,0x69,0x64,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d, 0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x63,0x65,0x6c,0x6c,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74, 0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x69,0x6e,0x6c,0x69, 0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x6c,0x2d,0x6e,0x6f,0x6e,0x65, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c, 0x2d,0x66,0x69,0x6c,0x6c,0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61, 0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66, 0x6c,0x65,0x78,0x2d,0x78,0x6c,0x2d,0x72,0x6f,0x77,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c, 0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c, 0x2d,0x72,0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x2d, 0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c,0x2d,0x63,0x6f,0x6c,0x75,0x6d, 0x6e,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64, 0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2d, 0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c,0x2d,0x67,0x72,0x6f,0x77,0x2d, 0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c, 0x2d,0x67,0x72,0x6f,0x77,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f, 0x77,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66, 0x6c,0x65,0x78,0x2d,0x78,0x6c,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x30,0x7b, 0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c, 0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73, 0x68,0x72,0x69,0x6e,0x6b,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c,0x2d,0x77,0x72,0x61,0x70,0x7b, 0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78, 0x6c,0x2d,0x6e,0x6f,0x77,0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72, 0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x6c,0x2d,0x77,0x72,0x61, 0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77, 0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d, 0x78,0x6c,0x2d,0x30,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78, 0x6c,0x2d,0x31,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61, 0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x67,0x72,0x69, 0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78, 0x6c,0x2d,0x33,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x67,0x61,0x70,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61, 0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x6c,0x2d, 0x35,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x33,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75, 0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c, 0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72, 0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73, 0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d, 0x65,0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65, 0x72,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73, 0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d,0x61,0x72,0x6f,0x75,0x6e, 0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66, 0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d,0x65,0x76,0x65, 0x6e,0x6c,0x79,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x65,0x76,0x65,0x6e,0x6c,0x79, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65, 0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x78, 0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x73,0x2d,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e, 0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x62,0x61, 0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x78,0x6c, 0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x73,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65, 0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x2d,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65, 0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a, 0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d, 0x78,0x6c,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62, 0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d, 0x78,0x6c,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72, 0x6f,0x75,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x6c, 0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x73,0x65,0x6c,0x66,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65, 0x6c,0x66,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72, 0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65, 0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74, 0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x63,0x65, 0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x78,0x6c,0x2d,0x62,0x61, 0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c, 0x66,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66, 0x2d,0x78,0x6c,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d, 0x78,0x6c,0x2d,0x66,0x69,0x72,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x2d, 0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x31,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x78, 0x6c,0x2d,0x32,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x32,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x78,0x6c,0x2d, 0x33,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x33,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x78,0x6c,0x2d,0x34,0x7b, 0x6f,0x72,0x64,0x65,0x72,0x3a,0x34,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x6f,0x72, 0x64,0x65,0x72,0x3a,0x35,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x78,0x6c,0x2d,0x6c,0x61,0x73,0x74,0x7b,0x6f, 0x72,0x64,0x65,0x72,0x3a,0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a, 0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78, 0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78, 0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x6c, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x6c,0x2d,0x34, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x6c,0x2d,0x35, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74, 0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x6c,0x2d,0x30, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x6c,0x2d,0x33, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x6c,0x2d,0x34, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d, 0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d, 0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a, 0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x79,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x6c,0x2d, 0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79, 0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x79,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x79,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78, 0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x74,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74, 0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x6c,0x2d,0x35,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x6c, 0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x65,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x6c,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x65,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78, 0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x65,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x6c,0x2d,0x30, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78, 0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x6c, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x62,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x6c,0x2d,0x35, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x62,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x30,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x31, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x73,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x34,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73, 0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x6c,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x78,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x6c, 0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d, 0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x79,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x6c, 0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d, 0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78, 0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x74,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x6c, 0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x65,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x65,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x78,0x6c,0x2d, 0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x65,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x65,0x2d,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x6c,0x2d,0x31, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x62,0x2d,0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x6c,0x2d, 0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x62,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x6c,0x2d, 0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x73,0x2d,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78,0x6c,0x2d, 0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x73,0x2d,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78, 0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x74, 0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x6c,0x65,0x66,0x74,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x78, 0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e, 0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72, 0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74, 0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x7d,0x40,0x6d, 0x65,0x64,0x69,0x61,0x20,0x28,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a, 0x31,0x34,0x30,0x30,0x70,0x78,0x29,0x7b,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x78, 0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6c, 0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66, 0x6c,0x6f,0x61,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x66,0x6c,0x6f, 0x61,0x74,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x6f,0x61,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x6e,0x6f, 0x6e,0x65,0x7b,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x78,0x6c,0x2d,0x69, 0x6e,0x6c,0x69,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e, 0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x78,0x78,0x6c,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f, 0x63,0x6b,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e, 0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x64,0x2d,0x78,0x78,0x6c,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x78,0x6c,0x2d,0x67,0x72, 0x69,0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x67,0x72,0x69,0x64,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x78,0x6c, 0x2d,0x74,0x61,0x62,0x6c,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74, 0x61,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x78,0x78,0x6c,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x7b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f, 0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78, 0x78,0x6c,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c,0x7b,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x78,0x78, 0x6c,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66, 0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64, 0x2d,0x78,0x78,0x6c,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d, 0x66,0x6c,0x65,0x78,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x64,0x2d,0x78,0x78,0x6c,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x66,0x69,0x6c,0x6c, 0x7b,0x66,0x6c,0x65,0x78,0x3a,0x31,0x20,0x31,0x20,0x61,0x75,0x74,0x6f,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78, 0x78,0x6c,0x2d,0x72,0x6f,0x77,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65, 0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x63,0x6f, 0x6c,0x75,0x6d,0x6e,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69,0x72,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x72, 0x6f,0x77,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x6f,0x77,0x2d,0x72,0x65, 0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x63,0x6f,0x6c,0x75,0x6d,0x6e, 0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x64,0x69, 0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2d,0x72, 0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x67,0x72,0x6f,0x77,0x2d, 0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72,0x6f,0x77,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78, 0x6c,0x2d,0x67,0x72,0x6f,0x77,0x2d,0x31,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x67,0x72, 0x6f,0x77,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d, 0x30,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d, 0x78,0x78,0x6c,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x2d,0x31,0x7b,0x66,0x6c,0x65, 0x78,0x2d,0x73,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x77, 0x72,0x61,0x70,0x7b,0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72, 0x61,0x70,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c, 0x65,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x6e,0x6f,0x77,0x72,0x61,0x70,0x7b,0x66,0x6c, 0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x6e,0x6f,0x77,0x72,0x61,0x70,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x66,0x6c,0x65,0x78,0x2d,0x78, 0x78,0x6c,0x2d,0x77,0x72,0x61,0x70,0x2d,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x7b, 0x66,0x6c,0x65,0x78,0x2d,0x77,0x72,0x61,0x70,0x3a,0x77,0x72,0x61,0x70,0x2d,0x72, 0x65,0x76,0x65,0x72,0x73,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x67,0x72,0x69,0x64, 0x2d,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x67,0x61,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x67,0x72,0x69,0x64, 0x2d,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d, 0x78,0x78,0x6c,0x2d,0x32,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67, 0x61,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x67,0x72, 0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x78, 0x6c,0x2d,0x34,0x7b,0x67,0x72,0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x31,0x2e,0x35, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61, 0x70,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x67,0x61,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x67,0x72, 0x69,0x64,0x2d,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x67,0x61,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66, 0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66, 0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e, 0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72, 0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x7b,0x6a, 0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73, 0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x72,0x6f,0x75, 0x6e,0x64,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x65, 0x76,0x65,0x6e,0x6c,0x79,0x7b,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2d,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x65,0x76,0x65,0x6e, 0x6c,0x79,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74, 0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a, 0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d, 0x73,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x73,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x63,0x65,0x6e, 0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x62, 0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x73,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74, 0x65,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b, 0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x73,0x74,0x72,0x65, 0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c, 0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e,0x64, 0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x66, 0x6c,0x65,0x78,0x2d,0x65,0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x2d,0x78,0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x62,0x65, 0x74,0x77,0x65,0x65,0x6e,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x62,0x65,0x74,0x77,0x65,0x65, 0x6e,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69, 0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x61, 0x72,0x6f,0x75,0x6e,0x64,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x73,0x70,0x61,0x63,0x65,0x2d,0x61,0x72,0x6f,0x75,0x6e,0x64, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74, 0x72,0x65,0x74,0x63,0x68,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x3a,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c, 0x66,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x73,0x65,0x6c,0x66,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66, 0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74,0x61,0x72,0x74,0x7b,0x61,0x6c,0x69,0x67,0x6e, 0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x73,0x74,0x61,0x72,0x74, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x66,0x6c,0x65,0x78,0x2d,0x65, 0x6e,0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c, 0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x78,0x78,0x6c,0x2d,0x63,0x65,0x6e, 0x74,0x65,0x72,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x63, 0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x2d,0x78,0x78,0x6c,0x2d, 0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x7b,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73, 0x65,0x6c,0x66,0x3a,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65, 0x6c,0x66,0x2d,0x78,0x78,0x6c,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7b,0x61, 0x6c,0x69,0x67,0x6e,0x2d,0x73,0x65,0x6c,0x66,0x3a,0x73,0x74,0x72,0x65,0x74,0x63, 0x68,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x78,0x78,0x6c,0x2d,0x66,0x69,0x72,0x73,0x74,0x7b,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x2d,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6f,0x72,0x64,0x65,0x72,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x6f,0x72,0x64, 0x65,0x72,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6f,0x72,0x64,0x65,0x72,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x6f,0x72,0x64,0x65, 0x72,0x3a,0x31,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f, 0x72,0x64,0x65,0x72,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x32,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72, 0x64,0x65,0x72,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a, 0x33,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x34, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a,0x35,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6f,0x72,0x64,0x65,0x72, 0x2d,0x78,0x78,0x6c,0x2d,0x6c,0x61,0x73,0x74,0x7b,0x6f,0x72,0x64,0x65,0x72,0x3a, 0x36,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78, 0x78,0x6c,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x78,0x6c,0x2d,0x31, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x78,0x6c,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x78,0x6c,0x2d, 0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x78,0x6c,0x2d,0x34, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x78,0x6c,0x2d, 0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x2d,0x78,0x78,0x6c,0x2d,0x61, 0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x61,0x75,0x74,0x6f,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x78, 0x6c,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x78, 0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78, 0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69, 0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x78,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72, 0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75, 0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x78,0x6c,0x2d, 0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x78,0x6c,0x2d, 0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78, 0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x79,0x2d, 0x78,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x31, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74, 0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, 0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x74,0x2d, 0x78,0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x30, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x78, 0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x78,0x6c, 0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a, 0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x6d,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x35, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x65, 0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x78, 0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78, 0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78, 0x78,0x6c,0x2d,0x35,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x6d,0x62,0x2d,0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x61,0x75,0x74, 0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d, 0x78,0x78,0x6c,0x2d,0x30,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d, 0x73,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c, 0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78, 0x78,0x6c,0x2d,0x33,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74, 0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x35, 0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x6d,0x73,0x2d, 0x78,0x78,0x6c,0x2d,0x61,0x75,0x74,0x6f,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x61,0x75,0x74,0x6f,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x78, 0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68, 0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65, 0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x78,0x2d,0x78,0x78,0x6c, 0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65, 0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d, 0x78,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f, 0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x78,0x6c, 0x2d,0x31,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e, 0x32,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21, 0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x79,0x2d,0x78,0x78,0x6c,0x2d, 0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x79,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x74,0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78, 0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70, 0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x70,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x31,0x2e,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x74, 0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x74, 0x6f,0x70,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x32, 0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e, 0x70,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x33, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x31, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x65,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x72,0x69,0x67,0x68,0x74,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x65,0x2d,0x78,0x78,0x6c,0x2d,0x35, 0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x33, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x62,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x32,0x35,0x72, 0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62, 0x2d,0x78,0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31, 0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70, 0x62,0x2d,0x78,0x78,0x6c,0x2d,0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x62,0x2d,0x78,0x78,0x6c,0x2d, 0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x30,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x30,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x31,0x7b,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x2e,0x32,0x35,0x72,0x65,0x6d, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78, 0x78,0x6c,0x2d,0x32,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66, 0x74,0x3a,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x33,0x7b,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31,0x72,0x65,0x6d,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x70,0x73,0x2d,0x78,0x78,0x6c,0x2d, 0x34,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x31, 0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x70,0x73,0x2d,0x78,0x78,0x6c,0x2d,0x35,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x33,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x78,0x78,0x6c,0x2d, 0x73,0x74,0x61,0x72,0x74,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e, 0x3a,0x6c,0x65,0x66,0x74,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x74,0x65,0x78,0x74,0x2d,0x78,0x78,0x6c,0x2d,0x65,0x6e,0x64,0x7b,0x74,0x65, 0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x72,0x69,0x67,0x68,0x74,0x21,0x69, 0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x74,0x65,0x78,0x74,0x2d,0x78, 0x78,0x6c,0x2d,0x63,0x65,0x6e,0x74,0x65,0x72,0x7b,0x74,0x65,0x78,0x74,0x2d,0x61, 0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x21,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x28,0x6d, 0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x32,0x30,0x30,0x70,0x78,0x29, 0x7b,0x2e,0x66,0x73,0x2d,0x31,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x32,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x66,0x73,0x2d,0x32,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a, 0x65,0x3a,0x32,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74, 0x7d,0x2e,0x66,0x73,0x2d,0x33,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65, 0x3a,0x31,0x2e,0x37,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x66,0x73,0x2d,0x34,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x61,0x6e,0x74,0x7d,0x7d,0x40,0x6d,0x65,0x64,0x69,0x61,0x20,0x70,0x72,0x69,0x6e, 0x74,0x7b,0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74,0x2d,0x69,0x6e,0x6c,0x69,0x6e, 0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72, 0x69,0x6e,0x74,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d, 0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x62,0x6c,0x6f,0x63,0x6b,0x21,0x69,0x6d,0x70, 0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74,0x2d, 0x67,0x72,0x69,0x64,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x67,0x72,0x69, 0x64,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70, 0x72,0x69,0x6e,0x74,0x2d,0x74,0x61,0x62,0x6c,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x3a,0x74,0x61,0x62,0x6c,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74,0x2d,0x74,0x61,0x62,0x6c, 0x65,0x2d,0x72,0x6f,0x77,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, 0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74,0x2d,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x63,0x65,0x6c,0x6c,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x61, 0x62,0x6c,0x65,0x2d,0x63,0x65,0x6c,0x6c,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61, 0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74,0x2d,0x66,0x6c,0x65,0x78, 0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x66,0x6c,0x65,0x78,0x21,0x69,0x6d, 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72,0x69,0x6e,0x74, 0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78,0x7b,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x66,0x6c,0x65,0x78, 0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d,0x2e,0x64,0x2d,0x70,0x72, 0x69,0x6e,0x74,0x2d,0x6e,0x6f,0x6e,0x65,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x6e,0x6f,0x6e,0x65,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x7d, 0x7d,0x2a,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x36,0x70, 0x78,0x7d,0x62,0x6f,0x64,0x79,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b, 0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x2d,0x61,0x70,0x70, 0x6c,0x65,0x2d,0x73,0x79,0x73,0x74,0x65,0x6d,0x2c,0x42,0x6c,0x69,0x6e,0x6b,0x4d, 0x61,0x63,0x53,0x79,0x73,0x74,0x65,0x6d,0x46,0x6f,0x6e,0x74,0x2c,0x22,0x53,0x65, 0x67,0x6f,0x65,0x20,0x55,0x49,0x22,0x2c,0x22,0x52,0x6f,0x62,0x6f,0x74,0x6f,0x22, 0x2c,0x22,0x4f,0x78,0x79,0x67,0x65,0x6e,0x22,0x2c,0x22,0x55,0x62,0x75,0x6e,0x74, 0x75,0x22,0x2c,0x22,0x43,0x61,0x6e,0x74,0x61,0x72,0x65,0x6c,0x6c,0x22,0x2c,0x22, 0x46,0x69,0x72,0x61,0x20,0x53,0x61,0x6e,0x73,0x22,0x2c,0x22,0x44,0x72,0x6f,0x69, 0x64,0x20,0x53,0x61,0x6e,0x73,0x22,0x2c,0x22,0x48,0x65,0x6c,0x76,0x65,0x74,0x69, 0x63,0x61,0x20,0x4e,0x65,0x75,0x65,0x22,0x2c,0x73,0x61,0x6e,0x73,0x2d,0x73,0x65, 0x72,0x69,0x66,0x3b,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x66,0x6f,0x6e,0x74, 0x2d,0x73,0x6d,0x6f,0x6f,0x74,0x68,0x69,0x6e,0x67,0x3a,0x61,0x6e,0x74,0x69,0x61, 0x6c,0x69,0x61,0x73,0x65,0x64,0x3b,0x2d,0x6d,0x6f,0x7a,0x2d,0x6f,0x73,0x78,0x2d, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x6d,0x6f,0x6f,0x74,0x68,0x69,0x6e,0x67,0x3a,0x67, 0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7d,0x2e,0x68,0x31,0x2c,0x68,0x31,0x7b, 0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x2e,0x35,0x72,0x65,0x6d, 0x7d,0x63,0x6f,0x64,0x65,0x7b,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c, 0x79,0x3a,0x73,0x6f,0x75,0x72,0x63,0x65,0x2d,0x63,0x6f,0x64,0x65,0x2d,0x70,0x72, 0x6f,0x2c,0x4d,0x65,0x6e,0x6c,0x6f,0x2c,0x4d,0x6f,0x6e,0x61,0x63,0x6f,0x2c,0x43, 0x6f,0x6e,0x73,0x6f,0x6c,0x61,0x73,0x2c,0x22,0x43,0x6f,0x75,0x72,0x69,0x65,0x72, 0x20,0x4e,0x65,0x77,0x22,0x2c,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x7d, 0x69,0x6e,0x70,0x75,0x74,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x20,0x3a,0x66,0x6f,0x63,0x75,0x73,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x69,0x6e,0x68,0x65,0x72,0x69,0x74,0x7d,0x2e,0x77,0x61,0x73,0x2d,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x65,0x64,0x20,0x2e,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e, 0x74,0x72,0x6f,0x6c,0x2e,0x69,0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x7b, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x37,0x62, 0x32,0x64,0x32,0x36,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x72,0x69,0x67, 0x68,0x74,0x3a,0x63,0x61,0x6c,0x63,0x28,0x31,0x2e,0x35,0x65,0x6d,0x20,0x2b,0x20, 0x2e,0x37,0x35,0x72,0x65,0x6d,0x29,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x2d,0x69,0x6d,0x61,0x67,0x65,0x3a,0x75,0x72,0x6c,0x28,0x22,0x64,0x61, 0x74,0x61,0x3a,0x69,0x6d,0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c, 0x3b,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x2c,0x25, 0x33,0x43,0x73,0x76,0x67,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x27,0x68,0x74,0x74, 0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32, 0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x27,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x27, 0x31,0x32,0x27,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x27,0x31,0x32,0x27,0x20, 0x66,0x69,0x6c,0x6c,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x20,0x73,0x74,0x72,0x6f, 0x6b,0x65,0x3d,0x27,0x25,0x32,0x33,0x64,0x63,0x33,0x35,0x34,0x35,0x27,0x25,0x33, 0x45,0x25,0x33,0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x63,0x78,0x3d,0x27,0x36, 0x27,0x20,0x63,0x79,0x3d,0x27,0x36,0x27,0x20,0x72,0x3d,0x27,0x34,0x2e,0x35,0x27, 0x2f,0x25,0x33,0x45,0x25,0x33,0x43,0x70,0x61,0x74,0x68,0x20,0x73,0x74,0x72,0x6f, 0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x27,0x72,0x6f,0x75, 0x6e,0x64,0x27,0x20,0x64,0x3d,0x27,0x4d,0x35,0x2e,0x38,0x20,0x33,0x2e,0x36,0x68, 0x2e,0x34,0x4c,0x36,0x20,0x36,0x2e,0x35,0x7a,0x27,0x2f,0x25,0x33,0x45,0x25,0x33, 0x43,0x63,0x69,0x72,0x63,0x6c,0x65,0x20,0x63,0x78,0x3d,0x27,0x36,0x27,0x20,0x63, 0x79,0x3d,0x27,0x38,0x2e,0x32,0x27,0x20,0x72,0x3d,0x27,0x2e,0x36,0x27,0x20,0x66, 0x69,0x6c,0x6c,0x3d,0x27,0x25,0x32,0x33,0x64,0x63,0x33,0x35,0x34,0x35,0x27,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x2f,0x25,0x33, 0x45,0x25,0x33,0x43,0x2f,0x73,0x76,0x67,0x25,0x33,0x45,0x22,0x29,0x3b,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3a, 0x6e,0x6f,0x2d,0x72,0x65,0x70,0x65,0x61,0x74,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x69, 0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x33,0x37,0x35,0x65,0x6d,0x20, 0x2b,0x20,0x2e,0x31,0x38,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x65,0x6e,0x74, 0x65,0x72,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x73,0x69, 0x7a,0x65,0x3a,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37,0x35,0x65,0x6d,0x20,0x2b,0x20, 0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x20,0x63,0x61,0x6c,0x63,0x28,0x2e,0x37, 0x35,0x65,0x6d,0x20,0x2b,0x20,0x2e,0x33,0x37,0x35,0x72,0x65,0x6d,0x29,0x7d,0x2e, 0x63,0x61,0x72,0x64,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x7d,0x2e,0x63,0x61,0x72,0x64,0x2d, 0x68,0x65,0x61,0x64,0x65,0x72,0x7b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x34,0x39,0x35,0x30,0x35,0x37,0x3b, 0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x66,0x66,0x7d,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__static_js_2_e635c71b_chunk_js = 2; #endif static const unsigned char FSDATA_ALIGN_PRE data__static_js_2_e635c71b_chunk_js[] FSDATA_ALIGN_POST = { /* /static/js/2.e635c71b.chunk.js (31 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32,0x2e,0x65,0x36,0x33, 0x35,0x63,0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 648539 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x36,0x34,0x38,0x35,0x33,0x39,0x0d,0x0a, /* "Content-Type: application/javascript " (40 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63, 0x72,0x69,0x70,0x74,0x0d,0x0a,0x0d,0x0a, /* raw file data (648539 bytes) */ 0x2f,0x2a,0x21,0x20,0x46,0x6f,0x72,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20, 0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6c,0x65,0x61, 0x73,0x65,0x20,0x73,0x65,0x65,0x20,0x32,0x2e,0x65,0x36,0x33,0x35,0x63,0x37,0x31, 0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x2e,0x4c,0x49,0x43,0x45,0x4e, 0x53,0x45,0x2e,0x74,0x78,0x74,0x20,0x2a,0x2f,0x0a,0x28,0x74,0x68,0x69,0x73,0x5b, 0x22,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x4a,0x73,0x6f,0x6e,0x70,0x67,0x70,0x32, 0x30,0x34,0x30,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72, 0x22,0x5d,0x3d,0x74,0x68,0x69,0x73,0x5b,0x22,0x77,0x65,0x62,0x70,0x61,0x63,0x6b, 0x4a,0x73,0x6f,0x6e,0x70,0x67,0x70,0x32,0x30,0x34,0x30,0x2d,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x5d,0x7c,0x7c,0x5b,0x5d,0x29,0x2e, 0x70,0x75,0x73,0x68,0x28,0x5b,0x5b,0x32,0x5d,0x2c,0x5b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x6e,0x28,0x31,0x35,0x30,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x6e,0x28,0x31,0x35,0x34,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x69,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x39,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x28,0x65,0x29,0x3b,0x74, 0x26,0x26,0x28,0x72,0x3d,0x72,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x28,0x65,0x2c,0x74,0x29,0x2e,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c, 0x65,0x7d,0x29,0x29,0x29,0x2c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x6e,0x2c,0x72,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b, 0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3f,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3a,0x7b,0x7d,0x3b,0x74,0x25,0x32,0x3f, 0x6f,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6e,0x29,0x2c,0x21,0x30,0x29,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x5b,0x74,0x5d,0x29,0x7d,0x29,0x29,0x3a,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x73,0x3f,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x69,0x65,0x73,0x28,0x65,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x73,0x28,0x6e,0x29,0x29,0x3a,0x6f,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x28,0x6e,0x2c,0x74,0x29,0x29,0x7d, 0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x34,0x35,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x2c,0x6f,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x65,0x2c,0x74,0x29,0x3b,0x69,0x66,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x28,0x65,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x6f,0x2b,0x2b,0x29,0x6e,0x3d,0x61,0x5b,0x6f,0x5d,0x2c,0x74,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x70, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72,0x61, 0x62,0x6c,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26,0x28, 0x69,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x69,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b,0x21,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x2e,0x68,0x61, 0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x65,0x3d,0x5b,0x5d,0x2c,0x74,0x3d,0x30,0x3b,0x74,0x3c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b, 0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x74,0x5d,0x3b,0x69,0x66,0x28,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x69,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x3b,0x69,0x66,0x28,0x22,0x73, 0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x69,0x7c,0x7c,0x22,0x6e,0x75,0x6d, 0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x69,0x29,0x65,0x2e,0x70,0x75,0x73,0x68,0x28, 0x72,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79, 0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x29,0x29,0x7b,0x69,0x66,0x28, 0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d, 0x6f,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x29,0x3b, 0x61,0x26,0x26,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x61,0x29,0x7d,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x3d,0x69,0x29,0x69,0x66,0x28,0x72,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67, 0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x29,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x75,0x20,0x69,0x6e,0x20,0x72,0x29,0x6e,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x72,0x2c,0x75,0x29,0x26,0x26,0x72,0x5b,0x75,0x5d,0x26,0x26,0x65, 0x2e,0x70,0x75,0x73,0x68,0x28,0x75,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x65,0x2e, 0x70,0x75,0x73,0x68,0x28,0x72,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28, 0x29,0x29,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6a,0x6f,0x69, 0x6e,0x28,0x22,0x20,0x22,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3f,0x28,0x6f,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3d,0x6f,0x2c,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6f,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x28,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x74,0x2c,0x5b,0x5d,0x29,0x29,0x7c,0x7c,0x28,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x72,0x29,0x7d,0x28,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22, 0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x35,0x39,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x41,0x72,0x72, 0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x28,0x65,0x29,0x7c,0x7c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x75,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5b,0x5d, 0x2c,0x72,0x3d,0x21,0x30,0x2c,0x6f,0x3d,0x21,0x31,0x2c,0x69,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x61,0x2c,0x75,0x3d,0x65,0x5b,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65, 0x72,0x61,0x74,0x6f,0x72,0x5d,0x28,0x29,0x3b,0x21,0x28,0x72,0x3d,0x28,0x61,0x3d, 0x75,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x29,0x26, 0x26,0x28,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x61,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x29,0x2c,0x21,0x74,0x7c,0x7c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d, 0x3d,0x74,0x29,0x3b,0x72,0x3d,0x21,0x30,0x29,0x3b,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x63,0x29,0x7b,0x6f,0x3d,0x21,0x30,0x2c,0x69,0x3d,0x63,0x7d,0x66,0x69,0x6e, 0x61,0x6c,0x6c,0x79,0x7b,0x74,0x72,0x79,0x7b,0x72,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x75,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x75,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x69, 0x66,0x28,0x6f,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x69,0x7d,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x7d,0x7d,0x28,0x65,0x2c,0x74,0x29,0x7c,0x7c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x65,0x2c,0x74,0x29,0x7c,0x7c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77, 0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20, 0x74,0x6f,0x20,0x64,0x65,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x6e, 0x6f,0x6e,0x2d,0x69,0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x2e,0x5c,0x6e,0x49,0x6e,0x20,0x6f,0x72,0x64,0x65,0x72,0x20, 0x74,0x6f,0x20,0x62,0x65,0x20,0x69,0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x2c,0x20, 0x6e,0x6f,0x6e,0x2d,0x61,0x72,0x72,0x61,0x79,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x73,0x20,0x6d,0x75,0x73,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x5b,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x28, 0x29,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x22,0x29,0x7d,0x28,0x29,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67, 0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b, 0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20, 0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26,0x26, 0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x7d,0x2c,0x72,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x29,0x29,0x2c, 0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x7d,0x29, 0x29,0x3b,0x6e,0x28,0x32,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30, 0x29,0x2c,0x6f,0x3d,0x28,0x6e,0x28,0x31,0x29,0x2c,0x72,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x7b,0x70,0x72,0x65,0x66,0x69, 0x78,0x65,0x73,0x3a,0x7b,0x7d,0x7d,0x29,0x29,0x3b,0x6f,0x2e,0x43,0x6f,0x6e,0x73, 0x75,0x6d,0x65,0x72,0x2c,0x6f,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75, 0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x6f,0x29,0x2e,0x70,0x72, 0x65,0x66,0x69,0x78,0x65,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c, 0x7c,0x6e,0x5b,0x74,0x5d,0x7c,0x7c,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x61,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x72,0x74,0x6c, 0x22,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x6f,0x29,0x2e,0x64,0x69,0x72,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x28,0x31,0x38, 0x34,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x20,0x69,0x6e,0x20,0x65, 0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x6e,0x2c,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21, 0x30,0x2c,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21, 0x30,0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29,0x3a, 0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x2c,0x65,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22, 0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x28,0x65,0x20, 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x74,0x29,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f, 0x72,0x28,0x22,0x43,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x63,0x61,0x6c,0x6c,0x20,0x61, 0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x61,0x73,0x20,0x61,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x29,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x30,0x3b,0x6e,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b, 0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x72,0x2e, 0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3d,0x72,0x2e,0x65,0x6e,0x75, 0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x7c,0x7c,0x21,0x31,0x2c,0x72,0x2e,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3d,0x21,0x30,0x2c,0x22,0x76, 0x61,0x6c,0x75,0x65,0x22,0x69,0x6e,0x20,0x72,0x26,0x26,0x28,0x72,0x2e,0x77,0x72, 0x69,0x74,0x61,0x62,0x6c,0x65,0x3d,0x21,0x30,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x28,0x65,0x2c,0x72,0x2e,0x6b,0x65,0x79,0x2c,0x72,0x29,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x72,0x28,0x65,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x74,0x29,0x2c,0x6e,0x26,0x26,0x72,0x28,0x65, 0x2c,0x6e,0x29,0x2c,0x65,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x4f,0x66,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x5f, 0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x67,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x28,0x65, 0x29,0x7d,0x2c,0x72,0x28,0x65,0x29,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61, 0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61, 0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x65,0x5b,0x69,0x5d, 0x28,0x61,0x29,0x2c,0x63,0x3d,0x75,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x6c,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f, 0x69,0x64,0x20,0x6e,0x28,0x6c,0x29,0x7d,0x75,0x2e,0x64,0x6f,0x6e,0x65,0x3f,0x74, 0x28,0x63,0x29,0x3a,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x28,0x63,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x72,0x2c,0x6f,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d, 0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x6e,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x65,0x29,0x7b,0x72,0x28,0x61,0x2c,0x6f, 0x2c,0x69,0x2c,0x75,0x2c,0x63,0x2c,0x22,0x6e,0x65,0x78,0x74,0x22,0x2c,0x65,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x29,0x7b,0x72, 0x28,0x61,0x2c,0x6f,0x2c,0x69,0x2c,0x75,0x2c,0x63,0x2c,0x22,0x74,0x68,0x72,0x6f, 0x77,0x22,0x2c,0x65,0x29,0x7d,0x75,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x29,0x7d, 0x29,0x29,0x7d,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x63,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x65,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x45,0x65,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c, 0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x65,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x2c,0x6f,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x39,0x29,0x2c,0x61,0x3d,0x6e, 0x28,0x31,0x30,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x31,0x31,0x29,0x3b,0x74,0x72,0x79, 0x7b,0x72,0x3d,0x4d,0x61,0x70,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x59,0x65,0x29, 0x7b,0x7d,0x74,0x72,0x79,0x7b,0x6f,0x3d,0x53,0x65,0x74,0x7d,0x63,0x61,0x74,0x63, 0x68,0x28,0x59,0x65,0x29,0x7b,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x7c,0x7c, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70, 0x65,0x26,0x26,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x4e,0x6f,0x64,0x65,0x22,0x69,0x6e, 0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x6f,0x6e, 0x65,0x4e,0x6f,0x64,0x65,0x28,0x21,0x30,0x29,0x3b,0x69,0x66,0x28,0x65,0x20,0x69, 0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x44,0x61,0x74,0x65,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65, 0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x29,0x3b,0x69,0x66,0x28,0x65, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x52,0x65,0x67,0x45, 0x78,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x52,0x65, 0x67,0x45,0x78,0x70,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79, 0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x70,0x28,0x6c,0x29,0x3b,0x69,0x66,0x28,0x72, 0x26,0x26,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x72, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x28, 0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x65,0x2e,0x65,0x6e,0x74, 0x72,0x69,0x65,0x73,0x28,0x29,0x29,0x29,0x3b,0x69,0x66,0x28,0x6f,0x26,0x26,0x65, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x6f,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x41,0x72,0x72, 0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73, 0x28,0x29,0x29,0x29,0x3b,0x69,0x66,0x28,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x6f,0x66,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x29,0x7b,0x74,0x2e,0x70, 0x75,0x73,0x68,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x65,0x29,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x61,0x20,0x69,0x6e,0x20,0x6e,0x2e,0x70,0x75,0x73, 0x68,0x28,0x69,0x29,0x2c,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74,0x2e, 0x66,0x69,0x6e,0x64,0x49,0x6e,0x64,0x65,0x78,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d, 0x3d,0x3d,0x65,0x5b,0x61,0x5d,0x7d,0x29,0x29,0x3b,0x69,0x5b,0x61,0x5d,0x3d,0x75, 0x3e,0x2d,0x31,0x3f,0x6e,0x5b,0x75,0x5d,0x3a,0x63,0x28,0x65,0x5b,0x61,0x5d,0x2c, 0x74,0x2c,0x6e,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6c,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x28,0x65,0x2c, 0x5b,0x5d,0x2c,0x5b,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x73,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x66,0x3d,0x45,0x72,0x72,0x6f,0x72,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x2c,0x64,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x70,0x3d, 0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x3f,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x7d,0x2c,0x68,0x3d,0x2f,0x5e,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x5c,0x28,0x28,0x2e,0x2a,0x29,0x5c,0x29,0x28,0x2e,0x2a, 0x29,0x24,0x2f,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x21,0x3d,0x2b,0x65,0x3f,0x22, 0x4e,0x61,0x4e,0x22,0x3a,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x31,0x2f,0x65,0x3c, 0x30,0x3f,0x22,0x2d,0x30,0x22,0x3a,0x22,0x22,0x2b,0x65,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x26,0x26,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x7c,0x7c,0x21,0x30,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x21,0x31,0x3d,0x3d, 0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x2b,0x65,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x69,0x66,0x28, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x76,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3f,0x27,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27, 0x22,0x27,0x29,0x3a,0x65,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b, 0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x22,0x2b,0x28,0x65,0x2e,0x6e,0x61, 0x6d,0x65,0x7c,0x7c,0x22,0x61,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x22,0x29, 0x2b,0x22,0x5d,0x22,0x3b,0x69,0x66,0x28,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22, 0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x65,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x68,0x2c, 0x22,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x28,0x24,0x31,0x29,0x22,0x29,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x73,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x38,0x2c,0x2d,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x44,0x61,0x74,0x65,0x22,0x3d,0x3d,0x3d,0x72,0x3f,0x69,0x73,0x4e,0x61,0x4e, 0x28,0x65,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x29,0x3f,0x22,0x22, 0x2b,0x65,0x3a,0x65,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67, 0x28,0x65,0x29,0x3a,0x22,0x45,0x72,0x72,0x6f,0x72,0x22,0x3d,0x3d,0x3d,0x72,0x7c, 0x7c,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x45,0x72, 0x72,0x6f,0x72,0x3f,0x22,0x5b,0x22,0x2b,0x66,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65, 0x29,0x2b,0x22,0x5d,0x22,0x3a,0x22,0x52,0x65,0x67,0x45,0x78,0x70,0x22,0x3d,0x3d, 0x3d,0x72,0x3f,0x64,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x67,0x28,0x65,0x2c,0x74,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x3f,0x6e, 0x3a,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28, 0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x67,0x28,0x74,0x68,0x69,0x73,0x5b,0x65,0x5d, 0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x72,0x3f,0x72,0x3a,0x6e,0x7d,0x29,0x2c,0x32,0x29,0x7d,0x76,0x61,0x72, 0x20,0x62,0x3d,0x7b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x22,0x24,0x7b,0x70, 0x61,0x74,0x68,0x7d,0x20,0x69,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22, 0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74, 0x68,0x7d,0x20,0x69,0x73,0x20,0x61,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, 0x20,0x66,0x69,0x65,0x6c,0x64,0x22,0x2c,0x6f,0x6e,0x65,0x4f,0x66,0x3a,0x22,0x24, 0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6f, 0x6e,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77, 0x69,0x6e,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x20,0x24,0x7b,0x76,0x61, 0x6c,0x75,0x65,0x73,0x7d,0x22,0x2c,0x6e,0x6f,0x74,0x4f,0x6e,0x65,0x4f,0x66,0x3a, 0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x6e,0x6f, 0x74,0x20,0x62,0x65,0x20,0x6f,0x6e,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20, 0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x69,0x6e,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x73, 0x3a,0x20,0x24,0x7b,0x76,0x61,0x6c,0x75,0x65,0x73,0x7d,0x22,0x2c,0x6e,0x6f,0x74, 0x54,0x79,0x70,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x70,0x61,0x74,0x68,0x2c,0x6e,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x2c,0x6f,0x3d,0x65,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c, 0x75,0x65,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6f,0x26,0x26,0x6f,0x21, 0x3d,0x3d,0x72,0x2c,0x61,0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x74,0x2c,0x22,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x60,0x22, 0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2c,0x22,0x60,0x20,0x74,0x79, 0x70,0x65,0x2c,0x20,0x22,0x29,0x2b,0x22,0x62,0x75,0x74,0x20,0x74,0x68,0x65,0x20, 0x66,0x69,0x6e,0x61,0x6c,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x77,0x61,0x73,0x3a, 0x20,0x60,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6d,0x28,0x72,0x2c,0x21, 0x30,0x29,0x2c,0x22,0x60,0x22,0x29,0x2b,0x28,0x69,0x3f,0x22,0x20,0x28,0x63,0x61, 0x73,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x76,0x61,0x6c,0x75, 0x65,0x20,0x60,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6d,0x28,0x6f,0x2c, 0x21,0x30,0x29,0x2c,0x22,0x60,0x29,0x2e,0x22,0x29,0x3a,0x22,0x2e,0x22,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x72,0x26, 0x26,0x28,0x61,0x2b,0x3d,0x27,0x5c,0x6e,0x20,0x49,0x66,0x20,0x22,0x6e,0x75,0x6c, 0x6c,0x22,0x20,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x6e,0x64,0x65,0x64,0x20,0x61, 0x73,0x20,0x61,0x6e,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x76,0x61,0x6c,0x75,0x65, 0x20,0x62,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x6f,0x20,0x6d,0x61,0x72,0x6b, 0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x68,0x65,0x6d,0x61,0x20,0x61,0x73,0x20,0x60, 0x2e,0x6e,0x75,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x28,0x29,0x60,0x27,0x29,0x2c,0x61, 0x7d,0x2c,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74, 0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x64,0x65,0x66,0x69,0x6e, 0x65,0x64,0x22,0x7d,0x2c,0x79,0x3d,0x7b,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x22, 0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20, 0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x24,0x7b,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x7d,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x22,0x2c,0x6d,0x69, 0x6e,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20, 0x62,0x65,0x20,0x61,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x24,0x7b,0x6d,0x69, 0x6e,0x7d,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x22,0x2c,0x6d, 0x61,0x78,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74, 0x20,0x62,0x65,0x20,0x61,0x74,0x20,0x6d,0x6f,0x73,0x74,0x20,0x24,0x7b,0x6d,0x61, 0x78,0x7d,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x22,0x2c,0x6d, 0x61,0x74,0x63,0x68,0x65,0x73,0x3a,0x27,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20, 0x6d,0x75,0x73,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x74,0x68,0x65,0x20,0x66, 0x6f,0x6c,0x6c,0x6f,0x77,0x69,0x6e,0x67,0x3a,0x20,0x22,0x24,0x7b,0x72,0x65,0x67, 0x65,0x78,0x7d,0x22,0x27,0x2c,0x65,0x6d,0x61,0x69,0x6c,0x3a,0x22,0x24,0x7b,0x70, 0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x76, 0x61,0x6c,0x69,0x64,0x20,0x65,0x6d,0x61,0x69,0x6c,0x22,0x2c,0x75,0x72,0x6c,0x3a, 0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65, 0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x55,0x52,0x4c,0x22,0x2c,0x75,0x75, 0x69,0x64,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74, 0x20,0x62,0x65,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x55,0x55,0x49,0x44, 0x22,0x2c,0x74,0x72,0x69,0x6d,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20, 0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x74,0x72,0x69,0x6d,0x6d,0x65, 0x64,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x6c,0x6f,0x77,0x65,0x72,0x63, 0x61,0x73,0x65,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73, 0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x6c,0x6f,0x77,0x65,0x72,0x63,0x61,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x75,0x70,0x70,0x65,0x72,0x63,0x61, 0x73,0x65,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74, 0x20,0x62,0x65,0x20,0x61,0x20,0x75,0x70,0x70,0x65,0x72,0x20,0x63,0x61,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x7d,0x2c,0x5f,0x3d,0x7b,0x6d,0x69,0x6e, 0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62, 0x65,0x20,0x67,0x72,0x65,0x61,0x74,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x6f, 0x72,0x20,0x65,0x71,0x75,0x61,0x6c,0x20,0x74,0x6f,0x20,0x24,0x7b,0x6d,0x69,0x6e, 0x7d,0x22,0x2c,0x6d,0x61,0x78,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20, 0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x65,0x73,0x73,0x20,0x74,0x68,0x61, 0x6e,0x20,0x6f,0x72,0x20,0x65,0x71,0x75,0x61,0x6c,0x20,0x74,0x6f,0x20,0x24,0x7b, 0x6d,0x61,0x78,0x7d,0x22,0x2c,0x6c,0x65,0x73,0x73,0x54,0x68,0x61,0x6e,0x3a,0x22, 0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20, 0x6c,0x65,0x73,0x73,0x20,0x74,0x68,0x61,0x6e,0x20,0x24,0x7b,0x6c,0x65,0x73,0x73, 0x7d,0x22,0x2c,0x6d,0x6f,0x72,0x65,0x54,0x68,0x61,0x6e,0x3a,0x22,0x24,0x7b,0x70, 0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x67,0x72,0x65, 0x61,0x74,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x24,0x7b,0x6d,0x6f,0x72,0x65, 0x7d,0x22,0x2c,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x3a,0x22,0x24,0x7b,0x70, 0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x70, 0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x20,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c, 0x6e,0x65,0x67,0x61,0x74,0x69,0x76,0x65,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68, 0x7d,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x6e,0x65,0x67,0x61, 0x74,0x69,0x76,0x65,0x20,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x69,0x6e,0x74, 0x65,0x67,0x65,0x72,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75, 0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x6e,0x20,0x69,0x6e,0x74,0x65,0x67,0x65,0x72, 0x22,0x7d,0x2c,0x77,0x3d,0x7b,0x6d,0x69,0x6e,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74, 0x68,0x7d,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65, 0x20,0x6c,0x61,0x74,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x24,0x7b,0x6d,0x69, 0x6e,0x7d,0x22,0x2c,0x6d,0x61,0x78,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d, 0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61, 0x74,0x20,0x65,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x24, 0x7b,0x6d,0x61,0x78,0x7d,0x22,0x7d,0x2c,0x4f,0x3d,0x7b,0x69,0x73,0x56,0x61,0x6c, 0x75,0x65,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x66,0x69,0x65,0x6c, 0x64,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x24,0x7b,0x76,0x61,0x6c,0x75, 0x65,0x7d,0x22,0x7d,0x2c,0x78,0x3d,0x7b,0x6e,0x6f,0x55,0x6e,0x6b,0x6e,0x6f,0x77, 0x6e,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x66,0x69,0x65,0x6c,0x64, 0x20,0x68,0x61,0x73,0x20,0x75,0x6e,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x65,0x64, 0x20,0x6b,0x65,0x79,0x73,0x3a,0x20,0x24,0x7b,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e, 0x7d,0x22,0x7d,0x2c,0x45,0x3d,0x7b,0x6d,0x69,0x6e,0x3a,0x22,0x24,0x7b,0x70,0x61, 0x74,0x68,0x7d,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x6d,0x75,0x73,0x74,0x20,0x68, 0x61,0x76,0x65,0x20,0x61,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x24,0x7b,0x6d, 0x69,0x6e,0x7d,0x20,0x69,0x74,0x65,0x6d,0x73,0x22,0x2c,0x6d,0x61,0x78,0x3a,0x22, 0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x6d,0x75, 0x73,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x6c,0x65,0x73,0x73,0x20,0x74,0x68,0x61, 0x6e,0x20,0x6f,0x72,0x20,0x65,0x71,0x75,0x61,0x6c,0x20,0x74,0x6f,0x20,0x24,0x7b, 0x6d,0x61,0x78,0x7d,0x20,0x69,0x74,0x65,0x6d,0x73,0x22,0x2c,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3a,0x22,0x24,0x7b,0x70,0x61,0x74,0x68,0x7d,0x20,0x6d,0x75,0x73,0x74, 0x20,0x68,0x61,0x76,0x65,0x20,0x24,0x7b,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20, 0x69,0x74,0x65,0x6d,0x73,0x22,0x7d,0x2c,0x6a,0x3d,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x7b,0x6d,0x69, 0x78,0x65,0x64,0x3a,0x62,0x2c,0x73,0x74,0x72,0x69,0x6e,0x67,0x3a,0x79,0x2c,0x6e, 0x75,0x6d,0x62,0x65,0x72,0x3a,0x5f,0x2c,0x64,0x61,0x74,0x65,0x3a,0x77,0x2c,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x3a,0x78,0x2c,0x61,0x72,0x72,0x61,0x79,0x3a,0x45,0x2c, 0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x3a,0x4f,0x7d,0x29,0x2c,0x6e,0x28,0x35,0x34, 0x29,0x29,0x2c,0x6b,0x3d,0x6e,0x2e,0x6e,0x28,0x6a,0x29,0x2c,0x53,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x26,0x26,0x65,0x2e,0x5f,0x5f,0x69,0x73,0x59,0x75,0x70,0x53,0x63,0x68, 0x65,0x6d,0x61,0x5f,0x5f,0x7d,0x2c,0x43,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74, 0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e, 0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x66,0x6e,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72, 0x65,0x66,0x73,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x3d, 0x74,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x29,0x7b,0x69,0x66,0x28,0x21,0x6b,0x28,0x29, 0x28,0x6e,0x2c,0x22,0x69,0x73,0x22,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e, 0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x60,0x69, 0x73,0x3a,0x60,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20, 0x66,0x6f,0x72,0x20,0x60,0x77,0x68,0x65,0x6e,0x28,0x29,0x60,0x20,0x63,0x6f,0x6e, 0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x22,0x29,0x3b,0x69,0x66,0x28,0x21,0x6e,0x2e, 0x74,0x68,0x65,0x6e,0x26,0x26,0x21,0x6e,0x2e,0x6f,0x74,0x68,0x65,0x72,0x77,0x69, 0x73,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70, 0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x65,0x69,0x74,0x68,0x65,0x72,0x20,0x60, 0x74,0x68,0x65,0x6e,0x3a,0x60,0x20,0x6f,0x72,0x20,0x60,0x6f,0x74,0x68,0x65,0x72, 0x77,0x69,0x73,0x65,0x3a,0x60,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x60,0x77,0x68,0x65,0x6e,0x28,0x29,0x60,0x20, 0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x22,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x2e,0x69,0x73,0x2c,0x6f,0x3d,0x6e,0x2e,0x74,0x68,0x65,0x6e, 0x2c,0x69,0x3d,0x6e,0x2e,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x2c,0x75, 0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x72,0x3f,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74, 0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d, 0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x3d,0x3d,0x72,0x7d,0x29,0x29,0x7d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x66,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72, 0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b, 0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x6e,0x5d,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x70,0x6f,0x70,0x28, 0x29,0x2c,0x61,0x3d,0x74,0x2e,0x70,0x6f,0x70,0x28,0x29,0x2c,0x63,0x3d,0x75,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x29,0x3f, 0x6f,0x3a,0x69,0x3b,0x69,0x66,0x28,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x63,0x3f,0x63,0x28,0x61,0x29,0x3a,0x61,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x63,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x72,0x29,0x29, 0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x68,0x69,0x73,0x2e,0x66,0x6e,0x3d,0x6e, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75, 0x2e,0x61,0x29,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x73, 0x6f,0x6c,0x76,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x67,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3a,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x2c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x29,0x7d,0x29,0x29,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x66,0x6e,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x65,0x2c,0x6e,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x65,0x2c,0x74,0x29,0x29,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x7c,0x7c,0x72,0x3d,0x3d,0x3d,0x65,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x21,0x53,0x28,0x72,0x29, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x28,0x22,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73, 0x20,0x6d,0x75,0x73,0x74,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x20,0x73, 0x63,0x68,0x65,0x6d,0x61,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28, 0x74,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x2c,0x41,0x3d,0x43,0x2c, 0x54,0x3d,0x6e,0x28,0x38,0x34,0x29,0x2c,0x50,0x3d,0x6e,0x28,0x32,0x32,0x29,0x2c, 0x44,0x3d,0x6e,0x28,0x32,0x33,0x29,0x2c,0x4e,0x3d,0x6e,0x28,0x31,0x32,0x29,0x2c, 0x49,0x3d,0x6e,0x28,0x36,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x52,0x3d,0x6e,0x28, 0x38,0x33,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x52,0x2e,0x61,0x29,0x28,0x29,0x3f,0x52,0x65,0x66, 0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x5b,0x6e,0x75,0x6c,0x6c,0x5d,0x3b,0x72,0x2e,0x70,0x75, 0x73,0x68,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x72,0x2c,0x74,0x29,0x3b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x6e,0x65,0x77,0x28,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x2e,0x62,0x69,0x6e,0x64,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x65,0x2c,0x72,0x29, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x49,0x2e,0x61,0x29,0x28,0x6f,0x2c,0x6e,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x6f,0x7d,0x2c,0x4c,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x4d,0x61,0x70,0x3f,0x6e,0x65, 0x77,0x20,0x4d,0x61,0x70,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x46,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x28, 0x6e,0x3d,0x65,0x2c,0x2d,0x31,0x3d,0x3d,0x3d,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x6e,0x29,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x5b,0x6e,0x61,0x74, 0x69,0x76,0x65,0x20,0x63,0x6f,0x64,0x65,0x5d,0x22,0x29,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x69,0x66,0x28,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54, 0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x53,0x75,0x70,0x65,0x72,0x20, 0x65,0x78,0x70,0x72,0x65,0x73,0x73,0x69,0x6f,0x6e,0x20,0x6d,0x75,0x73,0x74,0x20, 0x65,0x69,0x74,0x68,0x65,0x72,0x20,0x62,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x6f, 0x72,0x20,0x61,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x29,0x3b,0x69, 0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x7b,0x69,0x66,0x28,0x74,0x2e,0x68, 0x61,0x73,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x67, 0x65,0x74,0x28,0x65,0x29,0x3b,0x74,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x72,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4c,0x28,0x65,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x74, 0x68,0x69,0x73,0x29,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x28,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x7b, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3a,0x7b,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x72,0x2c,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a, 0x21,0x31,0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x7d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x49,0x2e,0x61,0x29,0x28,0x72,0x2c, 0x65,0x29,0x7d,0x2c,0x46,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4d,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x5b,0x5d,0x3a,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61, 0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26,0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b, 0x72,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x42,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x29,0x7d,0x76,0x61,0x72,0x20,0x7a,0x3d,0x2f,0x5c,0x24,0x5c, 0x7b,0x5c,0x73,0x2a,0x28,0x5c,0x77,0x2b,0x29,0x5c,0x73,0x2a,0x5c,0x7d,0x2f,0x67, 0x2c,0x55,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x50,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29,0x3b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x44,0x2e,0x61, 0x29,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28, 0x65,0x2c,0x72,0x2c,0x6f,0x2c,0x75,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x63,0x3d,0x74,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x63,0x2e,0x70,0x61,0x74,0x68,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x63,0x2e,0x74,0x79,0x70,0x65,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x63,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x63,0x2e,0x70,0x61,0x72,0x61,0x6d,0x73,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x63,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x2c,0x63,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x56,0x61,0x6c,0x69,0x64, 0x61,0x74,0x69,0x6f,0x6e,0x45,0x72,0x72,0x6f,0x72,0x22,0x2c,0x63,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x3d,0x72,0x2c,0x63,0x2e,0x70,0x61,0x74,0x68,0x3d,0x6f,0x2c,0x63, 0x2e,0x74,0x79,0x70,0x65,0x3d,0x75,0x2c,0x63,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73, 0x3d,0x5b,0x5d,0x2c,0x63,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x3d,0x5b,0x5d,0x2c,0x4d, 0x28,0x65,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x6e, 0x2e,0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x3f,0x28,0x28,0x74,0x3d, 0x63,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x2e,0x70,0x75,0x73,0x68,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e, 0x61,0x29,0x28,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x29,0x2c,0x63,0x2e, 0x69,0x6e,0x6e,0x65,0x72,0x3d,0x63,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3f,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x3a,0x65,0x29,0x29,0x3a, 0x63,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29, 0x7d,0x29,0x29,0x2c,0x63,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3d,0x63,0x2e, 0x65,0x72,0x72,0x6f,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x3f, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x63,0x2e,0x65,0x72,0x72,0x6f, 0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x22,0x20,0x65,0x72,0x72,0x6f, 0x72,0x73,0x20,0x6f,0x63,0x63,0x75,0x72,0x72,0x65,0x64,0x22,0x29,0x3a,0x63,0x2e, 0x65,0x72,0x72,0x6f,0x72,0x73,0x5b,0x30,0x5d,0x2c,0x45,0x72,0x72,0x6f,0x72,0x2e, 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x53,0x74,0x61,0x63,0x6b,0x54,0x72,0x61,0x63, 0x65,0x26,0x26,0x45,0x72,0x72,0x6f,0x72,0x2e,0x63,0x61,0x70,0x74,0x75,0x72,0x65, 0x53,0x74,0x61,0x63,0x6b,0x54,0x72,0x61,0x63,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x54,0x2e,0x61,0x29,0x28,0x63,0x29,0x2c,0x6e,0x29,0x2c,0x63,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61, 0x29,0x28,0x6e,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x66,0x6f,0x72,0x6d,0x61,0x74,0x45,0x72,0x72,0x6f,0x72,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7c,0x7c, 0x74,0x2e,0x70,0x61,0x74,0x68,0x7c,0x7c,0x22,0x74,0x68,0x69,0x73,0x22,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x21,0x3d,0x3d,0x74,0x2e,0x70,0x61,0x74,0x68, 0x26,0x26,0x28,0x74,0x3d,0x42,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x70,0x61,0x74, 0x68,0x3a,0x6e,0x7d,0x29,0x29,0x2c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x7a,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x28,0x74, 0x5b,0x6e,0x5d,0x29,0x7d,0x29,0x29,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x28, 0x74,0x29,0x3a,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x69,0x73,0x45, 0x72,0x72,0x6f,0x72,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x26,0x26,0x22,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x45,0x72,0x72, 0x6f,0x72,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x7d,0x7d,0x5d,0x29, 0x2c,0x6e,0x7d,0x28,0x46,0x28,0x45,0x72,0x72,0x6f,0x72,0x29,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x65,0x6e,0x64,0x45,0x61,0x72,0x6c,0x79,0x2c,0x72, 0x3d,0x65,0x2e,0x74,0x65,0x73,0x74,0x73,0x2c,0x6f,0x3d,0x65,0x2e,0x61,0x72,0x67, 0x73,0x2c,0x61,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x75,0x3d,0x65,0x2e, 0x65,0x72,0x72,0x6f,0x72,0x73,0x2c,0x63,0x3d,0x65,0x2e,0x73,0x6f,0x72,0x74,0x2c, 0x6c,0x3d,0x65,0x2e,0x70,0x61,0x74,0x68,0x2c,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x21,0x31,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x7c,0x7c,0x28,0x74,0x3d,0x21,0x30,0x2c,0x65,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x29,0x7d,0x7d,0x28,0x74,0x29,0x2c,0x66,0x3d,0x72,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x64,0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28,0x75,0x3d, 0x75,0x7c,0x7c,0x5b,0x5d,0x2c,0x21,0x66,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x73,0x28,0x6e,0x65,0x77,0x20,0x55, 0x28,0x75,0x2c,0x61,0x2c,0x6c,0x29,0x29,0x3a,0x73,0x28,0x6e,0x75,0x6c,0x6c,0x2c, 0x61,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x70,0x3d,0x30,0x3b,0x70, 0x3c,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x70,0x2b,0x2b,0x29,0x7b,0x28, 0x30,0x2c,0x72,0x5b,0x70,0x5d,0x29,0x28,0x6f,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x21,0x55,0x2e,0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65,0x2c,0x61,0x29,0x3b,0x69,0x66,0x28,0x6e, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d, 0x61,0x2c,0x73,0x28,0x65,0x2c,0x61,0x29,0x3b,0x64,0x2e,0x70,0x75,0x73,0x68,0x28, 0x65,0x29,0x7d,0x69,0x66,0x28,0x2d,0x2d,0x66,0x3c,0x3d,0x30,0x29,0x7b,0x69,0x66, 0x28,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x63,0x26,0x26,0x64, 0x2e,0x73,0x6f,0x72,0x74,0x28,0x63,0x29,0x2c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x26,0x26,0x64,0x2e,0x70,0x75,0x73,0x68,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x64,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x75,0x29, 0x29,0x2c,0x75,0x3d,0x64,0x29,0x2c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x73,0x28,0x6e,0x65, 0x77,0x20,0x55,0x28,0x75,0x2c,0x61,0x2c,0x6c,0x29,0x2c,0x61,0x29,0x3b,0x73,0x28, 0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x7d,0x76,0x61,0x72, 0x20,0x24,0x3d,0x6e,0x28,0x39,0x31,0x29,0x2c,0x48,0x3d,0x6e,0x2e,0x6e,0x28,0x24, 0x29,0x2c,0x56,0x3d,0x6e,0x28,0x34,0x39,0x29,0x2c,0x47,0x3d,0x22,0x24,0x22,0x2c, 0x71,0x3d,0x22,0x2e,0x22,0x3b,0x76,0x61,0x72,0x20,0x4b,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3a,0x7b,0x7d,0x3b,0x69,0x66,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x6b,0x65,0x79,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x56,0x61,0x6c,0x75,0x65,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x53,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x70,0x61,0x74,0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x67,0x65,0x74,0x74,0x65,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79, 0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x72,0x65,0x66,0x20,0x6d,0x75,0x73, 0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x2c,0x20,0x67, 0x6f,0x74,0x3a,0x20,0x22,0x2b,0x74,0x29,0x3b,0x69,0x66,0x28,0x74,0x68,0x69,0x73, 0x2e,0x6b,0x65,0x79,0x3d,0x74,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x22,0x22, 0x3d,0x3d,0x3d,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54, 0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x72,0x65,0x66,0x20,0x6d,0x75, 0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x6e,0x6f,0x6e,0x2d,0x65,0x6d,0x70,0x74, 0x79,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e, 0x69,0x73,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6b, 0x65,0x79,0x5b,0x30,0x5d,0x3d,0x3d,0x3d,0x47,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69, 0x73,0x56,0x61,0x6c,0x75,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6b,0x65,0x79,0x5b, 0x30,0x5d,0x3d,0x3d,0x3d,0x71,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x53,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x3d,0x21,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x56, 0x61,0x6c,0x75,0x65,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x69,0x73,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3f,0x47,0x3a,0x74,0x68,0x69,0x73, 0x2e,0x69,0x73,0x56,0x61,0x6c,0x75,0x65,0x3f,0x71,0x3a,0x22,0x22,0x3b,0x74,0x68, 0x69,0x73,0x2e,0x70,0x61,0x74,0x68,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6b,0x65,0x79, 0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x74,0x65,0x72,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x70,0x61,0x74,0x68,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x56, 0x2e,0x67,0x65,0x74,0x74,0x65,0x72,0x29,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x61, 0x74,0x68,0x2c,0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x70,0x3d, 0x6e,0x2e,0x6d,0x61,0x70,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x67,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x3f,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x69,0x73, 0x56,0x61,0x6c,0x75,0x65,0x3f,0x65,0x3a,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x74,0x65,0x72,0x26,0x26,0x28,0x72, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x74,0x65,0x72,0x28,0x72,0x7c,0x7c, 0x7b,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x70,0x26,0x26,0x28, 0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x70,0x28,0x72,0x29,0x29,0x2c,0x72, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x61,0x73,0x74,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x67, 0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x28,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e, 0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3a,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x72,0x65,0x66,0x22,0x2c,0x6b, 0x65,0x79,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6b,0x65,0x79,0x7d,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x52,0x65,0x66,0x28,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x6b,0x65,0x79,0x2c,0x22,0x29,0x22, 0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x69,0x73,0x52,0x65, 0x66,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65, 0x2e,0x5f,0x5f,0x69,0x73,0x59,0x75,0x70,0x52,0x65,0x66,0x7d,0x7d,0x5d,0x29,0x2c, 0x65,0x7d,0x28,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d, 0x31,0x3b,0x74,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73, 0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x6e,0x2c,0x72,0x29,0x26,0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72, 0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x59,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x28, 0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x2c,0x6f,0x3d,0x74,0x2e,0x70,0x61,0x74,0x68,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x22,0x22,0x3a,0x6f,0x2c,0x61,0x3d,0x74,0x2e, 0x6c,0x61,0x62,0x65,0x6c,0x2c,0x75,0x3d,0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x2c,0x63,0x3d,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61, 0x6c,0x75,0x65,0x2c,0x6c,0x3d,0x74,0x2e,0x73,0x79,0x6e,0x63,0x2c,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f, 0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x7d,0x28,0x74,0x2c,0x5b,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x2c,0x22, 0x70,0x61,0x74,0x68,0x22,0x2c,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x22,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x2c,0x22,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61, 0x6c,0x56,0x61,0x6c,0x75,0x65,0x22,0x2c,0x22,0x73,0x79,0x6e,0x63,0x22,0x5d,0x29, 0x2c,0x66,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x64,0x3d,0x65,0x2e,0x74,0x65, 0x73,0x74,0x2c,0x70,0x3d,0x65,0x2e,0x70,0x61,0x72,0x61,0x6d,0x73,0x2c,0x68,0x3d, 0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x76,0x3d,0x75,0x2e,0x70,0x61, 0x72,0x65,0x6e,0x74,0x2c,0x67,0x3d,0x75,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4b,0x2e,0x69,0x73,0x52,0x65,0x66,0x28,0x65,0x29, 0x3f,0x65,0x2e,0x67,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x28,0x72,0x2c,0x76,0x2c, 0x67,0x29,0x3a,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x7b, 0x7d,0x2c,0x74,0x3d,0x48,0x28,0x29,0x28,0x59,0x28,0x7b,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x72,0x2c,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65, 0x3a,0x63,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x61,0x2c,0x70,0x61,0x74,0x68,0x3a, 0x65,0x2e,0x70,0x61,0x74,0x68,0x7c,0x7c,0x69,0x7d,0x2c,0x70,0x2c,0x65,0x2e,0x70, 0x61,0x72,0x61,0x6d,0x73,0x29,0x2c,0x6d,0x29,0x2c,0x6e,0x3d,0x6e,0x65,0x77,0x20, 0x55,0x28,0x55,0x2e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x45,0x72,0x72,0x6f,0x72,0x28, 0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7c,0x7c,0x68,0x2c,0x74,0x29,0x2c, 0x72,0x2c,0x74,0x2e,0x70,0x61,0x74,0x68,0x2c,0x65,0x2e,0x74,0x79,0x70,0x65,0x7c, 0x7c,0x66,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x70,0x61,0x72, 0x61,0x6d,0x73,0x3d,0x74,0x2c,0x6e,0x7d,0x76,0x61,0x72,0x20,0x79,0x3d,0x59,0x28, 0x7b,0x70,0x61,0x74,0x68,0x3a,0x69,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x76, 0x2c,0x74,0x79,0x70,0x65,0x3a,0x66,0x2c,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x72, 0x72,0x6f,0x72,0x3a,0x62,0x2c,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x3a,0x6d,0x2c, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x75,0x2c,0x6f,0x72,0x69,0x67,0x69,0x6e, 0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x3a,0x63,0x7d,0x2c,0x73,0x29,0x3b,0x69,0x66, 0x28,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x5f,0x3b,0x74,0x72,0x79,0x7b,0x76,0x61, 0x72,0x20,0x77,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x28,0x77,0x3d,0x5f,0x3d,0x64,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x79,0x2c,0x72, 0x2c,0x79,0x29,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x77,0x2e,0x74,0x68, 0x65,0x6e,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x27,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x20, 0x74,0x65,0x73,0x74,0x20,0x6f,0x66,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x22,0x27, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x79,0x2e,0x74,0x79,0x70,0x65,0x2c,0x27, 0x22,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x61,0x20,0x50,0x72,0x6f, 0x6d,0x69,0x73,0x65,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x61,0x20,0x73,0x79, 0x6e,0x63,0x68,0x72,0x6f,0x6e,0x6f,0x75,0x73,0x20,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x2e,0x20,0x27,0x29,0x2b,0x22,0x54,0x68,0x69,0x73,0x20,0x74,0x65,0x73, 0x74,0x20,0x77,0x69,0x6c,0x6c,0x20,0x66,0x69,0x6e,0x69,0x73,0x68,0x20,0x61,0x66, 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65, 0x20,0x63,0x61,0x6c,0x6c,0x20,0x68,0x61,0x73,0x20,0x72,0x65,0x74,0x75,0x72,0x6e, 0x65,0x64,0x22,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x4f,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x6e,0x28,0x4f,0x29,0x7d,0x55, 0x2e,0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x28,0x5f,0x29,0x3f,0x6e,0x28,0x5f,0x29, 0x3a,0x5f,0x3f,0x6e,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x5f,0x29,0x3a,0x6e,0x28,0x62, 0x28,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x79,0x7b,0x50,0x72,0x6f, 0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x64,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x79,0x2c,0x72,0x2c,0x79,0x29,0x29,0x2e,0x74,0x68,0x65,0x6e, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x55,0x2e, 0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x3f,0x6e,0x28,0x65,0x29,0x3a, 0x65,0x3f,0x6e,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x3a,0x6e,0x28,0x62,0x28, 0x29,0x29,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x6e,0x29,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x4f,0x29,0x7b,0x6e,0x28,0x4f,0x29,0x7d,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x4f,0x50,0x54,0x49,0x4f,0x4e,0x53,0x3d,0x65, 0x2c,0x74,0x7d,0x4b,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x5f, 0x5f,0x69,0x73,0x59,0x75,0x70,0x52,0x65,0x66,0x3d,0x21,0x30,0x3b,0x76,0x61,0x72, 0x20,0x58,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x30, 0x2c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x29,0x2e,0x73,0x75,0x62, 0x73,0x74,0x72,0x28,0x31,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4a,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x2c, 0x6f,0x2c,0x69,0x2c,0x61,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x33,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x33,0x5d,0x3f, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x33,0x5d,0x3a,0x6e,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3f,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x56,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x29,0x28,0x74,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x75,0x2c,0x63,0x2c,0x6c,0x29,0x7b,0x76,0x61, 0x72,0x20,0x73,0x3d,0x63,0x3f,0x58,0x28,0x75,0x29,0x3a,0x75,0x3b,0x69,0x66,0x28, 0x28,0x65,0x3d,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x7b,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x3a,0x61,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x72, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e,0x7d,0x29,0x29,0x2e,0x69,0x6e,0x6e,0x65, 0x72,0x54,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x6c,0x3f,0x70, 0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x73,0x2c,0x31,0x30,0x29,0x3a,0x30,0x3b, 0x69,0x66,0x28,0x6e,0x26,0x26,0x66,0x3e,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x22,0x59,0x75,0x70,0x2e,0x72,0x65,0x61,0x63,0x68,0x20,0x63,0x61,0x6e, 0x6e,0x6f,0x74,0x20,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x61,0x6e,0x20,0x61, 0x72,0x72,0x61,0x79,0x20,0x69,0x74,0x65,0x6d,0x20,0x61,0x74,0x20,0x69,0x6e,0x64, 0x65,0x78,0x3a,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x75,0x2c,0x22, 0x2c,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x74,0x68,0x3a,0x20,0x22, 0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x2e,0x20,0x22,0x29, 0x2b,0x22,0x62,0x65,0x63,0x61,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x72,0x65,0x20, 0x69,0x73,0x20,0x6e,0x6f,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x61,0x74,0x20,0x74, 0x68,0x61,0x74,0x20,0x69,0x6e,0x64,0x65,0x78,0x2e,0x20,0x22,0x29,0x3b,0x72,0x3d, 0x6e,0x2c,0x6e,0x3d,0x6e,0x26,0x26,0x6e,0x5b,0x66,0x5d,0x2c,0x65,0x3d,0x65,0x2e, 0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x7d,0x69,0x66,0x28,0x21,0x6c,0x29, 0x7b,0x69,0x66,0x28,0x21,0x65,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73,0x7c,0x7c,0x21, 0x65,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73,0x5b,0x73,0x5d,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x54,0x68,0x65, 0x20,0x73,0x63,0x68,0x65,0x6d,0x61,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74, 0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x74, 0x68,0x3a,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x2e, 0x20,0x22,0x29,0x2b,0x22,0x28,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x61,0x74,0x3a, 0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x69,0x2c,0x27,0x20,0x77,0x68, 0x69,0x63,0x68,0x20,0x69,0x73,0x20,0x61,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x22, 0x27,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2e,0x5f,0x74,0x79,0x70, 0x65,0x2c,0x27,0x22,0x29,0x27,0x29,0x29,0x3b,0x72,0x3d,0x6e,0x2c,0x6e,0x3d,0x6e, 0x26,0x26,0x6e,0x5b,0x73,0x5d,0x2c,0x65,0x3d,0x65,0x2e,0x66,0x69,0x65,0x6c,0x64, 0x73,0x5b,0x73,0x5d,0x7d,0x6f,0x3d,0x73,0x2c,0x69,0x3d,0x63,0x3f,0x22,0x5b,0x22, 0x2b,0x75,0x2b,0x22,0x5d,0x22,0x3a,0x22,0x2e,0x22,0x2b,0x75,0x7d,0x29,0x29,0x2c, 0x7b,0x73,0x63,0x68,0x65,0x6d,0x61,0x3a,0x65,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74, 0x3a,0x72,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74,0x50,0x61,0x74,0x68,0x3a,0x6f,0x7d, 0x29,0x3a,0x7b,0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x72,0x2c,0x70,0x61,0x72,0x65, 0x6e,0x74,0x50,0x61,0x74,0x68,0x3a,0x74,0x2c,0x73,0x63,0x68,0x65,0x6d,0x61,0x3a, 0x65,0x7d,0x7d,0x76,0x61,0x72,0x20,0x5a,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x65,0x65, 0x3d,0x6e,0x28,0x33,0x32,0x29,0x2c,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28, 0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x74,0x68, 0x69,0x73,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6c,0x69,0x73,0x74,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6c,0x69,0x73, 0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72, 0x65,0x66,0x73,0x3d,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29,0x28,0x65, 0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x69,0x7a,0x65,0x22,0x2c,0x67,0x65, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6c,0x69,0x73,0x74,0x2e,0x73,0x69, 0x7a,0x65,0x2b,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x2e,0x73,0x69,0x7a, 0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x73,0x63,0x72,0x69, 0x62,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x2c,0x74,0x3d,0x5b,0x5d,0x2c, 0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x65,0x2e,0x61,0x29,0x28,0x74, 0x68,0x69,0x73,0x2e,0x6c,0x69,0x73,0x74,0x29,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f, 0x72,0x28,0x6e,0x2e,0x73,0x28,0x29,0x3b,0x21,0x28,0x65,0x3d,0x6e,0x2e,0x6e,0x28, 0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x72, 0x29,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x75,0x29,0x7b,0x6e,0x2e,0x65,0x28, 0x75,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x6e,0x2e,0x66,0x28,0x29, 0x7d,0x76,0x61,0x72,0x20,0x6f,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x65,0x65,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x29, 0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x69,0x2e,0x73,0x28,0x29,0x3b,0x21, 0x28,0x6f,0x3d,0x69,0x2e,0x6e,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x5a,0x2e, 0x61,0x29,0x28,0x6f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x32,0x29,0x5b,0x31,0x5d, 0x3b,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x61,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x62,0x65,0x28,0x29,0x29,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x75,0x29,0x7b, 0x69,0x2e,0x65,0x28,0x75,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x69, 0x2e,0x66,0x28,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f,0x41,0x72,0x72,0x61,0x79,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f, 0x6d,0x28,0x74,0x68,0x69,0x73,0x2e,0x6c,0x69,0x73,0x74,0x29,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x74, 0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x28, 0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x41,0x6c,0x6c,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x6f,0x41,0x72,0x72,0x61,0x79,0x28,0x29,0x2e, 0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x4b,0x2e,0x69,0x73,0x52,0x65,0x66,0x28,0x6e,0x29, 0x3f,0x65,0x28,0x6e,0x29,0x3a,0x6e,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x61,0x64,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x4b,0x2e, 0x69,0x73,0x52,0x65,0x66,0x28,0x65,0x29,0x3f,0x74,0x68,0x69,0x73,0x2e,0x72,0x65, 0x66,0x73,0x2e,0x73,0x65,0x74,0x28,0x65,0x2e,0x6b,0x65,0x79,0x2c,0x65,0x29,0x3a, 0x74,0x68,0x69,0x73,0x2e,0x6c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x65,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x4b,0x2e,0x69,0x73,0x52,0x65,0x66,0x28,0x65,0x29,0x3f,0x74,0x68, 0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65, 0x2e,0x6b,0x65,0x79,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6c,0x69,0x73,0x74,0x2e, 0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6c, 0x69,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x74,0x68,0x69,0x73, 0x2e,0x6c,0x69,0x73,0x74,0x29,0x2c,0x74,0x2e,0x72,0x65,0x66,0x73,0x3d,0x6e,0x65, 0x77,0x20,0x4d,0x61,0x70,0x28,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73,0x29, 0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d,0x65,0x72,0x67,0x65, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x6c,0x69,0x73,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x2e,0x61,0x64,0x64,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x65, 0x2e,0x72,0x65,0x66,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x61,0x64,0x64,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x74,0x2e, 0x6c,0x69,0x73,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c, 0x74,0x2e,0x72,0x65,0x66,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x7d,0x29, 0x29,0x2c,0x6e,0x7d,0x7d,0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74, 0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72, 0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26, 0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x6e,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x76,0x61,0x72,0x20,0x72,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x3b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x64,0x65,0x70,0x73,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x74,0x65,0x73,0x74,0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x64,0x69,0x74, 0x69,0x6f,0x6e,0x73,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x75, 0x74,0x61,0x74,0x65,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x74,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69, 0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x74,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x74,0x65, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x54, 0x65,0x73,0x74,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x70, 0x65,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74, 0x65,0x73,0x74,0x73,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61, 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x2e,0x74,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x28,0x62,0x2e,0x6e,0x6f,0x74,0x54,0x79,0x70,0x65,0x29,0x7d, 0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x79,0x70,0x65,0x3d,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x74, 0x79,0x70,0x65,0x29,0x7c,0x7c,0x22,0x6d,0x69,0x78,0x65,0x64,0x22,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x73,0x70,0x65,0x63,0x3d,0x6e,0x65,0x28,0x7b,0x73,0x74,0x72,0x69, 0x70,0x3a,0x21,0x31,0x2c,0x73,0x74,0x72,0x69,0x63,0x74,0x3a,0x21,0x31,0x2c,0x61, 0x62,0x6f,0x72,0x74,0x45,0x61,0x72,0x6c,0x79,0x3a,0x21,0x30,0x2c,0x72,0x65,0x63, 0x75,0x72,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x6e,0x75,0x6c,0x6c,0x61,0x62, 0x6c,0x65,0x3a,0x21,0x31,0x2c,0x70,0x72,0x65,0x73,0x65,0x6e,0x63,0x65,0x3a,0x22, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x22,0x7d,0x2c,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x73,0x70,0x65,0x63, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x2e,0x61,0x29,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74, 0x79,0x70,0x65,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x74,0x79,0x70,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x79, 0x70,0x65,0x43,0x68,0x65,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x6c,0x6f,0x6e, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x75, 0x74,0x61,0x74,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x74,0x68,0x69, 0x73,0x2e,0x73,0x70,0x65,0x63,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x28,0x74,0x68,0x69,0x73,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x74,0x79,0x70,0x65,0x2c,0x74,0x2e,0x5f,0x74,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x2c,0x74,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73, 0x74,0x45,0x72,0x72,0x6f,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x77,0x68,0x69, 0x74,0x65,0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x2c,0x74,0x2e,0x5f,0x62, 0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x45,0x72,0x72, 0x6f,0x72,0x2c,0x74,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2e, 0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2c,0x74,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b, 0x6c,0x69,0x73,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b, 0x6c,0x69,0x73,0x74,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2c,0x74,0x2e,0x65, 0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x54,0x65,0x73,0x74,0x73,0x3d,0x6e,0x65, 0x28,0x7b,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69, 0x76,0x65,0x54,0x65,0x73,0x74,0x73,0x29,0x2c,0x74,0x2e,0x64,0x65,0x70,0x73,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73, 0x2e,0x64,0x65,0x70,0x73,0x29,0x2c,0x74,0x2e,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69, 0x6f,0x6e,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28, 0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x29, 0x2c,0x74,0x2e,0x74,0x65,0x73,0x74,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x69,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x73,0x29, 0x2c,0x74,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2e,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x29,0x2c,0x74,0x2e,0x73,0x70,0x65, 0x63,0x3d,0x6c,0x28,0x6e,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73, 0x70,0x65,0x63,0x2c,0x65,0x29,0x29,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x73,0x70,0x65,0x63,0x2e,0x6c,0x61,0x62,0x65, 0x6c,0x3d,0x65,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d,0x65, 0x74,0x61,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x70,0x65,0x63,0x2e,0x6d,0x65, 0x74,0x61,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c, 0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73, 0x70,0x65,0x63,0x2e,0x6d,0x65,0x74,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x65,0x2e,0x73,0x70,0x65,0x63,0x2e,0x6d,0x65, 0x74,0x61,0x7c,0x7c,0x7b,0x7d,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x30,0x3f,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x2c, 0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x77,0x69,0x74,0x68,0x4d,0x75, 0x74,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x75,0x74,0x61,0x74,0x65,0x3b,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x6d,0x75,0x74,0x61,0x74,0x65,0x3d,0x21,0x30,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x75,0x74,0x61,0x74,0x65,0x3d,0x74, 0x2c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x7c,0x7c,0x65,0x3d,0x3d,0x3d, 0x74,0x68,0x69,0x73,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x3b,0x69,0x66,0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x21,0x3d,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x22,0x6d,0x69,0x78,0x65,0x64,0x22,0x21, 0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x79,0x70,0x65,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28, 0x22,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x60,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x29,0x60,0x20,0x73,0x63,0x68,0x65,0x6d,0x61,0x27,0x73,0x20, 0x6f,0x66,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x74,0x79,0x70, 0x65,0x73,0x3a,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68,0x69, 0x73,0x2e,0x74,0x79,0x70,0x65,0x2c,0x22,0x20,0x61,0x6e,0x64,0x20,0x22,0x29,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x63, 0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2c,0x72,0x3d,0x6e,0x65,0x28,0x7b,0x7d,0x2c,0x74, 0x2e,0x73,0x70,0x65,0x63,0x2c,0x6e,0x2e,0x73,0x70,0x65,0x63,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73,0x70,0x65,0x63,0x3d,0x72,0x2c,0x6e,0x2e, 0x5f,0x74,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x7c,0x7c,0x28,0x6e,0x2e,0x5f, 0x74,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x3d,0x74,0x2e,0x5f,0x74,0x79,0x70, 0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x2c,0x6e,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65, 0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x7c,0x7c,0x28,0x6e,0x2e,0x5f,0x77, 0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x3d,0x74,0x2e, 0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x29, 0x2c,0x6e,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x45,0x72,0x72, 0x6f,0x72,0x7c,0x7c,0x28,0x6e,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73, 0x74,0x45,0x72,0x72,0x6f,0x72,0x3d,0x74,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c, 0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x29,0x2c,0x6e,0x2e,0x5f,0x77,0x68,0x69, 0x74,0x65,0x6c,0x69,0x73,0x74,0x3d,0x74,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c, 0x69,0x73,0x74,0x2e,0x6d,0x65,0x72,0x67,0x65,0x28,0x65,0x2e,0x5f,0x77,0x68,0x69, 0x74,0x65,0x6c,0x69,0x73,0x74,0x2c,0x65,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c, 0x69,0x73,0x74,0x29,0x2c,0x6e,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73, 0x74,0x3d,0x74,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2e,0x6d, 0x65,0x72,0x67,0x65,0x28,0x65,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73, 0x74,0x2c,0x65,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x2c, 0x6e,0x2e,0x74,0x65,0x73,0x74,0x73,0x3d,0x74,0x2e,0x74,0x65,0x73,0x74,0x73,0x2c, 0x6e,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x54,0x65,0x73,0x74,0x73, 0x3d,0x74,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x54,0x65,0x73,0x74, 0x73,0x2c,0x6e,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e, 0x74,0x65,0x73,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x2e,0x4f,0x50,0x54,0x49,0x4f,0x4e,0x53,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x29,0x2c,0x6e,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x3d, 0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x73,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28, 0x6e,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x29,0x29,0x2c,0x6e, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x69,0x73,0x54,0x79,0x70,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x21,0x74,0x68,0x69,0x73, 0x2e,0x73,0x70,0x65,0x63,0x2e,0x6e,0x75,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x7c,0x7c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x74,0x79,0x70,0x65,0x43,0x68,0x65,0x63,0x6b,0x28,0x65,0x29,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x69,0x66,0x28,0x74, 0x2e,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x64, 0x69,0x74,0x69,0x6f,0x6e,0x73,0x3b,0x28,0x74,0x3d,0x74,0x2e,0x63,0x6c,0x6f,0x6e, 0x65,0x28,0x29,0x29,0x2e,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x3d, 0x5b,0x5d,0x2c,0x74,0x3d,0x28,0x74,0x3d,0x6e,0x2e,0x72,0x65,0x64,0x75,0x63,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65, 0x28,0x74,0x2c,0x65,0x29,0x7d,0x29,0x2c,0x74,0x29,0x29,0x2e,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x28,0x65,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x61,0x73,0x74,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x7b,0x7d,0x2c, 0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x6e, 0x65,0x28,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x7d,0x2c,0x74,0x29,0x29,0x2c, 0x72,0x3d,0x6e,0x2e,0x5f,0x63,0x61,0x73,0x74,0x28,0x65,0x2c,0x74,0x29,0x3b,0x69, 0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x26,0x26,0x21,0x31, 0x21,0x3d,0x3d,0x74,0x2e,0x61,0x73,0x73,0x65,0x72,0x74,0x26,0x26,0x21,0x30,0x21, 0x3d,0x3d,0x6e,0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x28,0x72,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x6d,0x28,0x65,0x29,0x2c,0x69,0x3d,0x6d,0x28,0x72,0x29, 0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x28,0x22,0x54,0x68,0x65,0x20,0x76,0x61,0x6c,0x75,0x65,0x20, 0x6f,0x66,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2e,0x70,0x61, 0x74,0x68,0x7c,0x7c,0x22,0x66,0x69,0x65,0x6c,0x64,0x22,0x2c,0x22,0x20,0x63,0x6f, 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x63,0x61,0x73,0x74,0x20, 0x74,0x6f,0x20,0x61,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x22,0x29,0x2b,0x27,0x74, 0x68,0x61,0x74,0x20,0x73,0x61,0x74,0x69,0x73,0x66,0x69,0x65,0x73,0x20,0x74,0x68, 0x65,0x20,0x73,0x63,0x68,0x65,0x6d,0x61,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x22, 0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2e,0x5f,0x74,0x79,0x70,0x65, 0x2c,0x27,0x22,0x2e,0x20,0x5c,0x6e,0x5c,0x6e,0x27,0x29,0x2b,0x22,0x61,0x74,0x74, 0x65,0x6d,0x70,0x74,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6f,0x2c,0x22,0x20,0x5c,0x6e,0x22,0x29,0x2b, 0x28,0x69,0x21,0x3d,0x3d,0x6f,0x3f,0x22,0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x6f, 0x66,0x20,0x63,0x61,0x73,0x74,0x3a,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x69,0x29,0x3a,0x22,0x22,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x63,0x61,0x73,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2c, 0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x74, 0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x2e,0x72, 0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x6e,0x2c,0x74,0x2c,0x65,0x2c,0x6e,0x29,0x7d,0x29,0x2c,0x65,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x72,0x26,0x26,0x28,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x29,0x2c,0x72,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31, 0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x31,0x5d,0x3a,0x7b,0x7d,0x2c,0x72,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x32,0x3f,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30, 0x2c,0x6f,0x3d,0x6e,0x2e,0x73,0x79,0x6e,0x63,0x2c,0x69,0x3d,0x6e,0x2e,0x70,0x61, 0x74,0x68,0x2c,0x61,0x3d,0x6e,0x2e,0x66,0x72,0x6f,0x6d,0x2c,0x75,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f,0x5b,0x5d,0x3a,0x61,0x2c,0x63,0x3d, 0x6e,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c, 0x6c,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x65,0x3a,0x63, 0x2c,0x73,0x3d,0x6e,0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x2c,0x66,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x73,0x3f,0x74,0x68,0x69,0x73,0x2e,0x73,0x70, 0x65,0x63,0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x3a,0x73,0x2c,0x64,0x3d,0x6e,0x2e, 0x61,0x62,0x6f,0x72,0x74,0x45,0x61,0x72,0x6c,0x79,0x2c,0x70,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x74,0x68,0x69,0x73,0x2e,0x73,0x70,0x65, 0x63,0x2e,0x61,0x62,0x6f,0x72,0x74,0x45,0x61,0x72,0x6c,0x79,0x3a,0x64,0x2c,0x68, 0x3d,0x65,0x3b,0x66,0x7c,0x7c,0x28,0x68,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x61,0x73,0x74,0x28,0x68,0x2c,0x6e,0x65,0x28,0x7b,0x61,0x73,0x73,0x65,0x72,0x74, 0x3a,0x21,0x31,0x7d,0x2c,0x6e,0x29,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x76,0x3d, 0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x68,0x2c,0x70,0x61,0x74,0x68,0x3a,0x69,0x2c, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x6e,0x2c,0x6f,0x72,0x69,0x67,0x69,0x6e, 0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x3a,0x6c,0x2c,0x73,0x63,0x68,0x65,0x6d,0x61, 0x3a,0x74,0x68,0x69,0x73,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x74,0x68,0x69,0x73, 0x2e,0x73,0x70,0x65,0x63,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x2c,0x73,0x79,0x6e,0x63, 0x3a,0x6f,0x2c,0x66,0x72,0x6f,0x6d,0x3a,0x75,0x7d,0x2c,0x67,0x3d,0x5b,0x5d,0x3b, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x26, 0x26,0x67,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x79, 0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x5b, 0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73, 0x74,0x45,0x72,0x72,0x6f,0x72,0x26,0x26,0x6d,0x2e,0x70,0x75,0x73,0x68,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x45,0x72, 0x72,0x6f,0x72,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b, 0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x26,0x26,0x6d,0x2e,0x70,0x75,0x73, 0x68,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73, 0x74,0x45,0x72,0x72,0x6f,0x72,0x29,0x2c,0x57,0x28,0x7b,0x61,0x72,0x67,0x73,0x3a, 0x76,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x68,0x2c,0x70,0x61,0x74,0x68,0x3a,0x69, 0x2c,0x73,0x79,0x6e,0x63,0x3a,0x6f,0x2c,0x74,0x65,0x73,0x74,0x73,0x3a,0x67,0x2c, 0x65,0x6e,0x64,0x45,0x61,0x72,0x6c,0x79,0x3a,0x70,0x7d,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x3f,0x72,0x28,0x65,0x2c,0x68, 0x29,0x3a,0x57,0x28,0x7b,0x74,0x65,0x73,0x74,0x73,0x3a,0x74,0x2e,0x74,0x65,0x73, 0x74,0x73,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6d,0x29,0x2c,0x61,0x72,0x67, 0x73,0x3a,0x76,0x2c,0x70,0x61,0x74,0x68,0x3a,0x69,0x2c,0x73,0x79,0x6e,0x63,0x3a, 0x6f,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x68,0x2c,0x65,0x6e,0x64,0x45,0x61,0x72, 0x6c,0x79,0x3a,0x70,0x7d,0x2c,0x72,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72, 0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x6e,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6e,0x3f,0x72,0x2e,0x5f,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x6e,0x65,0x77,0x20,0x50,0x72, 0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x6e,0x2c,0x6f,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x5f,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x28,0x65,0x2c,0x74,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x3f,0x6f,0x28,0x65, 0x29,0x3a,0x6e,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x53,0x79,0x6e, 0x63,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65, 0x28,0x6e,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x65,0x7d,0x29,0x29,0x2e,0x5f,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x28,0x65, 0x2c,0x6e,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x73,0x79,0x6e,0x63,0x3a,0x21, 0x30,0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x3b, 0x6e,0x3d,0x74,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x28,0x65,0x2c,0x74,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x30,0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x55,0x2e,0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x28,0x65,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20, 0x65,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x69,0x73,0x56, 0x61,0x6c,0x69,0x64,0x53,0x79,0x6e,0x63,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x72, 0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x76,0x61, 0x6c,0x69,0x64,0x61,0x74,0x65,0x53,0x79,0x6e,0x63,0x28,0x65,0x2c,0x74,0x29,0x2c, 0x21,0x30,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x69,0x66,0x28,0x55, 0x2e,0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x28,0x6e,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x7d,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75,0x6c, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x73, 0x70,0x65,0x63,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x3f,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x3a, 0x6c,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67,0x65,0x74, 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x65, 0x7c,0x7c,0x7b,0x7d,0x29,0x2e,0x5f,0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75,0x6c, 0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x7b,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x3a,0x65,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x21,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x30,0x5d,0x29,0x7c,0x7c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x73,0x70,0x65,0x63,0x2e,0x73, 0x74,0x72,0x69,0x63,0x74,0x3d,0x65,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x69,0x73,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d, 0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x62,0x2e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67, 0x65,0x3a,0x65,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x64,0x65,0x66,0x69,0x6e,0x65, 0x64,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c, 0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x65,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65, 0x71,0x75,0x69,0x72,0x65,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e, 0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x30,0x5d,0x3a,0x62,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f, 0x6e,0x65,0x28,0x7b,0x70,0x72,0x65,0x73,0x65,0x6e,0x63,0x65,0x3a,0x22,0x72,0x65, 0x71,0x75,0x69,0x72,0x65,0x64,0x22,0x7d,0x29,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75, 0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74,0x65,0x73, 0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e,0x61,0x6d, 0x65,0x3a,0x22,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x22,0x2c,0x65,0x78,0x63, 0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x63,0x68,0x65,0x6d,0x61,0x2e,0x5f,0x69, 0x73,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x29, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6e,0x6f,0x74,0x52,0x65,0x71, 0x75,0x69,0x72,0x65,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x7b,0x70,0x72,0x65,0x73,0x65,0x6e, 0x63,0x65,0x3a,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x22,0x7d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x74,0x65,0x73,0x74,0x73,0x3d,0x65, 0x2e,0x74,0x65,0x73,0x74,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x22,0x21,0x3d,0x3d,0x65,0x2e, 0x4f,0x50,0x54,0x49,0x4f,0x4e,0x53,0x2e,0x6e,0x61,0x6d,0x65,0x7d,0x29,0x29,0x2c, 0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6e,0x75,0x6c,0x6c,0x61,0x62, 0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x21,0x28,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26, 0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x7c,0x7c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x30,0x5d,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f, 0x6e,0x65,0x28,0x7b,0x6e,0x75,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x3a,0x21,0x31,0x21, 0x3d,0x3d,0x65,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63, 0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x73,0x2e,0x70,0x75,0x73,0x68,0x28, 0x65,0x29,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x65,0x73, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x31,0x3d,0x3d,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3c,0x3d,0x30,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x3f,0x7b,0x74,0x65,0x73,0x74, 0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3c,0x3d,0x30,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x7d,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x30,0x3f,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x3a,0x32,0x3d,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x30, 0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x30,0x5d,0x2c,0x74,0x65,0x73,0x74,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x31,0x3f,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x7d,0x3a,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x30,0x3f,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d, 0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x31,0x3f,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d, 0x2c,0x74,0x65,0x73,0x74,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x32,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x7d,0x29,0x2e, 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x26,0x26,0x28,0x65,0x2e,0x6d,0x65,0x73,0x73, 0x61,0x67,0x65,0x3d,0x62,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x2c,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x2e,0x74,0x65,0x73,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x60, 0x74,0x65,0x73,0x74,0x60,0x20,0x69,0x73,0x20,0x61,0x20,0x72,0x65,0x71,0x75,0x69, 0x72,0x65,0x64,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x22,0x29, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e, 0x65,0x28,0x29,0x2c,0x6e,0x3d,0x51,0x28,0x65,0x29,0x2c,0x72,0x3d,0x65,0x2e,0x65, 0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x7c,0x7c,0x65,0x2e,0x6e,0x61,0x6d,0x65, 0x26,0x26,0x21,0x30,0x3d,0x3d,0x3d,0x74,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69, 0x76,0x65,0x54,0x65,0x73,0x74,0x73,0x5b,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x5d,0x3b, 0x69,0x66,0x28,0x65,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x26,0x26, 0x21,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x45,0x78,0x63, 0x6c,0x75,0x73,0x69,0x76,0x65,0x20,0x74,0x65,0x73,0x74,0x73,0x20,0x6d,0x75,0x73, 0x74,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x20,0x61,0x20,0x75,0x6e,0x69,0x71, 0x75,0x65,0x20,0x60,0x6e,0x61,0x6d,0x65,0x60,0x20,0x69,0x64,0x65,0x6e,0x74,0x69, 0x66,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x74,0x65,0x73,0x74,0x22,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x26,0x26, 0x28,0x74,0x2e,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x54,0x65,0x73,0x74, 0x73,0x5b,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x5d,0x3d,0x21,0x21,0x65,0x2e,0x65,0x78, 0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x29,0x2c,0x74,0x2e,0x74,0x65,0x73,0x74,0x73, 0x3d,0x74,0x2e,0x74,0x65,0x73,0x74,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x69,0x66,0x28, 0x74,0x2e,0x4f,0x50,0x54,0x49,0x4f,0x4e,0x53,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x3d, 0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x7b,0x69,0x66,0x28,0x72,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x74,0x2e,0x4f,0x50,0x54,0x49, 0x4f,0x4e,0x53,0x2e,0x74,0x65,0x73,0x74,0x3d,0x3d,0x3d,0x6e,0x2e,0x4f,0x50,0x54, 0x49,0x4f,0x4e,0x53,0x2e,0x74,0x65,0x73,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x29,0x29,0x2c,0x74, 0x2e,0x74,0x65,0x73,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x29,0x2c,0x74, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x77,0x68,0x65,0x6e,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79, 0x28,0x65,0x29,0x7c,0x7c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x28,0x74,0x3d,0x65,0x2c,0x65, 0x3d,0x22,0x2e,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2c,0x72,0x3d,0x4d,0x28,0x65,0x29,0x2e, 0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x4b,0x28,0x65,0x29, 0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x65,0x2e,0x69,0x73,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x26,0x26,0x6e, 0x2e,0x64,0x65,0x70,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x2e,0x6b,0x65,0x79, 0x29,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e, 0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x65,0x77,0x20,0x41,0x28,0x72,0x2c,0x74, 0x29,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x79,0x70, 0x65,0x45,0x72,0x72,0x6f,0x72,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x2e,0x5f,0x74,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72, 0x3d,0x51,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x74,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x22,0x2c,0x74, 0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x65,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x73,0x63,0x68,0x65,0x6d,0x61, 0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x28,0x65,0x29,0x29,0x7c,0x7c,0x74,0x68,0x69, 0x73,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x7b,0x70, 0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x74,0x68,0x69,0x73, 0x2e,0x73,0x63,0x68,0x65,0x6d,0x61,0x2e,0x5f,0x74,0x79,0x70,0x65,0x7d,0x7d,0x29, 0x7d,0x7d,0x29,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6f,0x6e, 0x65,0x4f,0x66,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26, 0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x31,0x5d,0x3a,0x62,0x2e,0x6f,0x6e,0x65,0x4f,0x66,0x2c,0x6e,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x2e,0x5f,0x77,0x68,0x69,0x74, 0x65,0x6c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x65,0x29,0x2c,0x6e,0x2e,0x5f, 0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65, 0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c, 0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x3d,0x51,0x28,0x7b,0x6d,0x65,0x73,0x73, 0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6f,0x6e,0x65,0x4f, 0x66,0x22,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x73,0x63,0x68,0x65,0x6d,0x61,0x2e,0x5f,0x77,0x68, 0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2c,0x6e,0x3d,0x74,0x2e,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x41,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x6e,0x2e,0x69, 0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x65,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x7b,0x70,0x61, 0x72,0x61,0x6d,0x73,0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x74,0x2e,0x74, 0x6f,0x41,0x72,0x72,0x61,0x79,0x28,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c, 0x20,0x22,0x29,0x2c,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x64,0x3a,0x6e,0x7d,0x7d, 0x29,0x7d,0x7d,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6e, 0x6f,0x74,0x4f,0x6e,0x65,0x4f,0x66,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x62,0x2e,0x6e,0x6f,0x74,0x4f,0x6e,0x65, 0x4f,0x66,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x6e,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64, 0x28,0x65,0x29,0x2c,0x6e,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74, 0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x2e, 0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x45,0x72,0x72,0x6f,0x72,0x3d, 0x51,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d, 0x65,0x3a,0x22,0x6e,0x6f,0x74,0x4f,0x6e,0x65,0x4f,0x66,0x22,0x2c,0x74,0x65,0x73, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x73,0x63,0x68,0x65,0x6d,0x61,0x2e, 0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2c,0x6e,0x3d,0x74,0x2e,0x72, 0x65,0x73,0x6f,0x6c,0x76,0x65,0x41,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2e,0x72, 0x65,0x73,0x6f,0x6c,0x76,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x6e, 0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x65,0x29,0x7c,0x7c,0x74,0x68, 0x69,0x73,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x7b, 0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x74, 0x2e,0x74,0x6f,0x41,0x72,0x72,0x61,0x79,0x28,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28, 0x22,0x2c,0x20,0x22,0x29,0x2c,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x64,0x3a,0x6e, 0x7d,0x7d,0x29,0x7d,0x7d,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x73,0x74,0x72,0x69,0x70,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x21, 0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x7c,0x7c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x2e,0x73,0x70,0x65,0x63,0x2e,0x73,0x74,0x72,0x69,0x70,0x3d,0x65,0x2c,0x74, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x73,0x63,0x72,0x69,0x62, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63, 0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2c,0x74,0x3d,0x65,0x2e,0x73,0x70,0x65,0x63,0x2c, 0x6e,0x3d,0x74,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x6d,0x65,0x74,0x61,0x3a,0x74,0x2e,0x6d,0x65,0x74,0x61,0x2c,0x6c,0x61,0x62, 0x65,0x6c,0x3a,0x6e,0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2e,0x74,0x79,0x70,0x65, 0x2c,0x6f,0x6e,0x65,0x4f,0x66,0x3a,0x65,0x2e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c, 0x69,0x73,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x29,0x2c,0x6e, 0x6f,0x74,0x4f,0x6e,0x65,0x4f,0x66,0x3a,0x65,0x2e,0x5f,0x62,0x6c,0x61,0x63,0x6b, 0x6c,0x69,0x73,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x29,0x2c, 0x74,0x65,0x73,0x74,0x73,0x3a,0x65,0x2e,0x74,0x65,0x73,0x74,0x73,0x2e,0x6d,0x61, 0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x65,0x2e,0x4f,0x50,0x54, 0x49,0x4f,0x4e,0x53,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73, 0x3a,0x65,0x2e,0x4f,0x50,0x54,0x49,0x4f,0x4e,0x53,0x2e,0x70,0x61,0x72,0x61,0x6d, 0x73,0x7d,0x7d,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x66,0x69,0x6e,0x64,0x49,0x6e,0x64,0x65,0x78, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x3d,0x3d,0x65,0x2e, 0x6e,0x61,0x6d,0x65,0x7d,0x29,0x29,0x3d,0x3d,0x3d,0x74,0x7d,0x29,0x29,0x7d,0x7d, 0x7d,0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x3b,0x72,0x65,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x5f,0x5f,0x69,0x73,0x59,0x75,0x70,0x53,0x63,0x68, 0x65,0x6d,0x61,0x5f,0x5f,0x3d,0x21,0x30,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x6f,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x61,0x65,0x5b,0x69,0x65,0x5d,0x3b,0x72,0x65,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x5b,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x65,0x2c,0x22,0x41,0x74,0x22,0x29,0x5d,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3e,0x32,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3a,0x7b,0x7d,0x2c,0x6f,0x3d,0x4a,0x28,0x74,0x68, 0x69,0x73,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x29,0x2c,0x69,0x3d,0x6f,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x2c,0x61,0x3d,0x6f, 0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x50,0x61,0x74,0x68,0x2c,0x75,0x3d,0x6f,0x2e, 0x73,0x63,0x68,0x65,0x6d,0x61,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x5b, 0x65,0x5d,0x28,0x69,0x26,0x26,0x69,0x5b,0x61,0x5d,0x2c,0x6e,0x65,0x28,0x7b,0x7d, 0x2c,0x72,0x2c,0x7b,0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x69,0x2c,0x70,0x61,0x74, 0x68,0x3a,0x74,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x69,0x65,0x3d,0x30,0x2c,0x61,0x65, 0x3d,0x5b,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x22,0x76,0x61, 0x6c,0x69,0x64,0x61,0x74,0x65,0x53,0x79,0x6e,0x63,0x22,0x5d,0x3b,0x69,0x65,0x3c, 0x61,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x65,0x2b,0x2b,0x29,0x6f, 0x65,0x28,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x75,0x65,0x3d,0x30, 0x2c,0x63,0x65,0x3d,0x5b,0x22,0x65,0x71,0x75,0x61,0x6c,0x73,0x22,0x2c,0x22,0x69, 0x73,0x22,0x5d,0x3b,0x75,0x65,0x3c,0x63,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x75,0x65,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x65,0x3d,0x63,0x65, 0x5b,0x75,0x65,0x5d,0x3b,0x72,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x5b,0x6c,0x65,0x5d,0x3d,0x72,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x6f,0x6e,0x65,0x4f,0x66,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x73,0x65,0x3d,0x30,0x2c,0x66,0x65,0x3d,0x5b,0x22,0x6e,0x6f,0x74,0x22,0x2c, 0x22,0x6e,0x6f,0x70,0x65,0x22,0x5d,0x3b,0x73,0x65,0x3c,0x66,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x73,0x65,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x64, 0x65,0x3d,0x66,0x65,0x5b,0x73,0x65,0x5d,0x3b,0x72,0x65,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x5b,0x64,0x65,0x5d,0x3d,0x72,0x65,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x6e,0x6f,0x74,0x4f,0x6e,0x65,0x4f,0x66,0x7d, 0x72,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x61,0x6c,0x3d,0x72,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x6e,0x6f,0x74,0x52,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x3b,0x76, 0x61,0x72,0x20,0x70,0x65,0x3d,0x72,0x65,0x3b,0x70,0x65,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20,0x68,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x7d,0x3b,0x76,0x61,0x72,0x20,0x76,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x50,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x44,0x2e,0x61,0x29,0x28,0x6e, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c, 0x28,0x65,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x7b, 0x74,0x79,0x70,0x65,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x7d,0x29, 0x29,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x74,0x72,0x61, 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x54, 0x79,0x70,0x65,0x28,0x65,0x29,0x29,0x7b,0x69,0x66,0x28,0x2f,0x5e,0x28,0x74,0x72, 0x75,0x65,0x7c,0x31,0x29,0x24,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x53,0x74, 0x72,0x69,0x6e,0x67,0x28,0x65,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x30,0x3b,0x69,0x66,0x28,0x2f,0x5e,0x28,0x66,0x61,0x6c,0x73,0x65,0x7c,0x30,0x29, 0x24,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28, 0x65,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29, 0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x79,0x70,0x65,0x43, 0x68,0x65,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x42,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x26,0x26,0x28,0x65,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f, 0x66,0x28,0x29,0x29,0x2c,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x69,0x73,0x54,0x72,0x75,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x4f,0x2e,0x69,0x73,0x56,0x61,0x6c,0x75, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65, 0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x69,0x73,0x2d,0x76,0x61,0x6c,0x75,0x65,0x22,0x2c,0x65,0x78, 0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61,0x6d, 0x73,0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x22,0x74,0x72,0x75,0x65,0x22,0x7d, 0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x7c,0x7c, 0x21,0x30,0x3d,0x3d,0x3d,0x65,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x69,0x73,0x46,0x61,0x6c,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x4f,0x2e,0x69,0x73,0x56,0x61,0x6c, 0x75,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74, 0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x69,0x73,0x2d,0x76,0x61,0x6c,0x75,0x65,0x22,0x2c,0x65, 0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61, 0x6d,0x73,0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x22,0x66,0x61,0x6c,0x73,0x65, 0x22,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29, 0x7c,0x7c,0x21,0x31,0x3d,0x3d,0x3d,0x65,0x7d,0x7d,0x29,0x7d,0x7d,0x5d,0x29,0x2c, 0x6e,0x7d,0x28,0x72,0x65,0x29,0x3b,0x76,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20,0x67,0x65,0x3d,0x6e,0x28,0x31,0x37,0x29, 0x2c,0x6d,0x65,0x3d,0x2f,0x5e,0x28,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c, 0x64,0x7c,0x5b,0x21,0x23,0x5c,0x24,0x25,0x26,0x27,0x5c,0x2a,0x5c,0x2b,0x5c,0x2d, 0x5c,0x2f,0x3d,0x5c,0x3f,0x5c,0x5e,0x5f,0x60,0x7b,0x5c,0x7c,0x7d,0x7e,0x5d,0x7c, 0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75, 0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46, 0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x2b,0x28,0x5c,0x2e,0x28,0x5b, 0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x5b,0x21,0x23,0x5c,0x24,0x25,0x26,0x27, 0x5c,0x2a,0x5c,0x2b,0x5c,0x2d,0x5c,0x2f,0x3d,0x5c,0x3f,0x5c,0x5e,0x5f,0x60,0x7b, 0x5c,0x7c,0x7d,0x7e,0x5d,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75, 0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43, 0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29, 0x2b,0x29,0x2a,0x29,0x7c,0x28,0x28,0x5c,0x78,0x32,0x32,0x29,0x28,0x28,0x28,0x28, 0x5c,0x78,0x32,0x30,0x7c,0x5c,0x78,0x30,0x39,0x29,0x2a,0x28,0x5c,0x78,0x30,0x64, 0x5c,0x78,0x30,0x61,0x29,0x29,0x3f,0x28,0x5c,0x78,0x32,0x30,0x7c,0x5c,0x78,0x30, 0x39,0x29,0x2b,0x29,0x3f,0x28,0x28,0x5b,0x5c,0x78,0x30,0x31,0x2d,0x5c,0x78,0x30, 0x38,0x5c,0x78,0x30,0x62,0x5c,0x78,0x30,0x63,0x5c,0x78,0x30,0x65,0x2d,0x5c,0x78, 0x31,0x66,0x5c,0x78,0x37,0x66,0x5d,0x7c,0x5c,0x78,0x32,0x31,0x7c,0x5b,0x5c,0x78, 0x32,0x33,0x2d,0x5c,0x78,0x35,0x62,0x5d,0x7c,0x5b,0x5c,0x78,0x35,0x64,0x2d,0x5c, 0x78,0x37,0x65,0x5d,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44, 0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46, 0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x7c, 0x28,0x5c,0x5c,0x28,0x5b,0x5c,0x78,0x30,0x31,0x2d,0x5c,0x78,0x30,0x39,0x5c,0x78, 0x30,0x62,0x5c,0x78,0x30,0x63,0x5c,0x78,0x30,0x64,0x2d,0x5c,0x78,0x37,0x66,0x5d, 0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c, 0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44, 0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x29,0x29,0x29,0x2a,0x28, 0x28,0x28,0x5c,0x78,0x32,0x30,0x7c,0x5c,0x78,0x30,0x39,0x29,0x2a,0x28,0x5c,0x78, 0x30,0x64,0x5c,0x78,0x30,0x61,0x29,0x29,0x3f,0x28,0x5c,0x78,0x32,0x30,0x7c,0x5c, 0x78,0x30,0x39,0x29,0x2b,0x29,0x3f,0x28,0x5c,0x78,0x32,0x32,0x29,0x29,0x29,0x40, 0x28,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x5b,0x5c,0x75,0x30, 0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30, 0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75, 0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c, 0x64,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46, 0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46, 0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x28,0x5b,0x61,0x2d, 0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e,0x7c,0x5b, 0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46, 0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30, 0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x2a,0x28,0x5b,0x61,0x2d,0x7a,0x5d, 0x7c,0x5c,0x64,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37, 0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c, 0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x29,0x29, 0x5c,0x2e,0x29,0x2b,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5b,0x5c,0x75,0x30, 0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30, 0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75, 0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5b, 0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46, 0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30, 0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c, 0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e,0x7c,0x5b,0x5c,0x75,0x30, 0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30, 0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75, 0x46,0x46,0x45,0x46,0x5d,0x29,0x2a,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5b,0x5c, 0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39, 0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d, 0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x29,0x29,0x24,0x2f,0x69,0x2c,0x62,0x65, 0x3d,0x2f,0x5e,0x28,0x28,0x68,0x74,0x74,0x70,0x73,0x3f,0x7c,0x66,0x74,0x70,0x29, 0x3a,0x29,0x3f,0x5c,0x2f,0x5c,0x2f,0x28,0x28,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d, 0x7c,0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e,0x7c,0x5b,0x5c,0x75, 0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30, 0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c, 0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x25,0x5b,0x5c,0x64,0x61,0x2d,0x66, 0x5d,0x7b,0x32,0x7d,0x29,0x7c,0x5b,0x21,0x5c,0x24,0x26,0x27,0x5c,0x28,0x5c,0x29, 0x5c,0x2a,0x5c,0x2b,0x2c,0x3b,0x3d,0x5d,0x7c,0x3a,0x29,0x2a,0x40,0x29,0x3f,0x28, 0x28,0x28,0x5c,0x64,0x7c,0x5b,0x31,0x2d,0x39,0x5d,0x5c,0x64,0x7c,0x31,0x5c,0x64, 0x5c,0x64,0x7c,0x32,0x5b,0x30,0x2d,0x34,0x5d,0x5c,0x64,0x7c,0x32,0x35,0x5b,0x30, 0x2d,0x35,0x5d,0x29,0x5c,0x2e,0x28,0x5c,0x64,0x7c,0x5b,0x31,0x2d,0x39,0x5d,0x5c, 0x64,0x7c,0x31,0x5c,0x64,0x5c,0x64,0x7c,0x32,0x5b,0x30,0x2d,0x34,0x5d,0x5c,0x64, 0x7c,0x32,0x35,0x5b,0x30,0x2d,0x35,0x5d,0x29,0x5c,0x2e,0x28,0x5c,0x64,0x7c,0x5b, 0x31,0x2d,0x39,0x5d,0x5c,0x64,0x7c,0x31,0x5c,0x64,0x5c,0x64,0x7c,0x32,0x5b,0x30, 0x2d,0x34,0x5d,0x5c,0x64,0x7c,0x32,0x35,0x5b,0x30,0x2d,0x35,0x5d,0x29,0x5c,0x2e, 0x28,0x5c,0x64,0x7c,0x5b,0x31,0x2d,0x39,0x5d,0x5c,0x64,0x7c,0x31,0x5c,0x64,0x5c, 0x64,0x7c,0x32,0x5b,0x30,0x2d,0x34,0x5d,0x5c,0x64,0x7c,0x32,0x35,0x5b,0x30,0x2d, 0x35,0x5d,0x29,0x29,0x7c,0x28,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64, 0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c, 0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44, 0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x28,0x5b,0x61, 0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c, 0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44, 0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d, 0x29,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c, 0x5f,0x7c,0x7e,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37, 0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c, 0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x2a,0x28, 0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30, 0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75, 0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45, 0x46,0x5d,0x29,0x29,0x29,0x5c,0x2e,0x29,0x2b,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d, 0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c, 0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44, 0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x28,0x5b,0x61, 0x2d,0x7a,0x5d,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37, 0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c, 0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x28,0x5b, 0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e, 0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c, 0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44, 0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x2a,0x28,0x5b,0x61,0x2d, 0x7a,0x5d,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46, 0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75, 0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x29,0x29,0x5c, 0x2e,0x3f,0x29,0x28,0x3a,0x5c,0x64,0x2a,0x29,0x3f,0x29,0x28,0x5c,0x2f,0x28,0x28, 0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f, 0x7c,0x7e,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46, 0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75, 0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x25, 0x5b,0x5c,0x64,0x61,0x2d,0x66,0x5d,0x7b,0x32,0x7d,0x29,0x7c,0x5b,0x21,0x5c,0x24, 0x26,0x27,0x5c,0x28,0x5c,0x29,0x5c,0x2a,0x5c,0x2b,0x2c,0x3b,0x3d,0x5d,0x7c,0x3a, 0x7c,0x40,0x29,0x2b,0x28,0x5c,0x2f,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c, 0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e,0x7c,0x5b,0x5c,0x75,0x30,0x30, 0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d, 0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46, 0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x25,0x5b,0x5c,0x64,0x61,0x2d,0x66,0x5d,0x7b, 0x32,0x7d,0x29,0x7c,0x5b,0x21,0x5c,0x24,0x26,0x27,0x5c,0x28,0x5c,0x29,0x5c,0x2a, 0x5c,0x2b,0x2c,0x3b,0x3d,0x5d,0x7c,0x3a,0x7c,0x40,0x29,0x2a,0x29,0x2a,0x29,0x3f, 0x29,0x3f,0x28,0x5c,0x3f,0x28,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5c,0x64, 0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e,0x7c,0x5b,0x5c,0x75,0x30,0x30,0x41, 0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c, 0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46, 0x45,0x46,0x5d,0x29,0x7c,0x28,0x25,0x5b,0x5c,0x64,0x61,0x2d,0x66,0x5d,0x7b,0x32, 0x7d,0x29,0x7c,0x5b,0x21,0x5c,0x24,0x26,0x27,0x5c,0x28,0x5c,0x29,0x5c,0x2a,0x5c, 0x2b,0x2c,0x3b,0x3d,0x5d,0x7c,0x3a,0x7c,0x40,0x29,0x7c,0x5b,0x5c,0x75,0x45,0x30, 0x30,0x30,0x2d,0x5c,0x75,0x46,0x38,0x46,0x46,0x5d,0x7c,0x5c,0x2f,0x7c,0x5c,0x3f, 0x29,0x2a,0x29,0x3f,0x28,0x5c,0x23,0x28,0x28,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x7c, 0x5c,0x64,0x7c,0x2d,0x7c,0x5c,0x2e,0x7c,0x5f,0x7c,0x7e,0x7c,0x5b,0x5c,0x75,0x30, 0x30,0x41,0x30,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30, 0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75, 0x46,0x46,0x45,0x46,0x5d,0x29,0x7c,0x28,0x25,0x5b,0x5c,0x64,0x61,0x2d,0x66,0x5d, 0x7b,0x32,0x7d,0x29,0x7c,0x5b,0x21,0x5c,0x24,0x26,0x27,0x5c,0x28,0x5c,0x29,0x5c, 0x2a,0x5c,0x2b,0x2c,0x3b,0x3d,0x5d,0x7c,0x3a,0x7c,0x40,0x29,0x7c,0x5c,0x2f,0x7c, 0x5c,0x3f,0x29,0x2a,0x29,0x3f,0x24,0x2f,0x69,0x2c,0x79,0x65,0x3d,0x2f,0x5e,0x28, 0x3f,0x3a,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x5d,0x7b,0x38,0x7d,0x2d,0x5b,0x30, 0x2d,0x39,0x61,0x2d,0x66,0x5d,0x7b,0x34,0x7d,0x2d,0x5b,0x31,0x2d,0x35,0x5d,0x5b, 0x30,0x2d,0x39,0x61,0x2d,0x66,0x5d,0x7b,0x33,0x7d,0x2d,0x5b,0x38,0x39,0x61,0x62, 0x5d,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x5d,0x7b,0x33,0x7d,0x2d,0x5b,0x30,0x2d, 0x39,0x61,0x2d,0x66,0x5d,0x7b,0x31,0x32,0x7d,0x7c,0x30,0x30,0x30,0x30,0x30,0x30, 0x30,0x30,0x2d,0x30,0x30,0x30,0x30,0x2d,0x30,0x30,0x30,0x30,0x2d,0x30,0x30,0x30, 0x30,0x2d,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x29,0x24, 0x2f,0x69,0x2c,0x5f,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x7c,0x7c, 0x65,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x7d,0x2c,0x77,0x65, 0x3d,0x7b,0x7d,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x65,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x78,0x65,0x7d,0x76,0x61,0x72,0x20,0x78, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x50,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x44,0x2e,0x61,0x29, 0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e, 0x29,0x2c,0x28,0x65,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73, 0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x7d, 0x29,0x29,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x54, 0x79,0x70,0x65,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b, 0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79, 0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x65,0x2e,0x74,0x6f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x3f,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x28,0x29,0x3a,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d, 0x3d,0x77,0x65,0x3f,0x65,0x3a,0x74,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e, 0x61,0x29,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x79,0x70, 0x65,0x43,0x68,0x65,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x53,0x74, 0x72,0x69,0x6e,0x67,0x26,0x26,0x28,0x65,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x4f,0x66,0x28,0x29,0x29,0x2c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x69,0x73,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65, 0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x5f,0x69, 0x73,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x26,0x26,0x21,0x21, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73, 0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d, 0x65,0x3a,0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75, 0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65, 0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d, 0x69,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x31,0x5d,0x3a,0x79,0x2e,0x6d,0x69,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61, 0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x69,0x6e,0x22,0x2c, 0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72, 0x61,0x6d,0x73,0x3a,0x7b,0x6d,0x69,0x6e,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76, 0x65,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x6d,0x61,0x78,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26, 0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x31,0x5d,0x3a,0x79,0x2e,0x6d,0x61,0x78,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6e,0x61,0x6d,0x65, 0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65, 0x3a,0x21,0x30,0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x70,0x61, 0x72,0x61,0x6d,0x73,0x3a,0x7b,0x6d,0x61,0x78,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c, 0x76,0x65,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x21,0x31,0x3b,0x69,0x66,0x28,0x74,0x29, 0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e, 0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x45,0x6d,0x70,0x74,0x79,0x53,0x74,0x72,0x69, 0x6e,0x67,0x3b,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x69,0x26, 0x26,0x69,0x2c,0x6e,0x3d,0x74,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x72, 0x3d,0x74,0x2e,0x6e,0x61,0x6d,0x65,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x3d,0x74, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73, 0x74,0x28,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x72,0x7c,0x7c,0x22,0x6d,0x61,0x74,0x63, 0x68,0x65,0x73,0x22,0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x6e,0x7c,0x7c, 0x79,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73, 0x3a,0x7b,0x72,0x65,0x67,0x65,0x78,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x22,0x22,0x3d,0x3d,0x3d,0x74, 0x26,0x26,0x6f,0x7c,0x7c,0x2d,0x31,0x21,0x3d,0x3d,0x74,0x2e,0x73,0x65,0x61,0x72, 0x63,0x68,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x65,0x6d,0x61,0x69,0x6c,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e, 0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x30,0x5d,0x3a,0x79,0x2e,0x65,0x6d,0x61,0x69,0x6c,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65, 0x73,0x28,0x6d,0x65,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x65,0x6d,0x61,0x69, 0x6c,0x22,0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x65,0x78,0x63, 0x6c,0x75,0x64,0x65,0x45,0x6d,0x70,0x74,0x79,0x53,0x74,0x72,0x69,0x6e,0x67,0x3a, 0x21,0x30,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x75,0x72,0x6c, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a, 0x79,0x2e,0x75,0x72,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x28,0x62,0x65,0x2c,0x7b,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x75,0x72,0x6c,0x22,0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65, 0x3a,0x65,0x2c,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x45,0x6d,0x70,0x74,0x79,0x53, 0x74,0x72,0x69,0x6e,0x67,0x3a,0x21,0x30,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x75,0x75,0x69,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x79,0x2e,0x75,0x75,0x69,0x64,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65, 0x73,0x28,0x79,0x65,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x75,0x75,0x69,0x64, 0x22,0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x65,0x78,0x63,0x6c, 0x75,0x64,0x65,0x45,0x6d,0x70,0x74,0x79,0x53,0x74,0x72,0x69,0x6e,0x67,0x3a,0x21, 0x31,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x65,0x6e,0x73,0x75, 0x72,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x22,0x22,0x29,0x2e,0x74,0x72,0x61, 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x65,0x3f,0x22,0x22,0x3a,0x65,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x74,0x72,0x69,0x6d,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x79,0x2e,0x74,0x72,0x69,0x6d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65, 0x3f,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3a,0x65,0x7d,0x29,0x29,0x2e,0x74, 0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x74,0x72,0x69,0x6d,0x22,0x2c,0x74,0x65,0x73,0x74,0x3a, 0x5f,0x65,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6c,0x6f,0x77, 0x65,0x72,0x63,0x61,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e, 0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x30,0x5d,0x3a,0x79,0x2e,0x6c,0x6f,0x77,0x65,0x72,0x63,0x61,0x73, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65, 0x29,0x3f,0x65,0x3a,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73, 0x65,0x28,0x29,0x7d,0x29,0x29,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73, 0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x5f,0x63,0x61,0x73,0x65,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73, 0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68, 0x65,0x28,0x65,0x29,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x6f,0x4c,0x6f, 0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x75,0x70,0x70,0x65,0x72,0x63,0x61,0x73,0x65,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d, 0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x79,0x2e, 0x75,0x70,0x70,0x65,0x72,0x63,0x61,0x73,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x3f,0x65,0x3a,0x65,0x2e,0x74,0x6f, 0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x29,0x29,0x2e,0x74, 0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65,0x2c,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x5f,0x63,0x61,0x73,0x65, 0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x74, 0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x7c,0x7c,0x65,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28, 0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x72,0x65,0x29,0x3b, 0x4f,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x78,0x65,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x45,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x65,0x77,0x20,0x6a,0x65,0x7d,0x76,0x61,0x72,0x20,0x6a,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x50,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x44,0x2e,0x61,0x29,0x28,0x6e,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x65,0x3d, 0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x7d,0x29,0x29,0x2e,0x77,0x69, 0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69, 0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x7b, 0x69,0x66,0x28,0x22,0x22,0x3d,0x3d,0x3d,0x28,0x74,0x3d,0x74,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x73,0x2f,0x67,0x2c,0x22,0x22,0x29,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4e,0x61,0x4e,0x3b,0x74,0x3d,0x2b,0x74,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x54,0x79, 0x70,0x65,0x28,0x74,0x29,0x3f,0x74,0x3a,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f, 0x61,0x74,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29, 0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x79,0x70,0x65,0x43, 0x68,0x65,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x4e,0x75,0x6d,0x62, 0x65,0x72,0x26,0x26,0x28,0x65,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66, 0x28,0x29,0x29,0x2c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x21,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x21,0x3d, 0x2b,0x65,0x7d,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d, 0x69,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x31,0x5d,0x3a,0x5f,0x2e,0x6d,0x69,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61, 0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x69,0x6e,0x22,0x2c, 0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72, 0x61,0x6d,0x73,0x3a,0x7b,0x6d,0x69,0x6e,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x3e,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x65,0x29,0x7d,0x7d,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x5f,0x2e,0x6d, 0x61,0x78,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74, 0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73, 0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x6d, 0x61,0x78,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65, 0x28,0x74,0x29,0x7c,0x7c,0x74,0x3c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73, 0x6f,0x6c,0x76,0x65,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x6c,0x65,0x73,0x73,0x54,0x68,0x61,0x6e,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x5f,0x2e,0x6c,0x65, 0x73,0x73,0x54,0x68,0x61,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65, 0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x65,0x78, 0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61,0x6d, 0x73,0x3a,0x7b,0x6c,0x65,0x73,0x73,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x3c,0x74,0x68,0x69,0x73, 0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d,0x6f,0x72,0x65,0x54,0x68,0x61,0x6e,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a, 0x5f,0x2e,0x6d,0x6f,0x72,0x65,0x54,0x68,0x61,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73, 0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x69,0x6e, 0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70, 0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x6d,0x6f,0x72,0x65,0x3a,0x65,0x7d,0x2c,0x74, 0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x3e, 0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x65,0x29,0x7d, 0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x70,0x6f,0x73,0x69,0x74, 0x69,0x76,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x30,0x5d,0x3a,0x5f,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x72,0x65,0x54,0x68, 0x61,0x6e,0x28,0x30,0x2c,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x6e,0x65,0x67,0x61,0x74,0x69,0x76,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x5f,0x2e,0x6e,0x65,0x67,0x61,0x74,0x69, 0x76,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6c, 0x65,0x73,0x73,0x54,0x68,0x61,0x6e,0x28,0x30,0x2c,0x65,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x5f,0x2e,0x69,0x6e, 0x74,0x65,0x67,0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x69,0x6e, 0x74,0x65,0x67,0x65,0x72,0x22,0x2c,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x65, 0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x7c,0x7c, 0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x69,0x73,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, 0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74, 0x72,0x75,0x6e,0x63,0x61,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x3f,0x65,0x3a,0x30,0x7c,0x65,0x7d, 0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x6f,0x75,0x6e,0x64, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x5b,0x22,0x63,0x65, 0x69,0x6c,0x22,0x2c,0x22,0x66,0x6c,0x6f,0x6f,0x72,0x22,0x2c,0x22,0x72,0x6f,0x75, 0x6e,0x64,0x22,0x2c,0x22,0x74,0x72,0x75,0x6e,0x63,0x22,0x5d,0x3b,0x69,0x66,0x28, 0x22,0x74,0x72,0x75,0x6e,0x63,0x22,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x28,0x74,0x3d,0x65,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3a,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29, 0x29,0x7c,0x7c,0x22,0x72,0x6f,0x75,0x6e,0x64,0x22,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x75,0x6e,0x63,0x61,0x74,0x65, 0x28,0x29,0x3b,0x69,0x66,0x28,0x2d,0x31,0x3d,0x3d,0x3d,0x6e,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x4f,0x66,0x28,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61, 0x73,0x65,0x28,0x29,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20, 0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x4f,0x6e,0x6c,0x79,0x20, 0x76,0x61,0x6c,0x69,0x64,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x6f, 0x72,0x20,0x72,0x6f,0x75,0x6e,0x64,0x28,0x29,0x20,0x61,0x72,0x65,0x3a,0x20,0x22, 0x2b,0x6e,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c,0x20,0x22,0x29,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x3f,0x74, 0x3a,0x4d,0x61,0x74,0x68,0x5b,0x65,0x5d,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d, 0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x72,0x65,0x29,0x3b,0x45,0x65,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x6a,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20,0x6b,0x65,0x3d,0x2f,0x5e,0x28,0x5c,0x64, 0x7b,0x34,0x7d,0x7c,0x5b,0x2b,0x5c,0x2d,0x5d,0x5c,0x64,0x7b,0x36,0x7d,0x29,0x28, 0x3f,0x3a,0x2d,0x3f,0x28,0x5c,0x64,0x7b,0x32,0x7d,0x29,0x28,0x3f,0x3a,0x2d,0x3f, 0x28,0x5c,0x64,0x7b,0x32,0x7d,0x29,0x29,0x3f,0x29,0x3f,0x28,0x3f,0x3a,0x5b,0x20, 0x54,0x5d,0x3f,0x28,0x5c,0x64,0x7b,0x32,0x7d,0x29,0x3a,0x3f,0x28,0x5c,0x64,0x7b, 0x32,0x7d,0x29,0x28,0x3f,0x3a,0x3a,0x3f,0x28,0x5c,0x64,0x7b,0x32,0x7d,0x29,0x28, 0x3f,0x3a,0x5b,0x2c,0x5c,0x2e,0x5d,0x28,0x5c,0x64,0x7b,0x31,0x2c,0x7d,0x29,0x29, 0x3f,0x29,0x3f,0x28,0x3f,0x3a,0x28,0x5a,0x29,0x7c,0x28,0x5b,0x2b,0x5c,0x2d,0x5d, 0x29,0x28,0x5c,0x64,0x7b,0x32,0x7d,0x29,0x28,0x3f,0x3a,0x3a,0x3f,0x28,0x5c,0x64, 0x7b,0x32,0x7d,0x29,0x29,0x3f,0x29,0x3f,0x29,0x3f,0x24,0x2f,0x3b,0x76,0x61,0x72, 0x20,0x53,0x65,0x3d,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x22,0x22,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x65,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x41,0x65,0x7d,0x76,0x61,0x72, 0x20,0x41,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x50,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x44,0x2e, 0x61,0x29,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73, 0x2c,0x6e,0x29,0x2c,0x28,0x65,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68, 0x69,0x73,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x64,0x61,0x74,0x65,0x22,0x7d, 0x29,0x29,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x28,0x65,0x29,0x3f,0x65,0x3a,0x28,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x2c,0x6e,0x2c,0x72,0x3d,0x5b,0x31,0x2c,0x34,0x2c,0x35,0x2c,0x36,0x2c,0x37, 0x2c,0x31,0x30,0x2c,0x31,0x31,0x5d,0x2c,0x6f,0x3d,0x30,0x3b,0x69,0x66,0x28,0x6e, 0x3d,0x6b,0x65,0x2e,0x65,0x78,0x65,0x63,0x28,0x65,0x29,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x69,0x2c,0x61,0x3d,0x30,0x3b,0x69,0x3d,0x72,0x5b,0x61, 0x5d,0x3b,0x2b,0x2b,0x61,0x29,0x6e,0x5b,0x69,0x5d,0x3d,0x2b,0x6e,0x5b,0x69,0x5d, 0x7c,0x7c,0x30,0x3b,0x6e,0x5b,0x32,0x5d,0x3d,0x28,0x2b,0x6e,0x5b,0x32,0x5d,0x7c, 0x7c,0x31,0x29,0x2d,0x31,0x2c,0x6e,0x5b,0x33,0x5d,0x3d,0x2b,0x6e,0x5b,0x33,0x5d, 0x7c,0x7c,0x31,0x2c,0x6e,0x5b,0x37,0x5d,0x3d,0x6e,0x5b,0x37,0x5d,0x3f,0x53,0x74, 0x72,0x69,0x6e,0x67,0x28,0x6e,0x5b,0x37,0x5d,0x29,0x2e,0x73,0x75,0x62,0x73,0x74, 0x72,0x28,0x30,0x2c,0x33,0x29,0x3a,0x30,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x6e,0x5b,0x38,0x5d,0x26,0x26,0x22,0x22,0x21,0x3d,0x3d,0x6e,0x5b,0x38, 0x5d,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x5b,0x39,0x5d, 0x26,0x26,0x22,0x22,0x21,0x3d,0x3d,0x6e,0x5b,0x39,0x5d,0x3f,0x28,0x22,0x5a,0x22, 0x21,0x3d,0x3d,0x6e,0x5b,0x38,0x5d,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x6e,0x5b,0x39,0x5d,0x26,0x26,0x28,0x6f,0x3d,0x36,0x30,0x2a,0x6e,0x5b, 0x31,0x30,0x5d,0x2b,0x6e,0x5b,0x31,0x31,0x5d,0x2c,0x22,0x2b,0x22,0x3d,0x3d,0x3d, 0x6e,0x5b,0x39,0x5d,0x26,0x26,0x28,0x6f,0x3d,0x30,0x2d,0x6f,0x29,0x29,0x2c,0x74, 0x3d,0x44,0x61,0x74,0x65,0x2e,0x55,0x54,0x43,0x28,0x6e,0x5b,0x31,0x5d,0x2c,0x6e, 0x5b,0x32,0x5d,0x2c,0x6e,0x5b,0x33,0x5d,0x2c,0x6e,0x5b,0x34,0x5d,0x2c,0x6e,0x5b, 0x35,0x5d,0x2b,0x6f,0x2c,0x6e,0x5b,0x36,0x5d,0x2c,0x6e,0x5b,0x37,0x5d,0x29,0x29, 0x3a,0x74,0x3d,0x2b,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x6e,0x5b,0x31, 0x5d,0x2c,0x6e,0x5b,0x32,0x5d,0x2c,0x6e,0x5b,0x33,0x5d,0x2c,0x6e,0x5b,0x34,0x5d, 0x2c,0x6e,0x5b,0x35,0x5d,0x2c,0x6e,0x5b,0x36,0x5d,0x2c,0x6e,0x5b,0x37,0x5d,0x29, 0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x3d,0x44,0x61,0x74,0x65,0x2e,0x70,0x61,0x72, 0x73,0x65,0x3f,0x44,0x61,0x74,0x65,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x29, 0x3a,0x4e,0x61,0x4e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x28,0x65, 0x29,0x2c,0x69,0x73,0x4e,0x61,0x4e,0x28,0x65,0x29,0x3f,0x53,0x65,0x3a,0x6e,0x65, 0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29, 0x2c,0x65,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x75,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x74,0x79,0x70,0x65,0x43,0x68,0x65,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3d,0x65,0x2c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x44,0x61,0x74,0x65,0x5d,0x22,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x29,0x26,0x26,0x21,0x69,0x73, 0x4e,0x61,0x4e,0x28,0x65,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x70, 0x72,0x65,0x70,0x61,0x72,0x65,0x50,0x61,0x72,0x61,0x6d,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x69,0x66,0x28,0x4b,0x2e,0x69,0x73,0x52,0x65, 0x66,0x28,0x65,0x29,0x29,0x6e,0x3d,0x65,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x61,0x73,0x74,0x28,0x65,0x29, 0x3b,0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x79,0x70,0x65,0x43, 0x68,0x65,0x63,0x6b,0x28,0x72,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x60,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x60,0x20,0x6d,0x75,0x73,0x74, 0x20,0x62,0x65,0x20,0x61,0x20,0x44,0x61,0x74,0x65,0x20,0x6f,0x72,0x20,0x61,0x20, 0x76,0x61,0x6c,0x75,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x61,0x6e,0x20,0x62, 0x65,0x20,0x60,0x63,0x61,0x73,0x74,0x28,0x29,0x60,0x20,0x74,0x6f,0x20,0x61,0x20, 0x44,0x61,0x74,0x65,0x22,0x29,0x29,0x3b,0x6e,0x3d,0x72,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d,0x69,0x6e, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f, 0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d, 0x3a,0x77,0x2e,0x6d,0x69,0x6e,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72, 0x65,0x70,0x61,0x72,0x65,0x50,0x61,0x72,0x61,0x6d,0x28,0x65,0x2c,0x22,0x6d,0x69, 0x6e,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c, 0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x69,0x6e,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75, 0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b, 0x6d,0x69,0x6e,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68, 0x65,0x28,0x65,0x29,0x7c,0x7c,0x65,0x3e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65, 0x73,0x6f,0x6c,0x76,0x65,0x28,0x6e,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x77,0x2e,0x6d,0x61,0x78,0x2c,0x6e,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x70,0x61,0x72,0x65,0x50,0x61,0x72,0x61, 0x6d,0x28,0x65,0x2c,0x22,0x6d,0x61,0x78,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73, 0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x61,0x78, 0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70, 0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x6d,0x61,0x78,0x3a,0x65,0x7d,0x2c,0x74,0x65, 0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x7c,0x7c,0x65,0x3c,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x6e,0x29,0x7d, 0x7d,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x72,0x65,0x29,0x3b,0x41,0x65, 0x2e,0x49,0x4e,0x56,0x41,0x4c,0x49,0x44,0x5f,0x44,0x41,0x54,0x45,0x3d,0x53,0x65, 0x2c,0x43,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x41,0x65, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x43,0x65,0x2e,0x49,0x4e, 0x56,0x41,0x4c,0x49,0x44,0x5f,0x44,0x41,0x54,0x45,0x3d,0x53,0x65,0x3b,0x76,0x61, 0x72,0x20,0x54,0x65,0x3d,0x6e,0x28,0x31,0x30,0x36,0x29,0x2c,0x50,0x65,0x3d,0x6e, 0x2e,0x6e,0x28,0x54,0x65,0x29,0x2c,0x44,0x65,0x3d,0x6e,0x28,0x31,0x34,0x35,0x29, 0x2c,0x4e,0x65,0x3d,0x6e,0x2e,0x6e,0x28,0x44,0x65,0x29,0x2c,0x49,0x65,0x3d,0x6e, 0x28,0x31,0x34,0x36,0x29,0x2c,0x52,0x65,0x3d,0x6e,0x2e,0x6e,0x28,0x49,0x65,0x29, 0x2c,0x4c,0x65,0x3d,0x6e,0x28,0x31,0x34,0x37,0x29,0x2c,0x46,0x65,0x3d,0x6e,0x2e, 0x6e,0x28,0x4c,0x65,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d, 0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3a,0x5b,0x5d,0x2c,0x6e,0x3d,0x5b,0x5d,0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20, 0x53,0x65,0x74,0x2c,0x6f,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x74,0x2e, 0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x5a,0x2e, 0x61,0x29,0x28,0x65,0x2c,0x32,0x29,0x2c,0x6e,0x3d,0x74,0x5b,0x30,0x5d,0x2c,0x72, 0x3d,0x74,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x72,0x29,0x7d,0x29,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x56,0x2e,0x73,0x70,0x6c,0x69,0x74,0x29, 0x28,0x65,0x29,0x5b,0x30,0x5d,0x3b,0x72,0x2e,0x61,0x64,0x64,0x28,0x69,0x29,0x2c, 0x6f,0x2e,0x68,0x61,0x73,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x74,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x69,0x29, 0x29,0x7c,0x7c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x74,0x2c,0x69,0x5d,0x29, 0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x69,0x66,0x28,0x6b,0x28,0x29,0x28,0x65,0x2c,0x74,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x72,0x2e,0x61,0x64,0x64, 0x28,0x74,0x29,0x2c,0x4b,0x2e,0x69,0x73,0x52,0x65,0x66,0x28,0x6e,0x29,0x26,0x26, 0x6e,0x2e,0x69,0x73,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3f,0x69,0x28,0x6e,0x2e, 0x70,0x61,0x74,0x68,0x2c,0x74,0x29,0x3a,0x53,0x28,0x6e,0x29,0x26,0x26,0x22,0x64, 0x65,0x70,0x73,0x22,0x69,0x6e,0x20,0x6e,0x26,0x26,0x6e,0x2e,0x64,0x65,0x70,0x73, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x65, 0x2c,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x75,0x20,0x69,0x6e,0x20,0x65,0x29,0x61,0x28,0x75,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x46,0x65,0x2e,0x61,0x2e,0x61,0x72,0x72,0x61,0x79,0x28,0x41, 0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x29,0x2c,0x6e,0x29,0x2e, 0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x42,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x31,0x2f,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x6f, 0x6d,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3b,0x69,0x66,0x28,0x2d,0x31,0x21,0x3d,0x3d, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x6f,0x3d,0x74,0x2e,0x70,0x61,0x74,0x68, 0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6f,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x65,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d, 0x72,0x2c,0x21,0x30,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x7a,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x42,0x65,0x28,0x65,0x2c,0x74,0x29,0x2d,0x42,0x65,0x28, 0x65,0x2c,0x6e,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55, 0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x65,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26,0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d, 0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c, 0x55,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x76,0x61,0x72,0x20,0x57,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x5d,0x22,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x24,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x73,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29,0x2e,0x66,0x69,0x6c,0x74, 0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3d,0x3d,0x3d,0x6e,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x48, 0x65,0x3d,0x7a,0x65,0x28,0x5b,0x5d,0x29,0x2c,0x56,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x50, 0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x44,0x2e,0x61,0x29,0x28,0x6e,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x72,0x3d, 0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x7d,0x29,0x29,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x72,0x2e,0x5f,0x73,0x6f,0x72,0x74, 0x45,0x72,0x72,0x6f,0x72,0x73,0x3d,0x48,0x65,0x2c,0x72,0x2e,0x5f,0x6e,0x6f,0x64, 0x65,0x73,0x3d,0x5b,0x5d,0x2c,0x72,0x2e,0x5f,0x65,0x78,0x63,0x6c,0x75,0x64,0x65, 0x64,0x45,0x64,0x67,0x65,0x73,0x3d,0x5b,0x5d,0x2c,0x72,0x2e,0x77,0x69,0x74,0x68, 0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x29,0x74,0x72,0x79,0x7b,0x65,0x3d,0x4a,0x53,0x4f,0x4e,0x2e, 0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74, 0x29,0x7b,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x28,0x65,0x29,0x3f,0x65, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x29,0x2c,0x65,0x26,0x26,0x72,0x2e,0x73,0x68, 0x61,0x70,0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29,0x28,0x6e, 0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x79,0x70,0x65,0x43,0x68,0x65, 0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x65,0x28, 0x65,0x29,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x63,0x61,0x73,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6f,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f, 0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d, 0x3a,0x7b,0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e, 0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x5f,0x63,0x61, 0x73,0x74,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x68,0x69,0x73,0x2c,0x65,0x2c,0x6f,0x29,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x69,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b, 0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x79,0x70,0x65,0x43,0x68, 0x65,0x63,0x6b,0x28,0x69,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3b, 0x76,0x61,0x72,0x20,0x61,0x2c,0x75,0x3d,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x65, 0x6c,0x64,0x73,0x2c,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x74,0x3d,0x6f, 0x2e,0x73,0x74,0x72,0x69,0x70,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x29,0x3f,0x74, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x70,0x65,0x63,0x2e,0x6e,0x6f,0x55,0x6e,0x6b, 0x6e,0x6f,0x77,0x6e,0x2c,0x6c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6e,0x6f,0x64, 0x65,0x73,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x69,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x2d,0x31,0x3d,0x3d,0x3d,0x72,0x2e,0x5f,0x6e,0x6f,0x64,0x65,0x73, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x7d,0x29,0x29,0x29,0x2c, 0x73,0x3d,0x7b,0x7d,0x2c,0x66,0x3d,0x55,0x65,0x28,0x7b,0x7d,0x2c,0x6f,0x2c,0x7b, 0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x73,0x2c,0x5f,0x5f,0x76,0x61,0x6c,0x69,0x64, 0x61,0x74,0x69,0x6e,0x67,0x3a,0x6f,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x69,0x6e,0x67,0x7c,0x7c,0x21,0x31,0x7d,0x29,0x2c,0x64,0x3d,0x21,0x31,0x2c, 0x70,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x65,0x2e,0x61,0x29,0x28,0x6c, 0x29,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x70,0x2e,0x73,0x28,0x29,0x3b, 0x21,0x28,0x61,0x3d,0x70,0x2e,0x6e,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x68,0x3d,0x61,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c, 0x76,0x3d,0x75,0x5b,0x68,0x5d,0x2c,0x67,0x3d,0x6b,0x28,0x29,0x28,0x69,0x2c,0x68, 0x29,0x3b,0x69,0x66,0x28,0x76,0x29,0x7b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x2c,0x62,0x3d,0x69,0x5b,0x68,0x5d,0x3b,0x66,0x2e,0x70,0x61, 0x74,0x68,0x3d,0x28,0x6f,0x2e,0x70,0x61,0x74,0x68,0x3f,0x22,0x22,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x6f,0x2e,0x70,0x61,0x74,0x68,0x2c,0x22,0x2e,0x22,0x29, 0x3a,0x22,0x22,0x29,0x2b,0x68,0x3b,0x76,0x61,0x72,0x20,0x79,0x3d,0x22,0x73,0x70, 0x65,0x63,0x22,0x69,0x6e,0x28,0x76,0x3d,0x76,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76, 0x65,0x28,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x62,0x2c,0x63,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x3a,0x6f,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2c,0x70,0x61,0x72, 0x65,0x6e,0x74,0x3a,0x73,0x7d,0x29,0x29,0x3f,0x76,0x2e,0x73,0x70,0x65,0x63,0x3a, 0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x5f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x79, 0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x79,0x2e,0x73,0x74,0x72,0x69,0x63,0x74, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x79,0x3f,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3a,0x79,0x2e,0x73,0x74,0x72,0x69,0x70,0x29,0x7b,0x64,0x3d,0x64,0x7c, 0x7c,0x68,0x20,0x69,0x6e,0x20,0x69,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, 0x7d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x28,0x6d,0x3d,0x6f,0x2e,0x5f, 0x5f,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6e,0x67,0x26,0x26,0x5f,0x3f,0x69, 0x5b,0x68,0x5d,0x3a,0x76,0x2e,0x63,0x61,0x73,0x74,0x28,0x69,0x5b,0x68,0x5d,0x2c, 0x66,0x29,0x29,0x26,0x26,0x28,0x73,0x5b,0x68,0x5d,0x3d,0x6d,0x29,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x67,0x26,0x26,0x21,0x63,0x26,0x26,0x28,0x73,0x5b,0x68,0x5d,0x3d, 0x69,0x5b,0x68,0x5d,0x29,0x3b,0x73,0x5b,0x68,0x5d,0x21,0x3d,0x3d,0x69,0x5b,0x68, 0x5d,0x26,0x26,0x28,0x64,0x3d,0x21,0x30,0x29,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x77,0x29,0x7b,0x70,0x2e,0x65,0x28,0x77,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c, 0x6c,0x79,0x7b,0x70,0x2e,0x66,0x28,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x64,0x3f,0x73,0x3a,0x69,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x68,0x69,0x73,0x2c,0x72,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x7b, 0x7d,0x2c,0x6f,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3e,0x32,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x32,0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x3d,0x5b,0x5d,0x2c, 0x75,0x3d,0x72,0x2e,0x73,0x79,0x6e,0x63,0x2c,0x63,0x3d,0x72,0x2e,0x66,0x72,0x6f, 0x6d,0x2c,0x6c,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x5b, 0x5d,0x3a,0x63,0x2c,0x73,0x3d,0x72,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c, 0x56,0x61,0x6c,0x75,0x65,0x2c,0x66,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x73,0x3f,0x65,0x3a,0x73,0x2c,0x64,0x3d,0x72,0x2e,0x61,0x62,0x6f,0x72,0x74, 0x45,0x61,0x72,0x6c,0x79,0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x64,0x3f,0x74,0x68,0x69,0x73,0x2e,0x73,0x70,0x65,0x63,0x2e,0x61,0x62,0x6f, 0x72,0x74,0x45,0x61,0x72,0x6c,0x79,0x3a,0x64,0x2c,0x68,0x3d,0x72,0x2e,0x72,0x65, 0x63,0x75,0x72,0x73,0x69,0x76,0x65,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x68,0x3f,0x74,0x68,0x69,0x73,0x2e,0x73,0x70,0x65,0x63,0x2e,0x72, 0x65,0x63,0x75,0x72,0x73,0x69,0x76,0x65,0x3a,0x68,0x3b,0x6c,0x3d,0x5b,0x7b,0x73, 0x63,0x68,0x65,0x6d,0x61,0x3a,0x74,0x68,0x69,0x73,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x7d,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x6c,0x29,0x29,0x2c,0x72,0x2e,0x5f,0x5f, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6e,0x67,0x3d,0x21,0x30,0x2c,0x72,0x2e, 0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x3d,0x66,0x2c, 0x72,0x2e,0x66,0x72,0x6f,0x6d,0x3d,0x6c,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x67,0x65,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61, 0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22, 0x5f,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x2c,0x72,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x69,0x66, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x55,0x2e,0x69,0x73,0x45,0x72,0x72,0x6f, 0x72,0x28,0x65,0x29,0x7c,0x7c,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x6f,0x69,0x64,0x20,0x6f,0x28,0x65,0x2c,0x6e,0x29,0x3b,0x61,0x2e,0x70,0x75,0x73, 0x68,0x28,0x65,0x29,0x7d,0x69,0x66,0x28,0x76,0x26,0x26,0x57,0x65,0x28,0x6e,0x29, 0x29,0x7b,0x66,0x3d,0x66,0x7c,0x7c,0x6e,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74, 0x2e,0x5f,0x6e,0x6f,0x64,0x65,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x61, 0x72,0x20,0x61,0x3d,0x2d,0x31,0x3d,0x3d,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x22,0x2e,0x22,0x29,0x3f,0x28,0x72,0x2e,0x70,0x61,0x74,0x68,0x3f, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2e,0x70,0x61,0x74,0x68, 0x2c,0x22,0x2e,0x22,0x29,0x3a,0x22,0x22,0x29,0x2b,0x65,0x3a,0x22,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2e,0x70,0x61,0x74,0x68,0x7c,0x7c,0x22,0x22, 0x2c,0x27,0x5b,0x22,0x27,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c, 0x27,0x22,0x5d,0x27,0x29,0x2c,0x75,0x3d,0x74,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73, 0x5b,0x65,0x5d,0x3b,0x75,0x26,0x26,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65, 0x22,0x69,0x6e,0x20,0x75,0x3f,0x75,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65, 0x28,0x6e,0x5b,0x65,0x5d,0x2c,0x55,0x65,0x28,0x7b,0x7d,0x2c,0x72,0x2c,0x7b,0x70, 0x61,0x74,0x68,0x3a,0x61,0x2c,0x66,0x72,0x6f,0x6d,0x3a,0x6c,0x2c,0x73,0x74,0x72, 0x69,0x63,0x74,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x2c, 0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x3a,0x66,0x5b, 0x65,0x5d,0x7d,0x29,0x2c,0x69,0x29,0x3a,0x69,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x7d, 0x7d,0x29,0x29,0x3b,0x57,0x28,0x7b,0x73,0x79,0x6e,0x63,0x3a,0x75,0x2c,0x74,0x65, 0x73,0x74,0x73,0x3a,0x69,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e,0x2c,0x65,0x72, 0x72,0x6f,0x72,0x73,0x3a,0x61,0x2c,0x65,0x6e,0x64,0x45,0x61,0x72,0x6c,0x79,0x3a, 0x70,0x2c,0x73,0x6f,0x72,0x74,0x3a,0x74,0x2e,0x5f,0x73,0x6f,0x72,0x74,0x45,0x72, 0x72,0x6f,0x72,0x73,0x2c,0x70,0x61,0x74,0x68,0x3a,0x72,0x2e,0x70,0x61,0x74,0x68, 0x7d,0x2c,0x6f,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6f,0x28,0x61,0x5b,0x30,0x5d, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e,0x61,0x29, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x63,0x6c,0x6f,0x6e,0x65, 0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x73,0x3d,0x55,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x66,0x69,0x65,0x6c,0x64,0x73,0x29,0x2c,0x74,0x2e,0x5f,0x6e,0x6f,0x64,0x65,0x73, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6e,0x6f,0x64,0x65,0x73,0x2c,0x74,0x2e,0x5f, 0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x64,0x45,0x64,0x67,0x65,0x73,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x64,0x45,0x64,0x67,0x65, 0x73,0x2c,0x74,0x2e,0x5f,0x73,0x6f,0x72,0x74,0x45,0x72,0x72,0x6f,0x72,0x73,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x6f,0x72,0x74,0x45,0x72,0x72,0x6f,0x72,0x73, 0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e, 0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x2e,0x66,0x69,0x65,0x6c, 0x64,0x73,0x2c,0x69,0x3d,0x30,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x65, 0x6c,0x64,0x73,0x29,0x3b,0x69,0x3c,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x69,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x5a,0x2e,0x61,0x29,0x28,0x61,0x5b,0x69,0x5d,0x2c,0x32,0x29,0x2c,0x63, 0x3d,0x75,0x5b,0x30,0x5d,0x2c,0x6c,0x3d,0x75,0x5b,0x31,0x5d,0x2c,0x73,0x3d,0x6f, 0x5b,0x63,0x5d,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x73,0x3f,0x6f, 0x5b,0x63,0x5d,0x3d,0x6c,0x3a,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x6f,0x66,0x20,0x72,0x65,0x26,0x26,0x6c,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x6f,0x66,0x20,0x72,0x65,0x26,0x26,0x28,0x6f,0x5b,0x63,0x5d,0x3d,0x6c,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x73,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x2e,0x73,0x68,0x61,0x70,0x65,0x28,0x6f,0x2c,0x74,0x2e, 0x5f,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x64,0x45,0x64,0x67,0x65,0x73,0x29,0x7d, 0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67,0x65,0x74,0x44,0x65, 0x66,0x61,0x75,0x6c,0x74,0x46,0x72,0x6f,0x6d,0x53,0x68,0x61,0x70,0x65,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x7b,0x7d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6e,0x6f, 0x64,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65, 0x2e,0x66,0x69,0x65,0x6c,0x64,0x73,0x5b,0x6e,0x5d,0x3b,0x74,0x5b,0x6e,0x5d,0x3d, 0x22,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x69,0x6e,0x20,0x72,0x3f,0x72,0x2e, 0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x7d,0x29,0x29,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x69,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x70,0x65,0x63,0x3f,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x67,0x65,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e, 0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29, 0x2c,0x22,0x5f,0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x74, 0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x3a, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x6e,0x6f,0x64,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3f,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x46,0x72,0x6f,0x6d,0x53,0x68,0x61,0x70,0x65,0x28,0x29,0x3a,0x76,0x6f, 0x69,0x64,0x20,0x30,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68,0x61, 0x70,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x31,0x5d,0x3a,0x5b,0x5d,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f, 0x6e,0x65,0x28,0x29,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x6e,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73,0x2c,0x65,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73, 0x3d,0x72,0x2c,0x6e,0x2e,0x5f,0x73,0x6f,0x72,0x74,0x45,0x72,0x72,0x6f,0x72,0x73, 0x3d,0x7a,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28, 0x72,0x29,0x29,0x2c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x41, 0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x5b,0x30, 0x5d,0x29,0x7c,0x7c,0x28,0x74,0x3d,0x5b,0x74,0x5d,0x29,0x2c,0x6e,0x2e,0x5f,0x65, 0x78,0x63,0x6c,0x75,0x64,0x65,0x64,0x45,0x64,0x67,0x65,0x73,0x3d,0x5b,0x5d,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e, 0x61,0x29,0x28,0x6e,0x2e,0x5f,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x64,0x45,0x64, 0x67,0x65,0x73,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29, 0x28,0x74,0x29,0x29,0x29,0x2c,0x6e,0x2e,0x5f,0x6e,0x6f,0x64,0x65,0x73,0x3d,0x4d, 0x65,0x28,0x72,0x2c,0x6e,0x2e,0x5f,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x64,0x45, 0x64,0x67,0x65,0x73,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x70,0x69,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d, 0x7b,0x7d,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x65,0x2e,0x61, 0x29,0x28,0x65,0x29,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x72,0x2e,0x73, 0x28,0x29,0x3b,0x21,0x28,0x74,0x3d,0x72,0x2e,0x6e,0x28,0x29,0x29,0x2e,0x64,0x6f, 0x6e,0x65,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x3b,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73,0x5b,0x6f, 0x5d,0x26,0x26,0x28,0x6e,0x5b,0x6f,0x5d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x73,0x5b,0x6f,0x5d,0x29,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x69,0x29,0x7b,0x72,0x2e,0x65,0x28,0x69,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c, 0x79,0x7b,0x72,0x2e,0x66,0x28,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2e,0x77,0x69,0x74,0x68, 0x4d,0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66, 0x69,0x65,0x6c,0x64,0x73,0x3d,0x7b,0x7d,0x2c,0x65,0x2e,0x73,0x68,0x61,0x70,0x65, 0x28,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6f, 0x6d,0x69,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x73,0x3b,0x74,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73,0x3d,0x7b,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x65,0x65,0x2e,0x61,0x29,0x28,0x65,0x29,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72, 0x28,0x6f,0x2e,0x73,0x28,0x29,0x3b,0x21,0x28,0x72,0x3d,0x6f,0x2e,0x6e,0x28,0x29, 0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x72, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x6e,0x5b, 0x69,0x5d,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x61,0x29,0x7b,0x6f,0x2e,0x65, 0x28,0x61,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x6f,0x2e,0x66,0x28, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x77,0x69,0x74,0x68,0x4d, 0x75,0x74,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x73,0x68,0x61, 0x70,0x65,0x28,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x66,0x72,0x6f,0x6d,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x56,0x2e,0x67,0x65,0x74,0x74, 0x65,0x72,0x29,0x28,0x65,0x2c,0x21,0x30,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6f,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6b,0x28,0x29,0x28,0x6f,0x2c,0x65,0x29,0x26,0x26,0x28,0x69,0x3d,0x55,0x65,0x28, 0x7b,0x7d,0x2c,0x6f,0x29,0x2c,0x6e,0x7c,0x7c,0x64,0x65,0x6c,0x65,0x74,0x65,0x20, 0x69,0x5b,0x65,0x5d,0x2c,0x69,0x5b,0x74,0x5d,0x3d,0x72,0x28,0x6f,0x29,0x29,0x2c, 0x69,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6e,0x6f,0x55, 0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x21, 0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x7c,0x7c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x2c,0x74,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x31,0x5d,0x3a,0x78,0x2e,0x6e,0x6f,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x3b,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x26,0x26,0x28,0x74,0x3d,0x65,0x2c,0x65,0x3d,0x21,0x30,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b, 0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6e,0x6f,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22, 0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x6d,0x65, 0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x24,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x73,0x63,0x68,0x65,0x6d, 0x61,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x7c,0x7c,0x30, 0x3d,0x3d,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7c,0x7c,0x74,0x68,0x69, 0x73,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x7b,0x70, 0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x3a,0x6e, 0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c,0x20,0x22,0x29,0x7d,0x7d,0x29,0x7d,0x7d, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73,0x70,0x65,0x63,0x2e, 0x6e,0x6f,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x3d,0x65,0x2c,0x6e,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x21,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x29,0x7c,0x7c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d, 0x2c,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x78,0x2e,0x6e,0x6f,0x55,0x6e, 0x6b,0x6e,0x6f,0x77,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x6e,0x6f,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x28,0x21,0x65,0x2c,0x74, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x72,0x61,0x6e,0x73,0x66, 0x6f,0x72,0x6d,0x4b,0x65,0x79,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x52,0x65,0x28,0x29,0x28,0x74,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x61,0x6d,0x65,0x6c,0x43,0x61,0x73, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x4b,0x65,0x79,0x73,0x28,0x4e,0x65, 0x2e,0x61,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x6e,0x61,0x6b, 0x65,0x43,0x61,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x4b,0x65,0x79, 0x73,0x28,0x50,0x65,0x2e,0x61,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x63,0x6f,0x6e,0x73,0x74,0x61,0x6e,0x74,0x43,0x61,0x73,0x65,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x4b,0x65,0x79,0x73,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x65,0x28, 0x29,0x28,0x65,0x29,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65, 0x28,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65, 0x73,0x63,0x72,0x69,0x62,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x29,0x2c,0x22,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x22,0x2c, 0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73, 0x3d,0x48,0x28,0x29,0x28,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x65,0x6c,0x64,0x73, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x28, 0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x72,0x65, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x65,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x56,0x65,0x28,0x65, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x65,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31, 0x3b,0x74,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x6e,0x2c,0x72,0x29,0x26,0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72,0x5d, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x71,0x65,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x47,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x3d,0x56,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x76, 0x61,0x72,0x20,0x4b,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x50,0x2e,0x61,0x29,0x28,0x6e,0x2c, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x44,0x2e,0x61,0x29,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x74, 0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x72,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x74,0x68,0x69,0x73,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x61,0x72,0x72, 0x61,0x79,0x22,0x7d,0x29,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54, 0x79,0x70,0x65,0x3d,0x65,0x2c,0x72,0x2e,0x77,0x69,0x74,0x68,0x4d,0x75,0x74,0x61, 0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74, 0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x29,0x74,0x72,0x79,0x7b,0x65,0x3d,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73, 0x65,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x28,0x65,0x29,0x3f,0x65,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x5b, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x79,0x70,0x65,0x43,0x68,0x65,0x63,0x6b, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79, 0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x73,0x75,0x62,0x54,0x79,0x70,0x65,0x22,0x2c,0x67,0x65, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79, 0x70,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x63,0x61,0x73,0x74, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73, 0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e,0x61,0x29,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x5f,0x63,0x61,0x73,0x74,0x22, 0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73, 0x2c,0x65,0x2c,0x74,0x29,0x3b,0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x74,0x79,0x70,0x65,0x43,0x68,0x65,0x63,0x6b,0x28,0x6f,0x29,0x7c,0x7c,0x21,0x74, 0x68,0x69,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x21,0x31,0x2c, 0x61,0x3d,0x6f,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x2e,0x69, 0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x2e,0x63,0x61,0x73,0x74,0x28,0x65,0x2c, 0x71,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x70,0x61,0x74,0x68,0x3a,0x22,0x22, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2e,0x70,0x61,0x74,0x68,0x7c,0x7c, 0x22,0x22,0x2c,0x22,0x5b,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e, 0x2c,0x22,0x5d,0x22,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x69,0x3d,0x21,0x30,0x29,0x2c,0x6f,0x7d, 0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3f,0x61,0x3a,0x6f,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x76,0x61,0x6c,0x69,0x64,0x61,0x74, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x72,0x2c,0x6f,0x3d,0x74, 0x68,0x69,0x73,0x2c,0x69,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x7b,0x7d,0x2c, 0x61,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3e,0x32,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32, 0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x75,0x3d,0x5b,0x5d,0x2c,0x63,0x3d, 0x69,0x2e,0x73,0x79,0x6e,0x63,0x2c,0x6c,0x3d,0x69,0x2e,0x70,0x61,0x74,0x68,0x2c, 0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65, 0x2c,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x74,0x3d,0x69,0x2e,0x61,0x62, 0x6f,0x72,0x74,0x45,0x61,0x72,0x6c,0x79,0x29,0x3f,0x74,0x3a,0x74,0x68,0x69,0x73, 0x2e,0x73,0x70,0x65,0x63,0x2e,0x61,0x62,0x6f,0x72,0x74,0x45,0x61,0x72,0x6c,0x79, 0x2c,0x64,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x72,0x3d,0x69,0x2e,0x72,0x65, 0x63,0x75,0x72,0x73,0x69,0x76,0x65,0x29,0x3f,0x72,0x3a,0x74,0x68,0x69,0x73,0x2e, 0x73,0x70,0x65,0x63,0x2e,0x72,0x65,0x63,0x75,0x72,0x73,0x69,0x76,0x65,0x2c,0x70, 0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x69,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61, 0x6c,0x56,0x61,0x6c,0x75,0x65,0x3f,0x69,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61, 0x6c,0x56,0x61,0x6c,0x75,0x65,0x3a,0x65,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x67,0x65,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61, 0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22, 0x5f,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x2c,0x69,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x55,0x2e,0x69,0x73,0x45,0x72,0x72,0x6f, 0x72,0x28,0x65,0x29,0x7c,0x7c,0x66,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x6f,0x69,0x64,0x20,0x61,0x28,0x65,0x2c,0x74,0x29,0x3b,0x75,0x2e,0x70,0x75,0x73, 0x68,0x28,0x65,0x29,0x7d,0x69,0x66,0x28,0x64,0x26,0x26,0x73,0x26,0x26,0x6f,0x2e, 0x5f,0x74,0x79,0x70,0x65,0x43,0x68,0x65,0x63,0x6b,0x28,0x74,0x29,0x29,0x7b,0x70, 0x3d,0x70,0x7c,0x7c,0x74,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x5b,0x65,0x5d,0x2c,0x6f,0x3d,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x69,0x2e,0x70,0x61,0x74,0x68,0x7c, 0x7c,0x22,0x22,0x2c,0x22,0x5b,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x65,0x2c,0x22,0x5d,0x22,0x29,0x2c,0x61,0x3d,0x71,0x65,0x28,0x7b,0x7d,0x2c,0x69, 0x2c,0x7b,0x70,0x61,0x74,0x68,0x3a,0x6f,0x2c,0x73,0x74,0x72,0x69,0x63,0x74,0x3a, 0x21,0x30,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74,0x3a,0x74,0x2c,0x69,0x6e,0x64,0x65, 0x78,0x3a,0x65,0x2c,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75, 0x65,0x3a,0x70,0x5b,0x65,0x5d,0x7d,0x29,0x3b,0x6e,0x5b,0x65,0x5d,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x28,0x72,0x2c, 0x61,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x68,0x3d,0x30,0x3b,0x68,0x3c,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x68,0x2b,0x2b,0x29,0x72,0x28,0x68,0x29,0x3b,0x57, 0x28,0x7b,0x73,0x79,0x6e,0x63,0x3a,0x63,0x2c,0x70,0x61,0x74,0x68,0x3a,0x6c,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x74,0x2c,0x65,0x72,0x72,0x6f,0x72,0x73,0x3a,0x75, 0x2c,0x65,0x6e,0x64,0x45,0x61,0x72,0x6c,0x79,0x3a,0x66,0x2c,0x74,0x65,0x73,0x74, 0x73,0x3a,0x6e,0x7d,0x2c,0x61,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x61,0x28,0x75, 0x5b,0x30,0x5d,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x29,0x7d,0x29,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65, 0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x63,0x6c, 0x6f,0x6e,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x63,0x6f,0x6e,0x63,0x61,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e,0x61,0x29, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68, 0x69,0x73,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x69, 0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e, 0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x2c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54, 0x79,0x70,0x65,0x26,0x26,0x28,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70, 0x65,0x3d,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x3f,0x74,0x2e, 0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x29,0x3a,0x65,0x2e, 0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x29,0x2c,0x74,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x6f,0x66,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x69,0x66, 0x28,0x21,0x53,0x28,0x65,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x60,0x61,0x72,0x72, 0x61,0x79,0x2e,0x6f,0x66,0x28,0x29,0x60,0x20,0x73,0x75,0x62,0x2d,0x73,0x63,0x68, 0x65,0x6d,0x61,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x76,0x61, 0x6c,0x69,0x64,0x20,0x79,0x75,0x70,0x20,0x73,0x63,0x68,0x65,0x6d,0x61,0x20,0x6e, 0x6f,0x74,0x3a,0x20,0x22,0x2b,0x6d,0x28,0x65,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x3d,0x65, 0x2c,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3a,0x45,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73, 0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21, 0x30,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74, 0x29,0x7c,0x7c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x3d,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x65,0x29,0x7d,0x7d,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6d,0x69,0x6e,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x74,0x7c,0x7c,0x45,0x2e, 0x6d,0x69,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d, 0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d, 0x69,0x6e,0x22,0x2c,0x65,0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30, 0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x6d,0x69,0x6e,0x3a,0x65,0x7d,0x2c, 0x74,0x65,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65, 0x73,0x6f,0x6c,0x76,0x65,0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3d,0x74,0x7c,0x7c,0x45,0x2e,0x6d,0x61,0x78,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x74,0x65,0x73,0x74,0x28,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67, 0x65,0x3a,0x74,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x61,0x78,0x22,0x2c,0x65, 0x78,0x63,0x6c,0x75,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61, 0x6d,0x73,0x3a,0x7b,0x6d,0x61,0x78,0x3a,0x65,0x7d,0x2c,0x74,0x65,0x73,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x68,0x65,0x28,0x74,0x29,0x7c,0x7c,0x74,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65, 0x28,0x65,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x65, 0x6e,0x73,0x75,0x72,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68, 0x69,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x29,0x29,0x2e,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x5f,0x74,0x79,0x70,0x65,0x43,0x68,0x65,0x63,0x6b,0x28,0x74,0x29,0x3f,0x74, 0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x3f,0x5b,0x5d,0x3a,0x5b,0x5d,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x63,0x6f,0x6d,0x70,0x61,0x63,0x74,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x28, 0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7d,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x65,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65, 0x3f,0x65,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x74,0x29,0x3a,0x65,0x7d,0x29, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x73,0x63,0x72,0x69, 0x62,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x67,0x65,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e, 0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29, 0x2c,0x22,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x22,0x2c,0x74,0x68,0x69,0x73, 0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79, 0x70,0x65,0x26,0x26,0x28,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x54,0x79,0x70,0x65,0x2e, 0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x29,0x29,0x2c,0x65,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6e,0x75,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x21,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x30,0x5d,0x29,0x7c,0x7c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x67,0x65,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61, 0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22, 0x6e,0x75,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e, 0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x64,0x65,0x66, 0x69,0x6e,0x65,0x64,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72, 0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x65,0x2e,0x61,0x29,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x72,0x65,0x71,0x75,0x69,0x72,0x65, 0x64,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68, 0x69,0x73,0x2c,0x65,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x72,0x65,0x29, 0x3b,0x4b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22, 0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x73,0x65,0x74,0x50, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x7c,0x7c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x3d,0x74,0x2c,0x65, 0x7d,0x2c,0x72,0x28,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x28,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c, 0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x65,0x2c,0x72,0x28,0x65,0x2c,0x74,0x29, 0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x7d, 0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6d,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x63,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x53,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x64,0x22, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x67,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22, 0x65,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x6e,0x28,0x30,0x29,0x2c,0x61,0x3d,0x6e,0x2e,0x6e,0x28,0x69,0x29,0x2c,0x75, 0x3d,0x28,0x6e,0x28,0x32,0x30,0x29,0x2c,0x6e,0x28,0x32,0x39,0x29,0x29,0x2c,0x63, 0x3d,0x6e,0x28,0x31,0x34,0x30,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x32,0x34,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73, 0x69,0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x72,0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29, 0x26,0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x73,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x76,0x61,0x72,0x20,0x66,0x3d,0x6e,0x28,0x31,0x30,0x35,0x29,0x2c,0x64,0x3d,0x6e, 0x2e,0x6e,0x28,0x66,0x29,0x3b,0x6e,0x28,0x31,0x36,0x31,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f, 0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x7d,0x6e,0x28,0x35,0x32,0x29,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x61,0x29,0x28,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e, 0x61,0x6d,0x65,0x3d,0x65,0x2c,0x74,0x7d,0x2c,0x76,0x3d,0x68,0x28,0x22,0x52,0x6f, 0x75,0x74,0x65,0x72,0x2d,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x22,0x29,0x2c,0x67, 0x3d,0x68,0x28,0x22,0x52,0x6f,0x75,0x74,0x65,0x72,0x22,0x29,0x2c,0x6d,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x74,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x6e,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x68,0x69,0x73,0x2c,0x74,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e,0x73,0x74, 0x61,0x74,0x65,0x3d,0x7b,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2e, 0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e, 0x7d,0x2c,0x6e,0x2e,0x5f,0x69,0x73,0x4d,0x6f,0x75,0x6e,0x74,0x65,0x64,0x3d,0x21, 0x31,0x2c,0x6e,0x2e,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x6f,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x73,0x74,0x61,0x74, 0x69,0x63,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7c,0x7c,0x28,0x6e,0x2e,0x75,0x6e, 0x6c,0x69,0x73,0x74,0x65,0x6e,0x3d,0x74,0x2e,0x68,0x69,0x73,0x74,0x6f,0x72,0x79, 0x2e,0x6c,0x69,0x73,0x74,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x6e,0x2e,0x5f,0x69,0x73,0x4d,0x6f,0x75,0x6e,0x74,0x65, 0x64,0x3f,0x6e,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x6c,0x6f, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x65,0x7d,0x29,0x3a,0x6e,0x2e,0x5f,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3d,0x65,0x7d, 0x29,0x29,0x29,0x2c,0x6e,0x7d,0x6f,0x28,0x74,0x2c,0x65,0x29,0x2c,0x74,0x2e,0x63, 0x6f,0x6d,0x70,0x75,0x74,0x65,0x52,0x6f,0x6f,0x74,0x4d,0x61,0x74,0x63,0x68,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x70,0x61,0x74,0x68,0x3a,0x22,0x2f,0x22,0x2c,0x75,0x72,0x6c,0x3a, 0x22,0x2f,0x22,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x7b,0x7d,0x2c,0x69,0x73, 0x45,0x78,0x61,0x63,0x74,0x3a,0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x65,0x7d,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x4d,0x6f,0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73, 0x4d,0x6f,0x75,0x6e,0x74,0x65,0x64,0x3d,0x21,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e, 0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28, 0x7b,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x7d, 0x29,0x7d,0x2c,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69, 0x6c,0x6c,0x55,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x75,0x6e,0x6c,0x69,0x73,0x74, 0x65,0x6e,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x75,0x6e,0x6c,0x69,0x73,0x74, 0x65,0x6e,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x4d,0x6f,0x75, 0x6e,0x74,0x65,0x64,0x3d,0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x7d,0x2c,0x6e,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x61,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x67,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x7b,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x74,0x68,0x69, 0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2c, 0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x74, 0x61,0x74,0x65,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6d,0x61,0x74, 0x63,0x68,0x3a,0x74,0x2e,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x52,0x6f,0x6f,0x74, 0x4d,0x61,0x74,0x63,0x68,0x28,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65, 0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61, 0x6d,0x65,0x29,0x2c,0x73,0x74,0x61,0x74,0x69,0x63,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x73,0x74,0x61, 0x74,0x69,0x63,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x7d,0x2c,0x61,0x2e,0x61, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x76, 0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x68, 0x69,0x73,0x74,0x6f,0x72,0x79,0x7d,0x29,0x29,0x7d,0x2c,0x74,0x7d,0x28,0x61,0x2e, 0x61,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b,0x61,0x2e,0x61, 0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3b,0x61,0x2e,0x61,0x2e,0x43, 0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3b,0x76,0x61,0x72,0x20,0x62,0x3d,0x7b, 0x7d,0x2c,0x79,0x3d,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x26,0x26,0x28,0x74,0x3d,0x7b,0x7d,0x29,0x2c,0x28,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x41, 0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x29,0x29, 0x26,0x26,0x28,0x74,0x3d,0x7b,0x70,0x61,0x74,0x68,0x3a,0x74,0x7d,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x2c,0x72,0x3d,0x6e,0x2e,0x70,0x61,0x74,0x68,0x2c, 0x6f,0x3d,0x6e,0x2e,0x65,0x78,0x61,0x63,0x74,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x6f,0x26,0x26,0x6f,0x2c,0x61,0x3d,0x6e,0x2e,0x73,0x74, 0x72,0x69,0x63,0x74,0x2c,0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x61,0x26,0x26,0x61,0x2c,0x63,0x3d,0x6e,0x2e,0x73,0x65,0x6e,0x73,0x69,0x74,0x69, 0x76,0x65,0x2c,0x6c,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x63,0x26, 0x26,0x63,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x72,0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x21, 0x6e,0x26,0x26,0x22,0x22,0x21,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x74,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22,0x22, 0x2b,0x74,0x2e,0x65,0x6e,0x64,0x2b,0x74,0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x2b, 0x74,0x2e,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x2c,0x72,0x3d,0x62,0x5b, 0x6e,0x5d,0x7c,0x7c,0x28,0x62,0x5b,0x6e,0x5d,0x3d,0x7b,0x7d,0x29,0x3b,0x69,0x66, 0x28,0x72,0x5b,0x65,0x5d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x5b,0x65, 0x5d,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x5b,0x5d,0x2c,0x69,0x3d,0x7b,0x72,0x65, 0x67,0x65,0x78,0x70,0x3a,0x64,0x28,0x29,0x28,0x65,0x2c,0x6f,0x2c,0x74,0x29,0x2c, 0x6b,0x65,0x79,0x73,0x3a,0x6f,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x79, 0x3c,0x31,0x65,0x34,0x26,0x26,0x28,0x72,0x5b,0x65,0x5d,0x3d,0x69,0x2c,0x79,0x2b, 0x2b,0x29,0x2c,0x69,0x7d,0x28,0x6e,0x2c,0x7b,0x65,0x6e,0x64,0x3a,0x69,0x2c,0x73, 0x74,0x72,0x69,0x63,0x74,0x3a,0x75,0x2c,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76, 0x65,0x3a,0x6c,0x7d,0x29,0x2c,0x6f,0x3d,0x72,0x2e,0x72,0x65,0x67,0x65,0x78,0x70, 0x2c,0x61,0x3d,0x72,0x2e,0x6b,0x65,0x79,0x73,0x2c,0x63,0x3d,0x6f,0x2e,0x65,0x78, 0x65,0x63,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x21,0x63,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x63,0x5b, 0x30,0x5d,0x2c,0x66,0x3d,0x63,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29,0x2c, 0x70,0x3d,0x65,0x3d,0x3d,0x3d,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69, 0x26,0x26,0x21,0x70,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x7b,0x70,0x61,0x74,0x68,0x3a, 0x6e,0x2c,0x75,0x72,0x6c,0x3a,0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x22, 0x22,0x3d,0x3d,0x3d,0x73,0x3f,0x22,0x2f,0x22,0x3a,0x73,0x2c,0x69,0x73,0x45,0x78, 0x61,0x63,0x74,0x3a,0x70,0x2c,0x70,0x61,0x72,0x61,0x6d,0x73,0x3a,0x61,0x2e,0x72, 0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b, 0x74,0x2e,0x6e,0x61,0x6d,0x65,0x5d,0x3d,0x66,0x5b,0x6e,0x5d,0x2c,0x65,0x7d,0x29, 0x2c,0x7b,0x7d,0x29,0x7d,0x7d,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x76,0x61, 0x72,0x20,0x77,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73, 0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7c,0x7c,0x74,0x68,0x69, 0x73,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x74,0x2c,0x65,0x29,0x2c, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x6e,0x64, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x61,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x67,0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x2c,0x6e,0x75,0x6c, 0x6c,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x74, 0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x21,0x31, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e, 0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x7c,0x7c,0x74,0x2e,0x6c,0x6f,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x73,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x6c, 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x6d,0x61,0x74,0x63,0x68,0x3a, 0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64, 0x4d,0x61,0x74,0x63,0x68,0x3f,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x6f, 0x6d,0x70,0x75,0x74,0x65,0x64,0x4d,0x61,0x74,0x63,0x68,0x3a,0x65,0x2e,0x70,0x72, 0x6f,0x70,0x73,0x2e,0x70,0x61,0x74,0x68,0x3f,0x5f,0x28,0x6e,0x2e,0x70,0x61,0x74, 0x68,0x6e,0x61,0x6d,0x65,0x2c,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x29,0x3a,0x74, 0x2e,0x6d,0x61,0x74,0x63,0x68,0x7d,0x29,0x2c,0x6f,0x3d,0x65,0x2e,0x70,0x72,0x6f, 0x70,0x73,0x2c,0x69,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c, 0x75,0x3d,0x6f,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x2c,0x63,0x3d, 0x6f,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x69,0x29, 0x26,0x26,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x2e,0x61,0x2e,0x43,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x28,0x65,0x29,0x7d,0x28, 0x69,0x29,0x26,0x26,0x28,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x61,0x2e,0x61, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x67, 0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x72,0x7d,0x2c,0x72,0x2e,0x6d,0x61,0x74,0x63,0x68,0x3f,0x69,0x3f,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x69,0x3f,0x69,0x28,0x72,0x29,0x3a,0x69,0x3a,0x75,0x3f,0x61,0x2e,0x61, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x75, 0x2c,0x72,0x29,0x3a,0x63,0x3f,0x63,0x28,0x72,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3a, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x69,0x3f,0x69,0x28,0x72,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x29, 0x7d,0x29,0x29,0x7d,0x2c,0x74,0x7d,0x28,0x61,0x2e,0x61,0x2e,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x4f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2f,0x22,0x3d,0x3d, 0x3d,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x3f,0x65,0x3a,0x22, 0x2f,0x22,0x2b,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x70,0x61,0x74,0x68, 0x6e,0x61,0x6d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3f, 0x74,0x3a,0x73,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x70,0x61,0x74,0x68,0x6e,0x61, 0x6d,0x65,0x3a,0x74,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x73,0x75, 0x62,0x73,0x74,0x72,0x28,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7d,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x75,0x2e,0x65,0x29,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6a,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6c,0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6b,0x28,0x29,0x7b,0x7d,0x61,0x2e,0x61,0x2e,0x43,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3b,0x76,0x61,0x72,0x20,0x53,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x74,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x28,0x74,0x2c,0x65,0x29,0x2c,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69, 0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x61,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x67,0x2e,0x43,0x6f,0x6e, 0x73,0x75,0x6d,0x65,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x74,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x2c,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6c,0x6f,0x63, 0x61,0x74,0x69,0x6f,0x6e,0x7c,0x7c,0x74,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f, 0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x61,0x2e,0x43,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x65,0x2e, 0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x72,0x26,0x26,0x61,0x2e,0x61,0x2e,0x69,0x73,0x56,0x61, 0x6c,0x69,0x64,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x65,0x29,0x29,0x7b,0x6e, 0x3d,0x65,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x70,0x61,0x74,0x68,0x7c,0x7c,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x66, 0x72,0x6f,0x6d,0x3b,0x72,0x3d,0x69,0x3f,0x5f,0x28,0x6f,0x2e,0x70,0x61,0x74,0x68, 0x6e,0x61,0x6d,0x65,0x2c,0x73,0x28,0x7b,0x7d,0x2c,0x65,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2c,0x7b,0x70,0x61,0x74,0x68,0x3a,0x69,0x7d,0x29,0x29,0x3a,0x74,0x2e,0x6d, 0x61,0x74,0x63,0x68,0x7d,0x7d,0x29,0x29,0x2c,0x72,0x3f,0x61,0x2e,0x61,0x2e,0x63, 0x6c,0x6f,0x6e,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x6e,0x2c,0x7b,0x6c, 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c,0x63,0x6f,0x6d,0x70,0x75,0x74, 0x65,0x64,0x4d,0x61,0x74,0x63,0x68,0x3a,0x72,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x29,0x29,0x7d,0x2c,0x74,0x7d,0x28,0x61,0x2e,0x61,0x2e,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b,0x61,0x2e,0x61,0x2e,0x75,0x73,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x69,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29, 0x2c,0x6f,0x3d,0x6e,0x28,0x33,0x38,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x69,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x5d,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73, 0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c, 0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x31,0x32,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x26, 0x26,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x3f,0x52,0x65,0x66, 0x6c,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x3b,0x21,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74,0x29,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x61,0x29,0x28,0x65,0x29,0x29,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7d,0x28,0x65,0x2c,0x74,0x29,0x3b,0x69,0x66,0x28,0x6f,0x29,0x7b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x28,0x6f,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x69,0x2e,0x67,0x65,0x74,0x3f,0x69,0x2e,0x67,0x65,0x74,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x6e,0x29,0x3a,0x69,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x7d,0x2c,0x6f, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x7c,0x7c,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73, 0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x38,0x39,0x29,0x2c,0x6f,0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x65,0x6c,0x66,0x26,0x26,0x73, 0x65,0x6c,0x66,0x26,0x26,0x73,0x65,0x6c,0x66,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x26,0x26,0x73,0x65,0x6c,0x66,0x2c, 0x69,0x3d,0x72,0x2e,0x61,0x7c,0x7c,0x6f,0x7c,0x7c,0x46,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x22, 0x29,0x28,0x29,0x3b,0x74,0x2e,0x61,0x3d,0x69,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61, 0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x36,0x37,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x28,0x35,0x39, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72, 0x72,0x61,0x79,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x65,0x29,0x7d,0x28,0x65,0x29, 0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79, 0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x20,0x69,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x65,0x29,0x7d, 0x28,0x65,0x29,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29, 0x28,0x65,0x29,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72, 0x72,0x6f,0x72,0x28,0x22,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x61,0x74,0x74, 0x65,0x6d,0x70,0x74,0x20,0x74,0x6f,0x20,0x73,0x70,0x72,0x65,0x61,0x64,0x20,0x6e, 0x6f,0x6e,0x2d,0x69,0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x2e,0x5c,0x6e,0x49,0x6e,0x20,0x6f,0x72,0x64,0x65,0x72,0x20, 0x74,0x6f,0x20,0x62,0x65,0x20,0x69,0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x2c,0x20, 0x6e,0x6f,0x6e,0x2d,0x61,0x72,0x72,0x61,0x79,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x73,0x20,0x6d,0x75,0x73,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x5b,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x28, 0x29,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x22,0x29,0x7d,0x28,0x29,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x28,0x31,0x35,0x35, 0x29,0x28,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69, 0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f, 0x3d,0x72,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x65,0x3f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x29,0x3a, 0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x74,0x2e,0x61,0x3d,0x6f,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64, 0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x74,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f, 0x72,0x28,0x22,0x53,0x75,0x70,0x65,0x72,0x20,0x65,0x78,0x70,0x72,0x65,0x73,0x73, 0x69,0x6f,0x6e,0x20,0x6d,0x75,0x73,0x74,0x20,0x65,0x69,0x74,0x68,0x65,0x72,0x20, 0x62,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x6f,0x72,0x20,0x61,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x29,0x3b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61,0x74, 0x65,0x28,0x74,0x26,0x26,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2c,0x7b,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3a,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x65,0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a, 0x21,0x30,0x2c,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a, 0x21,0x30,0x7d,0x7d,0x29,0x2c,0x74,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22, 0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x31,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x38,0x33,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x69,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x26,0x26,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61, 0x74,0x6f,0x72,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f, 0x6c,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x3d,0x3d,0x3d,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x65,0x21,0x3d,0x3d,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3f, 0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3a,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x7d,0x2c,0x69,0x28,0x65,0x29,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x28, 0x38,0x34,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x74,0x7c,0x7c,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x69,0x28,0x74,0x29,0x26,0x26,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x74,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29, 0x28,0x65,0x29,0x3a,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6f,0x2e,0x61,0x29,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c, 0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x65,0x29, 0x3b,0x69,0x66,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x74,0x68,0x69,0x73,0x29,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x6e,0x3d,0x52,0x65,0x66, 0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x28,0x6f, 0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x69,0x29,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x6e,0x3d,0x6f,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69, 0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x75,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x7d,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x49,0x6e,0x76,0x61,0x72,0x69,0x61,0x6e,0x74, 0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x72, 0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x7d, 0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x77,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x35,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x7c, 0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f, 0x5f,0x3d,0x74,0x2c,0x65,0x7d,0x2c,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x29,0x2c,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x65,0x2c,0x6f, 0x28,0x65,0x2c,0x74,0x29,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x28,0x30,0x29, 0x2c,0x75,0x3d,0x6e,0x2e,0x6e,0x28,0x61,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x32,0x39, 0x29,0x3b,0x6e,0x28,0x32,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6c,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x7c,0x7c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x6e,0x29,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26,0x26,0x28,0x65,0x5b,0x72,0x5d,0x3d, 0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c, 0x6c,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x73,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d, 0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b, 0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f, 0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f,0x5b,0x6e,0x5d,0x3d,0x65, 0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x76,0x61, 0x72,0x20,0x66,0x3d,0x6e,0x28,0x32,0x34,0x29,0x2c,0x64,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x74,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x6e,0x29, 0x2c,0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x6e,0x3b,0x6f,0x2b,0x2b,0x29,0x72,0x5b,0x6f, 0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6f,0x5d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x65,0x2c,0x5b,0x74,0x68,0x69,0x73,0x5d,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x72,0x29,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e, 0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63, 0x2e,0x61,0x29,0x28,0x74,0x2e,0x70,0x72,0x6f,0x70,0x73,0x29,0x2c,0x74,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x74,0x2c,0x65,0x29,0x2c,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x75,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x72,0x2e,0x62,0x2c,0x7b,0x68,0x69,0x73,0x74,0x6f,0x72,0x79, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x7d,0x29,0x7d,0x2c,0x74,0x7d, 0x28,0x75,0x2e,0x61,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b, 0x75,0x2e,0x61,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3b,0x76,0x61, 0x72,0x20,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x28, 0x74,0x29,0x3a,0x65,0x7d,0x2c,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x63,0x29,0x28,0x65,0x2c,0x6e,0x75, 0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x29,0x3a,0x65,0x7d,0x2c,0x76,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x7d,0x2c,0x67,0x3d,0x75,0x2e,0x61,0x2e,0x66,0x6f,0x72,0x77, 0x61,0x72,0x64,0x52,0x65,0x66,0x3b,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x67,0x26,0x26,0x28, 0x67,0x3d,0x76,0x29,0x3b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x67,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x2c,0x72,0x3d,0x65, 0x2e,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x6f,0x6e, 0x43,0x6c,0x69,0x63,0x6b,0x2c,0x69,0x3d,0x73,0x28,0x65,0x2c,0x5b,0x22,0x69,0x6e, 0x6e,0x65,0x72,0x52,0x65,0x66,0x22,0x2c,0x22,0x6e,0x61,0x76,0x69,0x67,0x61,0x74, 0x65,0x22,0x2c,0x22,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x22,0x5d,0x29,0x2c,0x61, 0x3d,0x69,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c,0x63,0x3d,0x6c,0x28,0x7b,0x7d, 0x2c,0x69,0x2c,0x7b,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x72,0x79,0x7b,0x6f,0x26,0x26,0x6f, 0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x74,0x68,0x72, 0x6f,0x77,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61, 0x75,0x6c,0x74,0x28,0x29,0x2c,0x74,0x7d,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x30,0x21,0x3d,0x3d, 0x65,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x7c,0x7c,0x61,0x26,0x26,0x22,0x5f,0x73, 0x65,0x6c,0x66,0x22,0x21,0x3d,0x3d,0x61,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x28,0x65, 0x2e,0x6d,0x65,0x74,0x61,0x4b,0x65,0x79,0x7c,0x7c,0x65,0x2e,0x61,0x6c,0x74,0x4b, 0x65,0x79,0x7c,0x7c,0x65,0x2e,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x7c,0x7c,0x65, 0x2e,0x73,0x68,0x69,0x66,0x74,0x4b,0x65,0x79,0x29,0x7d,0x28,0x65,0x29,0x7c,0x7c, 0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c, 0x74,0x28,0x29,0x2c,0x72,0x28,0x29,0x29,0x7d,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x63,0x2e,0x72,0x65,0x66,0x3d,0x76,0x21,0x3d,0x3d,0x67,0x26,0x26, 0x74,0x7c,0x7c,0x6e,0x2c,0x75,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x22,0x61,0x22,0x2c,0x63,0x29,0x7d,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x62,0x3d,0x67,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x6d,0x3a,0x6e,0x2c,0x69,0x3d,0x65,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x2c,0x61,0x3d,0x65,0x2e,0x74,0x6f,0x2c,0x64,0x3d, 0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x2c,0x62,0x3d,0x73,0x28,0x65, 0x2c,0x5b,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x22,0x2c,0x22,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x22,0x2c,0x22,0x74,0x6f,0x22,0x2c,0x22,0x69,0x6e, 0x6e,0x65,0x72,0x52,0x65,0x66,0x22,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x75,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x28,0x72,0x2e,0x64,0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x2c, 0x6e,0x75,0x6c,0x6c,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x65,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29, 0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x68,0x69,0x73, 0x74,0x6f,0x72,0x79,0x2c,0x72,0x3d,0x68,0x28,0x70,0x28,0x61,0x2c,0x65,0x2e,0x6c, 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x65,0x2e,0x6c,0x6f,0x63,0x61,0x74, 0x69,0x6f,0x6e,0x29,0x2c,0x73,0x3d,0x72,0x3f,0x6e,0x2e,0x63,0x72,0x65,0x61,0x74, 0x65,0x48,0x72,0x65,0x66,0x28,0x72,0x29,0x3a,0x22,0x22,0x2c,0x6d,0x3d,0x6c,0x28, 0x7b,0x7d,0x2c,0x62,0x2c,0x7b,0x68,0x72,0x65,0x66,0x3a,0x73,0x2c,0x6e,0x61,0x76, 0x69,0x67,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x70,0x28,0x61,0x2c,0x65,0x2e,0x6c,0x6f,0x63, 0x61,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x63,0x2e,0x65,0x29,0x28,0x65,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29, 0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x65,0x29,0x28,0x68, 0x28,0x74,0x29,0x29,0x3b,0x28,0x69,0x7c,0x7c,0x72,0x3f,0x6e,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x3a,0x6e,0x2e,0x70,0x75,0x73,0x68,0x29,0x28,0x74,0x29,0x7d, 0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x21,0x3d,0x3d,0x67,0x3f, 0x6d,0x2e,0x72,0x65,0x66,0x3d,0x74,0x7c,0x7c,0x64,0x3a,0x6d,0x2e,0x69,0x6e,0x6e, 0x65,0x72,0x52,0x65,0x66,0x3d,0x64,0x2c,0x75,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x6f,0x2c,0x6d,0x29,0x7d,0x29, 0x29,0x7d,0x29,0x29,0x2c,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x5f,0x3d,0x75, 0x2e,0x61,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x3b,0x22,0x75, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x5f,0x26,0x26,0x28,0x5f,0x3d,0x79,0x29,0x3b,0x76,0x61,0x72,0x20, 0x77,0x3d,0x5f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x22,0x61,0x72,0x69,0x61, 0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x5d,0x2c,0x6f,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x22,0x70,0x61,0x67,0x65,0x22,0x3a,0x6e, 0x2c,0x69,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x43,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x61,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x69,0x3f,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3a,0x69,0x2c,0x63,0x3d,0x65, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x53,0x74,0x79,0x6c,0x65,0x2c,0x64,0x3d,0x65, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x76,0x3d,0x65,0x2e,0x65, 0x78,0x61,0x63,0x74,0x2c,0x67,0x3d,0x65,0x2e,0x69,0x73,0x41,0x63,0x74,0x69,0x76, 0x65,0x2c,0x6d,0x3d,0x65,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x77, 0x3d,0x65,0x2e,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x2c,0x4f,0x3d,0x65, 0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x2c,0x78,0x3d,0x65,0x2e,0x73,0x74,0x79,0x6c, 0x65,0x2c,0x45,0x3d,0x65,0x2e,0x74,0x6f,0x2c,0x6a,0x3d,0x65,0x2e,0x69,0x6e,0x6e, 0x65,0x72,0x52,0x65,0x66,0x2c,0x6b,0x3d,0x73,0x28,0x65,0x2c,0x5b,0x22,0x61,0x72, 0x69,0x61,0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x2c,0x22,0x61,0x63,0x74, 0x69,0x76,0x65,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x61, 0x63,0x74,0x69,0x76,0x65,0x53,0x74,0x79,0x6c,0x65,0x22,0x2c,0x22,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x65,0x78,0x61,0x63,0x74,0x22,0x2c, 0x22,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x22,0x6c,0x6f,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65, 0x22,0x2c,0x22,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x2c,0x22,0x73,0x74,0x79,0x6c, 0x65,0x22,0x2c,0x22,0x74,0x6f,0x22,0x2c,0x22,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65, 0x66,0x22,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x61,0x2e, 0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x72,0x2e, 0x64,0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x7c,0x7c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x6d,0x7c,0x7c,0x65,0x2e,0x6c,0x6f,0x63,0x61,0x74, 0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x68,0x28,0x70,0x28,0x45,0x2c,0x6e,0x29,0x2c,0x6e, 0x29,0x2c,0x73,0x3d,0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2c,0x53, 0x3d,0x73,0x26,0x26,0x73,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x28, 0x5b,0x2e,0x2b,0x2a,0x3f,0x3d,0x5e,0x21,0x3a,0x24,0x7b,0x7d,0x28,0x29,0x5b,0x5c, 0x5d,0x7c,0x2f,0x5c,0x5c,0x5d,0x29,0x2f,0x67,0x2c,0x22,0x5c,0x5c,0x24,0x31,0x22, 0x29,0x2c,0x43,0x3d,0x53,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x65, 0x29,0x28,0x6e,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2c,0x7b,0x70,0x61, 0x74,0x68,0x3a,0x53,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a,0x76,0x2c,0x73,0x65,0x6e, 0x73,0x69,0x74,0x69,0x76,0x65,0x3a,0x77,0x2c,0x73,0x74,0x72,0x69,0x63,0x74,0x3a, 0x4f,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x41,0x3d,0x21,0x21,0x28,0x67,0x3f, 0x67,0x28,0x43,0x2c,0x6e,0x29,0x3a,0x43,0x29,0x2c,0x54,0x3d,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x64,0x3f,0x64,0x28,0x41,0x29,0x3a,0x64,0x2c,0x50,0x3d,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x78, 0x3f,0x78,0x28,0x41,0x29,0x3a,0x78,0x3b,0x41,0x26,0x26,0x28,0x54,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x74,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28, 0x65,0x29,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b,0x2b,0x29,0x74, 0x5b,0x6e,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22, 0x20,0x22,0x29,0x7d,0x28,0x54,0x2c,0x61,0x29,0x2c,0x50,0x3d,0x6c,0x28,0x7b,0x7d, 0x2c,0x50,0x2c,0x63,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x44,0x3d,0x6c,0x28,0x7b, 0x22,0x61,0x72,0x69,0x61,0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x3a,0x41, 0x26,0x26,0x6f,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x54,0x2c,0x73,0x74,0x79,0x6c,0x65,0x3a,0x50,0x2c,0x74,0x6f, 0x3a,0x69,0x7d,0x2c,0x6b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x79,0x21, 0x3d,0x3d,0x5f,0x3f,0x44,0x2e,0x72,0x65,0x66,0x3d,0x74,0x7c,0x7c,0x6a,0x3a,0x44, 0x2e,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x3d,0x6a,0x2c,0x75,0x2e,0x61,0x2e, 0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x62,0x2c, 0x44,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x65,0x28,0x29,0x7b,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e, 0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x5f,0x5f,0x52, 0x45,0x41,0x43,0x54,0x5f,0x44,0x45,0x56,0x54,0x4f,0x4f,0x4c,0x53,0x5f,0x47,0x4c, 0x4f,0x42,0x41,0x4c,0x5f,0x48,0x4f,0x4f,0x4b,0x5f,0x5f,0x26,0x26,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x5f,0x5f,0x52,0x45,0x41,0x43,0x54,0x5f,0x44,0x45,0x56,0x54,0x4f,0x4f,0x4c, 0x53,0x5f,0x47,0x4c,0x4f,0x42,0x41,0x4c,0x5f,0x48,0x4f,0x4f,0x4b,0x5f,0x5f,0x2e, 0x63,0x68,0x65,0x63,0x6b,0x44,0x43,0x45,0x29,0x74,0x72,0x79,0x7b,0x5f,0x5f,0x52, 0x45,0x41,0x43,0x54,0x5f,0x44,0x45,0x56,0x54,0x4f,0x4f,0x4c,0x53,0x5f,0x47,0x4c, 0x4f,0x42,0x41,0x4c,0x5f,0x48,0x4f,0x4f,0x4b,0x5f,0x5f,0x2e,0x63,0x68,0x65,0x63, 0x6b,0x44,0x43,0x45,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29, 0x7b,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x74, 0x29,0x7d,0x7d,0x28,0x29,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x6e,0x28,0x31,0x35,0x31,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c, 0x6f,0x3d,0x72,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x6f,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x62,0x61,0x72,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x22,0x2c,0x74,0x2e,0x61,0x3d,0x6f,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73, 0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c, 0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x33,0x29,0x2c,0x69,0x3d, 0x6e,0x28,0x34,0x29,0x2c,0x61,0x3d,0x6e,0x2e,0x6e,0x28,0x69,0x29,0x2c,0x75,0x3d, 0x2f,0x2d,0x28,0x2e,0x29,0x2f,0x67,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x6e,0x28, 0x30,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x37,0x29,0x2c,0x73,0x3d,0x6e,0x28,0x31,0x29, 0x2c,0x66,0x3d,0x5b,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c, 0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d, 0x2c,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x30,0x5d,0x2e,0x74,0x6f,0x55,0x70,0x70, 0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2b,0x28,0x74,0x3d,0x65,0x2c,0x74,0x2e, 0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x75,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d, 0x29,0x29,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29,0x3b,0x76,0x61,0x72, 0x20,0x74,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x7b, 0x7d,0x2c,0x6e,0x3d,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d, 0x65,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x64, 0x28,0x65,0x29,0x3a,0x6e,0x2c,0x75,0x3d,0x74,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x2c,0x70,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50, 0x72,0x6f,0x70,0x73,0x2c,0x68,0x3d,0x63,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64, 0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x74,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69, 0x78,0x2c,0x64,0x3d,0x74,0x2e,0x61,0x73,0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x75,0x7c,0x7c,0x22,0x64,0x69,0x76,0x22,0x3a,0x64, 0x2c,0x68,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x74, 0x2c,0x66,0x29,0x2c,0x76,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61, 0x29,0x28,0x63,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x70,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x6e, 0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x69, 0x2c,0x76,0x29,0x7d,0x2c,0x68,0x29,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x68,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70, 0x73,0x3d,0x70,0x2c,0x68,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d, 0x65,0x3d,0x69,0x2c,0x68,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x78,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x62,0x22, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x41,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22, 0x64,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x63,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64, 0x28,0x74,0x2c,0x22,0x66,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x7d,0x29,0x29,0x2c,0x6e, 0x2e,0x64,0x28,0x74,0x2c,0x22,0x65,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x7d,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2c,0x72,0x3d, 0x6e,0x2b,0x31,0x2c,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x3c,0x6f,0x3b,0x6e,0x2b,0x3d,0x31,0x2c,0x72,0x2b,0x3d,0x31,0x29,0x65,0x5b,0x6e, 0x5d,0x3d,0x65,0x5b,0x72,0x5d,0x3b,0x65,0x2e,0x70,0x6f,0x70,0x28,0x29,0x7d,0x76, 0x61,0x72,0x20,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28, 0x74,0x3d,0x22,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x3d,0x65,0x26, 0x26,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x2f,0x22,0x29,0x7c,0x7c,0x5b, 0x5d,0x2c,0x61,0x3d,0x74,0x26,0x26,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22, 0x2f,0x22,0x29,0x7c,0x7c,0x5b,0x5d,0x2c,0x75,0x3d,0x65,0x26,0x26,0x6f,0x28,0x65, 0x29,0x2c,0x63,0x3d,0x74,0x26,0x26,0x6f,0x28,0x74,0x29,0x2c,0x6c,0x3d,0x75,0x7c, 0x7c,0x63,0x3b,0x69,0x66,0x28,0x65,0x26,0x26,0x6f,0x28,0x65,0x29,0x3f,0x61,0x3d, 0x72,0x3a,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x61,0x2e,0x70, 0x6f,0x70,0x28,0x29,0x2c,0x61,0x3d,0x61,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x72,0x29,0x29,0x2c,0x21,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x2f,0x22,0x3b,0x69,0x66,0x28,0x61,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x61,0x5b,0x61,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x5d,0x3b,0x6e,0x3d,0x22,0x2e,0x22,0x3d,0x3d, 0x3d,0x73,0x7c,0x7c,0x22,0x2e,0x2e,0x22,0x3d,0x3d,0x3d,0x73,0x7c,0x7c,0x22,0x22, 0x3d,0x3d,0x3d,0x73,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x3d,0x21,0x31,0x3b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x66,0x3d,0x30,0x2c,0x64,0x3d,0x61,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x64,0x3e,0x3d,0x30,0x3b,0x64,0x2d,0x2d,0x29,0x7b, 0x76,0x61,0x72,0x20,0x70,0x3d,0x61,0x5b,0x64,0x5d,0x3b,0x22,0x2e,0x22,0x3d,0x3d, 0x3d,0x70,0x3f,0x69,0x28,0x61,0x2c,0x64,0x29,0x3a,0x22,0x2e,0x2e,0x22,0x3d,0x3d, 0x3d,0x70,0x3f,0x28,0x69,0x28,0x61,0x2c,0x64,0x29,0x2c,0x66,0x2b,0x2b,0x29,0x3a, 0x66,0x26,0x26,0x28,0x69,0x28,0x61,0x2c,0x64,0x29,0x2c,0x66,0x2d,0x2d,0x29,0x7d, 0x69,0x66,0x28,0x21,0x6c,0x29,0x66,0x6f,0x72,0x28,0x3b,0x66,0x2d,0x2d,0x3b,0x66, 0x29,0x61,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x28,0x22,0x2e,0x2e,0x22,0x29, 0x3b,0x21,0x6c,0x7c,0x7c,0x22,0x22,0x3d,0x3d,0x3d,0x61,0x5b,0x30,0x5d,0x7c,0x7c, 0x61,0x5b,0x30,0x5d,0x26,0x26,0x6f,0x28,0x61,0x5b,0x30,0x5d,0x29,0x7c,0x7c,0x61, 0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x28,0x22,0x22,0x29,0x3b,0x76,0x61,0x72, 0x20,0x68,0x3d,0x61,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2f,0x22,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x22,0x2f,0x22,0x21,0x3d,0x3d,0x68, 0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x2d,0x31,0x29,0x26,0x26,0x28,0x68,0x2b, 0x3d,0x22,0x2f,0x22,0x29,0x2c,0x68,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x4f,0x66,0x3f,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f, 0x66,0x28,0x29,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x29,0x7d,0x76,0x61,0x72,0x20,0x63,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x74,0x3d, 0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x41,0x72,0x72, 0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72, 0x61,0x79,0x28,0x6e,0x29,0x26,0x26,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d, 0x3d,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x74,0x2e,0x65,0x76, 0x65,0x72,0x79,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c, 0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e,0x5b, 0x72,0x5d,0x29,0x7d,0x29,0x29,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x75,0x28,0x74,0x29,0x2c,0x6f, 0x3d,0x75,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x21,0x3d, 0x3d,0x74,0x7c,0x7c,0x6f,0x21,0x3d,0x3d,0x6e,0x3f,0x65,0x28,0x72,0x2c,0x6f,0x29, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2c, 0x6e,0x29,0x29,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28, 0x74,0x5b,0x72,0x5d,0x2c,0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x29,0x29,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x2c,0x6c,0x3d,0x6e,0x28,0x32,0x34,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x61,0x72, 0x41,0x74,0x28,0x30,0x29,0x3f,0x65,0x3a,0x22,0x2f,0x22,0x2b,0x65,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74, 0x28,0x30,0x29,0x3f,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x31,0x29,0x3a, 0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28, 0x29,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x74,0x2e,0x74,0x6f,0x4c,0x6f, 0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x29,0x26,0x26,0x2d,0x31,0x21,0x3d, 0x3d,0x22,0x2f,0x3f,0x23,0x22,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65, 0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x29,0x29,0x7d,0x28,0x65,0x2c,0x74,0x29,0x3f,0x65,0x2e,0x73,0x75,0x62,0x73,0x74, 0x72,0x28,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3a,0x65,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74, 0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x29,0x3f,0x65,0x2e,0x73, 0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x2d,0x31,0x29,0x3a,0x65,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2c,0x6e,0x3d,0x65,0x2e, 0x73,0x65,0x61,0x72,0x63,0x68,0x2c,0x72,0x3d,0x65,0x2e,0x68,0x61,0x73,0x68,0x2c, 0x6f,0x3d,0x74,0x7c,0x7c,0x22,0x2f,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x26,0x26,0x22,0x3f,0x22,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6f,0x2b,0x3d, 0x22,0x3f,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30, 0x29,0x3f,0x6e,0x3a,0x22,0x3f,0x22,0x2b,0x6e,0x29,0x2c,0x72,0x26,0x26,0x22,0x23, 0x22,0x21,0x3d,0x3d,0x72,0x26,0x26,0x28,0x6f,0x2b,0x3d,0x22,0x23,0x22,0x3d,0x3d, 0x3d,0x72,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x3f,0x72,0x3a,0x22, 0x23,0x22,0x2b,0x72,0x29,0x2c,0x6f,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x76,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20, 0x69,0x3b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x3f,0x28,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x7c,0x7c,0x22,0x2f, 0x22,0x2c,0x6e,0x3d,0x22,0x22,0x2c,0x72,0x3d,0x22,0x22,0x2c,0x6f,0x3d,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x23,0x22,0x29,0x3b,0x2d,0x31,0x21, 0x3d,0x3d,0x6f,0x26,0x26,0x28,0x72,0x3d,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72, 0x28,0x6f,0x29,0x2c,0x74,0x3d,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x30, 0x2c,0x6f,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x4f,0x66,0x28,0x22,0x3f,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x2d,0x31,0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x6e,0x3d,0x74,0x2e,0x73,0x75,0x62, 0x73,0x74,0x72,0x28,0x69,0x29,0x2c,0x74,0x3d,0x74,0x2e,0x73,0x75,0x62,0x73,0x74, 0x72,0x28,0x30,0x2c,0x69,0x29,0x29,0x2c,0x7b,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d, 0x65,0x3a,0x74,0x2c,0x73,0x65,0x61,0x72,0x63,0x68,0x3a,0x22,0x3f,0x22,0x3d,0x3d, 0x3d,0x6e,0x3f,0x22,0x22,0x3a,0x6e,0x2c,0x68,0x61,0x73,0x68,0x3a,0x22,0x23,0x22, 0x3d,0x3d,0x3d,0x72,0x3f,0x22,0x22,0x3a,0x72,0x7d,0x7d,0x28,0x65,0x29,0x2c,0x69, 0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x74,0x29,0x3a,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x28,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x29,0x29,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61, 0x6d,0x65,0x26,0x26,0x28,0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x3d, 0x22,0x22,0x29,0x2c,0x69,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x3f,0x22,0x3f,0x22, 0x21,0x3d,0x3d,0x69,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x2e,0x63,0x68,0x61,0x72, 0x41,0x74,0x28,0x30,0x29,0x26,0x26,0x28,0x69,0x2e,0x73,0x65,0x61,0x72,0x63,0x68, 0x3d,0x22,0x3f,0x22,0x2b,0x69,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x29,0x3a,0x69, 0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x3d,0x22,0x22,0x2c,0x69,0x2e,0x68,0x61,0x73, 0x68,0x3f,0x22,0x23,0x22,0x21,0x3d,0x3d,0x69,0x2e,0x68,0x61,0x73,0x68,0x2e,0x63, 0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x26,0x26,0x28,0x69,0x2e,0x68,0x61,0x73, 0x68,0x3d,0x22,0x23,0x22,0x2b,0x69,0x2e,0x68,0x61,0x73,0x68,0x29,0x3a,0x69,0x2e, 0x68,0x61,0x73,0x68,0x3d,0x22,0x22,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x74,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x2e,0x73, 0x74,0x61,0x74,0x65,0x26,0x26,0x28,0x69,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x74, 0x29,0x29,0x3b,0x74,0x72,0x79,0x7b,0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d, 0x65,0x3d,0x64,0x65,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x28,0x69,0x2e,0x70,0x61, 0x74,0x68,0x6e,0x61,0x6d,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x75,0x29, 0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x75,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x6f,0x66,0x20,0x55,0x52,0x49,0x45,0x72,0x72,0x6f,0x72,0x3f,0x6e,0x65,0x77, 0x20,0x55,0x52,0x49,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x50,0x61,0x74,0x68,0x6e, 0x61,0x6d,0x65,0x20,0x22,0x27,0x2b,0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d, 0x65,0x2b,0x27,0x22,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62, 0x65,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x20,0x54,0x68,0x69,0x73,0x20, 0x69,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x63,0x61,0x75,0x73,0x65,0x64, 0x20,0x62,0x79,0x20,0x61,0x6e,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70, 0x65,0x72,0x63,0x65,0x6e,0x74,0x2d,0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x2e, 0x27,0x29,0x3a,0x75,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x28, 0x69,0x2e,0x6b,0x65,0x79,0x3d,0x6e,0x29,0x2c,0x6f,0x3f,0x69,0x2e,0x70,0x61,0x74, 0x68,0x6e,0x61,0x6d,0x65,0x3f,0x22,0x2f,0x22,0x21,0x3d,0x3d,0x69,0x2e,0x70,0x61, 0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29, 0x26,0x26,0x28,0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x3d,0x61,0x28, 0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2c,0x6f,0x2e,0x70,0x61,0x74, 0x68,0x6e,0x61,0x6d,0x65,0x29,0x29,0x3a,0x69,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61, 0x6d,0x65,0x3d,0x6f,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x3a,0x69,0x2e, 0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x7c,0x7c,0x28,0x69,0x2e,0x70,0x61,0x74, 0x68,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x2f,0x22,0x29,0x2c,0x69,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x3d,0x3d, 0x3d,0x74,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x26,0x26,0x65,0x2e,0x73, 0x65,0x61,0x72,0x63,0x68,0x3d,0x3d,0x3d,0x74,0x2e,0x73,0x65,0x61,0x72,0x63,0x68, 0x26,0x26,0x65,0x2e,0x68,0x61,0x73,0x68,0x3d,0x3d,0x3d,0x74,0x2e,0x68,0x61,0x73, 0x68,0x26,0x26,0x65,0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d,0x74,0x2e,0x6b,0x65,0x79, 0x26,0x26,0x63,0x28,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x74,0x2e,0x73,0x74, 0x61,0x74,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x65,0x74, 0x50,0x72,0x6f,0x6d,0x70,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x74,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x3d,0x3d,0x3d,0x74,0x26,0x26, 0x28,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d,0x2c,0x63,0x6f,0x6e,0x66,0x69, 0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x54,0x6f,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x28,0x74,0x2c,0x6e,0x29,0x3a, 0x65,0x3b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x69,0x3f,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x3f,0x72,0x28,0x69,0x2c, 0x6f,0x29,0x3a,0x6f,0x28,0x21,0x30,0x29,0x3a,0x6f,0x28,0x21,0x31,0x21,0x3d,0x3d, 0x69,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6f,0x28,0x21,0x30,0x29,0x7d,0x2c,0x61, 0x70,0x70,0x65,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x21,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x29,0x7b, 0x6e,0x26,0x26,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x29,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x21,0x31,0x2c,0x74,0x3d, 0x74,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x21,0x3d, 0x3d,0x72,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x6e,0x6f,0x74,0x69,0x66,0x79,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d, 0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x2c,0x72,0x3d,0x30, 0x3b,0x72,0x3c,0x65,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x5b,0x72,0x5d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x72,0x5d,0x3b,0x74,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79, 0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x7d, 0x76,0x61,0x72,0x20,0x62,0x3d,0x21,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e, 0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x7c,0x7c,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x79,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x65,0x29,0x29,0x7d,0x76,0x61,0x72,0x20, 0x5f,0x3d,0x22,0x70,0x6f,0x70,0x73,0x74,0x61,0x74,0x65,0x22,0x2c,0x77,0x3d,0x22, 0x68,0x61,0x73,0x68,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x4f,0x28,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x68,0x69,0x73,0x74,0x6f, 0x72,0x79,0x2e,0x73,0x74,0x61,0x74,0x65,0x7c,0x7c,0x7b,0x7d,0x7d,0x63,0x61,0x74, 0x63,0x68,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x28,0x65,0x29,0x7b,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x7b,0x7d,0x29, 0x2c,0x62,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28, 0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2e,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2c,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2e,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x75,0x73,0x65, 0x72,0x41,0x67,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x2d,0x31, 0x3d,0x3d,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x41,0x6e, 0x64,0x72,0x6f,0x69,0x64,0x20,0x32,0x2e,0x22,0x29,0x26,0x26,0x2d,0x31,0x3d,0x3d, 0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x41,0x6e,0x64,0x72, 0x6f,0x69,0x64,0x20,0x34,0x2e,0x30,0x22,0x29,0x7c,0x7c,0x2d,0x31,0x3d,0x3d,0x3d, 0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x4d,0x6f,0x62,0x69,0x6c, 0x65,0x20,0x53,0x61,0x66,0x61,0x72,0x69,0x22,0x29,0x7c,0x7c,0x2d,0x31,0x21,0x3d, 0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x43,0x68,0x72,0x6f, 0x6d,0x65,0x22,0x29,0x7c,0x7c,0x2d,0x31,0x21,0x3d,0x3d,0x65,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x4f,0x66,0x28,0x22,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x20,0x50,0x68, 0x6f,0x6e,0x65,0x22,0x29,0x29,0x26,0x26,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x68, 0x69,0x73,0x74,0x6f,0x72,0x79,0x26,0x26,0x22,0x70,0x75,0x73,0x68,0x53,0x74,0x61, 0x74,0x65,0x22,0x69,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x68,0x69,0x73, 0x74,0x6f,0x72,0x79,0x7d,0x28,0x29,0x2c,0x6f,0x3d,0x21,0x28,0x2d,0x31,0x3d,0x3d, 0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f, 0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x22,0x54,0x72,0x69,0x64,0x65,0x6e,0x74,0x22,0x29,0x29,0x2c, 0x69,0x3d,0x65,0x2c,0x61,0x3d,0x69,0x2e,0x66,0x6f,0x72,0x63,0x65,0x52,0x65,0x66, 0x72,0x65,0x73,0x68,0x2c,0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x61,0x26,0x26,0x61,0x2c,0x63,0x3d,0x69,0x2e,0x67,0x65,0x74,0x55,0x73,0x65,0x72, 0x43,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x66,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x79,0x3a,0x63,0x2c,0x67,0x3d, 0x69,0x2e,0x6b,0x65,0x79,0x4c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x78,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x67,0x3f,0x36,0x3a,0x67,0x2c,0x45,0x3d,0x65, 0x2e,0x62,0x61,0x73,0x65,0x6e,0x61,0x6d,0x65,0x3f,0x70,0x28,0x73,0x28,0x65,0x2e, 0x62,0x61,0x73,0x65,0x6e,0x61,0x6d,0x65,0x29,0x29,0x3a,0x22,0x22,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x7c,0x7c,0x7b,0x7d,0x2c,0x6e,0x3d,0x74,0x2e,0x6b,0x65,0x79,0x2c, 0x72,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6f,0x3d,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x6f,0x2e, 0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2b,0x6f,0x2e,0x73,0x65,0x61,0x72,0x63, 0x68,0x2b,0x6f,0x2e,0x68,0x61,0x73,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x45,0x26,0x26,0x28,0x69,0x3d,0x64,0x28,0x69,0x2c,0x45,0x29,0x29,0x2c,0x76,0x28, 0x69,0x2c,0x72,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6b,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e, 0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x28,0x33,0x36,0x29,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x32,0x2c,0x78, 0x29,0x7d,0x76,0x61,0x72,0x20,0x53,0x3d,0x6d,0x28,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x43,0x28,0x65,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x61,0x29,0x28,0x7a,0x2c,0x65,0x29,0x2c,0x7a,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x53,0x2e,0x6e, 0x6f,0x74,0x69,0x66,0x79,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x7a, 0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x7a,0x2e,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x28,0x65, 0x29,0x7b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65, 0x2e,0x73,0x74,0x61,0x74,0x65,0x26,0x26,0x2d,0x31,0x3d,0x3d,0x3d,0x6e,0x61,0x76, 0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x43,0x72,0x69,0x4f,0x53,0x22, 0x29,0x7d,0x29,0x28,0x65,0x29,0x7c,0x7c,0x44,0x28,0x6a,0x28,0x65,0x2e,0x73,0x74, 0x61,0x74,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54, 0x28,0x29,0x7b,0x44,0x28,0x6a,0x28,0x4f,0x28,0x29,0x29,0x29,0x7d,0x76,0x61,0x72, 0x20,0x50,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x50,0x29,0x50,0x3d,0x21,0x31,0x2c,0x43,0x28, 0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x53,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d, 0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x54,0x6f,0x28,0x65,0x2c,0x22, 0x50,0x4f,0x50,0x22,0x2c,0x66,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x74,0x3f,0x43,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x22,0x50,0x4f,0x50,0x22,0x2c,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x65, 0x7d,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c, 0x6e,0x3d,0x49,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x74,0x2e,0x6b,0x65, 0x79,0x29,0x3b,0x2d,0x31,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x30,0x29, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x49,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66, 0x28,0x65,0x2e,0x6b,0x65,0x79,0x29,0x3b,0x2d,0x31,0x3d,0x3d,0x3d,0x72,0x26,0x26, 0x28,0x72,0x3d,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2d,0x72,0x3b, 0x6f,0x26,0x26,0x28,0x50,0x3d,0x21,0x30,0x2c,0x4c,0x28,0x6f,0x29,0x29,0x7d,0x28, 0x65,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x76,0x61,0x72,0x20,0x4e,0x3d,0x6a,0x28,0x4f, 0x28,0x29,0x29,0x2c,0x49,0x3d,0x5b,0x4e,0x2e,0x6b,0x65,0x79,0x5d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x45,0x2b,0x68,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x4c,0x28,0x65,0x29,0x7b,0x74,0x2e,0x67,0x6f,0x28,0x65,0x29,0x7d, 0x76,0x61,0x72,0x20,0x46,0x3d,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4d,0x28,0x65,0x29,0x7b,0x31,0x3d,0x3d,0x3d,0x28,0x46,0x2b,0x3d,0x65,0x29, 0x26,0x26,0x31,0x3d,0x3d,0x3d,0x65,0x3f,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72, 0x28,0x5f,0x2c,0x41,0x29,0x2c,0x6f,0x26,0x26,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72, 0x28,0x77,0x2c,0x54,0x29,0x29,0x3a,0x30,0x3d,0x3d,0x3d,0x46,0x26,0x26,0x28,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e, 0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x5f,0x2c,0x41,0x29,0x2c,0x6f, 0x26,0x26,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45, 0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x77,0x2c,0x54, 0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x42,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20, 0x7a,0x3d,0x7b,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x74,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x50,0x4f,0x50,0x22,0x2c, 0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x4e,0x2c,0x63,0x72,0x65,0x61,0x74, 0x65,0x48,0x72,0x65,0x66,0x3a,0x52,0x2c,0x70,0x75,0x73,0x68,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x22,0x50,0x55,0x53,0x48,0x22,0x2c,0x69,0x3d,0x76,0x28,0x65,0x2c,0x72,0x2c, 0x6b,0x28,0x29,0x2c,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b, 0x53,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x54,0x6f,0x28,0x69,0x2c,0x6f,0x2c,0x66,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x52,0x28,0x69,0x29,0x2c,0x61,0x3d,0x69,0x2e,0x6b,0x65, 0x79,0x2c,0x63,0x3d,0x69,0x2e,0x73,0x74,0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x6e, 0x29,0x69,0x66,0x28,0x74,0x2e,0x70,0x75,0x73,0x68,0x53,0x74,0x61,0x74,0x65,0x28, 0x7b,0x6b,0x65,0x79,0x3a,0x61,0x2c,0x73,0x74,0x61,0x74,0x65,0x3a,0x63,0x7d,0x2c, 0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x29,0x2c,0x75,0x29,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,0x72, 0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x49,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e, 0x2e,0x6b,0x65,0x79,0x29,0x2c,0x73,0x3d,0x49,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28, 0x30,0x2c,0x6c,0x2b,0x31,0x29,0x3b,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x69,0x2e, 0x6b,0x65,0x79,0x29,0x2c,0x49,0x3d,0x73,0x2c,0x43,0x28,0x7b,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x3a,0x6f,0x2c,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x7d, 0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,0x72,0x7d,0x7d,0x29, 0x29,0x7d,0x2c,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x22, 0x52,0x45,0x50,0x4c,0x41,0x43,0x45,0x22,0x2c,0x69,0x3d,0x76,0x28,0x65,0x2c,0x72, 0x2c,0x6b,0x28,0x29,0x2c,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29, 0x3b,0x53,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x54,0x6f,0x28,0x69,0x2c,0x6f,0x2c,0x66,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x52,0x28,0x69,0x29,0x2c,0x61,0x3d,0x69,0x2e,0x6b, 0x65,0x79,0x2c,0x63,0x3d,0x69,0x2e,0x73,0x74,0x61,0x74,0x65,0x3b,0x69,0x66,0x28, 0x6e,0x29,0x69,0x66,0x28,0x74,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x53,0x74, 0x61,0x74,0x65,0x28,0x7b,0x6b,0x65,0x79,0x3a,0x61,0x2c,0x73,0x74,0x61,0x74,0x65, 0x3a,0x63,0x7d,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x29,0x2c,0x75,0x29,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x72,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61, 0x72,0x20,0x6c,0x3d,0x49,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x7a,0x2e, 0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x6b,0x65,0x79,0x29,0x3b,0x2d,0x31, 0x21,0x3d,0x3d,0x6c,0x26,0x26,0x28,0x49,0x5b,0x6c,0x5d,0x3d,0x69,0x2e,0x6b,0x65, 0x79,0x29,0x2c,0x43,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c,0x6c, 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x7d,0x29,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x72,0x29,0x7d,0x7d,0x29,0x29,0x7d, 0x2c,0x67,0x6f,0x3a,0x4c,0x2c,0x67,0x6f,0x42,0x61,0x63,0x6b,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4c,0x28,0x2d,0x31,0x29,0x7d,0x2c,0x67, 0x6f,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x4c,0x28,0x31,0x29,0x7d,0x2c,0x62,0x6c,0x6f,0x63,0x6b,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x53,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x6d,0x70,0x74, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x7c,0x7c,0x28,0x4d, 0x28,0x31,0x29,0x2c,0x42,0x3d,0x21,0x30,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x26,0x26,0x28, 0x42,0x3d,0x21,0x31,0x2c,0x4d,0x28,0x2d,0x31,0x29,0x29,0x2c,0x74,0x28,0x29,0x7d, 0x7d,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x53,0x2e,0x61,0x70,0x70, 0x65,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x28,0x31,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4d,0x28,0x2d,0x31,0x29,0x2c,0x74,0x28,0x29,0x7d, 0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x7d,0x76,0x61,0x72,0x20, 0x45,0x3d,0x22,0x68,0x61,0x73,0x68,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x6a, 0x3d,0x7b,0x68,0x61,0x73,0x68,0x62,0x61,0x6e,0x67,0x3a,0x7b,0x65,0x6e,0x63,0x6f, 0x64,0x65,0x50,0x61,0x74,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x21,0x22,0x3d,0x3d,0x3d,0x65, 0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x3f,0x65,0x3a,0x22,0x21,0x2f, 0x22,0x2b,0x66,0x28,0x65,0x29,0x7d,0x2c,0x64,0x65,0x63,0x6f,0x64,0x65,0x50,0x61, 0x74,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x21,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x61, 0x72,0x41,0x74,0x28,0x30,0x29,0x3f,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28, 0x31,0x29,0x3a,0x65,0x7d,0x7d,0x2c,0x6e,0x6f,0x73,0x6c,0x61,0x73,0x68,0x3a,0x7b, 0x65,0x6e,0x63,0x6f,0x64,0x65,0x50,0x61,0x74,0x68,0x3a,0x66,0x2c,0x64,0x65,0x63, 0x6f,0x64,0x65,0x50,0x61,0x74,0x68,0x3a,0x73,0x7d,0x2c,0x73,0x6c,0x61,0x73,0x68, 0x3a,0x7b,0x65,0x6e,0x63,0x6f,0x64,0x65,0x50,0x61,0x74,0x68,0x3a,0x73,0x2c,0x64, 0x65,0x63,0x6f,0x64,0x65,0x50,0x61,0x74,0x68,0x3a,0x73,0x7d,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x23,0x22,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3d,0x3d,0x3d,0x74,0x3f,0x65,0x3a, 0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e, 0x68,0x72,0x65,0x66,0x2c,0x74,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66, 0x28,0x22,0x23,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3d,0x3d, 0x3d,0x74,0x3f,0x22,0x22,0x3a,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e, 0x67,0x28,0x74,0x2b,0x31,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x43,0x28,0x65,0x29,0x7b,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x6b,0x28,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68, 0x72,0x65,0x66,0x29,0x2b,0x22,0x23,0x22,0x2b,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x41,0x28,0x65,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x7b,0x7d,0x29,0x2c,0x62,0x7c,0x7c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x3b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x68,0x69,0x73, 0x74,0x6f,0x72,0x79,0x2c,0x6e,0x3d,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e, 0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65, 0x6e,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x46,0x69,0x72,0x65, 0x66,0x6f,0x78,0x22,0x29,0x2c,0x65,0x29,0x2c,0x6f,0x3d,0x6e,0x2e,0x67,0x65,0x74, 0x55,0x73,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e, 0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x79,0x3a, 0x6f,0x2c,0x61,0x3d,0x6e,0x2e,0x68,0x61,0x73,0x68,0x54,0x79,0x70,0x65,0x2c,0x75, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f,0x22,0x73,0x6c,0x61, 0x73,0x68,0x22,0x3a,0x61,0x2c,0x63,0x3d,0x65,0x2e,0x62,0x61,0x73,0x65,0x6e,0x61, 0x6d,0x65,0x3f,0x70,0x28,0x73,0x28,0x65,0x2e,0x62,0x61,0x73,0x65,0x6e,0x61,0x6d, 0x65,0x29,0x29,0x3a,0x22,0x22,0x2c,0x66,0x3d,0x6a,0x5b,0x75,0x5d,0x2c,0x67,0x3d, 0x66,0x2e,0x65,0x6e,0x63,0x6f,0x64,0x65,0x50,0x61,0x74,0x68,0x2c,0x5f,0x3d,0x66, 0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x50,0x61,0x74,0x68,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x77,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x5f, 0x28,0x53,0x28,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x26,0x26, 0x28,0x65,0x3d,0x64,0x28,0x65,0x2c,0x63,0x29,0x29,0x2c,0x76,0x28,0x65,0x29,0x7d, 0x76,0x61,0x72,0x20,0x4f,0x3d,0x6d,0x28,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x78,0x28,0x65,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x61,0x29,0x28,0x7a,0x2c,0x65,0x29,0x2c,0x7a,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x4f,0x2e,0x6e,0x6f,0x74, 0x69,0x66,0x79,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x7a,0x2e,0x6c, 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x7a,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e, 0x29,0x7d,0x76,0x61,0x72,0x20,0x41,0x3d,0x21,0x31,0x2c,0x54,0x3d,0x6e,0x75,0x6c, 0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x2c,0x74,0x2c,0x6e,0x3d,0x53,0x28,0x29,0x2c,0x72,0x3d,0x67, 0x28,0x6e,0x29,0x3b,0x69,0x66,0x28,0x6e,0x21,0x3d,0x3d,0x72,0x29,0x43,0x28,0x72, 0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x77,0x28,0x29, 0x2c,0x61,0x3d,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3b,0x69,0x66, 0x28,0x21,0x41,0x26,0x26,0x28,0x74,0x3d,0x6f,0x2c,0x28,0x65,0x3d,0x61,0x29,0x2e, 0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x3d,0x3d,0x3d,0x74,0x2e,0x70,0x61,0x74, 0x68,0x6e,0x61,0x6d,0x65,0x26,0x26,0x65,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x3d, 0x3d,0x3d,0x74,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x26,0x26,0x65,0x2e,0x68,0x61, 0x73,0x68,0x3d,0x3d,0x3d,0x74,0x2e,0x68,0x61,0x73,0x68,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3b,0x69,0x66,0x28,0x54,0x3d,0x3d,0x3d,0x68,0x28,0x6f,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x54,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x41,0x29,0x41, 0x3d,0x21,0x31,0x2c,0x78,0x28,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x22,0x50,0x4f,0x50,0x22,0x3b,0x4f,0x2e,0x63,0x6f,0x6e,0x66,0x69, 0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x54,0x6f,0x28,0x65, 0x2c,0x74,0x2c,0x69,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x6e,0x3f,0x78,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2c, 0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x65,0x7d,0x29,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7a, 0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6e,0x3d,0x52,0x2e,0x6c,0x61, 0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x68,0x28,0x74,0x29,0x29,0x3b, 0x2d,0x31,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x30,0x29,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x52,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x4f, 0x66,0x28,0x68,0x28,0x65,0x29,0x29,0x3b,0x2d,0x31,0x3d,0x3d,0x3d,0x72,0x26,0x26, 0x28,0x72,0x3d,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2d,0x72,0x3b, 0x6f,0x26,0x26,0x28,0x41,0x3d,0x21,0x30,0x2c,0x4c,0x28,0x6f,0x29,0x29,0x7d,0x28, 0x65,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x28,0x6f,0x29,0x7d,0x7d,0x76,0x61,0x72,0x20, 0x44,0x3d,0x53,0x28,0x29,0x2c,0x4e,0x3d,0x67,0x28,0x44,0x29,0x3b,0x44,0x21,0x3d, 0x3d,0x4e,0x26,0x26,0x43,0x28,0x4e,0x29,0x3b,0x76,0x61,0x72,0x20,0x49,0x3d,0x77, 0x28,0x29,0x2c,0x52,0x3d,0x5b,0x68,0x28,0x49,0x29,0x5d,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x4c,0x28,0x65,0x29,0x7b,0x74,0x2e,0x67,0x6f,0x28,0x65, 0x29,0x7d,0x76,0x61,0x72,0x20,0x46,0x3d,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x4d,0x28,0x65,0x29,0x7b,0x31,0x3d,0x3d,0x3d,0x28,0x46,0x2b,0x3d, 0x65,0x29,0x26,0x26,0x31,0x3d,0x3d,0x3d,0x65,0x3f,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65, 0x72,0x28,0x45,0x2c,0x50,0x29,0x3a,0x30,0x3d,0x3d,0x3d,0x46,0x26,0x26,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x45,0x2c,0x50,0x29,0x7d,0x76,0x61, 0x72,0x20,0x42,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x7a,0x3d,0x7b,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3a,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x22,0x50,0x4f,0x50,0x22,0x2c,0x6c,0x6f,0x63,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x49,0x2c,0x63,0x72,0x65,0x61,0x74,0x65,0x48,0x72,0x65,0x66, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72, 0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x22,0x62,0x61,0x73,0x65,0x22, 0x29,0x2c,0x6e,0x3d,0x22,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26, 0x26,0x74,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28, 0x22,0x68,0x72,0x65,0x66,0x22,0x29,0x26,0x26,0x28,0x6e,0x3d,0x6b,0x28,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72, 0x65,0x66,0x29,0x29,0x2c,0x6e,0x2b,0x22,0x23,0x22,0x2b,0x67,0x28,0x63,0x2b,0x68, 0x28,0x65,0x29,0x29,0x7d,0x2c,0x70,0x75,0x73,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22, 0x50,0x55,0x53,0x48,0x22,0x2c,0x72,0x3d,0x76,0x28,0x65,0x2c,0x76,0x6f,0x69,0x64, 0x20,0x30,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x7a,0x2e,0x6c,0x6f,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x29,0x3b,0x4f,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x54, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x54,0x6f,0x28,0x72,0x2c,0x6e,0x2c, 0x69,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x68,0x28,0x72,0x29,0x2c, 0x6f,0x3d,0x67,0x28,0x63,0x2b,0x74,0x29,0x3b,0x69,0x66,0x28,0x53,0x28,0x29,0x21, 0x3d,0x3d,0x6f,0x29,0x7b,0x54,0x3d,0x74,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x2e,0x68,0x61,0x73,0x68,0x3d,0x65,0x7d,0x28,0x6f,0x29,0x3b, 0x76,0x61,0x72,0x20,0x69,0x3d,0x52,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x68,0x28,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e, 0x29,0x29,0x2c,0x61,0x3d,0x52,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x69, 0x2b,0x31,0x29,0x3b,0x61,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x2c,0x52,0x3d, 0x61,0x2c,0x78,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x6c,0x6f, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x7d,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20, 0x78,0x28,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x2c,0x72,0x65,0x70,0x6c,0x61,0x63,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x22,0x52,0x45,0x50,0x4c,0x41,0x43,0x45,0x22,0x2c,0x72, 0x3d,0x76,0x28,0x65,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x76,0x6f,0x69,0x64, 0x20,0x30,0x2c,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x4f, 0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x54,0x6f,0x28,0x72,0x2c,0x6e,0x2c,0x69,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x68,0x28,0x72,0x29,0x2c,0x6f,0x3d,0x67,0x28,0x63,0x2b,0x74, 0x29,0x3b,0x53,0x28,0x29,0x21,0x3d,0x3d,0x6f,0x26,0x26,0x28,0x54,0x3d,0x74,0x2c, 0x43,0x28,0x6f,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x52,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x68,0x28,0x7a,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69, 0x6f,0x6e,0x29,0x29,0x3b,0x2d,0x31,0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x52,0x5b, 0x69,0x5d,0x3d,0x74,0x29,0x2c,0x78,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x6e,0x2c,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x7d,0x29,0x7d,0x7d, 0x29,0x29,0x7d,0x2c,0x67,0x6f,0x3a,0x4c,0x2c,0x67,0x6f,0x42,0x61,0x63,0x6b,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4c,0x28,0x2d,0x31,0x29, 0x7d,0x2c,0x67,0x6f,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4c,0x28,0x31,0x29,0x7d,0x2c,0x62,0x6c,0x6f, 0x63,0x6b,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x21,0x31, 0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f, 0x6d,0x70,0x74,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x7c, 0x7c,0x28,0x4d,0x28,0x31,0x29,0x2c,0x42,0x3d,0x21,0x30,0x29,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42, 0x26,0x26,0x28,0x42,0x3d,0x21,0x31,0x2c,0x4d,0x28,0x2d,0x31,0x29,0x29,0x2c,0x74, 0x28,0x29,0x7d,0x7d,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x2e, 0x61,0x70,0x70,0x65,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x28,0x31,0x29,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4d,0x28,0x2d,0x31,0x29,0x2c,0x74, 0x28,0x29,0x7d,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e, 0x28,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x65,0x2c,0x74,0x29,0x2c,0x6e, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x28,0x65,0x29,0x7b, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x7b, 0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2c,0x6e,0x3d,0x74,0x2e,0x67, 0x65,0x74,0x55,0x73,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x61,0x74,0x69, 0x6f,0x6e,0x2c,0x6f,0x3d,0x74,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x6e, 0x74,0x72,0x69,0x65,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6f,0x3f,0x5b,0x22,0x2f,0x22,0x5d,0x3a,0x6f,0x2c,0x61,0x3d,0x74,0x2e,0x69, 0x6e,0x69,0x74,0x69,0x61,0x6c,0x49,0x6e,0x64,0x65,0x78,0x2c,0x75,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f,0x30,0x3a,0x61,0x2c,0x63,0x3d,0x74, 0x2e,0x6b,0x65,0x79,0x4c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6c,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x36,0x3a,0x63,0x2c,0x73,0x3d,0x6d,0x28, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x28,0x65,0x29,0x7b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x5f,0x2c,0x65,0x29, 0x2c,0x5f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x5f,0x2e,0x65,0x6e,0x74,0x72, 0x69,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x73,0x2e,0x6e,0x6f,0x74, 0x69,0x66,0x79,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x5f,0x2e,0x6c, 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x5f,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f, 0x6d,0x28,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x36,0x29, 0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x32,0x2c,0x6c,0x29,0x7d,0x76,0x61,0x72, 0x20,0x70,0x3d,0x54,0x28,0x75,0x2c,0x30,0x2c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2d,0x31,0x29,0x2c,0x67,0x3d,0x69,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x76,0x28,0x65,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f, 0x64,0x28,0x29,0x3a,0x65,0x2e,0x6b,0x65,0x79,0x7c,0x7c,0x64,0x28,0x29,0x29,0x7d, 0x29,0x29,0x2c,0x62,0x3d,0x68,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x79,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x54,0x28,0x5f,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x2b,0x65,0x2c,0x30,0x2c,0x5f,0x2e,0x65,0x6e,0x74,0x72,0x69, 0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x29,0x2c,0x72,0x3d,0x5f, 0x2e,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x5b,0x74,0x5d,0x3b,0x73,0x2e,0x63,0x6f, 0x6e,0x66,0x69,0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x54, 0x6f,0x28,0x72,0x2c,0x22,0x50,0x4f,0x50,0x22,0x2c,0x6e,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x3f,0x66,0x28,0x7b,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x22,0x50,0x4f,0x50,0x22,0x2c,0x6c,0x6f,0x63,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x74,0x7d,0x29,0x3a, 0x66,0x28,0x29,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x5f,0x3d,0x7b,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3a,0x67,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x22,0x50,0x4f,0x50,0x22,0x2c,0x6c,0x6f,0x63,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x67,0x5b,0x70,0x5d,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x70, 0x2c,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x3a,0x67,0x2c,0x63,0x72,0x65,0x61,0x74, 0x65,0x48,0x72,0x65,0x66,0x3a,0x62,0x2c,0x70,0x75,0x73,0x68,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x22,0x50,0x55,0x53,0x48,0x22,0x2c,0x6f,0x3d,0x76,0x28,0x65,0x2c,0x74,0x2c, 0x64,0x28,0x29,0x2c,0x5f,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b, 0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x54,0x6f,0x28,0x6f,0x2c,0x72,0x2c,0x6e,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x5f,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2b,0x31,0x2c,0x6e, 0x3d,0x5f,0x2e,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x2e,0x73,0x6c,0x69,0x63,0x65, 0x28,0x30,0x29,0x3b,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x74,0x3f,0x6e, 0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x74,0x2c,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2d,0x74,0x2c,0x6f,0x29,0x3a,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x6f, 0x29,0x2c,0x66,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x6c,0x6f, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x74, 0x2c,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x3a,0x6e,0x7d,0x29,0x7d,0x7d,0x29,0x29, 0x7d,0x2c,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x52, 0x45,0x50,0x4c,0x41,0x43,0x45,0x22,0x2c,0x6f,0x3d,0x76,0x28,0x65,0x2c,0x74,0x2c, 0x64,0x28,0x29,0x2c,0x5f,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b, 0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x54,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x54,0x6f,0x28,0x6f,0x2c,0x72,0x2c,0x6e,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x26,0x26,0x28,0x5f,0x2e,0x65, 0x6e,0x74,0x72,0x69,0x65,0x73,0x5b,0x5f,0x2e,0x69,0x6e,0x64,0x65,0x78,0x5d,0x3d, 0x6f,0x2c,0x66,0x28,0x7b,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x6c,0x6f, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x2c, 0x67,0x6f,0x3a,0x79,0x2c,0x67,0x6f,0x42,0x61,0x63,0x6b,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x79,0x28,0x2d,0x31,0x29,0x7d,0x2c,0x67,0x6f, 0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x79,0x28,0x31,0x29,0x7d,0x2c,0x63,0x61,0x6e,0x47,0x6f,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x5f,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2b,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3e,0x3d,0x30,0x26,0x26,0x74,0x3c,0x5f,0x2e,0x65,0x6e,0x74,0x72, 0x69,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x2c,0x62,0x6c,0x6f,0x63, 0x6b,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26, 0x26,0x28,0x65,0x3d,0x21,0x31,0x29,0x2c,0x73,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f, 0x6d,0x70,0x74,0x28,0x65,0x29,0x7d,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x73,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e, 0x65,0x72,0x28,0x65,0x29,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x30,0x37,0x29,0x2c,0x6f,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x3d,0x3d,0x3d, 0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x61,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x63,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x21,0x3d,0x3d,0x6f,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74, 0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x7c,0x7c, 0x74,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x3d,0x3d,0x3d,0x6f, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x73,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x69,0x66,0x28, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x26,0x26,0x28,0x65,0x3d,0x5b,0x65,0x5d,0x29,0x2c,0x69,0x28,0x65, 0x29,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x30,0x2c,0x72,0x3d, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x3c,0x72,0x3b,0x6e,0x2b,0x2b, 0x29,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x5b,0x6e, 0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6f,0x20,0x69,0x6e,0x20,0x65,0x29,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x65,0x2c,0x6f,0x29,0x26,0x26,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x75,0x6c, 0x6c,0x2c,0x65,0x5b,0x6f,0x5d,0x2c,0x6f,0x2c,0x65,0x29,0x7d,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x7b,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x3a,0x69, 0x2c,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42, 0x75,0x66,0x66,0x65,0x72,0x5d,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x65,0x29,0x7d,0x2c,0x69,0x73,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x21,0x61,0x28,0x65,0x29, 0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x26,0x26,0x21,0x61,0x28,0x65,0x2e,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x29,0x26,0x26,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x69,0x73,0x42, 0x75,0x66,0x66,0x65,0x72,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x2e,0x69,0x73,0x42,0x75,0x66,0x66,0x65,0x72,0x28,0x65,0x29, 0x7d,0x2c,0x69,0x73,0x46,0x6f,0x72,0x6d,0x44,0x61,0x74,0x61,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x46,0x6f,0x72,0x6d,0x44,0x61,0x74,0x61,0x26,0x26,0x65,0x20, 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x46,0x6f,0x72,0x6d,0x44, 0x61,0x74,0x61,0x7d,0x2c,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66, 0x65,0x72,0x56,0x69,0x65,0x77,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x72, 0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x26,0x26,0x41,0x72,0x72,0x61,0x79, 0x42,0x75,0x66,0x66,0x65,0x72,0x2e,0x69,0x73,0x56,0x69,0x65,0x77,0x3f,0x41,0x72, 0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x2e,0x69,0x73,0x56,0x69,0x65,0x77, 0x28,0x65,0x29,0x3a,0x65,0x26,0x26,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x26, 0x26,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x6f,0x66,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72, 0x7d,0x2c,0x69,0x73,0x53,0x74,0x72,0x69,0x6e,0x67,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74, 0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x7d,0x2c,0x69,0x73,0x4e,0x75,0x6d,0x62,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75, 0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x7d,0x2c,0x69,0x73,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3a,0x75,0x2c,0x69,0x73,0x50, 0x6c,0x61,0x69,0x6e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3a,0x63,0x2c,0x69,0x73,0x55, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x3a,0x61,0x2c,0x69,0x73,0x44,0x61,0x74, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74, 0x65,0x5d,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d, 0x2c,0x69,0x73,0x46,0x69,0x6c,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x46,0x69,0x6c,0x65,0x5d,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x65,0x29,0x7d,0x2c,0x69,0x73,0x42,0x6c,0x6f,0x62,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x42,0x6c,0x6f,0x62,0x5d,0x22,0x3d, 0x3d,0x3d,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x2c,0x69,0x73,0x46, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x2c,0x69,0x73,0x53,0x74,0x72,0x65, 0x61,0x6d,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x28,0x65,0x29,0x26,0x26,0x6c,0x28,0x65,0x2e, 0x70,0x69,0x70,0x65,0x29,0x7d,0x2c,0x69,0x73,0x55,0x52,0x4c,0x53,0x65,0x61,0x72, 0x63,0x68,0x50,0x61,0x72,0x61,0x6d,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x55,0x52,0x4c,0x53,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x72,0x61,0x6d,0x73,0x26, 0x26,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x55,0x52, 0x4c,0x53,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x72,0x61,0x6d,0x73,0x7d,0x2c,0x69, 0x73,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x42,0x72,0x6f,0x77,0x73,0x65,0x72, 0x45,0x6e,0x76,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x61,0x76,0x69,0x67, 0x61,0x74,0x6f,0x72,0x7c,0x7c,0x22,0x52,0x65,0x61,0x63,0x74,0x4e,0x61,0x74,0x69, 0x76,0x65,0x22,0x21,0x3d,0x3d,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e, 0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x26,0x26,0x22,0x4e,0x61,0x74,0x69,0x76,0x65, 0x53,0x63,0x72,0x69,0x70,0x74,0x22,0x21,0x3d,0x3d,0x6e,0x61,0x76,0x69,0x67,0x61, 0x74,0x6f,0x72,0x2e,0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x26,0x26,0x22,0x4e,0x53, 0x22,0x21,0x3d,0x3d,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x70,0x72, 0x6f,0x64,0x75,0x63,0x74,0x29,0x26,0x26,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x29,0x7d,0x2c,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x3a,0x73,0x2c, 0x6d,0x65,0x72,0x67,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x7d,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x6e,0x2c,0x72,0x29,0x7b,0x63,0x28,0x74,0x5b, 0x72,0x5d,0x29,0x26,0x26,0x63,0x28,0x6e,0x29,0x3f,0x74,0x5b,0x72,0x5d,0x3d,0x65, 0x28,0x74,0x5b,0x72,0x5d,0x2c,0x6e,0x29,0x3a,0x63,0x28,0x6e,0x29,0x3f,0x74,0x5b, 0x72,0x5d,0x3d,0x65,0x28,0x7b,0x7d,0x2c,0x6e,0x29,0x3a,0x69,0x28,0x6e,0x29,0x3f, 0x74,0x5b,0x72,0x5d,0x3d,0x6e,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x29,0x3a,0x74, 0x5b,0x72,0x5d,0x3d,0x6e,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d, 0x30,0x2c,0x6f,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x72,0x3c,0x6f,0x3b,0x72,0x2b,0x2b,0x29,0x73,0x28,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x72,0x5d,0x2c,0x6e,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x2c,0x65,0x78,0x74,0x65,0x6e,0x64,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6f,0x29,0x7b,0x65,0x5b,0x6f,0x5d,0x3d,0x6e, 0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x72,0x28,0x74,0x2c,0x6e,0x29,0x3a,0x74, 0x7d,0x29,0x29,0x2c,0x65,0x7d,0x2c,0x74,0x72,0x69,0x6d,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x74,0x72,0x69,0x6d,0x3f,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3a,0x65, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5e,0x5c,0x73,0x2b,0x7c,0x5c, 0x73,0x2b,0x24,0x2f,0x67,0x2c,0x22,0x22,0x29,0x7d,0x2c,0x73,0x74,0x72,0x69,0x70, 0x42,0x4f,0x4d,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x36,0x35,0x32,0x37,0x39,0x3d,0x3d,0x3d,0x65, 0x2e,0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74,0x28,0x30,0x29,0x26,0x26, 0x28,0x65,0x3d,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29,0x29,0x2c,0x65, 0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x74,0x2e,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x35,0x39,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x5b,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x29, 0x7b,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61, 0x79,0x28,0x65,0x29,0x7c,0x7c,0x28,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x65,0x29,0x29,0x7c,0x7c,0x74,0x26,0x26,0x65,0x26,0x26, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x6e,0x26,0x26,0x28, 0x65,0x3d,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x73,0x3a,0x69,0x2c,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3e,0x3d,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x7b,0x64,0x6f,0x6e,0x65,0x3a,0x21,0x30,0x7d, 0x3a,0x7b,0x64,0x6f,0x6e,0x65,0x3a,0x21,0x31,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x65,0x5b,0x6f,0x2b,0x2b,0x5d,0x7d,0x7d,0x2c,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x7d,0x2c, 0x66,0x3a,0x69,0x7d,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54, 0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x49,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x74,0x6f,0x20,0x69,0x74,0x65, 0x72,0x61,0x74,0x65,0x20,0x6e,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x72,0x61,0x62,0x6c, 0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2e,0x5c,0x6e,0x49,0x6e,0x20, 0x6f,0x72,0x64,0x65,0x72,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x69,0x74,0x65,0x72, 0x61,0x62,0x6c,0x65,0x2c,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x72,0x72,0x61,0x79,0x20, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x20,0x6d,0x75,0x73,0x74,0x20,0x68,0x61,0x76, 0x65,0x20,0x61,0x20,0x5b,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72, 0x61,0x74,0x6f,0x72,0x5d,0x28,0x29,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x22, 0x29,0x7d,0x76,0x61,0x72,0x20,0x61,0x2c,0x75,0x3d,0x21,0x30,0x2c,0x63,0x3d,0x21, 0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x65,0x5b,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x28,0x29,0x7d,0x2c,0x6e,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x75,0x3d,0x65,0x2e,0x64,0x6f,0x6e,0x65,0x2c,0x65,0x7d,0x2c,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x63,0x3d,0x21,0x30,0x2c, 0x61,0x3d,0x65,0x7d,0x2c,0x66,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x72,0x79,0x7b,0x75,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x69,0x66,0x28,0x63, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x61,0x7d,0x7d,0x7d,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64, 0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x22,0x64,0x61, 0x74,0x61,0x2d,0x72,0x72,0x2d,0x75,0x69,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x22,0x72,0x72,0x55,0x69,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x46,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x62,0x69,0x6e,0x64,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x46,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x61, 0x6c,0x6c,0x2c,0x5b,0x5d,0x2e,0x73,0x6c,0x69,0x63,0x65,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x28,0x65,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c, 0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x74,0x29,0x29,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x28,0x31,0x36,0x35,0x29,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x38,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x26,0x26,0x22,0x62,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x3f, 0x72,0x2e,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x72,0x3b,0x65,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65, 0x72,0x28,0x74,0x2c,0x6e,0x2c,0x6f,0x29,0x2c,0x6e,0x2e,0x5f,0x5f,0x6f,0x6e,0x63, 0x65,0x26,0x26,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x6e,0x2e,0x5f,0x5f,0x6f, 0x6e,0x63,0x65,0x2c,0x6f,0x29,0x7d,0x3b,0x74,0x2e,0x61,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x69,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x69,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x69,0x29,0x7d, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x74,0x2e,0x61,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66, 0x29,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x74, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x74,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x65, 0x2c,0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x3d,0x74,0x7d,0x6e, 0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x31,0x37,0x29,0x2c,0x6f, 0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x73,0x65,0x6c,0x66,0x26,0x26,0x73,0x65,0x6c,0x66,0x26,0x26,0x73,0x65, 0x6c,0x66,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x26,0x26,0x73,0x65,0x6c,0x66,0x2c,0x69,0x3d,0x72,0x7c,0x7c,0x6f,0x7c, 0x7c,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x22,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x22,0x29,0x28,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x69,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x38,0x39,0x29,0x2c,0x6f,0x3d, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x26,0x26,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x26,0x26,0x21,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x6e,0x6f,0x64,0x65, 0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x69,0x3d, 0x6f,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x21,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x2c,0x61,0x3d,0x69,0x26,0x26,0x69,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x3d,0x3d,0x6f,0x26,0x26,0x72,0x2e,0x61, 0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2c,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x69,0x26,0x26,0x69,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x26,0x26,0x69,0x2e, 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x28,0x22,0x75,0x74,0x69,0x6c,0x22,0x29,0x2e, 0x74,0x79,0x70,0x65,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c, 0x61,0x26,0x26,0x61,0x2e,0x62,0x69,0x6e,0x64,0x69,0x6e,0x67,0x26,0x26,0x61,0x2e, 0x62,0x69,0x6e,0x64,0x69,0x6e,0x67,0x28,0x22,0x75,0x74,0x69,0x6c,0x22,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x7d,0x7d,0x28,0x29,0x3b,0x74,0x2e, 0x61,0x3d,0x75,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c, 0x6e,0x28,0x39,0x36,0x29,0x28,0x65,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61, 0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x69,0x72,0x7d,0x29,0x29,0x2c,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x72,0x7d,0x29,0x29,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x34,0x33,0x29, 0x2c,0x69,0x3d,0x6e,0x2e,0x6e,0x28,0x6f,0x29,0x2c,0x61,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x21,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x28,0x65,0x29,0x26,0x26,0x21, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x5d,0x22,0x3d,0x3d,0x3d,0x74,0x7c, 0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x65,0x5d,0x22, 0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x24,0x24,0x74,0x79,0x70, 0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x75,0x7d,0x28,0x65,0x29,0x7d,0x28,0x65,0x29,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f, 0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x3f,0x53,0x79, 0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x33,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x21,0x3d,0x3d,0x74,0x2e,0x63,0x6c,0x6f, 0x6e,0x65,0x26,0x26,0x74,0x2e,0x69,0x73,0x4d,0x65,0x72,0x67,0x65,0x61,0x62,0x6c, 0x65,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x3f,0x73,0x28,0x28,0x6e,0x3d, 0x65,0x2c,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28, 0x6e,0x29,0x3f,0x5b,0x5d,0x3a,0x7b,0x7d,0x29,0x2c,0x65,0x2c,0x74,0x29,0x3a,0x65, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x2e,0x6d,0x61,0x70,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x63,0x28,0x65,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x28,0x6e,0x3d,0x6e,0x7c,0x7c,0x7b,0x7d,0x29,0x2e,0x61,0x72,0x72,0x61,0x79,0x4d, 0x65,0x72,0x67,0x65,0x3d,0x6e,0x2e,0x61,0x72,0x72,0x61,0x79,0x4d,0x65,0x72,0x67, 0x65,0x7c,0x7c,0x6c,0x2c,0x6e,0x2e,0x69,0x73,0x4d,0x65,0x72,0x67,0x65,0x61,0x62, 0x6c,0x65,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x6e,0x2e,0x69,0x73,0x4d,0x65,0x72, 0x67,0x65,0x61,0x62,0x6c,0x65,0x4f,0x62,0x6a,0x65,0x63,0x74,0x7c,0x7c,0x61,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72, 0x72,0x61,0x79,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d, 0x3d,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28, 0x65,0x29,0x3f,0x72,0x3f,0x6e,0x2e,0x61,0x72,0x72,0x61,0x79,0x4d,0x65,0x72,0x67, 0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x7b, 0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x69,0x73,0x4d,0x65,0x72, 0x67,0x65,0x61,0x62,0x6c,0x65,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x26, 0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x72,0x5b,0x74,0x5d,0x3d,0x63,0x28,0x65,0x5b,0x74,0x5d, 0x2c,0x6e,0x29,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65, 0x79,0x73,0x28,0x74,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x29,0x7b,0x6e,0x2e,0x69,0x73,0x4d, 0x65,0x72,0x67,0x65,0x61,0x62,0x6c,0x65,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x74, 0x5b,0x6f,0x5d,0x29,0x26,0x26,0x65,0x5b,0x6f,0x5d,0x3f,0x72,0x5b,0x6f,0x5d,0x3d, 0x73,0x28,0x65,0x5b,0x6f,0x5d,0x2c,0x74,0x5b,0x6f,0x5d,0x2c,0x6e,0x29,0x3a,0x72, 0x5b,0x6f,0x5d,0x3d,0x63,0x28,0x74,0x5b,0x6f,0x5d,0x2c,0x6e,0x29,0x7d,0x29,0x29, 0x2c,0x72,0x7d,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x63,0x28,0x74,0x2c,0x6e, 0x29,0x7d,0x73,0x2e,0x61,0x6c,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x41,0x72,0x72,0x61,0x79,0x2e, 0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x66,0x69,0x72,0x73, 0x74,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x20,0x62,0x65,0x20,0x61,0x6e,0x20,0x61,0x72,0x72,0x61,0x79,0x22,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65,0x2c,0x6e,0x2c,0x74,0x29,0x7d,0x29, 0x2c,0x7b,0x7d,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x73,0x2c,0x64,0x3d, 0x6e,0x28,0x31,0x38,0x29,0x2c,0x70,0x3d,0x64,0x2e,0x61,0x2e,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x2c,0x68,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2c,0x76,0x3d,0x68,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x67,0x3d,0x68,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x2c,0x6d,0x3d,0x70,0x3f,0x70,0x2e,0x74,0x6f,0x53,0x74, 0x72,0x69,0x6e,0x67,0x54,0x61,0x67,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76, 0x61,0x72,0x20,0x62,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x76,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c, 0x6d,0x29,0x2c,0x6e,0x3d,0x65,0x5b,0x6d,0x5d,0x3b,0x74,0x72,0x79,0x7b,0x65,0x5b, 0x6d,0x5d,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x21,0x30,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x69,0x29,0x7b,0x7d,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x26,0x26,0x28,0x74,0x3f,0x65,0x5b,0x6d,0x5d,0x3d,0x6e, 0x3a,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x5b,0x6d,0x5d,0x29,0x2c,0x6f,0x7d, 0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x3b,0x76,0x61,0x72, 0x20,0x5f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d, 0x2c,0x77,0x3d,0x70,0x3f,0x70,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x54, 0x61,0x67,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x61,0x72,0x20,0x4f,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5d,0x22,0x3a,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x4e,0x75,0x6c,0x6c,0x5d,0x22,0x3a,0x77,0x26,0x26,0x77,0x20, 0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x3f,0x62,0x28,0x65, 0x29,0x3a,0x5f,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x78,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x28,0x6e,0x29,0x29,0x7d,0x7d,0x2c, 0x45,0x3d,0x78,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6a,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x2c,0x6b,0x3d,0x46,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x53,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c, 0x43,0x3d,0x6b,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x41,0x3d,0x53, 0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c, 0x54,0x3d,0x43,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x29, 0x3b,0x76,0x61,0x72,0x20,0x50,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x6a,0x28,0x65,0x29,0x7c,0x7c,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x21,0x3d, 0x4f,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x45,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x41,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x22,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x29,0x26,0x26,0x74,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x43,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x29, 0x3d,0x3d,0x54,0x7d,0x3b,0x76,0x61,0x72,0x20,0x44,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65, 0x3d,0x30,0x7d,0x3b,0x76,0x61,0x72,0x20,0x4e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x65,0x21,0x3d,0x3d,0x65,0x26,0x26,0x74,0x21,0x3d, 0x3d,0x74,0x7d,0x3b,0x76,0x61,0x72,0x20,0x49,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2d,0x2d,0x3b,0x29, 0x69,0x66,0x28,0x4e,0x28,0x65,0x5b,0x6e,0x5d,0x5b,0x30,0x5d,0x2c,0x74,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d, 0x31,0x7d,0x2c,0x52,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x3b,0x76,0x61,0x72,0x20, 0x4c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f, 0x5f,0x2c,0x6e,0x3d,0x49,0x28,0x74,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x28,0x6e,0x3c,0x30,0x29,0x26,0x26,0x28,0x6e,0x3d,0x3d,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x3f,0x74,0x2e,0x70,0x6f,0x70,0x28,0x29,0x3a, 0x52,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x2c,0x31,0x29,0x2c,0x2d,0x2d, 0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x21,0x30,0x29,0x7d,0x3b,0x76, 0x61,0x72,0x20,0x46,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61, 0x74,0x61,0x5f,0x5f,0x2c,0x6e,0x3d,0x49,0x28,0x74,0x2c,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x3c,0x30,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a, 0x74,0x5b,0x6e,0x5d,0x5b,0x31,0x5d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x4d,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x49,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f, 0x5f,0x2c,0x65,0x29,0x3e,0x2d,0x31,0x7d,0x3b,0x76,0x61,0x72,0x20,0x42,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f, 0x2c,0x72,0x3d,0x49,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x72,0x3c,0x30,0x3f,0x28,0x2b,0x2b,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a, 0x65,0x2c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x65,0x2c,0x74,0x5d,0x29,0x29, 0x3a,0x6e,0x5b,0x72,0x5d,0x5b,0x31,0x5d,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72, 0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x3b,0x2b,0x2b, 0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d, 0x3b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x5b,0x30,0x5d,0x2c,0x72, 0x5b,0x31,0x5d,0x29,0x7d,0x7d,0x7a,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x44,0x2c,0x7a,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x3d,0x4c,0x2c,0x7a, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x3d,0x46, 0x2c,0x7a,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73, 0x3d,0x4d,0x2c,0x7a,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73, 0x65,0x74,0x3d,0x42,0x3b,0x76,0x61,0x72,0x20,0x55,0x3d,0x7a,0x3b,0x76,0x61,0x72, 0x20,0x57,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20, 0x55,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x7d,0x3b,0x76, 0x61,0x72,0x20,0x24,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61, 0x74,0x61,0x5f,0x5f,0x2c,0x6e,0x3d,0x74,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x3d,0x74,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x6e,0x7d,0x3b,0x76,0x61, 0x72,0x20,0x48,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61, 0x74,0x61,0x5f,0x5f,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x56,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x47,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x28,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x71, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x21,0x47,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x4f,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x5d,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72,0x46,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x5d,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x41,0x73,0x79,0x6e,0x63,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d, 0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x50, 0x72,0x6f,0x78,0x79,0x5d,0x22,0x3d,0x3d,0x74,0x7d,0x2c,0x4b,0x3d,0x64,0x2e,0x61, 0x5b,0x22,0x5f,0x5f,0x63,0x6f,0x72,0x65,0x2d,0x6a,0x73,0x5f,0x73,0x68,0x61,0x72, 0x65,0x64,0x5f,0x5f,0x22,0x5d,0x2c,0x59,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x2f,0x5b,0x5e,0x2e,0x5d,0x2b, 0x24,0x2f,0x2e,0x65,0x78,0x65,0x63,0x28,0x4b,0x26,0x26,0x4b,0x2e,0x6b,0x65,0x79, 0x73,0x26,0x26,0x4b,0x2e,0x6b,0x65,0x79,0x73,0x2e,0x49,0x45,0x5f,0x50,0x52,0x4f, 0x54,0x4f,0x7c,0x7c,0x22,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3f,0x22,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x28,0x73,0x72,0x63,0x29,0x5f,0x31,0x2e, 0x22,0x2b,0x65,0x3a,0x22,0x22,0x7d,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x51,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x21,0x59,0x26,0x26,0x59,0x20,0x69,0x6e,0x20,0x65,0x7d,0x2c,0x58, 0x3d,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x3b,0x76,0x61,0x72, 0x20,0x4a,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x58,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x7d,0x74,0x72,0x79,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2b,0x22,0x22,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x74,0x29,0x7b,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x7d,0x2c,0x5a, 0x3d,0x2f,0x5e,0x5c,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x2e,0x2b,0x3f,0x43, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x5c,0x5d,0x24,0x2f,0x2c,0x65, 0x65,0x3d,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2c,0x74,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x6e,0x65,0x3d,0x65,0x65,0x2e,0x74, 0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x72,0x65,0x3d,0x74,0x65,0x2e,0x68,0x61, 0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x6f,0x65,0x3d, 0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x5e,0x22,0x2b,0x6e,0x65,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x72,0x65,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f, 0x5b,0x5c,0x5c,0x5e,0x24,0x2e,0x2a,0x2b,0x3f,0x28,0x29,0x5b,0x5c,0x5d,0x7b,0x7d, 0x7c,0x5d,0x2f,0x67,0x2c,0x22,0x5c,0x5c,0x24,0x26,0x22,0x29,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x2f,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x7c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x2e, 0x2a,0x3f,0x28,0x3f,0x3d,0x5c,0x5c,0x5c,0x28,0x29,0x7c,0x20,0x66,0x6f,0x72,0x20, 0x2e,0x2b,0x3f,0x28,0x3f,0x3d,0x5c,0x5c,0x5c,0x5d,0x29,0x2f,0x67,0x2c,0x22,0x24, 0x31,0x2e,0x2a,0x3f,0x22,0x29,0x2b,0x22,0x24,0x22,0x29,0x3b,0x76,0x61,0x72,0x20, 0x69,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x21,0x47,0x28,0x65,0x29,0x7c,0x7c,0x51,0x28, 0x65,0x29,0x29,0x26,0x26,0x28,0x71,0x28,0x65,0x29,0x3f,0x6f,0x65,0x3a,0x5a,0x29, 0x2e,0x74,0x65,0x73,0x74,0x28,0x4a,0x28,0x65,0x29,0x29,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x61,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x65,0x5b,0x74,0x5d,0x7d,0x3b,0x76,0x61, 0x72,0x20,0x75,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x65,0x28,0x65,0x2c,0x74,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x65,0x28,0x6e,0x29,0x3f,0x6e,0x3a, 0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x2c,0x63,0x65,0x3d,0x75,0x65,0x28,0x64,0x2e, 0x61,0x2c,0x22,0x4d,0x61,0x70,0x22,0x29,0x2c,0x6c,0x65,0x3d,0x75,0x65,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2c,0x22,0x63,0x72,0x65,0x61,0x74,0x65,0x22,0x29,0x3b, 0x76,0x61,0x72,0x20,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d, 0x6c,0x65,0x3f,0x6c,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3a,0x7b,0x7d,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x66,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x73,0x28,0x65,0x29, 0x26,0x26,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x64,0x61,0x74,0x61,0x5f,0x5f,0x5b,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2d,0x3d,0x74,0x3f,0x31,0x3a, 0x30,0x2c,0x74,0x7d,0x2c,0x64,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x76,0x61,0x72,0x20,0x70,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x69, 0x66,0x28,0x6c,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x5b,0x65,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5f,0x5f,0x6c,0x6f,0x64,0x61,0x73,0x68, 0x5f,0x68,0x61,0x73,0x68,0x5f,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5f, 0x5f,0x22,0x3d,0x3d,0x3d,0x6e,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6e,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x2c,0x65,0x29,0x3f,0x74,0x5b,0x65,0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d, 0x2c,0x68,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x3b,0x76,0x61,0x72,0x20,0x76,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6c,0x65,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x5b, 0x65,0x5d,0x3a,0x68,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x65,0x29,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x67,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2b,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x3f,0x30,0x3a,0x31,0x2c,0x6e,0x5b,0x65,0x5d, 0x3d,0x6c,0x65,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f, 0x22,0x5f,0x5f,0x6c,0x6f,0x64,0x61,0x73,0x68,0x5f,0x68,0x61,0x73,0x68,0x5f,0x75, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5f,0x5f,0x22,0x3a,0x74,0x2c,0x74,0x68, 0x69,0x73,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x65,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28, 0x29,0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x65,0x5b,0x74,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x5b, 0x30,0x5d,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x7d,0x7d,0x6d,0x65,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x73,0x65,0x2c, 0x6d,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c, 0x65,0x74,0x65,0x3d,0x66,0x65,0x2c,0x6d,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x3d,0x70,0x65,0x2c,0x6d,0x65,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x3d,0x76,0x65,0x2c,0x6d, 0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d, 0x67,0x65,0x3b,0x76,0x61,0x72,0x20,0x62,0x65,0x3d,0x6d,0x65,0x3b,0x76,0x61,0x72, 0x20,0x79,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x7b,0x68,0x61,0x73,0x68,0x3a,0x6e, 0x65,0x77,0x20,0x62,0x65,0x2c,0x6d,0x61,0x70,0x3a,0x6e,0x65,0x77,0x28,0x63,0x65, 0x7c,0x7c,0x55,0x29,0x2c,0x73,0x74,0x72,0x69,0x6e,0x67,0x3a,0x6e,0x65,0x77,0x20, 0x62,0x65,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x5f,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74, 0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x6e,0x75,0x6d,0x62,0x65, 0x72,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d, 0x3d,0x74,0x7c,0x7c,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d,0x74, 0x3f,0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x21,0x3d,0x3d,0x65, 0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7d,0x3b,0x76,0x61,0x72,0x20,0x77, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x65,0x28,0x74,0x29,0x3f,0x6e,0x5b, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x3f,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3a,0x22,0x68,0x61,0x73, 0x68,0x22,0x5d,0x3a,0x6e,0x2e,0x6d,0x61,0x70,0x7d,0x3b,0x76,0x61,0x72,0x20,0x4f, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x77,0x65,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2e,0x64, 0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2d,0x3d,0x74,0x3f,0x31,0x3a,0x30, 0x2c,0x74,0x7d,0x3b,0x76,0x61,0x72,0x20,0x78,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x65, 0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x45,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x65,0x28,0x74,0x68, 0x69,0x73,0x2c,0x65,0x29,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61, 0x72,0x20,0x6a,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x77,0x65,0x28,0x74,0x68,0x69,0x73, 0x2c,0x65,0x29,0x2c,0x72,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2b,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65, 0x3d,0x3d,0x72,0x3f,0x30,0x3a,0x31,0x2c,0x74,0x68,0x69,0x73,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x74, 0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x3b,0x2b,0x2b,0x74,0x3c, 0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x74, 0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x5b,0x30,0x5d,0x2c,0x72,0x5b,0x31, 0x5d,0x29,0x7d,0x7d,0x6b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x79,0x65,0x2c,0x6b,0x65,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x3d,0x4f,0x65, 0x2c,0x6b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67,0x65, 0x74,0x3d,0x78,0x65,0x2c,0x6b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x68,0x61,0x73,0x3d,0x45,0x65,0x2c,0x6b,0x65,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x6a,0x65,0x3b,0x76,0x61,0x72, 0x20,0x53,0x65,0x3d,0x6b,0x65,0x3b,0x76,0x61,0x72,0x20,0x43,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b, 0x69,0x66,0x28,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20, 0x55,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x21,0x63,0x65,0x7c,0x7c,0x72,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3c,0x31,0x39,0x39,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x65,0x2c,0x74,0x5d,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x2b,0x2b,0x6e,0x2e,0x73,0x69,0x7a,0x65, 0x2c,0x74,0x68,0x69,0x73,0x3b,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64, 0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x28,0x72,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x6e,0x2e,0x73,0x69, 0x7a,0x65,0x2c,0x74,0x68,0x69,0x73,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x41,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20, 0x55,0x28,0x65,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x74, 0x2e,0x73,0x69,0x7a,0x65,0x7d,0x41,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x57,0x2c,0x41,0x65,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x3d,0x24, 0x2c,0x41,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67,0x65, 0x74,0x3d,0x48,0x2c,0x41,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x68,0x61,0x73,0x3d,0x56,0x2c,0x41,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x43,0x65,0x3b,0x76,0x61,0x72,0x20,0x54, 0x65,0x3d,0x41,0x65,0x3b,0x76,0x61,0x72,0x20,0x50,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c, 0x72,0x26,0x26,0x21,0x31,0x21,0x3d,0x3d,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x6e, 0x2c,0x65,0x29,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c, 0x44,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x72, 0x79,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x75,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2c,0x22,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x7b,0x7d,0x2c, 0x22,0x22,0x2c,0x7b,0x7d,0x29,0x2c,0x65,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74, 0x29,0x7b,0x7d,0x7d,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x4e,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x5f, 0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x3d,0x3d,0x74,0x26,0x26,0x44,0x65, 0x3f,0x44,0x65,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, 0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61, 0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e,0x2c,0x77, 0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29,0x3a,0x65,0x5b,0x74, 0x5d,0x3d,0x6e,0x7d,0x2c,0x49,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x76,0x61,0x72,0x20,0x52,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x49,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x74,0x29,0x26,0x26,0x4e,0x28,0x72,0x2c,0x6e,0x29,0x26,0x26, 0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x7c,0x7c,0x74,0x20,0x69, 0x6e,0x20,0x65,0x29,0x7c,0x7c,0x4e,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x4c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x21,0x6e,0x3b,0x6e,0x7c,0x7c,0x28,0x6e,0x3d,0x7b,0x7d,0x29,0x3b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x69,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x75,0x3d,0x74,0x5b,0x69,0x5d,0x2c,0x63,0x3d,0x72,0x3f,0x72,0x28,0x6e,0x5b, 0x75,0x5d,0x2c,0x65,0x5b,0x75,0x5d,0x2c,0x75,0x2c,0x6e,0x2c,0x65,0x29,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63, 0x26,0x26,0x28,0x63,0x3d,0x65,0x5b,0x75,0x5d,0x29,0x2c,0x6f,0x3f,0x4e,0x65,0x28, 0x6e,0x2c,0x75,0x2c,0x63,0x29,0x3a,0x52,0x65,0x28,0x6e,0x2c,0x75,0x2c,0x63,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x3b,0x76,0x61,0x72,0x20,0x46, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x41, 0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x3b,0x2b,0x2b,0x6e,0x3c,0x65,0x3b,0x29,0x72, 0x5b,0x6e,0x5d,0x3d,0x74,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x7d,0x3b,0x76,0x61,0x72,0x20,0x4d,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x28,0x65, 0x29,0x26,0x26,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5d,0x22,0x3d,0x3d,0x4f,0x28,0x65,0x29,0x7d,0x2c,0x42, 0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2c,0x7a,0x65,0x3d,0x42,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x55,0x65,0x3d,0x42,0x65,0x2e,0x70,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62, 0x6c,0x65,0x2c,0x57,0x65,0x3d,0x4d,0x65,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x7d,0x28,0x29,0x29,0x3f,0x4d,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a, 0x28,0x65,0x29,0x26,0x26,0x7a,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22, 0x63,0x61,0x6c,0x6c,0x65,0x65,0x22,0x29,0x26,0x26,0x21,0x55,0x65,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x65,0x2c,0x22,0x63,0x61,0x6c,0x6c,0x65,0x65,0x22,0x29,0x7d,0x2c, 0x24,0x65,0x3d,0x57,0x65,0x2c,0x48,0x65,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69, 0x73,0x41,0x72,0x72,0x61,0x79,0x2c,0x56,0x65,0x3d,0x6e,0x28,0x39,0x30,0x29,0x2c, 0x47,0x65,0x3d,0x2f,0x5e,0x28,0x3f,0x3a,0x30,0x7c,0x5b,0x31,0x2d,0x39,0x5d,0x5c, 0x64,0x2a,0x29,0x24,0x2f,0x3b,0x76,0x61,0x72,0x20,0x71,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x21,0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x39,0x30,0x30, 0x37,0x31,0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39,0x39,0x31,0x3a,0x74,0x29, 0x26,0x26,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x6e,0x7c,0x7c, 0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x21,0x3d,0x6e,0x26,0x26,0x47,0x65,0x2e, 0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x29,0x26,0x26,0x65,0x3e,0x2d,0x31,0x26,0x26, 0x65,0x25,0x31,0x3d,0x3d,0x30,0x26,0x26,0x65,0x3c,0x74,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x4b,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x3e,0x2d,0x31,0x26,0x26, 0x65,0x25,0x31,0x3d,0x3d,0x30,0x26,0x26,0x65,0x3c,0x3d,0x39,0x30,0x30,0x37,0x31, 0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39,0x39,0x31,0x7d,0x2c,0x59,0x65,0x3d, 0x7b,0x7d,0x3b,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46, 0x6c,0x6f,0x61,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x59, 0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46,0x6c,0x6f,0x61,0x74, 0x36,0x34,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79, 0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x49,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x59,0x65, 0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x33,0x32,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x5d,0x22, 0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69, 0x6e,0x74,0x38,0x43,0x6c,0x61,0x6d,0x70,0x65,0x64,0x41,0x72,0x72,0x61,0x79,0x5d, 0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55, 0x69,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x59,0x65, 0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x33,0x32, 0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x21,0x30,0x2c,0x59,0x65,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65, 0x72,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77, 0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x44,0x61,0x74,0x65,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x45,0x72,0x72,0x6f,0x72,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x4d,0x61,0x70,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x5d,0x22,0x5d,0x3d,0x59,0x65, 0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x52,0x65,0x67,0x45,0x78,0x70,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x65,0x74,0x5d,0x22,0x5d,0x3d,0x59,0x65,0x5b, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x5d, 0x22,0x5d,0x3d,0x59,0x65,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x57, 0x65,0x61,0x6b,0x4d,0x61,0x70,0x5d,0x22,0x5d,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72, 0x20,0x51,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x28,0x65,0x29,0x26,0x26,0x4b,0x65,0x28, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x21,0x21,0x59,0x65,0x5b, 0x4f,0x28,0x65,0x29,0x5d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x58,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x29,0x7d,0x7d,0x2c,0x4a,0x65,0x3d,0x6e,0x28, 0x34,0x31,0x29,0x2c,0x5a,0x65,0x3d,0x4a,0x65,0x2e,0x61,0x26,0x26,0x4a,0x65,0x2e, 0x61,0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x64,0x41,0x72,0x72,0x61,0x79,0x2c,0x65, 0x74,0x3d,0x5a,0x65,0x3f,0x58,0x65,0x28,0x5a,0x65,0x29,0x3a,0x51,0x65,0x2c,0x74, 0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x3b,0x76,0x61,0x72,0x20,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x48,0x65,0x28, 0x65,0x29,0x2c,0x72,0x3d,0x21,0x6e,0x26,0x26,0x24,0x65,0x28,0x65,0x29,0x2c,0x6f, 0x3d,0x21,0x6e,0x26,0x26,0x21,0x72,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x56,0x65,0x2e,0x61,0x29,0x28,0x65,0x29,0x2c,0x69,0x3d,0x21,0x6e,0x26,0x26,0x21, 0x72,0x26,0x26,0x21,0x6f,0x26,0x26,0x65,0x74,0x28,0x65,0x29,0x2c,0x61,0x3d,0x6e, 0x7c,0x7c,0x72,0x7c,0x7c,0x6f,0x7c,0x7c,0x69,0x2c,0x75,0x3d,0x61,0x3f,0x46,0x65, 0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x53,0x74,0x72,0x69,0x6e,0x67, 0x29,0x3a,0x5b,0x5d,0x2c,0x63,0x3d,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6c,0x20,0x69,0x6e,0x20,0x65,0x29,0x21, 0x74,0x26,0x26,0x21,0x74,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6c,0x29, 0x7c,0x7c,0x61,0x26,0x26,0x28,0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x3d,0x3d, 0x6c,0x7c,0x7c,0x6f,0x26,0x26,0x28,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x3d, 0x3d,0x6c,0x7c,0x7c,0x22,0x70,0x61,0x72,0x65,0x6e,0x74,0x22,0x3d,0x3d,0x6c,0x29, 0x7c,0x7c,0x69,0x26,0x26,0x28,0x22,0x62,0x75,0x66,0x66,0x65,0x72,0x22,0x3d,0x3d, 0x6c,0x7c,0x7c,0x22,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x22,0x3d, 0x3d,0x6c,0x7c,0x7c,0x22,0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x22, 0x3d,0x3d,0x6c,0x29,0x7c,0x7c,0x71,0x65,0x28,0x6c,0x2c,0x63,0x29,0x29,0x7c,0x7c, 0x75,0x2e,0x70,0x75,0x73,0x68,0x28,0x6c,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x75,0x7d,0x2c,0x72,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20,0x6f,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x28,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x26,0x26,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x7c, 0x7c,0x72,0x74,0x29,0x7d,0x2c,0x69,0x74,0x3d,0x78,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x6b,0x65,0x79,0x73,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x29,0x2c,0x61, 0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x3b,0x76,0x61,0x72,0x20,0x75,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x6f,0x74,0x28,0x65,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x74,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x29,0x61,0x74,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26,0x22,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x21,0x3d,0x6e,0x26,0x26,0x74,0x2e,0x70,0x75, 0x73,0x68,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x65,0x26,0x26,0x4b,0x65,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26, 0x26,0x21,0x71,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6c,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x63,0x74,0x28,0x65,0x29,0x3f,0x6e,0x74,0x28,0x65,0x29,0x3a,0x75,0x74, 0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x73,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x26,0x26,0x4c,0x65,0x28,0x74,0x2c,0x6c,0x74,0x28,0x74,0x29,0x2c,0x65, 0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x66,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29, 0x29,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x7d,0x2c,0x64,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x76,0x61,0x72,0x20,0x70,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x47, 0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x74,0x28,0x65,0x29, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6f,0x74,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x5b, 0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x65, 0x29,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x21, 0x3d,0x72,0x7c,0x7c,0x21,0x74,0x26,0x26,0x64,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x65,0x2c,0x72,0x29,0x29,0x26,0x26,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x3b,0x76,0x61,0x72,0x20,0x68, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x63,0x74,0x28,0x65,0x29,0x3f,0x6e,0x74,0x28,0x65,0x2c, 0x21,0x30,0x29,0x3a,0x70,0x74,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x76, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x4c,0x65,0x28,0x74,0x2c,0x68, 0x74,0x28,0x74,0x29,0x2c,0x65,0x29,0x7d,0x2c,0x67,0x74,0x3d,0x6e,0x28,0x31,0x34, 0x34,0x29,0x3b,0x76,0x61,0x72,0x20,0x6d,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31, 0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28, 0x74,0x7c,0x7c,0x28,0x74,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x29,0x29,0x3b, 0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x3b,0x76,0x61,0x72,0x20,0x62, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x5b,0x5d,0x3b,0x2b,0x2b,0x6e,0x3c,0x72, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x6e,0x5d,0x3b,0x74,0x28, 0x61,0x2c,0x6e,0x2c,0x65,0x29,0x26,0x26,0x28,0x69,0x5b,0x6f,0x2b,0x2b,0x5d,0x3d, 0x61,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x79,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x2c,0x5f,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x70,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c, 0x65,0x2c,0x77,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x73,0x2c,0x4f,0x74,0x3d,0x77,0x74,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x5b,0x5d,0x3a,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x65,0x29,0x2c,0x62,0x74,0x28,0x77,0x74,0x28,0x65,0x29,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x5f,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74,0x29,0x7d,0x29,0x29,0x29, 0x7d,0x3a,0x79,0x74,0x3b,0x76,0x61,0x72,0x20,0x78,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4c,0x65,0x28,0x65,0x2c,0x4f,0x74,0x28,0x65,0x29,0x2c,0x74,0x29,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x45,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d, 0x31,0x2c,0x72,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x65, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x65, 0x5b,0x6f,0x2b,0x6e,0x5d,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x2c,0x6a,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67, 0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x73,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x65,0x3b, 0x29,0x45,0x74,0x28,0x74,0x2c,0x4f,0x74,0x28,0x65,0x29,0x29,0x2c,0x65,0x3d,0x45, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x3a,0x79,0x74, 0x3b,0x76,0x61,0x72,0x20,0x6b,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x65,0x28, 0x65,0x2c,0x6a,0x74,0x28,0x65,0x29,0x2c,0x74,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x53,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x48,0x65,0x28,0x65,0x29,0x3f,0x72,0x3a,0x45,0x74,0x28, 0x72,0x2c,0x6e,0x28,0x65,0x29,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x43,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x53,0x74,0x28,0x65,0x2c,0x6c,0x74,0x2c,0x4f,0x74,0x29,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x41,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x74,0x28,0x65,0x2c,0x68, 0x74,0x2c,0x6a,0x74,0x29,0x7d,0x2c,0x54,0x74,0x3d,0x75,0x65,0x28,0x64,0x2e,0x61, 0x2c,0x22,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x22,0x29,0x2c,0x50,0x74,0x3d, 0x75,0x65,0x28,0x64,0x2e,0x61,0x2c,0x22,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x22, 0x29,0x2c,0x44,0x74,0x3d,0x75,0x65,0x28,0x64,0x2e,0x61,0x2c,0x22,0x53,0x65,0x74, 0x22,0x29,0x2c,0x4e,0x74,0x3d,0x75,0x65,0x28,0x64,0x2e,0x61,0x2c,0x22,0x57,0x65, 0x61,0x6b,0x4d,0x61,0x70,0x22,0x29,0x2c,0x49,0x74,0x3d,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x2c,0x52,0x74,0x3d,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x5d,0x22,0x2c, 0x4c,0x74,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x65,0x74,0x5d, 0x22,0x2c,0x46,0x74,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x57,0x65, 0x61,0x6b,0x4d,0x61,0x70,0x5d,0x22,0x2c,0x4d,0x74,0x3d,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x5d,0x22,0x2c,0x42, 0x74,0x3d,0x4a,0x28,0x54,0x74,0x29,0x2c,0x7a,0x74,0x3d,0x4a,0x28,0x63,0x65,0x29, 0x2c,0x55,0x74,0x3d,0x4a,0x28,0x50,0x74,0x29,0x2c,0x57,0x74,0x3d,0x4a,0x28,0x44, 0x74,0x29,0x2c,0x24,0x74,0x3d,0x4a,0x28,0x4e,0x74,0x29,0x2c,0x48,0x74,0x3d,0x4f, 0x3b,0x28,0x54,0x74,0x26,0x26,0x48,0x74,0x28,0x6e,0x65,0x77,0x20,0x54,0x74,0x28, 0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x28, 0x31,0x29,0x29,0x29,0x21,0x3d,0x4d,0x74,0x7c,0x7c,0x63,0x65,0x26,0x26,0x48,0x74, 0x28,0x6e,0x65,0x77,0x20,0x63,0x65,0x29,0x21,0x3d,0x49,0x74,0x7c,0x7c,0x50,0x74, 0x26,0x26,0x48,0x74,0x28,0x50,0x74,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28, 0x29,0x29,0x21,0x3d,0x52,0x74,0x7c,0x7c,0x44,0x74,0x26,0x26,0x48,0x74,0x28,0x6e, 0x65,0x77,0x20,0x44,0x74,0x29,0x21,0x3d,0x4c,0x74,0x7c,0x7c,0x4e,0x74,0x26,0x26, 0x48,0x74,0x28,0x6e,0x65,0x77,0x20,0x4e,0x74,0x29,0x21,0x3d,0x46,0x74,0x29,0x26, 0x26,0x28,0x48,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x3d, 0x3d,0x74,0x3f,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x72,0x3d,0x6e,0x3f,0x4a,0x28,0x6e,0x29, 0x3a,0x22,0x22,0x3b,0x69,0x66,0x28,0x72,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x72,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x42,0x74,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4d,0x74,0x3b,0x63,0x61,0x73,0x65,0x20,0x7a,0x74,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x49,0x74,0x3b,0x63,0x61,0x73,0x65,0x20,0x55,0x74,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x74,0x3b,0x63,0x61,0x73,0x65,0x20,0x57,0x74, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x74,0x3b,0x63,0x61,0x73,0x65,0x20, 0x24,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x74,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x56,0x74,0x3d,0x48, 0x74,0x2c,0x47,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x3b,0x76,0x61,0x72,0x20,0x71,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x65,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x74,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x5b,0x30,0x5d,0x26,0x26,0x47, 0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22,0x69,0x6e,0x64,0x65,0x78,0x22, 0x29,0x26,0x26,0x28,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3d,0x65,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x2c,0x6e,0x2e,0x69,0x6e,0x70,0x75,0x74,0x3d,0x65,0x2e,0x69,0x6e, 0x70,0x75,0x74,0x29,0x2c,0x6e,0x7d,0x2c,0x4b,0x74,0x3d,0x64,0x2e,0x61,0x2e,0x55, 0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x3b,0x76,0x61,0x72,0x20,0x59,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x28,0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74, 0x68,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x4b,0x74, 0x28,0x74,0x29,0x2e,0x73,0x65,0x74,0x28,0x6e,0x65,0x77,0x20,0x4b,0x74,0x28,0x65, 0x29,0x29,0x2c,0x74,0x7d,0x3b,0x76,0x61,0x72,0x20,0x51,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x3f,0x59,0x74,0x28,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x29,0x3a, 0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x28,0x6e,0x2c,0x65,0x2e,0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74, 0x2c,0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7d,0x2c, 0x58,0x74,0x3d,0x2f,0x5c,0x77,0x2a,0x24,0x2f,0x3b,0x76,0x61,0x72,0x20,0x4a,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x28,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x58,0x74, 0x2e,0x65,0x78,0x65,0x63,0x28,0x65,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x3d,0x65,0x2e,0x6c, 0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x2c,0x74,0x7d,0x2c,0x5a,0x74,0x3d,0x70, 0x3f,0x70,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x65,0x6e,0x3d,0x5a,0x74,0x3f,0x5a,0x74,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x4f,0x66,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x61,0x72,0x20, 0x74,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x65,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x29,0x3a,0x7b,0x7d,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x3f,0x59,0x74,0x28, 0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x29,0x3a,0x65,0x2e,0x62,0x75,0x66,0x66, 0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x65,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x6e,0x2c,0x65,0x2e, 0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x72,0x6e,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66, 0x66,0x65,0x72,0x5d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x74,0x28, 0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x65,0x5d,0x22,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x72,0x28,0x2b,0x65,0x29,0x3b,0x63, 0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x61, 0x56,0x69,0x65,0x77,0x5d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x51,0x74, 0x28,0x65,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x46,0x6c,0x6f,0x61,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46, 0x6c,0x6f,0x61,0x74,0x36,0x34,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x38,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x5d,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e, 0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72, 0x61,0x79,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x43,0x6c,0x61,0x6d,0x70,0x65,0x64,0x41,0x72, 0x72,0x61,0x79,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x5d,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69, 0x6e,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x65,0x74,0x5d,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x72,0x3b,0x63,0x61, 0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4e,0x75,0x6d,0x62,0x65, 0x72,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x5d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x65,0x77,0x20,0x72,0x28,0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x5d,0x22,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x74,0x28,0x65,0x29,0x3b,0x63,0x61,0x73, 0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x5d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6e,0x28,0x65,0x29,0x7d, 0x7d,0x2c,0x6f,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x2c,0x61,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x69,0x66,0x28,0x21,0x47,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x7d,0x3b,0x69,0x66,0x28,0x6f,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x6e,0x28,0x74,0x29,0x3b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x3d,0x74,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x65, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e,0x7d,0x7d,0x28,0x29, 0x3b,0x76,0x61,0x72,0x20,0x75,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x7c,0x7c,0x6f,0x74,0x28,0x65, 0x29,0x3f,0x7b,0x7d,0x3a,0x61,0x6e,0x28,0x45,0x28,0x65,0x29,0x29,0x7d,0x3b,0x76, 0x61,0x72,0x20,0x63,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x28,0x65,0x29,0x26,0x26,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x3d,0x3d,0x56, 0x74,0x28,0x65,0x29,0x7d,0x2c,0x6c,0x6e,0x3d,0x4a,0x65,0x2e,0x61,0x26,0x26,0x4a, 0x65,0x2e,0x61,0x2e,0x69,0x73,0x4d,0x61,0x70,0x2c,0x73,0x6e,0x3d,0x6c,0x6e,0x3f, 0x58,0x65,0x28,0x6c,0x6e,0x29,0x3a,0x63,0x6e,0x3b,0x76,0x61,0x72,0x20,0x66,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6a,0x28,0x65,0x29,0x26,0x26,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x53,0x65,0x74,0x5d,0x22,0x3d,0x3d,0x56,0x74,0x28,0x65,0x29,0x7d, 0x2c,0x64,0x6e,0x3d,0x4a,0x65,0x2e,0x61,0x26,0x26,0x4a,0x65,0x2e,0x61,0x2e,0x69, 0x73,0x53,0x65,0x74,0x2c,0x70,0x6e,0x3d,0x64,0x6e,0x3f,0x58,0x65,0x28,0x64,0x6e, 0x29,0x3a,0x66,0x6e,0x2c,0x68,0x6e,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5d,0x22,0x2c,0x76,0x6e,0x3d, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x5d,0x22,0x2c,0x67,0x6e,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x2c,0x6d,0x6e,0x3d,0x7b,0x7d,0x3b,0x6d, 0x6e,0x5b,0x68,0x6e,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66, 0x65,0x72,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x5d,0x22,0x5d,0x3d,0x6d,0x6e, 0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61, 0x6e,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x44,0x61,0x74,0x65,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x20,0x46,0x6c,0x6f,0x61,0x74,0x33,0x32,0x41,0x72,0x72,0x61, 0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x46,0x6c,0x6f,0x61,0x74,0x36,0x34,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d, 0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74, 0x38,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79, 0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x49,0x6e,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e, 0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x5d, 0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4e,0x75,0x6d, 0x62,0x65,0x72,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x5d, 0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53, 0x65,0x74,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x5d,0x22, 0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69, 0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x43,0x6c,0x61, 0x6d,0x70,0x65,0x64,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x31,0x36,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d, 0x22,0x5d,0x3d,0x21,0x30,0x2c,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x45,0x72,0x72,0x6f,0x72,0x5d,0x22,0x5d,0x3d,0x6d,0x6e,0x5b,0x76,0x6e, 0x5d,0x3d,0x6d,0x6e,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x57,0x65, 0x61,0x6b,0x4d,0x61,0x70,0x5d,0x22,0x5d,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20, 0x62,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75, 0x2c,0x63,0x3d,0x31,0x26,0x6e,0x2c,0x6c,0x3d,0x32,0x26,0x6e,0x2c,0x73,0x3d,0x34, 0x26,0x6e,0x3b,0x69,0x66,0x28,0x72,0x26,0x26,0x28,0x75,0x3d,0x69,0x3f,0x72,0x28, 0x74,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x3a,0x72,0x28,0x74,0x29,0x29,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x75,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x75,0x3b,0x69,0x66,0x28,0x21,0x47,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x48,0x65,0x28,0x74,0x29, 0x3b,0x69,0x66,0x28,0x66,0x29,0x7b,0x69,0x66,0x28,0x75,0x3d,0x71,0x74,0x28,0x74, 0x29,0x2c,0x21,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x74,0x28,0x74, 0x2c,0x75,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x56, 0x74,0x28,0x74,0x29,0x2c,0x70,0x3d,0x64,0x3d,0x3d,0x76,0x6e,0x7c,0x7c,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72, 0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x3d,0x3d,0x64,0x3b,0x69,0x66, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x56,0x65,0x2e,0x61,0x29,0x28,0x74,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67, 0x74,0x2e,0x61,0x29,0x28,0x74,0x2c,0x63,0x29,0x3b,0x69,0x66,0x28,0x64,0x3d,0x3d, 0x67,0x6e,0x7c,0x7c,0x64,0x3d,0x3d,0x68,0x6e,0x7c,0x7c,0x70,0x26,0x26,0x21,0x69, 0x29,0x7b,0x69,0x66,0x28,0x75,0x3d,0x6c,0x7c,0x7c,0x70,0x3f,0x7b,0x7d,0x3a,0x75, 0x6e,0x28,0x74,0x29,0x2c,0x21,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c, 0x3f,0x6b,0x74,0x28,0x74,0x2c,0x76,0x74,0x28,0x75,0x2c,0x74,0x29,0x29,0x3a,0x78, 0x74,0x28,0x74,0x2c,0x73,0x74,0x28,0x75,0x2c,0x74,0x29,0x29,0x7d,0x65,0x6c,0x73, 0x65,0x7b,0x69,0x66,0x28,0x21,0x6d,0x6e,0x5b,0x64,0x5d,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x69,0x3f,0x74,0x3a,0x7b,0x7d,0x3b,0x75,0x3d,0x72,0x6e,0x28,0x74, 0x2c,0x64,0x2c,0x63,0x29,0x7d,0x7d,0x61,0x7c,0x7c,0x28,0x61,0x3d,0x6e,0x65,0x77, 0x20,0x54,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d,0x61,0x2e,0x67,0x65,0x74, 0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x68,0x3b,0x61,0x2e,0x73,0x65,0x74,0x28,0x74,0x2c,0x75,0x29,0x2c,0x70,0x6e,0x28, 0x74,0x29,0x3f,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x29,0x7b,0x75,0x2e,0x61,0x64,0x64,0x28, 0x65,0x28,0x6f,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x74,0x2c,0x61,0x29,0x29,0x7d, 0x29,0x29,0x3a,0x73,0x6e,0x28,0x74,0x29,0x26,0x26,0x74,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x2c, 0x69,0x29,0x7b,0x75,0x2e,0x73,0x65,0x74,0x28,0x69,0x2c,0x65,0x28,0x6f,0x2c,0x6e, 0x2c,0x72,0x2c,0x69,0x2c,0x74,0x2c,0x61,0x29,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61, 0x72,0x20,0x76,0x3d,0x66,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x28,0x73,0x3f, 0x6c,0x3f,0x41,0x74,0x3a,0x43,0x74,0x3a,0x6c,0x3f,0x68,0x74,0x3a,0x6c,0x74,0x29, 0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x65,0x28,0x76,0x7c, 0x7c,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x2c,0x69, 0x29,0x7b,0x76,0x26,0x26,0x28,0x6f,0x3d,0x74,0x5b,0x69,0x3d,0x6f,0x5d,0x29,0x2c, 0x52,0x65,0x28,0x75,0x2c,0x69,0x2c,0x65,0x28,0x6f,0x2c,0x6e,0x2c,0x72,0x2c,0x69, 0x2c,0x74,0x2c,0x61,0x29,0x29,0x7d,0x29,0x29,0x2c,0x75,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x79,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x6e,0x28,0x65,0x2c,0x34,0x29,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x5f,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d, 0x31,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x72, 0x29,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x6f,0x5b,0x6e,0x5d,0x3d,0x74,0x28, 0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x7d,0x3b,0x76,0x61,0x72,0x20,0x77,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x79, 0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c, 0x7c,0x6a,0x28,0x65,0x29,0x26,0x26,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x5d,0x22,0x3d,0x3d,0x4f,0x28,0x65,0x29,0x7d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x74,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x45,0x78,0x70, 0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6f,0x3d,0x74,0x3f,0x74,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x3a,0x72,0x5b,0x30,0x5d,0x2c,0x69, 0x3d,0x6e,0x2e,0x63,0x61,0x63,0x68,0x65,0x3b,0x69,0x66,0x28,0x69,0x2e,0x68,0x61, 0x73,0x28,0x6f,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x2e,0x67,0x65, 0x74,0x28,0x6f,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x63,0x61,0x63,0x68,0x65,0x3d,0x69,0x2e,0x73,0x65,0x74,0x28, 0x6f,0x2c,0x61,0x29,0x7c,0x7c,0x69,0x2c,0x61,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x63,0x61,0x63,0x68,0x65,0x3d,0x6e,0x65,0x77,0x28,0x4f,0x6e, 0x2e,0x43,0x61,0x63,0x68,0x65,0x7c,0x7c,0x53,0x65,0x29,0x2c,0x6e,0x7d,0x4f,0x6e, 0x2e,0x43,0x61,0x63,0x68,0x65,0x3d,0x53,0x65,0x3b,0x76,0x61,0x72,0x20,0x78,0x6e, 0x3d,0x4f,0x6e,0x3b,0x76,0x61,0x72,0x20,0x45,0x6e,0x3d,0x2f,0x5b,0x5e,0x2e,0x5b, 0x5c,0x5d,0x5d,0x2b,0x7c,0x5c,0x5b,0x28,0x3f,0x3a,0x28,0x2d,0x3f,0x5c,0x64,0x2b, 0x28,0x3f,0x3a,0x5c,0x2e,0x5c,0x64,0x2b,0x29,0x3f,0x29,0x7c,0x28,0x5b,0x22,0x27, 0x5d,0x29,0x28,0x28,0x3f,0x3a,0x28,0x3f,0x21,0x5c,0x32,0x29,0x5b,0x5e,0x5c,0x5c, 0x5d,0x7c,0x5c,0x5c,0x2e,0x29,0x2a,0x3f,0x29,0x5c,0x32,0x29,0x5c,0x5d,0x7c,0x28, 0x3f,0x3d,0x28,0x3f,0x3a,0x5c,0x2e,0x7c,0x5c,0x5b,0x5c,0x5d,0x29,0x28,0x3f,0x3a, 0x5c,0x2e,0x7c,0x5c,0x5b,0x5c,0x5d,0x7c,0x24,0x29,0x29,0x2f,0x67,0x2c,0x6a,0x6e, 0x3d,0x2f,0x5c,0x5c,0x28,0x5c,0x5c,0x29,0x3f,0x2f,0x67,0x2c,0x6b,0x6e,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x78,0x6e,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x35,0x30,0x30,0x3d,0x3d,0x3d, 0x6e,0x2e,0x73,0x69,0x7a,0x65,0x26,0x26,0x6e,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28, 0x29,0x2c,0x65,0x7d,0x29,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x63,0x61,0x63,0x68,0x65, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x34,0x36,0x3d,0x3d,0x3d,0x65,0x2e,0x63, 0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74,0x28,0x30,0x29,0x26,0x26,0x74,0x2e, 0x70,0x75,0x73,0x68,0x28,0x22,0x22,0x29,0x2c,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61, 0x63,0x65,0x28,0x45,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x74,0x2e,0x70,0x75,0x73,0x68,0x28, 0x72,0x3f,0x6f,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x6a,0x6e,0x2c,0x22, 0x24,0x31,0x22,0x29,0x3a,0x6e,0x7c,0x7c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x74,0x7d, 0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x53,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x77,0x6e,0x28, 0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2b,0x22,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x30,0x22, 0x3d,0x3d,0x74,0x26,0x26,0x31,0x2f,0x65,0x3d,0x3d,0x2d,0x49,0x6e,0x66,0x69,0x6e, 0x69,0x74,0x79,0x3f,0x22,0x2d,0x30,0x22,0x3a,0x74,0x7d,0x2c,0x43,0x6e,0x3d,0x70, 0x3f,0x70,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x41,0x6e,0x3d,0x43,0x6e,0x3f,0x43,0x6e,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x61,0x72, 0x20,0x54,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74, 0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x3b,0x69,0x66,0x28,0x48,0x65,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x5f,0x6e,0x28,0x74,0x2c,0x65,0x29,0x2b,0x22,0x22,0x3b,0x69,0x66,0x28,0x77, 0x6e,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x6e,0x3f,0x41, 0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x29,0x3a,0x22,0x22,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x74,0x2b,0x22,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x30, 0x22,0x3d,0x3d,0x6e,0x26,0x26,0x31,0x2f,0x74,0x3d,0x3d,0x2d,0x49,0x6e,0x66,0x69, 0x6e,0x69,0x74,0x79,0x3f,0x22,0x2d,0x30,0x22,0x3a,0x6e,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x50,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x22, 0x22,0x3a,0x54,0x6e,0x28,0x65,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x44,0x6e,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x48,0x65,0x28,0x65,0x29,0x3f,0x5f,0x6e,0x28,0x65,0x2c,0x53,0x6e, 0x29,0x3a,0x77,0x6e,0x28,0x65,0x29,0x3f,0x5b,0x65,0x5d,0x3a,0x6d,0x74,0x28,0x6b, 0x6e,0x28,0x50,0x6e,0x28,0x65,0x29,0x29,0x29,0x7d,0x2c,0x4e,0x6e,0x3d,0x6e,0x28, 0x33,0x31,0x29,0x2c,0x49,0x6e,0x3d,0x6e,0x28,0x35,0x32,0x29,0x2c,0x52,0x6e,0x3d, 0x6e,0x2e,0x6e,0x28,0x49,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x4c,0x6e,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x62,0x6e,0x28,0x65,0x2c,0x35,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x46,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x46,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20,0x69, 0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26,0x26,0x28, 0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x2c,0x46,0x6e,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x29,0x2c,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x65,0x2c, 0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x3d,0x74,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c, 0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29, 0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c, 0x28,0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x6e, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x52,0x65,0x66,0x65, 0x72,0x65,0x6e,0x63,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x74,0x68,0x69,0x73, 0x20,0x68,0x61,0x73,0x6e,0x27,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x69,0x73,0x65,0x64,0x20,0x2d,0x20,0x73,0x75,0x70,0x65,0x72, 0x28,0x29,0x20,0x68,0x61,0x73,0x6e,0x27,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x63, 0x61,0x6c,0x6c,0x65,0x64,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x7d,0x76,0x61,0x72,0x20,0x55,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79, 0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x26,0x26,0x30,0x3d,0x3d, 0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x2c,0x57,0x6e,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x7d,0x2c,0x24,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x2c,0x48,0x6e,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c, 0x6f,0x6f,0x72,0x28,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x65,0x29,0x29,0x29,0x3d, 0x3d,0x3d,0x65,0x7d,0x2c,0x56,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x5d,0x22,0x3d,0x3d,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74, 0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d, 0x2c,0x47,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x2e,0x43,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x28,0x65,0x29,0x7d,0x2c, 0x71,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x24,0x6e,0x28,0x65,0x29,0x26,0x26,0x57,0x6e,0x28, 0x65,0x2e,0x74,0x68,0x65,0x6e,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4b,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x26,0x26,0x28,0x72,0x3d,0x30,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x44,0x6e,0x28,0x74,0x29,0x3b, 0x65,0x26,0x26,0x72,0x3c,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x65, 0x3d,0x65,0x5b,0x6f,0x5b,0x72,0x2b,0x2b,0x5d,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x6e,0x3a,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x79,0x6e, 0x28,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x2c,0x69,0x3d,0x30,0x2c,0x61,0x3d,0x44,0x6e, 0x28,0x74,0x29,0x3b,0x69,0x3c,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31, 0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x61,0x5b,0x69,0x5d, 0x2c,0x63,0x3d,0x4b,0x6e,0x28,0x65,0x2c,0x61,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28, 0x30,0x2c,0x69,0x2b,0x31,0x29,0x29,0x3b,0x69,0x66,0x28,0x63,0x26,0x26,0x28,0x24, 0x6e,0x28,0x63,0x29,0x7c,0x7c,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72, 0x72,0x61,0x79,0x28,0x63,0x29,0x29,0x29,0x6f,0x3d,0x6f,0x5b,0x75,0x5d,0x3d,0x79, 0x6e,0x28,0x63,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d, 0x61,0x5b,0x69,0x2b,0x31,0x5d,0x3b,0x6f,0x3d,0x6f,0x5b,0x75,0x5d,0x3d,0x48,0x6e, 0x28,0x6c,0x29,0x26,0x26,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x6c,0x29,0x3e,0x3d, 0x30,0x3f,0x5b,0x5d,0x3a,0x7b,0x7d,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x28, 0x30,0x3d,0x3d,0x3d,0x69,0x3f,0x65,0x3a,0x6f,0x29,0x5b,0x61,0x5b,0x69,0x5d,0x5d, 0x3d,0x3d,0x3d,0x6e,0x3f,0x65,0x3a,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6e,0x3f,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x6f,0x5b,0x61,0x5b,0x69,0x5d, 0x5d,0x3a,0x6f,0x5b,0x61,0x5b,0x69,0x5d,0x5d,0x3d,0x6e,0x2c,0x30,0x3d,0x3d,0x3d, 0x69,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x64, 0x65,0x6c,0x65,0x74,0x65,0x20,0x72,0x5b,0x61,0x5b,0x69,0x5d,0x5d,0x2c,0x72,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e, 0x26,0x26,0x28,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70, 0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x26,0x26,0x28,0x72, 0x3d,0x7b,0x7d,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x30, 0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65, 0x29,0x3b,0x6f,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x2b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x69,0x5b,0x6f,0x5d,0x2c,0x75,0x3d,0x65, 0x5b,0x61,0x5d,0x3b,0x24,0x6e,0x28,0x75,0x29,0x3f,0x6e,0x2e,0x67,0x65,0x74,0x28, 0x75,0x29,0x7c,0x7c,0x28,0x6e,0x2e,0x73,0x65,0x74,0x28,0x75,0x2c,0x21,0x30,0x29, 0x2c,0x72,0x5b,0x61,0x5d,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72, 0x72,0x61,0x79,0x28,0x75,0x29,0x3f,0x5b,0x5d,0x3a,0x7b,0x7d,0x2c,0x51,0x6e,0x28, 0x75,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x5b,0x61,0x5d,0x29,0x29,0x3a,0x72,0x5b,0x61, 0x5d,0x3d,0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x76,0x61,0x72, 0x20,0x58,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x6f,0x69,0x64, 0x20,0x30,0x29,0x3b,0x58,0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61, 0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x69,0x6b,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x4a,0x6e,0x3d,0x58,0x6e,0x2e,0x50,0x72,0x6f, 0x76,0x69,0x64,0x65,0x72,0x2c,0x5a,0x6e,0x3d,0x58,0x6e,0x2e,0x43,0x6f,0x6e,0x73, 0x75,0x6d,0x65,0x72,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x72, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x58,0x6e, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4e,0x6e,0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x2c,0x65,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x63, 0x61,0x73,0x65,0x22,0x53,0x45,0x54,0x5f,0x56,0x41,0x4c,0x55,0x45,0x53,0x22,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b, 0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64, 0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x45,0x54,0x5f,0x54,0x4f,0x55,0x43, 0x48,0x45,0x44,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b, 0x7d,0x2c,0x65,0x2c,0x7b,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x74,0x2e,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x45, 0x54,0x5f,0x45,0x52,0x52,0x4f,0x52,0x53,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x69,0x28,0x29,0x28,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x2c,0x74,0x2e, 0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x29,0x3f,0x65,0x3a,0x46,0x6e,0x28,0x7b,0x7d, 0x2c,0x65,0x2c,0x7b,0x65,0x72,0x72,0x6f,0x72,0x73,0x3a,0x74,0x2e,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x45,0x54,0x5f, 0x53,0x54,0x41,0x54,0x55,0x53,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46, 0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x74, 0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22, 0x53,0x45,0x54,0x5f,0x49,0x53,0x53,0x55,0x42,0x4d,0x49,0x54,0x54,0x49,0x4e,0x47, 0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65, 0x2c,0x7b,0x69,0x73,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x3a,0x74, 0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22, 0x53,0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c,0x49,0x44,0x41,0x54,0x49,0x4e,0x47, 0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65, 0x2c,0x7b,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6e,0x67,0x3a,0x74, 0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22, 0x53,0x45,0x54,0x5f,0x46,0x49,0x45,0x4c,0x44,0x5f,0x56,0x41,0x4c,0x55,0x45,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c, 0x7b,0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x59,0x6e,0x28,0x65,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x73,0x2c,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x2c,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x29,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x45,0x54,0x5f, 0x46,0x49,0x45,0x4c,0x44,0x5f,0x54,0x4f,0x55,0x43,0x48,0x45,0x44,0x22,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x74, 0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x59,0x6e,0x28,0x65,0x2e,0x74,0x6f,0x75,0x63, 0x68,0x65,0x64,0x2c,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x66,0x69, 0x65,0x6c,0x64,0x2c,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x29,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x45,0x54,0x5f, 0x46,0x49,0x45,0x4c,0x44,0x5f,0x45,0x52,0x52,0x4f,0x52,0x22,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x65,0x72,0x72, 0x6f,0x72,0x73,0x3a,0x59,0x6e,0x28,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x2c, 0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x2c, 0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29, 0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x52,0x45,0x53,0x45,0x54,0x5f,0x46,0x4f, 0x52,0x4d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d, 0x2c,0x65,0x2c,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x29,0x3b,0x63,0x61, 0x73,0x65,0x22,0x53,0x45,0x54,0x5f,0x46,0x4f,0x52,0x4d,0x49,0x4b,0x5f,0x53,0x54, 0x41,0x54,0x45,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x70,0x61, 0x79,0x6c,0x6f,0x61,0x64,0x28,0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x55, 0x42,0x4d,0x49,0x54,0x5f,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x22,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x74,0x6f, 0x75,0x63,0x68,0x65,0x64,0x3a,0x51,0x6e,0x28,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x73,0x2c,0x21,0x30,0x29,0x2c,0x69,0x73,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69, 0x6e,0x67,0x3a,0x21,0x30,0x2c,0x73,0x75,0x62,0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e, 0x74,0x3a,0x65,0x2e,0x73,0x75,0x62,0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e,0x74,0x2b, 0x31,0x7d,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x53,0x55,0x42,0x4d,0x49,0x54,0x5f, 0x46,0x41,0x49,0x4c,0x55,0x52,0x45,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x53,0x55, 0x42,0x4d,0x49,0x54,0x5f,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x22,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x69,0x73, 0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x3a,0x21,0x31,0x7d,0x29,0x3b, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x7d,0x7d,0x76,0x61,0x72,0x20,0x6e,0x72,0x3d,0x7b,0x7d,0x2c,0x72,0x72,0x3d,0x7b, 0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x72,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74, 0x65,0x4f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x2c,0x6e,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x76,0x61, 0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x42,0x6c,0x75,0x72,0x2c,0x61,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x7c,0x7c,0x6f,0x2c,0x75,0x3d,0x65, 0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x4d,0x6f,0x75,0x6e,0x74, 0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x75,0x26,0x26,0x75, 0x2c,0x6c,0x3d,0x65,0x2e,0x69,0x73,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61, 0x6c,0x69,0x64,0x2c,0x73,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x2c,0x64,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x73,0x26,0x26,0x73,0x2c,0x70,0x3d,0x65,0x2e,0x6f, 0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x2c,0x68,0x3d,0x42,0x6e,0x28,0x65,0x2c,0x5b, 0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x43,0x68,0x61,0x6e,0x67, 0x65,0x22,0x2c,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x42,0x6c, 0x75,0x72,0x22,0x2c,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x4d, 0x6f,0x75,0x6e,0x74,0x22,0x2c,0x22,0x69,0x73,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x56,0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x22,0x2c,0x22,0x6f,0x6e,0x53, 0x75,0x62,0x6d,0x69,0x74,0x22,0x5d,0x29,0x2c,0x76,0x3d,0x46,0x6e,0x28,0x7b,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a, 0x6e,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x42,0x6c,0x75,0x72, 0x3a,0x61,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x4d,0x6f,0x75, 0x6e,0x74,0x3a,0x63,0x2c,0x6f,0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x70,0x7d, 0x2c,0x68,0x29,0x2c,0x67,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75, 0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x56,0x61,0x6c,0x75,0x65,0x73,0x29,0x2c,0x6d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x76,0x2e,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x7c,0x7c,0x6e,0x72,0x29,0x2c, 0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65, 0x66,0x29,0x28,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63, 0x68,0x65,0x64,0x7c,0x7c,0x72,0x72,0x29,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x76,0x2e,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74,0x75,0x73,0x29,0x2c,0x5f,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28, 0x21,0x31,0x29,0x2c,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75, 0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x7b,0x7d,0x29,0x3b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x30,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x5f,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x21,0x31,0x7d,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x3b,0x76,0x61, 0x72,0x20,0x4f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x29,0x28,0x74,0x72,0x2c,0x7b,0x76,0x61,0x6c, 0x75,0x65,0x73,0x3a,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c, 0x75,0x65,0x73,0x2c,0x65,0x72,0x72,0x6f,0x72,0x73,0x3a,0x76,0x2e,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x7c,0x7c,0x6e,0x72,0x2c,0x74, 0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x7c,0x7c,0x72,0x72,0x2c,0x73,0x74,0x61,0x74, 0x75,0x73,0x3a,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74, 0x75,0x73,0x2c,0x69,0x73,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x3a, 0x21,0x31,0x2c,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6e,0x67,0x3a, 0x21,0x31,0x2c,0x73,0x75,0x62,0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e,0x74,0x3a,0x30, 0x7d,0x29,0x2c,0x78,0x3d,0x4f,0x5b,0x30,0x5d,0x2c,0x45,0x3d,0x4f,0x5b,0x31,0x5d, 0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x76,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x28,0x65,0x2c,0x74,0x29,0x3b, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6f,0x3f,0x6e,0x28,0x6e,0x72,0x29,0x3a,0x71,0x6e, 0x28,0x6f,0x29,0x3f,0x6f,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x28,0x65,0x7c,0x7c,0x6e,0x72,0x29, 0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x28,0x65,0x29,0x7d,0x29,0x29,0x3a,0x6e,0x28,0x6f,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x2c,0x5b,0x76,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x5d,0x29,0x2c, 0x6b,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x76,0x2e,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65,0x6d,0x61,0x2c, 0x72,0x3d,0x57,0x6e,0x28,0x6e,0x29,0x3f,0x6e,0x28,0x74,0x29,0x3a,0x6e,0x2c,0x6f, 0x3d,0x74,0x26,0x26,0x72,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x41,0x74, 0x3f,0x72,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x41,0x74,0x28,0x74,0x2c, 0x65,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26, 0x26,0x28,0x6e,0x3d,0x21,0x31,0x29,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x72,0x26,0x26,0x28,0x72,0x3d,0x7b,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x61,0x72,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b, 0x6e,0x3f,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x53,0x79,0x6e,0x63,0x22, 0x3a,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x5d,0x28,0x6f,0x2c,0x7b, 0x61,0x62,0x6f,0x72,0x74,0x45,0x61,0x72,0x6c,0x79,0x3a,0x21,0x31,0x2c,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x3a,0x72,0x7d,0x29,0x7d,0x28,0x65,0x2c,0x72,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69, 0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x6f,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x65,0x28,0x6e,0x72,0x29,0x7d,0x29,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x22,0x56,0x61,0x6c,0x69,0x64, 0x61,0x74,0x69,0x6f,0x6e,0x45,0x72,0x72,0x6f,0x72,0x22,0x3d,0x3d,0x3d,0x6e,0x2e, 0x6e,0x61,0x6d,0x65,0x3f,0x65,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x7d,0x3b,0x69,0x66,0x28,0x65, 0x2e,0x69,0x6e,0x6e,0x65,0x72,0x29,0x7b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x65, 0x2e,0x69,0x6e,0x6e,0x65,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x59,0x6e,0x28,0x74,0x2c,0x65,0x2e,0x70,0x61,0x74,0x68, 0x2c,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x2c,0x72,0x3d,0x41,0x72,0x72,0x61, 0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6e,0x29,0x2c,0x6f,0x3d,0x30, 0x3b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x72,0x3f,0x6e,0x3a,0x6e,0x5b,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x28,0x29,0x3b, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3b,0x69,0x66,0x28,0x72,0x29,0x7b,0x69, 0x66,0x28,0x6f,0x3e,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x69,0x3d,0x6e,0x5b,0x6f,0x2b,0x2b,0x5d,0x7d,0x65,0x6c,0x73, 0x65,0x7b,0x69,0x66,0x28,0x28,0x6f,0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29, 0x29,0x2e,0x64,0x6f,0x6e,0x65,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x69,0x3d,0x6f, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x69,0x3b,0x4b, 0x6e,0x28,0x74,0x2c,0x61,0x2e,0x70,0x61,0x74,0x68,0x29,0x7c,0x7c,0x28,0x74,0x3d, 0x59,0x6e,0x28,0x74,0x2c,0x61,0x2e,0x70,0x61,0x74,0x68,0x2c,0x61,0x2e,0x6d,0x65, 0x73,0x73,0x61,0x67,0x65,0x29,0x29,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x7d,0x28,0x6e,0x29,0x29,0x3a,0x74,0x28,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x29,0x7d,0x29,0x2c,0x5b,0x76,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f, 0x6e,0x53,0x63,0x68,0x65,0x6d,0x61,0x5d,0x29,0x2c,0x53,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d, 0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x77,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x5b,0x65,0x5d,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x28, 0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x43,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b, 0x65,0x79,0x73,0x28,0x77,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2e,0x66, 0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x6e,0x28,0x77,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x5b,0x65,0x5d,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3e,0x30,0x3f,0x74,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x28, 0x74,0x2c,0x4b,0x6e,0x28,0x65,0x2c,0x74,0x29,0x29,0x7d,0x29,0x29,0x3a,0x5b,0x50, 0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x22, 0x44,0x4f,0x5f,0x4e,0x4f,0x54,0x5f,0x44,0x45,0x4c,0x45,0x54,0x45,0x5f,0x59,0x4f, 0x55,0x5f,0x57,0x49,0x4c,0x4c,0x5f,0x42,0x45,0x5f,0x46,0x49,0x52,0x45,0x44,0x22, 0x29,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73, 0x65,0x2e,0x61,0x6c,0x6c,0x28,0x6e,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x44,0x4f,0x5f,0x4e,0x4f,0x54,0x5f,0x44,0x45,0x4c,0x45,0x54,0x45, 0x5f,0x59,0x4f,0x55,0x5f,0x57,0x49,0x4c,0x4c,0x5f,0x42,0x45,0x5f,0x46,0x49,0x52, 0x45,0x44,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x6e,0x26,0x26,0x28,0x65,0x3d,0x59, 0x6e,0x28,0x65,0x2c,0x74,0x5b,0x72,0x5d,0x2c,0x6e,0x29,0x29,0x2c,0x65,0x7d,0x29, 0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x53,0x5d,0x29,0x2c,0x41, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x72,0x6f,0x6d,0x69, 0x73,0x65,0x2e,0x61,0x6c,0x6c,0x28,0x5b,0x43,0x28,0x65,0x29,0x2c,0x76,0x2e,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65,0x6d,0x61,0x3f, 0x6b,0x28,0x65,0x29,0x3a,0x7b,0x7d,0x2c,0x76,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x3f,0x6a,0x28,0x65,0x29,0x3a,0x7b,0x7d,0x5d,0x29,0x2e,0x74,0x68,0x65, 0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x5b,0x30,0x5d,0x2c,0x6e,0x3d,0x65,0x5b,0x31,0x5d, 0x2c,0x72,0x3d,0x65,0x5b,0x32,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x2e,0x61,0x6c,0x6c,0x28,0x5b,0x74,0x2c,0x6e,0x2c,0x72,0x5d,0x2c,0x7b,0x61,0x72, 0x72,0x61,0x79,0x4d,0x65,0x72,0x67,0x65,0x3a,0x75,0x72,0x7d,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x2c,0x5b,0x76,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x2c,0x76, 0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65,0x6d, 0x61,0x2c,0x43,0x2c,0x6a,0x2c,0x6b,0x5d,0x29,0x2c,0x54,0x3d,0x6c,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28, 0x65,0x3d,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x29,0x2c,0x45,0x28,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c,0x49,0x44, 0x41,0x54,0x49,0x4e,0x47,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x21, 0x30,0x7d,0x29,0x2c,0x41,0x28,0x65,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x45,0x28, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c, 0x49,0x44,0x41,0x54,0x49,0x4e,0x47,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64, 0x3a,0x21,0x31,0x7d,0x29,0x2c,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53, 0x45,0x54,0x5f,0x45,0x52,0x52,0x4f,0x52,0x53,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f, 0x61,0x64,0x3a,0x65,0x7d,0x29,0x29,0x2c,0x65,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x63,0x26,0x26,0x21,0x30,0x3d,0x3d,0x3d,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x26,0x26,0x69,0x28,0x29,0x28,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x73, 0x29,0x26,0x26,0x54,0x28,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7d, 0x29,0x2c,0x5b,0x63,0x2c,0x54,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x50,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x26,0x26,0x65,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x73,0x3f,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x67,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6e,0x3d,0x65,0x26,0x26,0x65,0x2e,0x65,0x72, 0x72,0x6f,0x72,0x73,0x3f,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x3a,0x6d,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3f,0x6d,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3a,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72, 0x73,0x7c,0x7c,0x7b,0x7d,0x2c,0x72,0x3d,0x65,0x26,0x26,0x65,0x2e,0x74,0x6f,0x75, 0x63,0x68,0x65,0x64,0x3f,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x62, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3f,0x62,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3a,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63, 0x68,0x65,0x64,0x7c,0x7c,0x7b,0x7d,0x2c,0x6f,0x3d,0x65,0x26,0x26,0x65,0x2e,0x73, 0x74,0x61,0x74,0x75,0x73,0x3f,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x79, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3f,0x79,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3a,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74, 0x75,0x73,0x3b,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x74,0x2c,0x6d, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x2c,0x62,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x72,0x2c,0x79,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3d,0x6f,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x52,0x45,0x53, 0x45,0x54,0x5f,0x46,0x4f,0x52,0x4d,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64, 0x3a,0x7b,0x69,0x73,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x3a,0x21, 0x21,0x65,0x26,0x26,0x21,0x21,0x65,0x2e,0x69,0x73,0x53,0x75,0x62,0x6d,0x69,0x74, 0x74,0x69,0x6e,0x67,0x2c,0x65,0x72,0x72,0x6f,0x72,0x73,0x3a,0x6e,0x2c,0x74,0x6f, 0x75,0x63,0x68,0x65,0x64,0x3a,0x72,0x2c,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x6f, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x73,0x3a,0x74,0x2c,0x69,0x73,0x56,0x61,0x6c,0x69, 0x64,0x61,0x74,0x69,0x6e,0x67,0x3a,0x21,0x21,0x65,0x26,0x26,0x21,0x21,0x65,0x2e, 0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6e,0x67,0x2c,0x73,0x75,0x62, 0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e,0x74,0x3a,0x65,0x26,0x26,0x65,0x2e,0x73,0x75, 0x62,0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e,0x74,0x26,0x26,0x22,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x73, 0x75,0x62,0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e,0x74,0x3f,0x65,0x2e,0x73,0x75,0x62, 0x6d,0x69,0x74,0x43,0x6f,0x75,0x6e,0x74,0x3a,0x30,0x7d,0x7d,0x29,0x7d,0x3b,0x69, 0x66,0x28,0x76,0x2e,0x6f,0x6e,0x52,0x65,0x73,0x65,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x76,0x2e,0x6f,0x6e,0x52,0x65,0x73,0x65,0x74,0x28,0x78,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x73,0x2c,0x51,0x29,0x3b,0x71,0x6e,0x28,0x61,0x29,0x3f,0x61, 0x2e,0x74,0x68,0x65,0x6e,0x28,0x69,0x29,0x3a,0x69,0x28,0x29,0x7d,0x65,0x6c,0x73, 0x65,0x20,0x69,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x53,0x74,0x61,0x74,0x75,0x73,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x5d,0x29,0x3b,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x21,0x30,0x21,0x3d, 0x3d,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x69,0x28,0x29,0x28, 0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74, 0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x73,0x29,0x7c,0x7c,0x28,0x64,0x26,0x26, 0x28,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x76,0x2e,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x73,0x2c,0x50,0x28,0x29,0x29,0x2c, 0x63,0x26,0x26,0x54,0x28,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x29, 0x7d,0x29,0x2c,0x5b,0x64,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56, 0x61,0x6c,0x75,0x65,0x73,0x2c,0x50,0x2c,0x63,0x2c,0x54,0x5d,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x64,0x26, 0x26,0x21,0x30,0x3d,0x3d,0x3d,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26, 0x26,0x21,0x69,0x28,0x29,0x28,0x6d,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c, 0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x29, 0x26,0x26,0x28,0x6d,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x76,0x2e,0x69, 0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x7c,0x7c,0x6e,0x72, 0x2c,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x45,0x52, 0x52,0x4f,0x52,0x53,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x76,0x2e, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x7c,0x7c,0x6e, 0x72,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x64,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74, 0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x64,0x26,0x26,0x21, 0x30,0x3d,0x3d,0x3d,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x21, 0x69,0x28,0x29,0x28,0x62,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x76,0x2e, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x29,0x26, 0x26,0x28,0x62,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x76,0x2e,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x7c,0x7c,0x72,0x72, 0x2c,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x54,0x4f, 0x55,0x43,0x48,0x45,0x44,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x76, 0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x7c, 0x7c,0x72,0x72,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x64,0x2c,0x76,0x2e,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x5d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63, 0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x64, 0x26,0x26,0x21,0x30,0x3d,0x3d,0x3d,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x26,0x26,0x21,0x69,0x28,0x29,0x28,0x79,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74,0x75,0x73, 0x29,0x26,0x26,0x28,0x79,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x76,0x2e, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74,0x75,0x73,0x2c,0x45,0x28, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x53,0x54,0x41,0x54,0x55, 0x53,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x76,0x2e,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74,0x75,0x73,0x7d,0x29,0x29,0x7d,0x29,0x2c, 0x5b,0x64,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74, 0x75,0x73,0x2c,0x76,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63, 0x68,0x65,0x64,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x44,0x3d,0x6c,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x77, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5b,0x65,0x5d,0x26,0x26,0x57,0x6e,0x28, 0x77,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5b,0x65,0x5d,0x2e,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4b,0x6e, 0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x65,0x29,0x2c,0x6e,0x3d,0x77, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5b,0x65,0x5d,0x2e,0x76,0x61,0x6c,0x69, 0x64,0x61,0x74,0x65,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71, 0x6e,0x28,0x6e,0x29,0x3f,0x28,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53, 0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c,0x49,0x44,0x41,0x54,0x49,0x4e,0x47,0x22, 0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x21,0x30,0x7d,0x29,0x2c,0x6e,0x2e, 0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x2e,0x74,0x68, 0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46,0x49,0x45, 0x4c,0x44,0x5f,0x45,0x52,0x52,0x4f,0x52,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61, 0x64,0x3a,0x7b,0x66,0x69,0x65,0x6c,0x64,0x3a,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x74,0x7d,0x7d,0x29,0x2c,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53, 0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c,0x49,0x44,0x41,0x54,0x49,0x4e,0x47,0x22, 0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x29,0x29, 0x29,0x3a,0x28,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f, 0x46,0x49,0x45,0x4c,0x44,0x5f,0x45,0x52,0x52,0x4f,0x52,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x7b,0x66,0x69,0x65,0x6c,0x64,0x3a,0x65,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x6e,0x7d,0x7d,0x29,0x2c,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65, 0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x6e,0x29,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x76,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e, 0x53,0x63,0x68,0x65,0x6d,0x61,0x3f,0x28,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a, 0x22,0x53,0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c,0x49,0x44,0x41,0x54,0x49,0x4e, 0x47,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x21,0x30,0x7d,0x29,0x2c, 0x6b,0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x65,0x29,0x2e,0x74,0x68, 0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x2e,0x74,0x68,0x65,0x6e, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x45,0x28, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46,0x49,0x45,0x4c,0x44, 0x5f,0x45,0x52,0x52,0x4f,0x52,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a, 0x7b,0x66,0x69,0x65,0x6c,0x64,0x3a,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x74, 0x5b,0x65,0x5d,0x7d,0x7d,0x29,0x2c,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x53,0x45,0x54,0x5f,0x49,0x53,0x56,0x41,0x4c,0x49,0x44,0x41,0x54,0x49,0x4e,0x47, 0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x29, 0x29,0x29,0x3a,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c, 0x76,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x4e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x3b, 0x77,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5b,0x65,0x5d,0x3d,0x7b,0x76,0x61, 0x6c,0x69,0x64,0x61,0x74,0x65,0x3a,0x6e,0x7d,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c, 0x49,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x77,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x5b,0x65,0x5d,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x52, 0x3d,0x6c,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x28,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x54,0x4f,0x55,0x43,0x48,0x45,0x44,0x22,0x2c, 0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x29,0x2c,0x28,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x61,0x3a,0x74,0x29,0x3f,0x54,0x28,0x78, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x29,0x3a,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65, 0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x4c,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c, 0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f, 0x45,0x52,0x52,0x4f,0x52,0x53,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a, 0x65,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x46,0x3d,0x6c,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x57,0x6e,0x28,0x65,0x29,0x3f,0x65,0x28,0x78,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x73,0x29,0x3a,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45, 0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x56,0x41,0x4c,0x55, 0x45,0x53,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x72,0x7d,0x29,0x2c, 0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x6e,0x3a,0x74,0x29, 0x3f,0x54,0x28,0x72,0x29,0x3a,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65, 0x73,0x6f,0x6c,0x76,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x4d,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46, 0x49,0x45,0x4c,0x44,0x5f,0x45,0x52,0x52,0x4f,0x52,0x22,0x2c,0x70,0x61,0x79,0x6c, 0x6f,0x61,0x64,0x3a,0x7b,0x66,0x69,0x65,0x6c,0x64,0x3a,0x65,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x74,0x7d,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x42,0x3d, 0x6c,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x28,0x7b,0x74,0x79, 0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46,0x49,0x45,0x4c,0x44,0x5f,0x56,0x41, 0x4c,0x55,0x45,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x7b,0x66,0x69, 0x65,0x6c,0x64,0x3a,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x74,0x7d,0x7d,0x29, 0x2c,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x3f,0x6e,0x3a,0x72, 0x29,0x3f,0x54,0x28,0x59,0x6e,0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c, 0x65,0x2c,0x74,0x29,0x29,0x3a,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65, 0x73,0x6f,0x6c,0x76,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x7a,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x3d,0x74,0x2c,0x6f,0x3d,0x65,0x3b, 0x69,0x66,0x28,0x21,0x56,0x6e,0x28,0x65,0x29,0x29,0x7b,0x65,0x2e,0x70,0x65,0x72, 0x73,0x69,0x73,0x74,0x26,0x26,0x65,0x2e,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x28, 0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74, 0x3f,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x54,0x61,0x72,0x67,0x65,0x74,0x2c,0x61,0x3d,0x69,0x2e,0x74,0x79, 0x70,0x65,0x2c,0x75,0x3d,0x69,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x69,0x2e, 0x69,0x64,0x2c,0x6c,0x3d,0x69,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x73,0x3d,0x69, 0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x66,0x3d,0x28,0x69,0x2e,0x6f,0x75, 0x74,0x65,0x72,0x48,0x54,0x4d,0x4c,0x2c,0x69,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x29,0x2c,0x64,0x3d,0x69,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x3b, 0x72,0x3d,0x74,0x7c,0x7c,0x28,0x75,0x7c,0x7c,0x63,0x29,0x2c,0x6f,0x3d,0x2f,0x6e, 0x75,0x6d,0x62,0x65,0x72,0x7c,0x72,0x61,0x6e,0x67,0x65,0x2f,0x2e,0x74,0x65,0x73, 0x74,0x28,0x61,0x29,0x3f,0x28,0x6e,0x3d,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f, 0x61,0x74,0x28,0x6c,0x29,0x2c,0x69,0x73,0x4e,0x61,0x4e,0x28,0x6e,0x29,0x3f,0x22, 0x22,0x3a,0x6e,0x29,0x3a,0x2f,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x2f,0x2e, 0x74,0x65,0x73,0x74,0x28,0x61,0x29,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x22,0x62,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74, 0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x5b,0x5d,0x2c,0x6f,0x3d,0x21,0x31,0x2c, 0x69,0x3d,0x2d,0x31,0x3b,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73, 0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x29,0x72,0x3d,0x65,0x2c,0x6f,0x3d,0x28, 0x69,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x29,0x3e, 0x3d,0x30,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x21,0x6e,0x7c,0x7c,0x22, 0x74,0x72,0x75,0x65,0x22,0x3d,0x3d,0x6e,0x7c,0x7c,0x22,0x66,0x61,0x6c,0x73,0x65, 0x22,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x74,0x26,0x26,0x6e,0x26,0x26, 0x21,0x6f,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x6e,0x29,0x3b,0x69,0x66,0x28,0x21,0x6f,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x30,0x2c,0x69,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x72,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x69,0x2b,0x31,0x29,0x29,0x7d,0x28,0x4b, 0x6e,0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x72,0x29,0x2c,0x73,0x2c, 0x6c,0x29,0x3a,0x66,0x26,0x26,0x64,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79, 0x2e,0x66,0x72,0x6f,0x6d,0x28,0x65,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x7d,0x29, 0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x7d,0x29,0x29,0x7d,0x28,0x66,0x29,0x3a,0x6c,0x7d,0x72,0x26,0x26,0x42,0x28, 0x72,0x2c,0x6f,0x29,0x7d,0x29,0x2c,0x5b,0x42,0x2c,0x78,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x73,0x5d,0x29,0x2c,0x55,0x3d,0x6c,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x56,0x6e,0x28,0x65,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x28,0x74,0x2c,0x65,0x29, 0x7d,0x3b,0x7a,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x57,0x3d,0x6c,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x74,0x26,0x26,0x28,0x74,0x3d,0x21,0x30,0x29,0x2c,0x45,0x28,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46,0x49,0x45,0x4c,0x44,0x5f,0x54,0x4f,0x55, 0x43,0x48,0x45,0x44,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x7b,0x66, 0x69,0x65,0x6c,0x64,0x3a,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x74,0x7d,0x7d, 0x29,0x2c,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x61,0x3a, 0x6e,0x29,0x3f,0x54,0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x29,0x3a,0x50, 0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x29, 0x7d,0x29,0x29,0x2c,0x24,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75, 0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x70,0x65,0x72, 0x73,0x69,0x73,0x74,0x26,0x26,0x65,0x2e,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x28, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74, 0x2c,0x72,0x3d,0x6e,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x6f,0x3d,0x6e,0x2e,0x69,0x64, 0x2c,0x69,0x3d,0x28,0x6e,0x2e,0x6f,0x75,0x74,0x65,0x72,0x48,0x54,0x4d,0x4c,0x2c, 0x74,0x7c,0x7c,0x28,0x72,0x7c,0x7c,0x6f,0x29,0x29,0x3b,0x57,0x28,0x69,0x2c,0x21, 0x30,0x29,0x7d,0x29,0x2c,0x5b,0x57,0x5d,0x29,0x2c,0x48,0x3d,0x6c,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x56, 0x6e,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x24, 0x28,0x74,0x2c,0x65,0x29,0x7d,0x3b,0x24,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x56, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x57,0x6e,0x28,0x65,0x29,0x3f,0x45,0x28,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46,0x4f,0x52,0x4d,0x49,0x4b,0x5f,0x53,0x54, 0x41,0x54,0x45,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x29, 0x3a,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x46,0x4f, 0x52,0x4d,0x49,0x4b,0x5f,0x53,0x54,0x41,0x54,0x45,0x22,0x2c,0x70,0x61,0x79,0x6c, 0x6f,0x61,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29, 0x2c,0x47,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53, 0x45,0x54,0x5f,0x53,0x54,0x41,0x54,0x55,0x53,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f, 0x61,0x64,0x3a,0x65,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x71,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x54,0x5f,0x49, 0x53,0x53,0x55,0x42,0x4d,0x49,0x54,0x54,0x49,0x4e,0x47,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x4b, 0x3d,0x6c,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x53,0x55,0x42,0x4d,0x49,0x54,0x5f,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x22,0x7d, 0x29,0x2c,0x54,0x28,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x20, 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x45,0x72,0x72,0x6f,0x72, 0x3b,0x69,0x66,0x28,0x21,0x74,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x74,0x72,0x79,0x7b,0x69,0x66,0x28, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x6e,0x3d,0x58,0x28,0x29,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x72,0x29, 0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28, 0x6e,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x45,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x53,0x55,0x42,0x4d,0x49,0x54,0x5f,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x22,0x7d, 0x29,0x2c,0x65,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x5f,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x28,0x7b, 0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x55,0x42,0x4d,0x49,0x54,0x5f,0x46,0x41,0x49, 0x4c,0x55,0x52,0x45,0x22,0x7d,0x29,0x2c,0x65,0x7d,0x29,0x29,0x7d,0x69,0x66,0x28, 0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x45,0x28,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x22,0x53,0x55,0x42,0x4d,0x49,0x54,0x5f,0x46,0x41,0x49,0x4c, 0x55,0x52,0x45,0x22,0x7d,0x29,0x2c,0x74,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x65,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x59,0x3d,0x6c,0x72,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x26,0x26,0x65,0x2e,0x70, 0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x26,0x26,0x57, 0x6e,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x29,0x26,0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65, 0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x65,0x26,0x26,0x65,0x2e,0x73,0x74,0x6f, 0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x26,0x26,0x57,0x6e, 0x28,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69, 0x6f,0x6e,0x29,0x26,0x26,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61, 0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2c,0x4b,0x28,0x29,0x2e,0x63,0x61,0x74, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x22,0x57,0x61, 0x72,0x6e,0x69,0x6e,0x67,0x3a,0x20,0x41,0x6e,0x20,0x75,0x6e,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x77,0x61,0x73,0x20,0x63,0x61, 0x75,0x67,0x68,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x75,0x62,0x6d,0x69,0x74, 0x46,0x6f,0x72,0x6d,0x28,0x29,0x22,0x2c,0x65,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29, 0x2c,0x51,0x3d,0x7b,0x72,0x65,0x73,0x65,0x74,0x46,0x6f,0x72,0x6d,0x3a,0x50,0x2c, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x46,0x6f,0x72,0x6d,0x3a,0x54,0x2c,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x3a,0x44,0x2c,0x73, 0x65,0x74,0x45,0x72,0x72,0x6f,0x72,0x73,0x3a,0x4c,0x2c,0x73,0x65,0x74,0x46,0x69, 0x65,0x6c,0x64,0x45,0x72,0x72,0x6f,0x72,0x3a,0x4d,0x2c,0x73,0x65,0x74,0x46,0x69, 0x65,0x6c,0x64,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x57,0x2c,0x73,0x65,0x74, 0x46,0x69,0x65,0x6c,0x64,0x56,0x61,0x6c,0x75,0x65,0x3a,0x42,0x2c,0x73,0x65,0x74, 0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x47,0x2c,0x73,0x65,0x74,0x53,0x75,0x62,0x6d, 0x69,0x74,0x74,0x69,0x6e,0x67,0x3a,0x71,0x2c,0x73,0x65,0x74,0x54,0x6f,0x75,0x63, 0x68,0x65,0x64,0x3a,0x52,0x2c,0x73,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x73,0x3a, 0x46,0x2c,0x73,0x65,0x74,0x46,0x6f,0x72,0x6d,0x69,0x6b,0x53,0x74,0x61,0x74,0x65, 0x3a,0x56,0x2c,0x73,0x75,0x62,0x6d,0x69,0x74,0x46,0x6f,0x72,0x6d,0x3a,0x4b,0x7d, 0x2c,0x58,0x3d,0x6c,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x28,0x78,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x73,0x2c,0x51,0x29,0x7d,0x29,0x29,0x2c,0x4a,0x3d,0x6c,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x26,0x26,0x65, 0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x26, 0x26,0x57,0x6e,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x29,0x26,0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74, 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x65,0x26,0x26,0x65,0x2e,0x73, 0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x26,0x26, 0x57,0x6e,0x28,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61, 0x74,0x69,0x6f,0x6e,0x29,0x26,0x26,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f, 0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2c,0x50,0x28,0x29,0x7d,0x29, 0x29,0x2c,0x5a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x4b,0x6e,0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c, 0x65,0x29,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x4b,0x6e,0x28,0x78,0x2e,0x65,0x72, 0x72,0x6f,0x72,0x73,0x2c,0x65,0x29,0x2c,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a, 0x21,0x21,0x4b,0x6e,0x28,0x78,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x2c,0x65, 0x29,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x3a,0x4b, 0x6e,0x28,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x65,0x29,0x2c,0x69, 0x6e,0x69,0x74,0x69,0x61,0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x21,0x21, 0x4b,0x6e,0x28,0x62,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x65,0x29,0x2c, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x3a,0x4b,0x6e,0x28, 0x6d,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x65,0x29,0x7d,0x7d,0x29,0x2c, 0x5b,0x78,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x2c,0x78,0x2e,0x74,0x6f,0x75,0x63, 0x68,0x65,0x64,0x2c,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x5d,0x29,0x2c,0x65, 0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x65,0x74,0x56, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7d,0x2c,0x73,0x65,0x74,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x57,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x2c,0x73,0x65, 0x74,0x45,0x72,0x72,0x6f,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x28,0x65,0x2c,0x74,0x29, 0x7d,0x7d,0x7d,0x29,0x2c,0x5b,0x42,0x2c,0x57,0x2c,0x4d,0x5d,0x29,0x2c,0x74,0x65, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x24,0x6e,0x28,0x65,0x29,0x2c, 0x6e,0x3d,0x74,0x3f,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3a,0x65,0x2c,0x72,0x3d,0x4b, 0x6e,0x28,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x6e,0x29,0x2c,0x6f,0x3d, 0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x6e,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2c, 0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x55,0x2c,0x6f,0x6e,0x42,0x6c,0x75, 0x72,0x3a,0x48,0x7d,0x3b,0x69,0x66,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x61,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x2c,0x75,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x63,0x3d,0x65,0x2e,0x6d,0x75,0x6c, 0x74,0x69,0x70,0x6c,0x65,0x3b,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22, 0x3d,0x3d,0x3d,0x69,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f, 0x6f,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3d,0x21,0x21,0x72,0x3a,0x28,0x6f, 0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3d,0x21,0x28,0x21,0x41,0x72,0x72,0x61, 0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x29,0x7c,0x7c,0x21,0x7e, 0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x61,0x29,0x29,0x2c,0x6f,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x3d,0x61,0x29,0x3a,0x22,0x72,0x61,0x64,0x69,0x6f,0x22, 0x3d,0x3d,0x3d,0x69,0x3f,0x28,0x6f,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3d, 0x72,0x3d,0x3d,0x3d,0x61,0x2c,0x6f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x61,0x29, 0x3a,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x75,0x26,0x26,0x63, 0x26,0x26,0x28,0x6f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x6f,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x7c,0x7c,0x5b,0x5d,0x2c,0x6f,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c, 0x65,0x3d,0x21,0x30,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29, 0x2c,0x5b,0x48,0x2c,0x55,0x2c,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x5d,0x29, 0x2c,0x6e,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x69,0x28,0x29,0x28,0x67,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x29, 0x7d,0x29,0x2c,0x5b,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x78,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x73,0x5d,0x29,0x2c,0x72,0x65,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6c,0x3f,0x6e,0x65,0x3f,0x78,0x2e,0x65,0x72,0x72,0x6f, 0x72,0x73,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b, 0x65,0x79,0x73,0x28,0x78,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3a,0x21,0x31,0x21,0x3d,0x3d,0x6c,0x26,0x26,0x57,0x6e,0x28, 0x6c,0x29,0x3f,0x6c,0x28,0x76,0x29,0x3a,0x6c,0x3a,0x78,0x2e,0x65,0x72,0x72,0x6f, 0x72,0x73,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b, 0x65,0x79,0x73,0x28,0x78,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x7d,0x29,0x2c,0x5b,0x6c,0x2c,0x6e,0x65,0x2c,0x78,0x2e,0x65, 0x72,0x72,0x6f,0x72,0x73,0x2c,0x76,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x78,0x2c,0x7b,0x69,0x6e,0x69,0x74,0x69,0x61, 0x6c,0x56,0x61,0x6c,0x75,0x65,0x73,0x3a,0x67,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x45,0x72,0x72,0x6f,0x72,0x73,0x3a, 0x6d,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61, 0x6c,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x62,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x53,0x74,0x61,0x74,0x75,0x73, 0x3a,0x79,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x42,0x6c,0x75,0x72,0x3a,0x48,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x68, 0x61,0x6e,0x67,0x65,0x3a,0x55,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x73, 0x65,0x74,0x3a,0x4a,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x75,0x62,0x6d,0x69, 0x74,0x3a,0x59,0x2c,0x72,0x65,0x73,0x65,0x74,0x46,0x6f,0x72,0x6d,0x3a,0x50,0x2c, 0x73,0x65,0x74,0x45,0x72,0x72,0x6f,0x72,0x73,0x3a,0x4c,0x2c,0x73,0x65,0x74,0x46, 0x6f,0x72,0x6d,0x69,0x6b,0x53,0x74,0x61,0x74,0x65,0x3a,0x56,0x2c,0x73,0x65,0x74, 0x46,0x69,0x65,0x6c,0x64,0x54,0x6f,0x75,0x63,0x68,0x65,0x64,0x3a,0x57,0x2c,0x73, 0x65,0x74,0x46,0x69,0x65,0x6c,0x64,0x56,0x61,0x6c,0x75,0x65,0x3a,0x42,0x2c,0x73, 0x65,0x74,0x46,0x69,0x65,0x6c,0x64,0x45,0x72,0x72,0x6f,0x72,0x3a,0x4d,0x2c,0x73, 0x65,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x47,0x2c,0x73,0x65,0x74,0x53,0x75, 0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x3a,0x71,0x2c,0x73,0x65,0x74,0x54,0x6f, 0x75,0x63,0x68,0x65,0x64,0x3a,0x52,0x2c,0x73,0x65,0x74,0x56,0x61,0x6c,0x75,0x65, 0x73,0x3a,0x46,0x2c,0x73,0x75,0x62,0x6d,0x69,0x74,0x46,0x6f,0x72,0x6d,0x3a,0x4b, 0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x46,0x6f,0x72,0x6d,0x3a,0x54,0x2c, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x3a,0x44,0x2c, 0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x3a,0x72,0x65,0x2c,0x64,0x69,0x72,0x74,0x79, 0x3a,0x6e,0x65,0x2c,0x75,0x6e,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x46,0x69, 0x65,0x6c,0x64,0x3a,0x49,0x2c,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x46,0x69, 0x65,0x6c,0x64,0x3a,0x4e,0x2c,0x67,0x65,0x74,0x46,0x69,0x65,0x6c,0x64,0x50,0x72, 0x6f,0x70,0x73,0x3a,0x74,0x65,0x2c,0x67,0x65,0x74,0x46,0x69,0x65,0x6c,0x64,0x4d, 0x65,0x74,0x61,0x3a,0x5a,0x2c,0x67,0x65,0x74,0x46,0x69,0x65,0x6c,0x64,0x48,0x65, 0x6c,0x70,0x65,0x72,0x73,0x3a,0x65,0x65,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74, 0x65,0x4f,0x6e,0x42,0x6c,0x75,0x72,0x3a,0x61,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61, 0x74,0x65,0x4f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x6e,0x2c,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x4d,0x6f,0x75,0x6e,0x74,0x3a,0x63,0x7d,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x72,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x6f,0x72,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x65,0x2e, 0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x69,0x3d,0x65,0x2e,0x72,0x65,0x6e,0x64,0x65, 0x72,0x2c,0x61,0x3d,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75, 0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61,0x74,0x69,0x76,0x65,0x48,0x61,0x6e,0x64, 0x6c,0x65,0x29,0x28,0x61,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x29,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x28,0x4a,0x6e,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x74,0x7d,0x2c,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x28,0x6e,0x2c,0x74, 0x29,0x3a,0x69,0x3f,0x69,0x28,0x74,0x29,0x3a,0x6f,0x3f,0x57,0x6e,0x28,0x6f,0x29, 0x3f,0x6f,0x28,0x74,0x29,0x3a,0x47,0x6e,0x28,0x6f,0x29,0x3f,0x6e,0x75,0x6c,0x6c, 0x3a,0x72,0x2e,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6f,0x6e,0x6c,0x79, 0x28,0x6f,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x61,0x72,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x41, 0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x3f, 0x5b,0x5d,0x3a,0x7b,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20, 0x69,0x6e,0x20,0x65,0x29,0x69,0x66,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e, 0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x53,0x74,0x72,0x69,0x6e,0x67,0x28, 0x6e,0x29,0x3b,0x21,0x30,0x3d,0x3d,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73, 0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x5b,0x72,0x5d,0x29,0x3f,0x74,0x5b,0x72,0x5d, 0x3d,0x65,0x5b,0x72,0x5d,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3d, 0x3d,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28, 0x65,0x29,0x7c,0x7c,0x50,0x28,0x65,0x29,0x3f,0x61,0x72,0x28,0x65,0x29,0x3a,0x22, 0x22,0x21,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x29, 0x29,0x3a,0x50,0x28,0x65,0x5b,0x72,0x5d,0x29,0x3f,0x74,0x5b,0x72,0x5d,0x3d,0x61, 0x72,0x28,0x65,0x5b,0x72,0x5d,0x29,0x3a,0x74,0x5b,0x72,0x5d,0x3d,0x22,0x22,0x21, 0x3d,0x3d,0x65,0x5b,0x72,0x5d,0x3f,0x65,0x5b,0x72,0x5d,0x3a,0x76,0x6f,0x69,0x64, 0x20,0x30,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x75,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6f,0x29,0x7b,0x69, 0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x5b,0x6f,0x5d,0x29,0x7b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x21,0x31,0x21,0x3d,0x3d,0x6e,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x26, 0x26,0x6e,0x2e,0x69,0x73,0x4d,0x65,0x72,0x67,0x65,0x61,0x62,0x6c,0x65,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x74,0x29,0x3b,0x72,0x5b,0x6f,0x5d,0x3d,0x69,0x3f,0x66, 0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74, 0x29,0x3f,0x5b,0x5d,0x3a,0x7b,0x7d,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x74,0x7d,0x65, 0x6c,0x73,0x65,0x20,0x6e,0x2e,0x69,0x73,0x4d,0x65,0x72,0x67,0x65,0x61,0x62,0x6c, 0x65,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x74,0x29,0x3f,0x72,0x5b,0x6f,0x5d,0x3d, 0x66,0x28,0x65,0x5b,0x6f,0x5d,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x2d,0x31,0x3d,0x3d, 0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x74,0x29,0x26,0x26,0x72, 0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x76,0x61, 0x72,0x20,0x63,0x72,0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e, 0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3f,0x72,0x2e,0x75,0x73,0x65, 0x4c,0x61,0x79,0x6f,0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x72,0x2e,0x75, 0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6c,0x72,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x72,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x65,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28, 0x65,0x29,0x2c,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x65,0x3b,0x72,0x2b,0x2b,0x29,0x6e, 0x5b,0x72,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x72,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e, 0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x73,0x72,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x28,0x5a,0x6e,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4e,0x6e, 0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x28, 0x65,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28, 0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x66,0x6f,0x72,0x6d,0x69,0x6b,0x3a,0x6e,0x7d,0x29, 0x29,0x7d,0x29,0x29,0x7d,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x7c,0x7c,0x65, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x26,0x26,0x65,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x6e,0x61,0x6d,0x65, 0x7c,0x7c,0x22,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x22,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x57,0x72,0x61,0x70,0x70,0x65,0x64,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3d,0x65,0x2c,0x74,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x69,0x6b,0x43, 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x28,0x22,0x2b,0x6e,0x2b,0x22,0x29,0x22,0x2c,0x52, 0x6e,0x28,0x29,0x28,0x74,0x2c,0x65,0x29,0x7d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x6f,0x3d,0x42,0x6e, 0x28,0x65,0x2c,0x5b,0x22,0x61,0x63,0x74,0x69,0x6f,0x6e,0x22,0x5d,0x29,0x2c,0x69, 0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x3f,0x6e,0x3a,0x22,0x23,0x22,0x2c,0x61, 0x3d,0x65,0x72,0x28,0x29,0x2c,0x75,0x3d,0x61,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65, 0x52,0x65,0x73,0x65,0x74,0x2c,0x63,0x3d,0x61,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65, 0x53,0x75,0x62,0x6d,0x69,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x28,0x22,0x66,0x6f,0x72,0x6d,0x22,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x6f,0x6e,0x53,0x75, 0x62,0x6d,0x69,0x74,0x3a,0x63,0x2c,0x72,0x65,0x66,0x3a,0x74,0x2c,0x6f,0x6e,0x52, 0x65,0x73,0x65,0x74,0x3a,0x75,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x7d, 0x2c,0x6f,0x29,0x29,0x7d,0x29,0x29,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e, 0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x22,0x3b,0x76,0x61,0x72,0x20,0x66, 0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x64,0x72,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x74,0x2c, 0x30,0x2c,0x6e,0x29,0x2c,0x72,0x7d,0x2c,0x64,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x65,0x29,0x7d,0x29,0x29,0x2e, 0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3e,0x65, 0x3f,0x74,0x3a,0x65,0x7d,0x29,0x2c,0x30,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x46,0x6e,0x28,0x7b, 0x7d,0x2c,0x65,0x2c,0x7b,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x74,0x2b,0x31,0x7d, 0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x2c,0x70,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x74,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e,0x75, 0x70,0x64,0x61,0x74,0x65,0x41,0x72,0x72,0x61,0x79,0x46,0x69,0x65,0x6c,0x64,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x69,0x3d, 0x6f,0x2e,0x6e,0x61,0x6d,0x65,0x3b,0x28,0x30,0x2c,0x6f,0x2e,0x66,0x6f,0x72,0x6d, 0x69,0x6b,0x2e,0x73,0x65,0x74,0x46,0x6f,0x72,0x6d,0x69,0x6b,0x53,0x74,0x61,0x74, 0x65,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x3f,0x72,0x3a,0x65,0x2c, 0x61,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x74,0x3a,0x65,0x2c,0x75,0x3d,0x59,0x6e, 0x28,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x69,0x2c,0x65,0x28,0x4b,0x6e, 0x28,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x69,0x29,0x29,0x29,0x2c,0x63, 0x3d,0x72,0x3f,0x6f,0x28,0x4b,0x6e,0x28,0x6e,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73, 0x2c,0x69,0x29,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6c,0x3d,0x74,0x3f, 0x61,0x28,0x4b,0x6e,0x28,0x6e,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x2c,0x69, 0x29,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x55,0x6e,0x28,0x63,0x29,0x26,0x26,0x28,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x29,0x2c,0x55,0x6e,0x28,0x6c,0x29,0x26,0x26,0x28,0x6c,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x29,0x2c,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x6e,0x2c,0x7b,0x76,0x61, 0x6c,0x75,0x65,0x73,0x3a,0x75,0x2c,0x65,0x72,0x72,0x6f,0x72,0x73,0x3a,0x72,0x3f, 0x59,0x6e,0x28,0x6e,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x2c,0x69,0x2c,0x63,0x29, 0x3a,0x6e,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x2c,0x74,0x6f,0x75,0x63,0x68,0x65, 0x64,0x3a,0x74,0x3f,0x59,0x6e,0x28,0x6e,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x64, 0x2c,0x69,0x2c,0x6c,0x29,0x3a,0x6e,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x7d, 0x29,0x7d,0x29,0x29,0x7d,0x2c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x72,0x72,0x61,0x79,0x46,0x69,0x65, 0x6c,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x64,0x72,0x28,0x74,0x29,0x2c,0x5b,0x4c,0x6e,0x28,0x65,0x29,0x5d,0x29,0x7d,0x29, 0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x2c,0x6e,0x2e,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x50,0x75,0x73,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x70,0x75,0x73, 0x68,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x6e,0x2e,0x73,0x77,0x61,0x70,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x72,0x72,0x61,0x79, 0x46,0x69,0x65,0x6c,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x64,0x72,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x5b,0x74,0x5d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x5b,0x74,0x5d,0x3d,0x72,0x5b,0x6e,0x5d,0x2c,0x72,0x5b, 0x6e,0x5d,0x3d,0x6f,0x2c,0x72,0x7d,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x29, 0x2c,0x21,0x30,0x2c,0x21,0x30,0x29,0x7d,0x2c,0x6e,0x2e,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x53,0x77,0x61,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73, 0x77,0x61,0x70,0x28,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x6e,0x2e,0x6d,0x6f,0x76, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x41, 0x72,0x72,0x61,0x79,0x46,0x69,0x65,0x6c,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x64,0x72,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x5b,0x74,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65, 0x28,0x74,0x2c,0x31,0x29,0x2c,0x72,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x6e, 0x2c,0x30,0x2c,0x6f,0x29,0x2c,0x72,0x7d,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d, 0x29,0x2c,0x21,0x30,0x2c,0x21,0x30,0x29,0x7d,0x2c,0x6e,0x2e,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x4d,0x6f,0x76,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e, 0x6d,0x6f,0x76,0x65,0x28,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x6e,0x2e,0x69,0x6e, 0x73,0x65,0x72,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x41,0x72,0x72,0x61,0x79,0x46,0x69,0x65,0x6c,0x64,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x72,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x29,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x72,0x28,0x74,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x29,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x72,0x28,0x74,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x29, 0x7d,0x29,0x29,0x7d,0x2c,0x6e,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x6e,0x73, 0x65,0x72,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x69,0x6e,0x73, 0x65,0x72,0x74,0x28,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x6e,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x41,0x72,0x72,0x61,0x79,0x46,0x69,0x65,0x6c,0x64,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x64,0x72,0x28,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x5b,0x74,0x5d,0x3d,0x6e,0x2c,0x72,0x7d,0x28,0x6e,0x2c, 0x65,0x2c,0x74,0x29,0x7d,0x29,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x2c,0x6e, 0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x70,0x6c,0x61,0x63,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x65,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x6e,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x2d,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x75, 0x70,0x64,0x61,0x74,0x65,0x41,0x72,0x72,0x61,0x79,0x46,0x69,0x65,0x6c,0x64,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x3f,0x5b,0x65,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x6e,0x29,0x3a,0x5b,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3c, 0x30,0x26,0x26,0x28,0x74,0x3d,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x2c, 0x72,0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x3f,0x5b,0x6e,0x75,0x6c,0x6c,0x5d,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x29,0x3a,0x5b,0x6e,0x75,0x6c,0x6c,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3c,0x30,0x26,0x26,0x28,0x74,0x3d, 0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x2c,0x6e,0x7d,0x29,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x3f,0x5b,0x6e,0x75,0x6c,0x6c,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x65,0x29,0x3a,0x5b,0x6e,0x75,0x6c,0x6c,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3c,0x30,0x26,0x26,0x28,0x74,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x2c,0x6e,0x7d,0x29,0x29,0x2c,0x74,0x7d,0x2c,0x6e,0x2e,0x68,0x61, 0x6e,0x64,0x6c,0x65,0x55,0x6e,0x73,0x68,0x69,0x66,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c, 0x6e,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x6d,0x6f,0x76,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x65,0x29,0x7d, 0x7d,0x2c,0x6e,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x50,0x6f,0x70,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x70,0x6f,0x70,0x28,0x29,0x7d,0x7d,0x2c,0x6e,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x3d,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2e,0x62,0x69, 0x6e,0x64,0x28,0x7a,0x6e,0x28,0x6e,0x29,0x29,0x2c,0x6e,0x2e,0x70,0x6f,0x70,0x3d, 0x6e,0x2e,0x70,0x6f,0x70,0x2e,0x62,0x69,0x6e,0x64,0x28,0x7a,0x6e,0x28,0x6e,0x29, 0x29,0x2c,0x6e,0x7d,0x4d,0x6e,0x28,0x74,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74, 0x44,0x69,0x64,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x43,0x68,0x61,0x6e,0x67, 0x65,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x66,0x6f, 0x72,0x6d,0x69,0x6b,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x4f,0x6e,0x43, 0x68,0x61,0x6e,0x67,0x65,0x26,0x26,0x21,0x69,0x28,0x29,0x28,0x4b,0x6e,0x28,0x65, 0x2e,0x66,0x6f,0x72,0x6d,0x69,0x6b,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x65, 0x2e,0x6e,0x61,0x6d,0x65,0x29,0x2c,0x4b,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x70, 0x72,0x6f,0x70,0x73,0x2e,0x66,0x6f,0x72,0x6d,0x69,0x6b,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x73,0x2c,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6e,0x61, 0x6d,0x65,0x29,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x66,0x6f,0x72,0x6d,0x69,0x6b,0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65, 0x46,0x6f,0x72,0x6d,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e, 0x66,0x6f,0x72,0x6d,0x69,0x6b,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x29,0x7d,0x2c, 0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x72,0x72, 0x61,0x79,0x46,0x69,0x65,0x6c,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x3f,0x64,0x72,0x28, 0x6e,0x29,0x3a,0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c, 0x28,0x74,0x3d,0x72,0x5b,0x65,0x5d,0x29,0x2c,0x57,0x6e,0x28,0x72,0x2e,0x73,0x70, 0x6c,0x69,0x63,0x65,0x29,0x26,0x26,0x72,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28, 0x65,0x2c,0x31,0x29,0x2c,0x72,0x7d,0x29,0x2c,0x21,0x30,0x2c,0x21,0x30,0x29,0x2c, 0x74,0x7d,0x2c,0x6e,0x2e,0x70,0x6f,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x72,0x72,0x61, 0x79,0x46,0x69,0x65,0x6c,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x7c,0x7c,0x28,0x65,0x3d,0x6e,0x26,0x26,0x6e,0x2e,0x70,0x6f, 0x70,0x26,0x26,0x6e,0x2e,0x70,0x6f,0x70,0x28,0x29,0x29,0x2c,0x6e,0x7d,0x29,0x2c, 0x21,0x30,0x2c,0x21,0x30,0x29,0x2c,0x65,0x7d,0x2c,0x6e,0x2e,0x72,0x65,0x6e,0x64, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x7b,0x70,0x75,0x73,0x68,0x3a,0x74,0x68,0x69,0x73,0x2e,0x70, 0x75,0x73,0x68,0x2c,0x70,0x6f,0x70,0x3a,0x74,0x68,0x69,0x73,0x2e,0x70,0x6f,0x70, 0x2c,0x73,0x77,0x61,0x70,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x77,0x61,0x70,0x2c, 0x6d,0x6f,0x76,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x76,0x65,0x2c,0x69, 0x6e,0x73,0x65,0x72,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x73,0x65,0x72, 0x74,0x2c,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x2c,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x3a,0x74, 0x68,0x69,0x73,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x2c,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2c,0x68, 0x61,0x6e,0x64,0x6c,0x65,0x50,0x75,0x73,0x68,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68, 0x61,0x6e,0x64,0x6c,0x65,0x50,0x75,0x73,0x68,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65, 0x50,0x6f,0x70,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x50, 0x6f,0x70,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x77,0x61,0x70,0x3a,0x74,0x68, 0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x77,0x61,0x70,0x2c,0x68,0x61, 0x6e,0x64,0x6c,0x65,0x4d,0x6f,0x76,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x61, 0x6e,0x64,0x6c,0x65,0x4d,0x6f,0x76,0x65,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49, 0x6e,0x73,0x65,0x72,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x49,0x6e,0x73,0x65,0x72,0x74,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65, 0x70,0x6c,0x61,0x63,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x52,0x65,0x70,0x6c,0x61,0x63,0x65,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x55, 0x6e,0x73,0x68,0x69,0x66,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x55,0x6e,0x73,0x68,0x69,0x66,0x74,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65, 0x52,0x65,0x6d,0x6f,0x76,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7d,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x6e,0x3d,0x74,0x2e,0x63,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x74,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x2c, 0x69,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x61,0x3d,0x74, 0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x46,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c, 0x7b,0x66,0x6f,0x72,0x6d,0x3a,0x42,0x6e,0x28,0x74,0x2e,0x66,0x6f,0x72,0x6d,0x69, 0x6b,0x2c,0x5b,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x22,0x2c,0x22,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65,0x6d,0x61,0x22, 0x5d,0x29,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x61,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x28,0x6e,0x2c,0x75, 0x29,0x3a,0x6f,0x3f,0x6f,0x28,0x75,0x29,0x3a,0x69,0x3f,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69, 0x3f,0x69,0x28,0x75,0x29,0x3a,0x47,0x6e,0x28,0x69,0x29,0x3f,0x6e,0x75,0x6c,0x6c, 0x3a,0x72,0x2e,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6f,0x6e,0x6c,0x79, 0x28,0x69,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x74,0x7d,0x28,0x72,0x2e,0x43, 0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b,0x70,0x72,0x2e,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x76,0x61,0x6c,0x69,0x64, 0x61,0x74,0x65,0x4f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x21,0x30,0x7d,0x3b, 0x72,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x2c,0x72,0x2e,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x41,0x72,0x72,0x61, 0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x61,0x3d,0x22,0x75,0x6e,0x64, 0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d, 0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x69,0x66,0x28,0x65,0x26, 0x26,0x74,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x2c,0x63,0x2c,0x6c,0x2c,0x73,0x3d,0x72,0x28,0x65,0x29,0x2c,0x66,0x3d,0x72, 0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x73,0x26,0x26,0x66,0x29,0x7b,0x69,0x66,0x28, 0x28,0x63,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x21,0x3d,0x74,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b, 0x66,0x6f,0x72,0x28,0x6e,0x3d,0x63,0x3b,0x30,0x21,0x3d,0x3d,0x6e,0x2d,0x2d,0x3b, 0x29,0x69,0x66,0x28,0x21,0x75,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x74,0x5b,0x6e,0x5d, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x7d,0x69,0x66,0x28,0x73,0x21,0x3d,0x66,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x65,0x20,0x69,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x44,0x61,0x74,0x65,0x2c,0x70,0x3d,0x74, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x44,0x61,0x74,0x65, 0x3b,0x69,0x66,0x28,0x64,0x21,0x3d,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x3b,0x69,0x66,0x28,0x64,0x26,0x26,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x3d,0x3d,0x74,0x2e, 0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d, 0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x52,0x65,0x67, 0x45,0x78,0x70,0x2c,0x76,0x3d,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x6f,0x66,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x3b,0x69,0x66,0x28,0x68,0x21,0x3d, 0x76,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x68,0x26, 0x26,0x76,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x74,0x6f,0x53,0x74, 0x72,0x69,0x6e,0x67,0x28,0x29,0x3d,0x3d,0x74,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69, 0x6e,0x67,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x67,0x3d,0x6f,0x28,0x65,0x29,0x3b, 0x69,0x66,0x28,0x28,0x63,0x3d,0x67,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x21, 0x3d,0x3d,0x6f,0x28,0x74,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x63,0x3b,0x30, 0x21,0x3d,0x3d,0x6e,0x2d,0x2d,0x3b,0x29,0x69,0x66,0x28,0x21,0x69,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x74,0x2c,0x67,0x5b,0x6e,0x5d,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x61,0x26,0x26,0x65,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26, 0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d, 0x74,0x3b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x63,0x3b,0x30,0x21,0x3d,0x3d,0x6e,0x2d, 0x2d,0x3b,0x29,0x69,0x66,0x28,0x28,0x22,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x22,0x21, 0x3d,0x3d,0x28,0x6c,0x3d,0x67,0x5b,0x6e,0x5d,0x29,0x7c,0x7c,0x21,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x26,0x26,0x21,0x75,0x28,0x65,0x5b,0x6c, 0x5d,0x2c,0x74,0x5b,0x6c,0x5d,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x21,0x3d,0x3d,0x65,0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x7d,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x75,0x28,0x65,0x2c,0x74,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6e,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x26,0x26,0x6e, 0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x2f, 0x73,0x74,0x61,0x63,0x6b,0x7c,0x72,0x65,0x63,0x75,0x72,0x73,0x69,0x6f,0x6e,0x2f, 0x69,0x29,0x7c,0x7c,0x2d,0x32,0x31,0x34,0x36,0x38,0x32,0x38,0x32,0x36,0x30,0x3d, 0x3d,0x3d,0x6e,0x2e,0x6e,0x75,0x6d,0x62,0x65,0x72,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x22, 0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3a,0x20,0x72,0x65,0x61,0x63,0x74,0x2d,0x66, 0x61,0x73,0x74,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x20,0x64,0x6f,0x65,0x73, 0x20,0x6e,0x6f,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x69,0x72,0x63, 0x75,0x6c,0x61,0x72,0x20,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, 0x22,0x2c,0x6e,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x6e,0x2e,0x6d,0x65,0x73,0x73,0x61, 0x67,0x65,0x29,0x2c,0x21,0x31,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x7d,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72, 0x72,0x61,0x79,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28, 0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x72,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6f,0x77, 0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29, 0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x74,0x7d,0x3a,0x65,0x7d,0x3b,0x74,0x2e,0x61,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6f,0x28,0x65, 0x29,0x2c,0x72,0x3d,0x6f,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x26,0x26,0x6e, 0x28,0x65,0x29,0x2c,0x72,0x26,0x26,0x72,0x28,0x65,0x29,0x7d,0x7d,0x28,0x65,0x2c, 0x74,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x2c,0x74,0x5d,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x69, 0x3d,0x6e,0x28,0x31,0x29,0x2c,0x61,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x75,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x2c,0x72,0x3d,0x65,0x2e,0x68,0x72,0x65,0x66,0x2c,0x6f,0x3d, 0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c,0x69,0x3d,0x65,0x2e,0x72,0x65,0x6c, 0x2c,0x61,0x3d,0x65,0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x2c,0x75,0x3d,0x65, 0x2e,0x74,0x61,0x62,0x49,0x6e,0x64,0x65,0x78,0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x75,0x3f,0x30,0x3a,0x75,0x2c,0x6c,0x3d,0x65,0x2e,0x74, 0x79,0x70,0x65,0x3b,0x74,0x7c,0x7c,0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x72,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6f,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x69,0x3f,0x22,0x61,0x22,0x3a,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22, 0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x7b,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65, 0x3a,0x74,0x7d,0x3b,0x69,0x66,0x28,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x7b,0x74,0x79,0x70,0x65, 0x3a,0x6c,0x7c,0x7c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x3a,0x6e,0x7d,0x2c,0x73,0x5d,0x3b,0x76,0x61,0x72,0x20, 0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x28,0x6e, 0x7c,0x7c,0x22,0x61,0x22,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x7c, 0x7c,0x22,0x23,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x7d, 0x28,0x72,0x29,0x29,0x26,0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x6e,0x3f,0x65,0x2e,0x73,0x74,0x6f, 0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3a,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x61,0x7c,0x7c,0x61,0x28,0x65,0x29,0x7d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x5b,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x22,0x62,0x75,0x74,0x74, 0x6f,0x6e,0x22,0x2c,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x74,0x61,0x62,0x49,0x6e,0x64,0x65,0x78,0x3a,0x6e,0x3f,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3a,0x63,0x2c,0x68,0x72,0x65,0x66,0x3a,0x22,0x61,0x22, 0x3d,0x3d,0x3d,0x74,0x26,0x26,0x6e,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x72, 0x2c,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x22,0x61,0x22,0x3d,0x3d,0x3d,0x74,0x3f, 0x6f,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x22,0x61,0x72,0x69,0x61,0x2d,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x6e,0x7c,0x7c,0x76,0x6f,0x69,0x64, 0x20,0x30,0x2c,0x72,0x65,0x6c,0x3a,0x22,0x61,0x22,0x3d,0x3d,0x3d,0x74,0x3f,0x69, 0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a, 0x66,0x2c,0x6f,0x6e,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x20,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x6b,0x65,0x79,0x26,0x26,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x66,0x28,0x65,0x29,0x29,0x7d,0x7d, 0x2c,0x73,0x5d,0x7d,0x76,0x61,0x72,0x20,0x63,0x3d,0x6f,0x2e,0x66,0x6f,0x72,0x77, 0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x73, 0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x63,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28, 0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x7d,0x28,0x65,0x2c,0x61,0x29,0x2c,0x6c,0x3d,0x75,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x74,0x61,0x67, 0x4e,0x61,0x6d,0x65,0x3a,0x6e,0x2c,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a, 0x6f,0x7d,0x2c,0x63,0x29,0x29,0x2c,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x6c,0x2c,0x32,0x29,0x2c,0x66,0x3d,0x73,0x5b,0x30,0x5d, 0x2c,0x64,0x3d,0x73,0x5b,0x31,0x5d,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x64,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x63,0x2c,0x66,0x2c,0x7b,0x72,0x65,0x66, 0x3a,0x74,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x63,0x2e,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c, 0x74,0x2e,0x61,0x3d,0x63,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x61,0x78,0x53,0x69,0x7a,0x65,0x3d, 0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x7d,0x72, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x65,0x61,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x73,0x69,0x7a,0x65,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x76, 0x61,0x6c,0x75,0x65,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c,0x72,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x5b,0x65,0x5d,0x7d,0x2c,0x72, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x69,0x7a,0x65,0x3e,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x61,0x78,0x53,0x69,0x7a,0x65,0x26,0x26,0x74, 0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x2c,0x65,0x20,0x69,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x7c,0x7c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x73,0x69,0x7a,0x65,0x2b,0x2b,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x5b,0x65,0x5d,0x3d,0x74,0x7d,0x3b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x2f,0x5b,0x5e,0x2e,0x5e,0x5c,0x5d,0x5e,0x5b,0x5d,0x2b, 0x7c,0x28,0x3f,0x3d,0x5c,0x5b,0x5c,0x5d,0x7c,0x5c,0x2e,0x5c,0x2e,0x29,0x2f,0x67, 0x2c,0x69,0x3d,0x2f,0x5e,0x5c,0x64,0x2b,0x24,0x2f,0x2c,0x61,0x3d,0x2f,0x5e,0x5c, 0x64,0x2f,0x2c,0x75,0x3d,0x2f,0x5b,0x7e,0x60,0x21,0x23,0x24,0x25,0x5c,0x5e,0x26, 0x2a,0x2b,0x3d,0x5c,0x2d,0x5c,0x5b,0x5c,0x5d,0x5c,0x5c,0x27,0x3b,0x2c,0x2f,0x7b, 0x7d,0x7c,0x5c,0x5c,0x22,0x3a,0x3c,0x3e,0x5c,0x3f,0x5d,0x2f,0x67,0x2c,0x63,0x3d, 0x2f,0x5e,0x5c,0x73,0x2a,0x28,0x5b,0x27,0x22,0x5d,0x3f,0x29,0x28,0x2e,0x2a,0x3f, 0x29,0x28,0x5c,0x31,0x29,0x5c,0x73,0x2a,0x24,0x2f,0x2c,0x6c,0x3d,0x6e,0x65,0x77, 0x20,0x72,0x28,0x35,0x31,0x32,0x29,0x2c,0x73,0x3d,0x6e,0x65,0x77,0x20,0x72,0x28, 0x35,0x31,0x32,0x29,0x2c,0x66,0x3d,0x6e,0x65,0x77,0x20,0x72,0x28,0x35,0x31,0x32, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7c, 0x7c,0x6c,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x70,0x28,0x65,0x29,0x2e,0x6d,0x61, 0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x63,0x2c,0x22,0x24,0x32,0x22,0x29,0x7d,0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x70,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x6f,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x68,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x2d,0x31,0x21,0x3d,0x3d,0x5b,0x22,0x27, 0x22,0x2c,0x27,0x22,0x27,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65, 0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x76,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x68,0x28,0x65,0x29,0x26,0x26,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x74, 0x63,0x68,0x28,0x61,0x29,0x26,0x26,0x21,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28, 0x69,0x29,0x7d,0x28,0x65,0x29,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x29,0x7d,0x28,0x65,0x29,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x7b,0x43,0x61,0x63,0x68,0x65,0x3a,0x72,0x2c,0x73,0x70,0x6c, 0x69,0x74,0x3a,0x70,0x2c,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x50,0x61, 0x74,0x68,0x3a,0x64,0x2c,0x73,0x65,0x74,0x74,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x64,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x2e,0x67,0x65,0x74,0x28, 0x65,0x29,0x7c,0x7c,0x73,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x69,0x3d,0x65,0x3b,0x72,0x3c,0x6f,0x2d,0x31,0x3b,0x29,0x7b,0x76,0x61, 0x72,0x20,0x61,0x3d,0x74,0x5b,0x72,0x5d,0x3b,0x69,0x66,0x28,0x22,0x5f,0x5f,0x70, 0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x22,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x3d,0x3d,0x3d,0x61,0x7c,0x7c, 0x22,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x22,0x3d,0x3d,0x3d,0x61,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x3d,0x69,0x5b,0x74,0x5b,0x72, 0x2b,0x2b,0x5d,0x5d,0x7d,0x69,0x5b,0x74,0x5b,0x72,0x5d,0x5d,0x3d,0x6e,0x7d,0x29, 0x29,0x7d,0x2c,0x67,0x65,0x74,0x74,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x64,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x2e,0x67,0x65,0x74,0x28, 0x65,0x29,0x7c,0x7c,0x66,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x72,0x3c,0x6f,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x26,0x26,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x65,0x3d,0x65,0x5b,0x6e, 0x5b,0x72,0x2b,0x2b,0x5d,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d, 0x29,0x29,0x7d,0x2c,0x6a,0x6f,0x69,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65, 0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2b,0x28,0x68,0x28, 0x74,0x29,0x7c,0x7c,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x29,0x3f,0x22,0x5b, 0x22,0x2b,0x74,0x2b,0x22,0x5d,0x22,0x3a,0x28,0x65,0x3f,0x22,0x2e,0x22,0x3a,0x22, 0x22,0x29,0x2b,0x74,0x29,0x7d,0x29,0x2c,0x22,0x22,0x29,0x7d,0x2c,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x2c,0x69,0x2c, 0x61,0x2c,0x75,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72, 0x28,0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x75,0x3b,0x6f,0x2b,0x2b,0x29,0x28,0x72,0x3d, 0x65,0x5b,0x6f,0x5d,0x29,0x26,0x26,0x28,0x76,0x28,0x72,0x29,0x26,0x26,0x28,0x72, 0x3d,0x27,0x22,0x27,0x2b,0x72,0x2b,0x27,0x22,0x27,0x29,0x2c,0x69,0x3d,0x21,0x28, 0x61,0x3d,0x68,0x28,0x72,0x29,0x29,0x26,0x26,0x2f,0x5e,0x5c,0x64,0x2b,0x24,0x2f, 0x2e,0x74,0x65,0x73,0x74,0x28,0x72,0x29,0x2c,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x6e,0x2c,0x72,0x2c,0x61,0x2c,0x69,0x2c,0x6f,0x2c,0x65,0x29,0x29,0x7d,0x28,0x41, 0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x3f, 0x65,0x3a,0x70,0x28,0x65,0x29,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22, 0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28, 0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x7d,0x29,0x29,0x2c,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x7d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x34, 0x35,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x6e,0x28,0x36,0x36,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2b,0x65,0x2e, 0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65, 0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2b,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72, 0x28,0x31,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x74, 0x6f,0x50,0x72,0x69,0x6d,0x69,0x74,0x69,0x76,0x65,0x5d,0x3b,0x69,0x66,0x28,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74,0x7c,0x7c,0x22,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x22,0x29,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x40,0x40,0x74, 0x6f,0x50,0x72,0x69,0x6d,0x69,0x74,0x69,0x76,0x65,0x20,0x6d,0x75,0x73,0x74,0x20, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x20,0x70,0x72,0x69,0x6d,0x69,0x74,0x69, 0x76,0x65,0x20,0x76,0x61,0x6c,0x75,0x65,0x2e,0x22,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x3f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x3a,0x4e,0x75,0x6d,0x62,0x65,0x72,0x29,0x28,0x65, 0x29,0x7d,0x28,0x65,0x2c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x74,0x3a,0x53,0x74,0x72,0x69,0x6e, 0x67,0x28,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x69,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x76,0x6f, 0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x29,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x69,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x74, 0x29,0x2c,0x61,0x3d,0x6f,0x5b,0x30,0x5d,0x2c,0x75,0x3d,0x6f,0x5b,0x31,0x5d,0x2c, 0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x2c,0x6c,0x3d,0x72, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x63,0x2c,0x21,0x63,0x26,0x26, 0x6c,0x26,0x26,0x61,0x21,0x3d,0x3d,0x74,0x26,0x26,0x75,0x28,0x74,0x29,0x2c,0x5b, 0x63,0x3f,0x65,0x3a,0x61,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x75, 0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28, 0x74,0x3e,0x31,0x3f,0x74,0x2d,0x31,0x3a,0x30,0x29,0x2c,0x6f,0x3d,0x31,0x3b,0x6f, 0x3c,0x74,0x3b,0x6f,0x2b,0x2b,0x29,0x72,0x5b,0x6f,0x2d,0x31,0x5d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6f,0x5d,0x3b,0x6e,0x26,0x26,0x6e,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x5b,0x65,0x5d, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x29,0x29,0x2c,0x75,0x28,0x65,0x29, 0x7d,0x29,0x2c,0x5b,0x6e,0x5d,0x29,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6c,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29,0x2e,0x72, 0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x6e,0x2c,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x2c,0x73,0x3d,0x6e,0x2c,0x66, 0x3d,0x73,0x5b,0x61,0x28,0x69,0x29,0x5d,0x2c,0x64,0x3d,0x73,0x5b,0x69,0x5d,0x2c, 0x70,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x73,0x2c, 0x5b,0x61,0x28,0x69,0x29,0x2c,0x69,0x5d,0x2e,0x6d,0x61,0x70,0x28,0x75,0x29,0x29, 0x2c,0x68,0x3d,0x74,0x5b,0x69,0x5d,0x2c,0x76,0x3d,0x63,0x28,0x64,0x2c,0x66,0x2c, 0x65,0x5b,0x68,0x5d,0x29,0x2c,0x67,0x3d,0x76,0x5b,0x30,0x5d,0x2c,0x6d,0x3d,0x76, 0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x70,0x2c,0x28,0x28,0x6c,0x3d, 0x7b,0x7d,0x29,0x5b,0x69,0x5d,0x3d,0x67,0x2c,0x6c,0x5b,0x68,0x5d,0x3d,0x6d,0x2c, 0x6c,0x29,0x29,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x6e,0x28,0x33,0x39,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70,0x73,0x28,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74, 0x65,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x73,0x65, 0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x66,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74, 0x53,0x74,0x61,0x74,0x65,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69, 0x76,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70, 0x73,0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x6e,0x3f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2e,0x62,0x69,0x6e,0x64,0x28, 0x74,0x68,0x69,0x73,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x64,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x72,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x3b,0x74,0x68,0x69,0x73,0x2e,0x70,0x72, 0x6f,0x70,0x73,0x3d,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65, 0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x49, 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x46, 0x6c,0x61,0x67,0x3d,0x21,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x72,0x65, 0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x53,0x6e,0x61,0x70,0x73, 0x68,0x6f,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70, 0x73,0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74,0x65, 0x28,0x6e,0x2c,0x72,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x74,0x68, 0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x3d,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x73,0x74,0x61,0x74,0x65,0x3d,0x72,0x7d,0x7d,0x73,0x2e,0x5f,0x5f,0x73,0x75,0x70, 0x70,0x72,0x65,0x73,0x73,0x44,0x65,0x70,0x72,0x65,0x63,0x61,0x74,0x69,0x6f,0x6e, 0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x2c,0x66,0x2e,0x5f,0x5f,0x73, 0x75,0x70,0x70,0x72,0x65,0x73,0x73,0x44,0x65,0x70,0x72,0x65,0x63,0x61,0x74,0x69, 0x6f,0x6e,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x2c,0x64,0x2e,0x5f, 0x5f,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73,0x44,0x65,0x70,0x72,0x65,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64, 0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x29,0x29,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65, 0x66,0x29,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c, 0x74,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6f,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x5d,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73, 0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x31,0x36,0x33,0x29,0x2c,0x6f,0x3d,0x7b,0x63,0x68,0x69,0x6c,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x73,0x3a,0x21,0x30,0x2c,0x63, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x3a,0x21,0x30,0x2c,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x73,0x3a,0x21,0x30,0x2c,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3a,0x21,0x30,0x2c,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3a,0x21,0x30,0x2c,0x67,0x65,0x74, 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3a,0x21,0x30,0x2c, 0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x46, 0x72,0x6f,0x6d,0x45,0x72,0x72,0x6f,0x72,0x3a,0x21,0x30,0x2c,0x67,0x65,0x74,0x44, 0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x50, 0x72,0x6f,0x70,0x73,0x3a,0x21,0x30,0x2c,0x6d,0x69,0x78,0x69,0x6e,0x73,0x3a,0x21, 0x30,0x2c,0x70,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x3a,0x21,0x30,0x2c,0x74, 0x79,0x70,0x65,0x3a,0x21,0x30,0x7d,0x2c,0x69,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a, 0x21,0x30,0x2c,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x21,0x30,0x2c,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x3a,0x21,0x30,0x2c,0x63,0x61,0x6c,0x6c,0x65,0x72, 0x3a,0x21,0x30,0x2c,0x63,0x61,0x6c,0x6c,0x65,0x65,0x3a,0x21,0x30,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x21,0x30,0x2c,0x61,0x72,0x69,0x74,0x79, 0x3a,0x21,0x30,0x7d,0x2c,0x61,0x3d,0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66, 0x3a,0x21,0x30,0x2c,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x3a,0x21,0x30,0x2c,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3a,0x21,0x30,0x2c,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3a,0x21,0x30,0x2c,0x70,0x72, 0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x3a,0x21,0x30,0x2c,0x74,0x79,0x70,0x65,0x3a, 0x21,0x30,0x7d,0x2c,0x75,0x3d,0x7b,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x63,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e, 0x69,0x73,0x4d,0x65,0x6d,0x6f,0x28,0x65,0x29,0x3f,0x61,0x3a,0x75,0x5b,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x5d,0x7c,0x7c,0x6f,0x7d,0x75,0x5b,0x72, 0x2e,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x5d,0x3d,0x7b,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x21,0x30,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72, 0x3a,0x21,0x30,0x2c,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73, 0x3a,0x21,0x30,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3a, 0x21,0x30,0x2c,0x70,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x3a,0x21,0x30,0x7d, 0x2c,0x75,0x5b,0x72,0x2e,0x4d,0x65,0x6d,0x6f,0x5d,0x3d,0x61,0x3b,0x76,0x61,0x72, 0x20,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x4e,0x61,0x6d,0x65,0x73,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67, 0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x73,0x2c,0x64,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65, 0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x2c,0x70,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x67,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x2c,0x68, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x69,0x66, 0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x6e,0x29,0x7b,0x69,0x66,0x28,0x68,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x70,0x28,0x6e,0x29,0x3b,0x6f,0x26,0x26,0x6f,0x21,0x3d,0x3d,0x68,0x26, 0x26,0x65,0x28,0x74,0x2c,0x6f,0x2c,0x72,0x29,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d, 0x73,0x28,0x6e,0x29,0x3b,0x66,0x26,0x26,0x28,0x61,0x3d,0x61,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x66,0x28,0x6e,0x29,0x29,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x75,0x3d,0x63,0x28,0x74,0x29,0x2c,0x76,0x3d,0x63,0x28,0x6e,0x29, 0x2c,0x67,0x3d,0x30,0x3b,0x67,0x3c,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x2b,0x2b,0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x61,0x5b,0x67,0x5d,0x3b, 0x69,0x66,0x28,0x21,0x69,0x5b,0x6d,0x5d,0x26,0x26,0x28,0x21,0x72,0x7c,0x7c,0x21, 0x72,0x5b,0x6d,0x5d,0x29,0x26,0x26,0x28,0x21,0x76,0x7c,0x7c,0x21,0x76,0x5b,0x6d, 0x5d,0x29,0x26,0x26,0x28,0x21,0x75,0x7c,0x7c,0x21,0x75,0x5b,0x6d,0x5d,0x29,0x29, 0x7b,0x76,0x61,0x72,0x20,0x62,0x3d,0x64,0x28,0x6e,0x2c,0x6d,0x29,0x3b,0x74,0x72, 0x79,0x7b,0x6c,0x28,0x74,0x2c,0x6d,0x2c,0x62,0x29,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x79,0x29,0x7b,0x7d,0x7d,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x39,0x35,0x29,0x2c, 0x6f,0x3d,0x6e,0x28,0x31,0x39,0x38,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6f,0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x6e,0x29,0x3f,0x6e,0x3a,0x76,0x6f,0x69,0x64, 0x20,0x30,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x38,0x36, 0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x31,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x65,0x26,0x26,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7d,0x7d,0x2c,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3b,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x7d,0x28,0x29,0x3b,0x74, 0x72,0x79,0x7b,0x6e,0x3d,0x6e,0x7c,0x7c,0x6e,0x65,0x77,0x20,0x46,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x22,0x29,0x28,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x72,0x29,0x7b,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x26,0x26,0x28,0x6e,0x3d,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21, 0x30,0x29,0x2c,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73, 0x65,0x52,0x65,0x66,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x31,0x7d,0x7d,0x29,0x2c,0x5b, 0x5d,0x29,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22, 0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28, 0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75, 0x6c,0x6c,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x65,0x7d,0x29,0x29,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x37,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x38,0x2c,0x2d,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x4f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x65,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x26,0x26,0x28,0x6e,0x3d, 0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x6e,0x61, 0x6d,0x65,0x29,0x2c,0x22,0x4d,0x61,0x70,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x22, 0x53,0x65,0x74,0x22,0x3d,0x3d,0x3d,0x6e,0x3f,0x41,0x72,0x72,0x61,0x79,0x2e,0x66, 0x72,0x6f,0x6d,0x28,0x65,0x29,0x3a,0x22,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x2f,0x5e,0x28,0x3f,0x3a,0x55,0x69,0x7c, 0x49,0x29,0x6e,0x74,0x28,0x3f,0x3a,0x38,0x7c,0x31,0x36,0x7c,0x33,0x32,0x29,0x28, 0x3f,0x3a,0x43,0x6c,0x61,0x6d,0x70,0x65,0x64,0x29,0x3f,0x41,0x72,0x72,0x61,0x79, 0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x29,0x3f,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x65,0x2c,0x74,0x29,0x3a,0x76,0x6f,0x69,0x64, 0x20,0x30,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f, 0x66,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74, 0x6f,0x5f,0x5f,0x3d,0x74,0x2c,0x65,0x7d,0x2c,0x72,0x28,0x65,0x2c,0x74,0x29,0x7d, 0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29, 0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x72,0x2e,0x63, 0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x6e,0x75,0x6c, 0x6c,0x29,0x3b,0x6f,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65, 0x3d,0x22,0x4e,0x61,0x76,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x22,0x2c,0x74,0x2e, 0x61,0x3d,0x6f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x32,0x29, 0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x38,0x37,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x38, 0x38,0x29,0x2c,0x61,0x3d,0x72,0x3f,0x72,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x54,0x61,0x67,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x22,0x5b,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x20,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5d,0x22, 0x3a,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4e,0x75,0x6c,0x6c,0x5d,0x22, 0x3a,0x61,0x26,0x26,0x61,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x65,0x29,0x3f,0x6f,0x28,0x65,0x29,0x3a,0x69,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x32,0x31,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x22,0x22,0x3a,0x72,0x28,0x65, 0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x7d,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x2c,0x75, 0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3b,0x69, 0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x29,0x63,0x3d,0x6e, 0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x4d,0x69,0x6e,0x69,0x66,0x69, 0x65,0x64,0x20,0x65,0x78,0x63,0x65,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x63,0x63, 0x75,0x72,0x72,0x65,0x64,0x3b,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6e, 0x6f,0x6e,0x2d,0x6d,0x69,0x6e,0x69,0x66,0x69,0x65,0x64,0x20,0x64,0x65,0x76,0x20, 0x65,0x6e,0x76,0x69,0x72,0x6f,0x6e,0x6d,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20, 0x74,0x68,0x65,0x20,0x66,0x75,0x6c,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x6d, 0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x64,0x69,0x74, 0x69,0x6f,0x6e,0x61,0x6c,0x20,0x68,0x65,0x6c,0x70,0x66,0x75,0x6c,0x20,0x77,0x61, 0x72,0x6e,0x69,0x6e,0x67,0x73,0x2e,0x22,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76, 0x61,0x72,0x20,0x6c,0x3d,0x5b,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x2c, 0x75,0x5d,0x2c,0x73,0x3d,0x30,0x3b,0x28,0x63,0x3d,0x6e,0x65,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x74,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x25, 0x73,0x2f,0x67,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x5b,0x73,0x2b,0x2b,0x5d,0x7d,0x29,0x29, 0x29,0x29,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x49,0x6e,0x76,0x61,0x72,0x69,0x61, 0x6e,0x74,0x20,0x56,0x69,0x6f,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x22,0x7d,0x74,0x68, 0x72,0x6f,0x77,0x20,0x63,0x2e,0x66,0x72,0x61,0x6d,0x65,0x73,0x54,0x6f,0x50,0x6f, 0x70,0x3d,0x31,0x2c,0x63,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x7c,0x7c, 0x74,0x3e,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x28,0x74,0x3d, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x30,0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61, 0x79,0x28,0x74,0x29,0x3b,0x6e,0x3c,0x74,0x3b,0x6e,0x2b,0x2b,0x29,0x72,0x5b,0x6e, 0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d, 0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29, 0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x73,0x3f,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x29,0x3a, 0x65,0x2e,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3f,0x65,0x3d,0x3d,0x3d,0x74,0x7c, 0x7c,0x21,0x21,0x28,0x31,0x36,0x26,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65, 0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x6e,0x2e,0x64,0x28, 0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d,0x2c,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x33,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x37,0x31,0x29,0x2c,0x69, 0x3d,0x6e,0x28,0x31,0x30,0x39,0x29,0x2c,0x61,0x3d,0x7b,0x22,0x43,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x22,0x3a,0x22,0x61,0x70,0x70,0x6c,0x69, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x78,0x2d,0x77,0x77,0x77,0x2d,0x66,0x6f,0x72, 0x6d,0x2d,0x75,0x72,0x6c,0x65,0x6e,0x63,0x6f,0x64,0x65,0x64,0x22,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x21, 0x72,0x2e,0x69,0x73,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x65,0x29, 0x26,0x26,0x72,0x2e,0x69,0x73,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28, 0x65,0x5b,0x22,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x22, 0x5d,0x29,0x26,0x26,0x28,0x65,0x5b,0x22,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d, 0x54,0x79,0x70,0x65,0x22,0x5d,0x3d,0x74,0x29,0x7d,0x76,0x61,0x72,0x20,0x63,0x3d, 0x7b,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x3a,0x7b,0x73, 0x69,0x6c,0x65,0x6e,0x74,0x4a,0x53,0x4f,0x4e,0x50,0x61,0x72,0x73,0x69,0x6e,0x67, 0x3a,0x21,0x30,0x2c,0x66,0x6f,0x72,0x63,0x65,0x64,0x4a,0x53,0x4f,0x4e,0x50,0x61, 0x72,0x73,0x69,0x6e,0x67,0x3a,0x21,0x30,0x2c,0x63,0x6c,0x61,0x72,0x69,0x66,0x79, 0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x45,0x72,0x72,0x6f,0x72,0x3a,0x21,0x31,0x7d, 0x2c,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x58,0x4d,0x4c,0x48,0x74,0x74,0x70,0x52,0x65,0x71, 0x75,0x65,0x73,0x74,0x7c,0x7c,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5d,0x22, 0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x74,0x29,0x29,0x26,0x26,0x28,0x65,0x3d,0x6e,0x28,0x31,0x31,0x30,0x29, 0x29,0x2c,0x65,0x7d,0x28,0x29,0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a,0x5b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x74,0x2c,0x22,0x41,0x63,0x63,0x65,0x70,0x74,0x22,0x29,0x2c,0x6f,0x28,0x74,0x2c, 0x22,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x22,0x29,0x2c, 0x72,0x2e,0x69,0x73,0x46,0x6f,0x72,0x6d,0x44,0x61,0x74,0x61,0x28,0x65,0x29,0x7c, 0x7c,0x72,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72, 0x28,0x65,0x29,0x7c,0x7c,0x72,0x2e,0x69,0x73,0x42,0x75,0x66,0x66,0x65,0x72,0x28, 0x65,0x29,0x7c,0x7c,0x72,0x2e,0x69,0x73,0x53,0x74,0x72,0x65,0x61,0x6d,0x28,0x65, 0x29,0x7c,0x7c,0x72,0x2e,0x69,0x73,0x46,0x69,0x6c,0x65,0x28,0x65,0x29,0x7c,0x7c, 0x72,0x2e,0x69,0x73,0x42,0x6c,0x6f,0x62,0x28,0x65,0x29,0x3f,0x65,0x3a,0x72,0x2e, 0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x56,0x69,0x65, 0x77,0x28,0x65,0x29,0x3f,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x3a,0x72,0x2e, 0x69,0x73,0x55,0x52,0x4c,0x53,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x72,0x61,0x6d, 0x73,0x28,0x65,0x29,0x3f,0x28,0x75,0x28,0x74,0x2c,0x22,0x61,0x70,0x70,0x6c,0x69, 0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x78,0x2d,0x77,0x77,0x77,0x2d,0x66,0x6f,0x72, 0x6d,0x2d,0x75,0x72,0x6c,0x65,0x6e,0x63,0x6f,0x64,0x65,0x64,0x3b,0x63,0x68,0x61, 0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x22,0x29,0x2c,0x65,0x2e,0x74, 0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3a,0x72,0x2e,0x69,0x73,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x7c,0x7c,0x74,0x26,0x26,0x22,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x5b,0x22,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70, 0x65,0x22,0x5d,0x3f,0x28,0x75,0x28,0x74,0x2c,0x22,0x61,0x70,0x70,0x6c,0x69,0x63, 0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x22,0x29,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28, 0x72,0x2e,0x69,0x73,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x29,0x29,0x74,0x72, 0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x7c,0x7c,0x4a,0x53,0x4f,0x4e, 0x2e,0x70,0x61,0x72,0x73,0x65,0x29,0x28,0x65,0x29,0x2c,0x72,0x2e,0x74,0x72,0x69, 0x6d,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6f,0x29,0x7b,0x69,0x66, 0x28,0x22,0x53,0x79,0x6e,0x74,0x61,0x78,0x45,0x72,0x72,0x6f,0x72,0x22,0x21,0x3d, 0x3d,0x6f,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6f,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e,0x7c,0x7c,0x4a,0x53,0x4f,0x4e,0x2e,0x73, 0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x29,0x28,0x65,0x29,0x7d,0x28,0x65,0x29, 0x29,0x3a,0x65,0x7d,0x5d,0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x52, 0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x5b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x7c,0x7c,0x63,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x2c,0x6e,0x3d,0x74, 0x26,0x26,0x74,0x2e,0x73,0x69,0x6c,0x65,0x6e,0x74,0x4a,0x53,0x4f,0x4e,0x50,0x61, 0x72,0x73,0x69,0x6e,0x67,0x2c,0x6f,0x3d,0x74,0x26,0x26,0x74,0x2e,0x66,0x6f,0x72, 0x63,0x65,0x64,0x4a,0x53,0x4f,0x4e,0x50,0x61,0x72,0x73,0x69,0x6e,0x67,0x2c,0x61, 0x3d,0x21,0x6e,0x26,0x26,0x22,0x6a,0x73,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x79,0x70,0x65,0x3b, 0x69,0x66,0x28,0x61,0x7c,0x7c,0x6f,0x26,0x26,0x72,0x2e,0x69,0x73,0x53,0x74,0x72, 0x69,0x6e,0x67,0x28,0x65,0x29,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x29,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x53,0x4f,0x4e, 0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x75,0x29,0x7b,0x69,0x66,0x28,0x61,0x29,0x7b,0x69,0x66,0x28,0x22,0x53,0x79,0x6e, 0x74,0x61,0x78,0x45,0x72,0x72,0x6f,0x72,0x22,0x3d,0x3d,0x3d,0x75,0x2e,0x6e,0x61, 0x6d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x69,0x28,0x75,0x2c,0x74,0x68,0x69, 0x73,0x2c,0x22,0x45,0x5f,0x4a,0x53,0x4f,0x4e,0x5f,0x50,0x41,0x52,0x53,0x45,0x22, 0x29,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x75,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x5d,0x2c,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x30,0x2c, 0x78,0x73,0x72,0x66,0x43,0x6f,0x6f,0x6b,0x69,0x65,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x58,0x53,0x52,0x46,0x2d,0x54,0x4f,0x4b,0x45,0x4e,0x22,0x2c,0x78,0x73,0x72,0x66, 0x48,0x65,0x61,0x64,0x65,0x72,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x58,0x2d,0x58,0x53, 0x52,0x46,0x2d,0x54,0x4f,0x4b,0x45,0x4e,0x22,0x2c,0x6d,0x61,0x78,0x43,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x2d,0x31,0x2c,0x6d,0x61, 0x78,0x42,0x6f,0x64,0x79,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x2d,0x31,0x2c,0x76, 0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3e,0x3d,0x32,0x30,0x30,0x26,0x26,0x65,0x3c,0x33,0x30,0x30,0x7d,0x2c, 0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x3a,0x7b,0x63,0x6f,0x6d,0x6d,0x6f,0x6e,0x3a, 0x7b,0x41,0x63,0x63,0x65,0x70,0x74,0x3a,0x22,0x61,0x70,0x70,0x6c,0x69,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x2c,0x20,0x74,0x65,0x78,0x74,0x2f, 0x70,0x6c,0x61,0x69,0x6e,0x2c,0x20,0x2a,0x2f,0x2a,0x22,0x7d,0x7d,0x7d,0x3b,0x72, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x5b,0x22,0x64,0x65,0x6c,0x65,0x74, 0x65,0x22,0x2c,0x22,0x67,0x65,0x74,0x22,0x2c,0x22,0x68,0x65,0x61,0x64,0x22,0x5d, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x63,0x2e, 0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x5b,0x65,0x5d,0x3d,0x7b,0x7d,0x7d,0x29,0x29, 0x2c,0x72,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x5b,0x22,0x70,0x6f,0x73, 0x74,0x22,0x2c,0x22,0x70,0x75,0x74,0x22,0x2c,0x22,0x70,0x61,0x74,0x63,0x68,0x22, 0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x63, 0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x5b,0x65,0x5d,0x3d,0x72,0x2e,0x6d,0x65, 0x72,0x67,0x65,0x28,0x61,0x29,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x63,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x2c,0x6e,0x28,0x31,0x37,0x30,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x72,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x73,0x73,0x61, 0x67,0x65,0x3d,0x65,0x7d,0x72,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x43,0x61,0x6e,0x63, 0x65,0x6c,0x22,0x2b,0x28,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67, 0x65,0x3f,0x22,0x3a,0x20,0x22,0x2b,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x73,0x73, 0x61,0x67,0x65,0x3a,0x22,0x22,0x29,0x7d,0x2c,0x72,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x5f,0x5f,0x43,0x41,0x4e,0x43,0x45,0x4c,0x5f,0x5f,0x3d, 0x21,0x30,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x34,0x30,0x29,0x2e,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x35,0x33,0x29,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2c,0x22,0x63,0x72,0x65,0x61,0x74,0x65,0x22,0x29,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x32,0x30,0x33,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x30,0x34,0x29,0x2c, 0x69,0x3d,0x6e,0x28,0x32,0x30,0x35,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x32,0x30,0x36, 0x29,0x2c,0x75,0x3d,0x6e,0x28,0x32,0x30,0x37,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d, 0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e, 0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e, 0x73,0x65,0x74,0x28,0x72,0x5b,0x30,0x5d,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x7d,0x7d, 0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x65,0x61, 0x72,0x3d,0x72,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x64,0x65,0x6c,0x65,0x74,0x65,0x3d,0x6f,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x3d,0x69,0x2c,0x63,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x3d,0x61,0x2c,0x63,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x75,0x2c,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x63,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x31,0x32,0x30,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x6e,0x2d,0x2d,0x3b,0x29,0x69,0x66,0x28,0x72,0x28,0x65,0x5b, 0x6e,0x5d,0x5b,0x30,0x5d,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x32,0x30,0x39,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x74,0x29,0x3f,0x6e, 0x5b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x74,0x3f,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3a,0x22,0x68,0x61, 0x73,0x68,0x22,0x5d,0x3a,0x6e,0x2e,0x6d,0x61,0x70,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x39,0x38,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x7c,0x7c,0x72,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2b,0x22,0x22,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x30,0x22,0x3d,0x3d,0x74,0x26,0x26,0x31,0x2f,0x65, 0x3d,0x3d,0x2d,0x49,0x6e,0x66,0x69,0x6e,0x69,0x74,0x79,0x3f,0x22,0x2d,0x30,0x22, 0x3a,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x53, 0x74,0x61,0x74,0x65,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x36,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x69,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x26,0x26, 0x28,0x69,0x3d,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x6e,0x29,0x3b,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x28,0x29,0x3a,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x61,0x2c,0x69,0x29,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x61,0x2c,0x69,0x29,0x7d,0x7d,0x29, 0x2c,0x5b,0x65,0x5d,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x69,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37, 0x39,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x75,0x73, 0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x69,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x38,0x32,0x29,0x2c,0x6f,0x3d,0x21,0x31,0x2c,0x69,0x3d,0x21,0x31,0x3b,0x74,0x72, 0x79,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x7b,0x67,0x65,0x74,0x20,0x70,0x61,0x73, 0x73,0x69,0x76,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3d, 0x21,0x30,0x7d,0x2c,0x67,0x65,0x74,0x20,0x6f,0x6e,0x63,0x65,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3d,0x6f,0x3d,0x21,0x30,0x7d,0x7d,0x3b,0x72, 0x2e,0x61,0x26,0x26,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45, 0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x74,0x65, 0x73,0x74,0x22,0x2c,0x61,0x2c,0x61,0x29,0x2c,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65, 0x6e,0x65,0x72,0x28,0x22,0x74,0x65,0x73,0x74,0x22,0x2c,0x61,0x2c,0x21,0x30,0x29, 0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x75,0x29,0x7b,0x7d,0x74,0x2e,0x61,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x7b,0x69,0x66,0x28,0x72,0x26,0x26,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x26,0x26,0x21,0x69, 0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x72,0x2e,0x6f,0x6e,0x63,0x65,0x2c,0x75, 0x3d,0x72,0x2e,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x2c,0x63,0x3d,0x6e,0x3b,0x21, 0x69,0x26,0x26,0x61,0x26,0x26,0x28,0x63,0x3d,0x6e,0x2e,0x5f,0x5f,0x6f,0x6e,0x63, 0x65,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x72,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e, 0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x65,0x2c,0x75,0x29, 0x2c,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x7d, 0x2c,0x6e,0x2e,0x5f,0x5f,0x6f,0x6e,0x63,0x65,0x3d,0x63,0x29,0x2c,0x65,0x2e,0x61, 0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28, 0x74,0x2c,0x63,0x2c,0x6f,0x3f,0x72,0x3a,0x75,0x29,0x7d,0x65,0x2e,0x61,0x64,0x64, 0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x74,0x2e,0x61,0x3d,0x21,0x28,0x22,0x75,0x6e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x7c,0x7c,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x72,0x28,0x29,0x7b,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x52,0x65,0x66,0x6c, 0x65,0x63,0x74,0x7c,0x7c,0x21,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31, 0x3b,0x69,0x66,0x28,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x2e,0x73,0x68,0x61,0x6d,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x50,0x72,0x6f,0x78,0x79, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x44,0x61,0x74,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72, 0x75,0x63,0x74,0x28,0x44,0x61,0x74,0x65,0x2c,0x5b,0x5d,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x29,0x29,0x29,0x2c,0x21,0x30,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x7d,0x7d,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x52,0x65,0x66,0x65,0x72,0x65,0x6e, 0x63,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x74,0x68,0x69,0x73,0x20,0x68,0x61, 0x73,0x6e,0x27,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, 0x6c,0x69,0x73,0x65,0x64,0x20,0x2d,0x20,0x73,0x75,0x70,0x65,0x72,0x28,0x29,0x20, 0x68,0x61,0x73,0x6e,0x27,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x63,0x61,0x6c,0x6c, 0x65,0x64,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x29,0x29,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x64,0x75,0x63, 0x65,0x72,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x7d,0x29,0x2c,0x21,0x31,0x29,0x5b, 0x31,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64, 0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x6f, 0x3d,0x6e,0x28,0x30,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x36,0x29,0x2c,0x61,0x3d, 0x6e,0x28,0x36,0x31,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x32,0x31,0x29,0x2c,0x63,0x3d, 0x6e,0x28,0x34,0x38,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x33,0x33,0x29,0x2c,0x73,0x3d, 0x6e,0x28,0x31,0x29,0x2c,0x66,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22,0x61,0x63, 0x74,0x69,0x76,0x65,0x22,0x2c,0x22,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x22, 0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x2c,0x6e,0x3d,0x65,0x2e, 0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x2c,0x72,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x69,0x64,0x2c,0x73,0x3d,0x65,0x2e,0x72,0x6f, 0x6c,0x65,0x2c,0x66,0x3d,0x65,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c, 0x64,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x75,0x73,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x75,0x2e,0x61,0x29,0x2c,0x70,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x29,0x28,0x61,0x2e,0x61,0x29,0x2c,0x68,0x3d,0x72,0x2c,0x76,0x3d,0x7b,0x72, 0x6f,0x6c,0x65,0x3a,0x73,0x7d,0x3b,0x69,0x66,0x28,0x70,0x29,0x7b,0x73,0x7c,0x7c, 0x22,0x74,0x61,0x62,0x6c,0x69,0x73,0x74,0x22,0x21,0x3d,0x3d,0x70,0x2e,0x72,0x6f, 0x6c,0x65,0x7c,0x7c,0x28,0x76,0x2e,0x72,0x6f,0x6c,0x65,0x3d,0x22,0x74,0x61,0x62, 0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x67,0x3d,0x70,0x2e,0x67,0x65,0x74,0x43,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x49,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x74,0x3f,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x6d,0x3d,0x70,0x2e,0x67, 0x65,0x74,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x64,0x49,0x64,0x28,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x74,0x3f,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x76, 0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x22,0x65,0x76, 0x65,0x6e,0x74,0x2d,0x6b,0x65,0x79,0x22,0x29,0x5d,0x3d,0x74,0x2c,0x76,0x2e,0x69, 0x64,0x3d,0x67,0x7c,0x7c,0x63,0x2c,0x76,0x5b,0x22,0x61,0x72,0x69,0x61,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x22,0x5d,0x3d,0x6d,0x2c,0x68,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x72,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x3f,0x70, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x3d,0x3d,0x3d,0x74,0x3a,0x72, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x74,0x61,0x62,0x22,0x3d,0x3d,0x3d,0x76, 0x2e,0x72,0x6f,0x6c,0x65,0x26,0x26,0x28,0x66,0x26,0x26,0x28,0x76,0x2e,0x74,0x61, 0x62,0x49,0x6e,0x64,0x65,0x78,0x3d,0x2d,0x31,0x2c,0x76,0x5b,0x22,0x61,0x72,0x69, 0x61,0x2d,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x5d,0x3d,0x21,0x30,0x29, 0x2c,0x68,0x3f,0x76,0x5b,0x22,0x61,0x72,0x69,0x61,0x2d,0x73,0x65,0x6c,0x65,0x63, 0x74,0x65,0x64,0x22,0x5d,0x3d,0x68,0x3a,0x76,0x2e,0x74,0x61,0x62,0x49,0x6e,0x64, 0x65,0x78,0x3d,0x2d,0x31,0x29,0x2c,0x76,0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x7c,0x7c,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x6e,0x7c,0x7c,0x6e,0x28,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x74,0x26,0x26,0x64,0x26,0x26,0x21,0x65,0x2e,0x69,0x73,0x50,0x72,0x6f, 0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x28, 0x29,0x26,0x26,0x64,0x28,0x74,0x2c,0x65,0x29,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x76, 0x2c,0x7b,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x3a,0x68,0x7d,0x5d,0x7d,0x76, 0x61,0x72,0x20,0x70,0x3d,0x6f,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65, 0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x6f,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x63,0x2e,0x61,0x3a,0x6e,0x2c,0x69, 0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x61,0x3d,0x65,0x2e,0x65,0x76, 0x65,0x6e,0x74,0x4b,0x65,0x79,0x2c,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d,0x30, 0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29, 0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66, 0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b, 0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x28,0x65,0x2c, 0x66,0x29,0x2c,0x68,0x3d,0x64,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x6b,0x65,0x79,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x75,0x2e,0x62,0x29,0x28,0x61,0x2c,0x70,0x2e,0x68,0x72,0x65,0x66,0x29,0x2c, 0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x69,0x7d,0x2c,0x70,0x29,0x29,0x2c,0x76,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x68,0x2c,0x32,0x29, 0x2c,0x67,0x3d,0x76,0x5b,0x30,0x5d,0x2c,0x6d,0x3d,0x76,0x5b,0x31,0x5d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c, 0x2e,0x61,0x29,0x28,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x29,0x5d,0x3d,0x6d, 0x2e,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6f,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x70,0x2c,0x67,0x2c,0x7b, 0x72,0x65,0x66,0x3a,0x74,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x70,0x2e,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x49,0x74, 0x65,0x6d,0x22,0x2c,0x74,0x2e,0x61,0x3d,0x70,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x33,0x29, 0x2c,0x61,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x75,0x3d,0x6e,0x2e,0x6e,0x28,0x61,0x29, 0x2c,0x63,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x39,0x32,0x29,0x2c, 0x73,0x3d,0x6e,0x28,0x38,0x36,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x32,0x31,0x29,0x2c, 0x64,0x3d,0x6e,0x28,0x37,0x29,0x2c,0x70,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x68,0x3d, 0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x61,0x73,0x22,0x2c,0x22,0x61,0x63, 0x74,0x69,0x76,0x65,0x22,0x2c,0x22,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x22, 0x5d,0x2c,0x76,0x3d,0x63,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78, 0x2c,0x61,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x63, 0x3d,0x65,0x2e,0x61,0x73,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x63,0x3f,0x6c,0x2e,0x61,0x3a,0x63,0x2c,0x67,0x3d,0x65,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x2c,0x6d,0x3d,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79, 0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x65, 0x2c,0x68,0x29,0x3b,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61, 0x29,0x28,0x6e,0x2c,0x22,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x29,0x3b, 0x76,0x61,0x72,0x20,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x62, 0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x6b, 0x65,0x79,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x62,0x29,0x28,0x6d, 0x2c,0x62,0x2e,0x68,0x72,0x65,0x66,0x29,0x2c,0x61,0x63,0x74,0x69,0x76,0x65,0x3a, 0x67,0x7d,0x2c,0x62,0x29,0x29,0x2c,0x5f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6f,0x2e,0x61,0x29,0x28,0x79,0x2c,0x32,0x29,0x2c,0x77,0x3d,0x5f,0x5b,0x30,0x5d, 0x2c,0x4f,0x3d,0x5f,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x76,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x62,0x29,0x2c,0x77,0x29,0x2c,0x7b,0x7d,0x2c,0x7b, 0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x75,0x28,0x29,0x28,0x61,0x2c,0x6e,0x2c,0x62,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x26,0x26,0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x4f, 0x2e,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x26,0x26,0x22,0x61,0x63,0x74,0x69, 0x76,0x65,0x22,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x76,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x4c,0x69,0x6e, 0x6b,0x22,0x2c,0x76,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70, 0x73,0x3d,0x7b,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x31,0x7d,0x2c, 0x74,0x2e,0x61,0x3d,0x76,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3b,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x2c,0x61,0x3d, 0x22,0x45,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x2c,0x75,0x3d,0x22,0x5f,0x5f,0x6c,0x6f,0x64,0x61,0x73, 0x68,0x5f,0x68,0x61,0x73,0x68,0x5f,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x5f,0x5f,0x22,0x2c,0x63,0x3d,0x22,0x5f,0x5f,0x6c,0x6f,0x64,0x61,0x73,0x68,0x5f, 0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x5f,0x5f,0x22,0x2c,0x6c, 0x3d,0x31,0x36,0x2c,0x73,0x3d,0x33,0x32,0x2c,0x66,0x3d,0x36,0x34,0x2c,0x64,0x3d, 0x31,0x32,0x38,0x2c,0x70,0x3d,0x32,0x35,0x36,0x2c,0x68,0x3d,0x31,0x2f,0x30,0x2c, 0x76,0x3d,0x39,0x30,0x30,0x37,0x31,0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39, 0x39,0x31,0x2c,0x67,0x3d,0x4e,0x61,0x4e,0x2c,0x6d,0x3d,0x34,0x32,0x39,0x34,0x39, 0x36,0x37,0x32,0x39,0x35,0x2c,0x62,0x3d,0x5b,0x5b,0x22,0x61,0x72,0x79,0x22,0x2c, 0x64,0x5d,0x2c,0x5b,0x22,0x62,0x69,0x6e,0x64,0x22,0x2c,0x31,0x5d,0x2c,0x5b,0x22, 0x62,0x69,0x6e,0x64,0x4b,0x65,0x79,0x22,0x2c,0x32,0x5d,0x2c,0x5b,0x22,0x63,0x75, 0x72,0x72,0x79,0x22,0x2c,0x38,0x5d,0x2c,0x5b,0x22,0x63,0x75,0x72,0x72,0x79,0x52, 0x69,0x67,0x68,0x74,0x22,0x2c,0x6c,0x5d,0x2c,0x5b,0x22,0x66,0x6c,0x69,0x70,0x22, 0x2c,0x35,0x31,0x32,0x5d,0x2c,0x5b,0x22,0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x22, 0x2c,0x73,0x5d,0x2c,0x5b,0x22,0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x52,0x69,0x67, 0x68,0x74,0x22,0x2c,0x66,0x5d,0x2c,0x5b,0x22,0x72,0x65,0x61,0x72,0x67,0x22,0x2c, 0x70,0x5d,0x5d,0x2c,0x79,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5d,0x22,0x2c,0x5f,0x3d,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x77,0x3d, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e, 0x5d,0x22,0x2c,0x4f,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61, 0x74,0x65,0x5d,0x22,0x2c,0x78,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x45,0x72,0x72,0x6f,0x72,0x5d,0x22,0x2c,0x45,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x2c,0x6a,0x3d, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74, 0x6f,0x72,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x2c,0x6b,0x3d,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x2c,0x53,0x3d, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x5d, 0x22,0x2c,0x43,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x5d,0x22,0x2c,0x41,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x5d,0x22,0x2c,0x54,0x3d,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x5d,0x22,0x2c,0x50, 0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x65,0x74,0x5d,0x22,0x2c, 0x44,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x74,0x72,0x69,0x6e, 0x67,0x5d,0x22,0x2c,0x4e,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x5d,0x22,0x2c,0x49,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x5d,0x22,0x2c,0x52,0x3d,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66, 0x66,0x65,0x72,0x5d,0x22,0x2c,0x4c,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x5d,0x22,0x2c,0x46,0x3d,0x22,0x5b, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46,0x6c,0x6f,0x61,0x74,0x33,0x32,0x41,0x72, 0x72,0x61,0x79,0x5d,0x22,0x2c,0x4d,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x46,0x6c,0x6f,0x61,0x74,0x36,0x34,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x2c, 0x42,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x38,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x7a,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x49,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x55, 0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x33,0x32,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x57,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x24, 0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x43, 0x6c,0x61,0x6d,0x70,0x65,0x64,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x48,0x3d, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x31,0x36,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x2c,0x56,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x55,0x69,0x6e,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x2c, 0x47,0x3d,0x2f,0x5c,0x62,0x5f,0x5f,0x70,0x20,0x5c,0x2b,0x3d,0x20,0x27,0x27,0x3b, 0x2f,0x67,0x2c,0x71,0x3d,0x2f,0x5c,0x62,0x28,0x5f,0x5f,0x70,0x20,0x5c,0x2b,0x3d, 0x29,0x20,0x27,0x27,0x20,0x5c,0x2b,0x2f,0x67,0x2c,0x4b,0x3d,0x2f,0x28,0x5f,0x5f, 0x65,0x5c,0x28,0x2e,0x2a,0x3f,0x5c,0x29,0x7c,0x5c,0x62,0x5f,0x5f,0x74,0x5c,0x29, 0x29,0x20,0x5c,0x2b,0x5c,0x6e,0x27,0x27,0x3b,0x2f,0x67,0x2c,0x59,0x3d,0x2f,0x26, 0x28,0x3f,0x3a,0x61,0x6d,0x70,0x7c,0x6c,0x74,0x7c,0x67,0x74,0x7c,0x71,0x75,0x6f, 0x74,0x7c,0x23,0x33,0x39,0x29,0x3b,0x2f,0x67,0x2c,0x51,0x3d,0x2f,0x5b,0x26,0x3c, 0x3e,0x22,0x27,0x5d,0x2f,0x67,0x2c,0x58,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x28, 0x59,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x2c,0x4a,0x3d,0x52,0x65,0x67,0x45, 0x78,0x70,0x28,0x51,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x2c,0x5a,0x3d,0x2f, 0x3c,0x25,0x2d,0x28,0x5b,0x5c,0x73,0x5c,0x53,0x5d,0x2b,0x3f,0x29,0x25,0x3e,0x2f, 0x67,0x2c,0x65,0x65,0x3d,0x2f,0x3c,0x25,0x28,0x5b,0x5c,0x73,0x5c,0x53,0x5d,0x2b, 0x3f,0x29,0x25,0x3e,0x2f,0x67,0x2c,0x74,0x65,0x3d,0x2f,0x3c,0x25,0x3d,0x28,0x5b, 0x5c,0x73,0x5c,0x53,0x5d,0x2b,0x3f,0x29,0x25,0x3e,0x2f,0x67,0x2c,0x6e,0x65,0x3d, 0x2f,0x5c,0x2e,0x7c,0x5c,0x5b,0x28,0x3f,0x3a,0x5b,0x5e,0x5b,0x5c,0x5d,0x5d,0x2a, 0x7c,0x28,0x5b,0x22,0x27,0x5d,0x29,0x28,0x3f,0x3a,0x28,0x3f,0x21,0x5c,0x31,0x29, 0x5b,0x5e,0x5c,0x5c,0x5d,0x7c,0x5c,0x5c,0x2e,0x29,0x2a,0x3f,0x5c,0x31,0x29,0x5c, 0x5d,0x2f,0x2c,0x72,0x65,0x3d,0x2f,0x5e,0x5c,0x77,0x2a,0x24,0x2f,0x2c,0x6f,0x65, 0x3d,0x2f,0x5b,0x5e,0x2e,0x5b,0x5c,0x5d,0x5d,0x2b,0x7c,0x5c,0x5b,0x28,0x3f,0x3a, 0x28,0x2d,0x3f,0x5c,0x64,0x2b,0x28,0x3f,0x3a,0x5c,0x2e,0x5c,0x64,0x2b,0x29,0x3f, 0x29,0x7c,0x28,0x5b,0x22,0x27,0x5d,0x29,0x28,0x28,0x3f,0x3a,0x28,0x3f,0x21,0x5c, 0x32,0x29,0x5b,0x5e,0x5c,0x5c,0x5d,0x7c,0x5c,0x5c,0x2e,0x29,0x2a,0x3f,0x29,0x5c, 0x32,0x29,0x5c,0x5d,0x7c,0x28,0x3f,0x3d,0x28,0x3f,0x3a,0x5c,0x2e,0x7c,0x5c,0x5b, 0x5c,0x5d,0x29,0x28,0x3f,0x3a,0x5c,0x2e,0x7c,0x5c,0x5b,0x5c,0x5d,0x7c,0x24,0x29, 0x29,0x2f,0x67,0x2c,0x69,0x65,0x3d,0x2f,0x5b,0x5c,0x5c,0x5e,0x24,0x2e,0x2a,0x2b, 0x3f,0x28,0x29,0x5b,0x5c,0x5d,0x7b,0x7d,0x7c,0x5d,0x2f,0x67,0x2c,0x61,0x65,0x3d, 0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x69,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65, 0x29,0x2c,0x75,0x65,0x3d,0x2f,0x5e,0x5c,0x73,0x2b,0x2f,0x2c,0x63,0x65,0x3d,0x2f, 0x5c,0x73,0x2f,0x2c,0x6c,0x65,0x3d,0x2f,0x5c,0x7b,0x28,0x3f,0x3a,0x5c,0x6e,0x5c, 0x2f,0x5c,0x2a,0x20,0x5c,0x5b,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x77,0x69, 0x74,0x68,0x20,0x2e,0x2b,0x5c,0x5d,0x20,0x5c,0x2a,0x5c,0x2f,0x29,0x3f,0x5c,0x6e, 0x3f,0x2f,0x2c,0x73,0x65,0x3d,0x2f,0x5c,0x7b,0x5c,0x6e,0x5c,0x2f,0x5c,0x2a,0x20, 0x5c,0x5b,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x28, 0x2e,0x2b,0x29,0x5c,0x5d,0x20,0x5c,0x2a,0x2f,0x2c,0x66,0x65,0x3d,0x2f,0x2c,0x3f, 0x20,0x26,0x20,0x2f,0x2c,0x64,0x65,0x3d,0x2f,0x5b,0x5e,0x5c,0x78,0x30,0x30,0x2d, 0x5c,0x78,0x32,0x66,0x5c,0x78,0x33,0x61,0x2d,0x5c,0x78,0x34,0x30,0x5c,0x78,0x35, 0x62,0x2d,0x5c,0x78,0x36,0x30,0x5c,0x78,0x37,0x62,0x2d,0x5c,0x78,0x37,0x66,0x5d, 0x2b,0x2f,0x67,0x2c,0x70,0x65,0x3d,0x2f,0x5b,0x28,0x29,0x3d,0x2c,0x7b,0x7d,0x5c, 0x5b,0x5c,0x5d,0x5c,0x2f,0x5c,0x73,0x5d,0x2f,0x2c,0x68,0x65,0x3d,0x2f,0x5c,0x5c, 0x28,0x5c,0x5c,0x29,0x3f,0x2f,0x67,0x2c,0x76,0x65,0x3d,0x2f,0x5c,0x24,0x5c,0x7b, 0x28,0x5b,0x5e,0x5c,0x5c,0x7d,0x5d,0x2a,0x28,0x3f,0x3a,0x5c,0x5c,0x2e,0x5b,0x5e, 0x5c,0x5c,0x7d,0x5d,0x2a,0x29,0x2a,0x29,0x5c,0x7d,0x2f,0x67,0x2c,0x67,0x65,0x3d, 0x2f,0x5c,0x77,0x2a,0x24,0x2f,0x2c,0x6d,0x65,0x3d,0x2f,0x5e,0x5b,0x2d,0x2b,0x5d, 0x30,0x78,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x5d,0x2b,0x24,0x2f,0x69,0x2c,0x62, 0x65,0x3d,0x2f,0x5e,0x30,0x62,0x5b,0x30,0x31,0x5d,0x2b,0x24,0x2f,0x69,0x2c,0x79, 0x65,0x3d,0x2f,0x5e,0x5c,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x2e,0x2b,0x3f, 0x43,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x5c,0x5d,0x24,0x2f,0x2c, 0x5f,0x65,0x3d,0x2f,0x5e,0x30,0x6f,0x5b,0x30,0x2d,0x37,0x5d,0x2b,0x24,0x2f,0x69, 0x2c,0x77,0x65,0x3d,0x2f,0x5e,0x28,0x3f,0x3a,0x30,0x7c,0x5b,0x31,0x2d,0x39,0x5d, 0x5c,0x64,0x2a,0x29,0x24,0x2f,0x2c,0x4f,0x65,0x3d,0x2f,0x5b,0x5c,0x78,0x63,0x30, 0x2d,0x5c,0x78,0x64,0x36,0x5c,0x78,0x64,0x38,0x2d,0x5c,0x78,0x66,0x36,0x5c,0x78, 0x66,0x38,0x2d,0x5c,0x78,0x66,0x66,0x5c,0x75,0x30,0x31,0x30,0x30,0x2d,0x5c,0x75, 0x30,0x31,0x37,0x66,0x5d,0x2f,0x67,0x2c,0x78,0x65,0x3d,0x2f,0x28,0x24,0x5e,0x29, 0x2f,0x2c,0x45,0x65,0x3d,0x2f,0x5b,0x27,0x5c,0x6e,0x5c,0x72,0x5c,0x75,0x32,0x30, 0x32,0x38,0x5c,0x75,0x32,0x30,0x32,0x39,0x5c,0x5c,0x5d,0x2f,0x67,0x2c,0x6a,0x65, 0x3d,0x22,0x5c,0x5c,0x75,0x30,0x33,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x30,0x33,0x36, 0x66,0x5c,0x5c,0x75,0x66,0x65,0x32,0x30,0x2d,0x5c,0x5c,0x75,0x66,0x65,0x32,0x66, 0x5c,0x5c,0x75,0x32,0x30,0x64,0x30,0x2d,0x5c,0x5c,0x75,0x32,0x30,0x66,0x66,0x22, 0x2c,0x6b,0x65,0x3d,0x22,0x5c,0x5c,0x75,0x32,0x37,0x30,0x30,0x2d,0x5c,0x5c,0x75, 0x32,0x37,0x62,0x66,0x22,0x2c,0x53,0x65,0x3d,0x22,0x61,0x2d,0x7a,0x5c,0x5c,0x78, 0x64,0x66,0x2d,0x5c,0x5c,0x78,0x66,0x36,0x5c,0x5c,0x78,0x66,0x38,0x2d,0x5c,0x5c, 0x78,0x66,0x66,0x22,0x2c,0x43,0x65,0x3d,0x22,0x41,0x2d,0x5a,0x5c,0x5c,0x78,0x63, 0x30,0x2d,0x5c,0x5c,0x78,0x64,0x36,0x5c,0x5c,0x78,0x64,0x38,0x2d,0x5c,0x5c,0x78, 0x64,0x65,0x22,0x2c,0x41,0x65,0x3d,0x22,0x5c,0x5c,0x75,0x66,0x65,0x30,0x65,0x5c, 0x5c,0x75,0x66,0x65,0x30,0x66,0x22,0x2c,0x54,0x65,0x3d,0x22,0x5c,0x5c,0x78,0x61, 0x63,0x5c,0x5c,0x78,0x62,0x31,0x5c,0x5c,0x78,0x64,0x37,0x5c,0x5c,0x78,0x66,0x37, 0x5c,0x5c,0x78,0x30,0x30,0x2d,0x5c,0x5c,0x78,0x32,0x66,0x5c,0x5c,0x78,0x33,0x61, 0x2d,0x5c,0x5c,0x78,0x34,0x30,0x5c,0x5c,0x78,0x35,0x62,0x2d,0x5c,0x5c,0x78,0x36, 0x30,0x5c,0x5c,0x78,0x37,0x62,0x2d,0x5c,0x5c,0x78,0x62,0x66,0x5c,0x5c,0x75,0x32, 0x30,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x32,0x30,0x36,0x66,0x20,0x5c,0x5c,0x74,0x5c, 0x5c,0x78,0x30,0x62,0x5c,0x5c,0x66,0x5c,0x5c,0x78,0x61,0x30,0x5c,0x5c,0x75,0x66, 0x65,0x66,0x66,0x5c,0x5c,0x6e,0x5c,0x5c,0x72,0x5c,0x5c,0x75,0x32,0x30,0x32,0x38, 0x5c,0x5c,0x75,0x32,0x30,0x32,0x39,0x5c,0x5c,0x75,0x31,0x36,0x38,0x30,0x5c,0x5c, 0x75,0x31,0x38,0x30,0x65,0x5c,0x5c,0x75,0x32,0x30,0x30,0x30,0x5c,0x5c,0x75,0x32, 0x30,0x30,0x31,0x5c,0x5c,0x75,0x32,0x30,0x30,0x32,0x5c,0x5c,0x75,0x32,0x30,0x30, 0x33,0x5c,0x5c,0x75,0x32,0x30,0x30,0x34,0x5c,0x5c,0x75,0x32,0x30,0x30,0x35,0x5c, 0x5c,0x75,0x32,0x30,0x30,0x36,0x5c,0x5c,0x75,0x32,0x30,0x30,0x37,0x5c,0x5c,0x75, 0x32,0x30,0x30,0x38,0x5c,0x5c,0x75,0x32,0x30,0x30,0x39,0x5c,0x5c,0x75,0x32,0x30, 0x30,0x61,0x5c,0x5c,0x75,0x32,0x30,0x32,0x66,0x5c,0x5c,0x75,0x32,0x30,0x35,0x66, 0x5c,0x5c,0x75,0x33,0x30,0x30,0x30,0x22,0x2c,0x50,0x65,0x3d,0x22,0x5b,0x27,0x5c, 0x75,0x32,0x30,0x31,0x39,0x5d,0x22,0x2c,0x44,0x65,0x3d,0x22,0x5b,0x5c,0x5c,0x75, 0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x4e, 0x65,0x3d,0x22,0x5b,0x22,0x2b,0x54,0x65,0x2b,0x22,0x5d,0x22,0x2c,0x49,0x65,0x3d, 0x22,0x5b,0x22,0x2b,0x6a,0x65,0x2b,0x22,0x5d,0x22,0x2c,0x52,0x65,0x3d,0x22,0x5c, 0x5c,0x64,0x2b,0x22,0x2c,0x4c,0x65,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x32,0x37,0x30, 0x30,0x2d,0x5c,0x5c,0x75,0x32,0x37,0x62,0x66,0x5d,0x22,0x2c,0x46,0x65,0x3d,0x22, 0x5b,0x22,0x2b,0x53,0x65,0x2b,0x22,0x5d,0x22,0x2c,0x4d,0x65,0x3d,0x22,0x5b,0x5e, 0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x22, 0x2b,0x54,0x65,0x2b,0x52,0x65,0x2b,0x6b,0x65,0x2b,0x53,0x65,0x2b,0x43,0x65,0x2b, 0x22,0x5d,0x22,0x2c,0x42,0x65,0x3d,0x22,0x5c,0x5c,0x75,0x64,0x38,0x33,0x63,0x5b, 0x5c,0x5c,0x75,0x64,0x66,0x66,0x62,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d, 0x22,0x2c,0x7a,0x65,0x3d,0x22,0x5b,0x5e,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d, 0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x55,0x65,0x3d,0x22,0x28,0x3f, 0x3a,0x5c,0x5c,0x75,0x64,0x38,0x33,0x63,0x5b,0x5c,0x5c,0x75,0x64,0x64,0x65,0x36, 0x2d,0x5c,0x5c,0x75,0x64,0x64,0x66,0x66,0x5d,0x29,0x7b,0x32,0x7d,0x22,0x2c,0x57, 0x65,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64, 0x62,0x66,0x66,0x5d,0x5b,0x5c,0x5c,0x75,0x64,0x63,0x30,0x30,0x2d,0x5c,0x5c,0x75, 0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x24,0x65,0x3d,0x22,0x5b,0x22,0x2b,0x43,0x65, 0x2b,0x22,0x5d,0x22,0x2c,0x48,0x65,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x46,0x65, 0x2b,0x22,0x7c,0x22,0x2b,0x4d,0x65,0x2b,0x22,0x29,0x22,0x2c,0x56,0x65,0x3d,0x22, 0x28,0x3f,0x3a,0x22,0x2b,0x24,0x65,0x2b,0x22,0x7c,0x22,0x2b,0x4d,0x65,0x2b,0x22, 0x29,0x22,0x2c,0x47,0x65,0x3d,0x22,0x28,0x3f,0x3a,0x5b,0x27,0x5c,0x75,0x32,0x30, 0x31,0x39,0x5d,0x28,0x3f,0x3a,0x64,0x7c,0x6c,0x6c,0x7c,0x6d,0x7c,0x72,0x65,0x7c, 0x73,0x7c,0x74,0x7c,0x76,0x65,0x29,0x29,0x3f,0x22,0x2c,0x71,0x65,0x3d,0x22,0x28, 0x3f,0x3a,0x5b,0x27,0x5c,0x75,0x32,0x30,0x31,0x39,0x5d,0x28,0x3f,0x3a,0x44,0x7c, 0x4c,0x4c,0x7c,0x4d,0x7c,0x52,0x45,0x7c,0x53,0x7c,0x54,0x7c,0x56,0x45,0x29,0x29, 0x3f,0x22,0x2c,0x4b,0x65,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x49,0x65,0x2b,0x22, 0x7c,0x22,0x2b,0x42,0x65,0x2b,0x22,0x29,0x22,0x2b,0x22,0x3f,0x22,0x2c,0x59,0x65, 0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x66,0x65,0x30,0x65,0x5c,0x5c,0x75,0x66,0x65,0x30, 0x66,0x5d,0x3f,0x22,0x2c,0x51,0x65,0x3d,0x59,0x65,0x2b,0x4b,0x65,0x2b,0x28,0x22, 0x28,0x3f,0x3a,0x5c,0x5c,0x75,0x32,0x30,0x30,0x64,0x28,0x3f,0x3a,0x22,0x2b,0x5b, 0x7a,0x65,0x2c,0x55,0x65,0x2c,0x57,0x65,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22, 0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2b,0x59,0x65,0x2b,0x4b,0x65,0x2b,0x22,0x29, 0x2a,0x22,0x29,0x2c,0x58,0x65,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x5b,0x4c,0x65, 0x2c,0x55,0x65,0x2c,0x57,0x65,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22, 0x29,0x2b,0x22,0x29,0x22,0x2b,0x51,0x65,0x2c,0x4a,0x65,0x3d,0x22,0x28,0x3f,0x3a, 0x22,0x2b,0x5b,0x7a,0x65,0x2b,0x49,0x65,0x2b,0x22,0x3f,0x22,0x2c,0x49,0x65,0x2c, 0x55,0x65,0x2c,0x57,0x65,0x2c,0x44,0x65,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22, 0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2c,0x5a,0x65,0x3d,0x52,0x65,0x67,0x45,0x78, 0x70,0x28,0x50,0x65,0x2c,0x22,0x67,0x22,0x29,0x2c,0x65,0x74,0x3d,0x52,0x65,0x67, 0x45,0x78,0x70,0x28,0x49,0x65,0x2c,0x22,0x67,0x22,0x29,0x2c,0x74,0x74,0x3d,0x52, 0x65,0x67,0x45,0x78,0x70,0x28,0x42,0x65,0x2b,0x22,0x28,0x3f,0x3d,0x22,0x2b,0x42, 0x65,0x2b,0x22,0x29,0x7c,0x22,0x2b,0x4a,0x65,0x2b,0x51,0x65,0x2c,0x22,0x67,0x22, 0x29,0x2c,0x6e,0x74,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x5b,0x24,0x65,0x2b, 0x22,0x3f,0x22,0x2b,0x46,0x65,0x2b,0x22,0x2b,0x22,0x2b,0x47,0x65,0x2b,0x22,0x28, 0x3f,0x3d,0x22,0x2b,0x5b,0x4e,0x65,0x2c,0x24,0x65,0x2c,0x22,0x24,0x22,0x5d,0x2e, 0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2c,0x56,0x65, 0x2b,0x22,0x2b,0x22,0x2b,0x71,0x65,0x2b,0x22,0x28,0x3f,0x3d,0x22,0x2b,0x5b,0x4e, 0x65,0x2c,0x24,0x65,0x2b,0x48,0x65,0x2c,0x22,0x24,0x22,0x5d,0x2e,0x6a,0x6f,0x69, 0x6e,0x28,0x22,0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2c,0x24,0x65,0x2b,0x22,0x3f, 0x22,0x2b,0x48,0x65,0x2b,0x22,0x2b,0x22,0x2b,0x47,0x65,0x2c,0x24,0x65,0x2b,0x22, 0x2b,0x22,0x2b,0x71,0x65,0x2c,0x22,0x5c,0x5c,0x64,0x2a,0x28,0x3f,0x3a,0x31,0x53, 0x54,0x7c,0x32,0x4e,0x44,0x7c,0x33,0x52,0x44,0x7c,0x28,0x3f,0x21,0x5b,0x31,0x32, 0x33,0x5d,0x29,0x5c,0x5c,0x64,0x54,0x48,0x29,0x28,0x3f,0x3d,0x5c,0x5c,0x62,0x7c, 0x5b,0x61,0x2d,0x7a,0x5f,0x5d,0x29,0x22,0x2c,0x22,0x5c,0x5c,0x64,0x2a,0x28,0x3f, 0x3a,0x31,0x73,0x74,0x7c,0x32,0x6e,0x64,0x7c,0x33,0x72,0x64,0x7c,0x28,0x3f,0x21, 0x5b,0x31,0x32,0x33,0x5d,0x29,0x5c,0x5c,0x64,0x74,0x68,0x29,0x28,0x3f,0x3d,0x5c, 0x5c,0x62,0x7c,0x5b,0x41,0x2d,0x5a,0x5f,0x5d,0x29,0x22,0x2c,0x52,0x65,0x2c,0x58, 0x65,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2c,0x22,0x67,0x22, 0x29,0x2c,0x72,0x74,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x5b,0x5c,0x5c, 0x75,0x32,0x30,0x30,0x64,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75, 0x64,0x66,0x66,0x66,0x22,0x2b,0x6a,0x65,0x2b,0x41,0x65,0x2b,0x22,0x5d,0x22,0x29, 0x2c,0x6f,0x74,0x3d,0x2f,0x5b,0x61,0x2d,0x7a,0x5d,0x5b,0x41,0x2d,0x5a,0x5d,0x7c, 0x5b,0x41,0x2d,0x5a,0x5d,0x7b,0x32,0x7d,0x5b,0x61,0x2d,0x7a,0x5d,0x7c,0x5b,0x30, 0x2d,0x39,0x5d,0x5b,0x61,0x2d,0x7a,0x41,0x2d,0x5a,0x5d,0x7c,0x5b,0x61,0x2d,0x7a, 0x41,0x2d,0x5a,0x5d,0x5b,0x30,0x2d,0x39,0x5d,0x7c,0x5b,0x5e,0x61,0x2d,0x7a,0x41, 0x2d,0x5a,0x30,0x2d,0x39,0x20,0x5d,0x2f,0x2c,0x69,0x74,0x3d,0x5b,0x22,0x41,0x72, 0x72,0x61,0x79,0x22,0x2c,0x22,0x42,0x75,0x66,0x66,0x65,0x72,0x22,0x2c,0x22,0x44, 0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x22,0x2c,0x22,0x44,0x61,0x74,0x65,0x22,0x2c, 0x22,0x45,0x72,0x72,0x6f,0x72,0x22,0x2c,0x22,0x46,0x6c,0x6f,0x61,0x74,0x33,0x32, 0x41,0x72,0x72,0x61,0x79,0x22,0x2c,0x22,0x46,0x6c,0x6f,0x61,0x74,0x36,0x34,0x41, 0x72,0x72,0x61,0x79,0x22,0x2c,0x22,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x2c,0x22,0x49,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x22,0x2c,0x22,0x49,0x6e, 0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x22,0x2c,0x22,0x49,0x6e,0x74,0x33,0x32, 0x41,0x72,0x72,0x61,0x79,0x22,0x2c,0x22,0x4d,0x61,0x70,0x22,0x2c,0x22,0x4d,0x61, 0x74,0x68,0x22,0x2c,0x22,0x4f,0x62,0x6a,0x65,0x63,0x74,0x22,0x2c,0x22,0x50,0x72, 0x6f,0x6d,0x69,0x73,0x65,0x22,0x2c,0x22,0x52,0x65,0x67,0x45,0x78,0x70,0x22,0x2c, 0x22,0x53,0x65,0x74,0x22,0x2c,0x22,0x53,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x22, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x2c,0x22,0x54,0x79,0x70,0x65,0x45,0x72,0x72, 0x6f,0x72,0x22,0x2c,0x22,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x22, 0x2c,0x22,0x55,0x69,0x6e,0x74,0x38,0x43,0x6c,0x61,0x6d,0x70,0x65,0x64,0x41,0x72, 0x72,0x61,0x79,0x22,0x2c,0x22,0x55,0x69,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61, 0x79,0x22,0x2c,0x22,0x55,0x69,0x6e,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x22, 0x2c,0x22,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x22,0x2c,0x22,0x5f,0x22,0x2c,0x22, 0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x2c,0x22,0x69, 0x73,0x46,0x69,0x6e,0x69,0x74,0x65,0x22,0x2c,0x22,0x70,0x61,0x72,0x73,0x65,0x49, 0x6e,0x74,0x22,0x2c,0x22,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22, 0x5d,0x2c,0x61,0x74,0x3d,0x2d,0x31,0x2c,0x75,0x74,0x3d,0x7b,0x7d,0x3b,0x75,0x74, 0x5b,0x46,0x5d,0x3d,0x75,0x74,0x5b,0x4d,0x5d,0x3d,0x75,0x74,0x5b,0x42,0x5d,0x3d, 0x75,0x74,0x5b,0x7a,0x5d,0x3d,0x75,0x74,0x5b,0x55,0x5d,0x3d,0x75,0x74,0x5b,0x57, 0x5d,0x3d,0x75,0x74,0x5b,0x24,0x5d,0x3d,0x75,0x74,0x5b,0x48,0x5d,0x3d,0x75,0x74, 0x5b,0x56,0x5d,0x3d,0x21,0x30,0x2c,0x75,0x74,0x5b,0x79,0x5d,0x3d,0x75,0x74,0x5b, 0x5f,0x5d,0x3d,0x75,0x74,0x5b,0x52,0x5d,0x3d,0x75,0x74,0x5b,0x77,0x5d,0x3d,0x75, 0x74,0x5b,0x4c,0x5d,0x3d,0x75,0x74,0x5b,0x4f,0x5d,0x3d,0x75,0x74,0x5b,0x78,0x5d, 0x3d,0x75,0x74,0x5b,0x45,0x5d,0x3d,0x75,0x74,0x5b,0x6b,0x5d,0x3d,0x75,0x74,0x5b, 0x53,0x5d,0x3d,0x75,0x74,0x5b,0x43,0x5d,0x3d,0x75,0x74,0x5b,0x54,0x5d,0x3d,0x75, 0x74,0x5b,0x50,0x5d,0x3d,0x75,0x74,0x5b,0x44,0x5d,0x3d,0x75,0x74,0x5b,0x49,0x5d, 0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x63,0x74,0x3d,0x7b,0x7d,0x3b,0x63,0x74, 0x5b,0x79,0x5d,0x3d,0x63,0x74,0x5b,0x5f,0x5d,0x3d,0x63,0x74,0x5b,0x52,0x5d,0x3d, 0x63,0x74,0x5b,0x4c,0x5d,0x3d,0x63,0x74,0x5b,0x77,0x5d,0x3d,0x63,0x74,0x5b,0x4f, 0x5d,0x3d,0x63,0x74,0x5b,0x46,0x5d,0x3d,0x63,0x74,0x5b,0x4d,0x5d,0x3d,0x63,0x74, 0x5b,0x42,0x5d,0x3d,0x63,0x74,0x5b,0x7a,0x5d,0x3d,0x63,0x74,0x5b,0x55,0x5d,0x3d, 0x63,0x74,0x5b,0x6b,0x5d,0x3d,0x63,0x74,0x5b,0x53,0x5d,0x3d,0x63,0x74,0x5b,0x43, 0x5d,0x3d,0x63,0x74,0x5b,0x54,0x5d,0x3d,0x63,0x74,0x5b,0x50,0x5d,0x3d,0x63,0x74, 0x5b,0x44,0x5d,0x3d,0x63,0x74,0x5b,0x4e,0x5d,0x3d,0x63,0x74,0x5b,0x57,0x5d,0x3d, 0x63,0x74,0x5b,0x24,0x5d,0x3d,0x63,0x74,0x5b,0x48,0x5d,0x3d,0x63,0x74,0x5b,0x56, 0x5d,0x3d,0x21,0x30,0x2c,0x63,0x74,0x5b,0x78,0x5d,0x3d,0x63,0x74,0x5b,0x45,0x5d, 0x3d,0x63,0x74,0x5b,0x49,0x5d,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x6c,0x74, 0x3d,0x7b,0x22,0x5c,0x5c,0x22,0x3a,0x22,0x5c,0x5c,0x22,0x2c,0x22,0x27,0x22,0x3a, 0x22,0x27,0x22,0x2c,0x22,0x5c,0x6e,0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x72, 0x22,0x3a,0x22,0x72,0x22,0x2c,0x22,0x5c,0x75,0x32,0x30,0x32,0x38,0x22,0x3a,0x22, 0x75,0x32,0x30,0x32,0x38,0x22,0x2c,0x22,0x5c,0x75,0x32,0x30,0x32,0x39,0x22,0x3a, 0x22,0x75,0x32,0x30,0x32,0x39,0x22,0x7d,0x2c,0x73,0x74,0x3d,0x70,0x61,0x72,0x73, 0x65,0x46,0x6c,0x6f,0x61,0x74,0x2c,0x66,0x74,0x3d,0x70,0x61,0x72,0x73,0x65,0x49, 0x6e,0x74,0x2c,0x64,0x74,0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x65,0x2e,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x26,0x26, 0x65,0x2c,0x70,0x74,0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x65,0x6c,0x66,0x26,0x26,0x73,0x65,0x6c,0x66, 0x26,0x26,0x73,0x65,0x6c,0x66,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x3d,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x26,0x26,0x73,0x65,0x6c,0x66,0x2c,0x68,0x74,0x3d, 0x64,0x74,0x7c,0x7c,0x70,0x74,0x7c,0x7c,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x22,0x29,0x28, 0x29,0x2c,0x76,0x74,0x3d,0x74,0x26,0x26,0x21,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54, 0x79,0x70,0x65,0x26,0x26,0x74,0x2c,0x67,0x74,0x3d,0x76,0x74,0x26,0x26,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72, 0x26,0x26,0x72,0x26,0x26,0x21,0x72,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65, 0x26,0x26,0x72,0x2c,0x6d,0x74,0x3d,0x67,0x74,0x26,0x26,0x67,0x74,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x3d,0x3d,0x76,0x74,0x2c,0x62,0x74,0x3d,0x6d,0x74, 0x26,0x26,0x64,0x74,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2c,0x79,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x67,0x74,0x26,0x26,0x67,0x74,0x2e,0x72,0x65,0x71,0x75, 0x69,0x72,0x65,0x26,0x26,0x67,0x74,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x28, 0x22,0x75,0x74,0x69,0x6c,0x22,0x29,0x2e,0x74,0x79,0x70,0x65,0x73,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c,0x62,0x74,0x26,0x26,0x62,0x74,0x2e,0x62, 0x69,0x6e,0x64,0x69,0x6e,0x67,0x26,0x26,0x62,0x74,0x2e,0x62,0x69,0x6e,0x64,0x69, 0x6e,0x67,0x28,0x22,0x75,0x74,0x69,0x6c,0x22,0x29,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x74,0x29,0x7b,0x7d,0x7d,0x28,0x29,0x2c,0x5f,0x74,0x3d,0x79,0x74,0x26,0x26, 0x79,0x74,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72, 0x2c,0x77,0x74,0x3d,0x79,0x74,0x26,0x26,0x79,0x74,0x2e,0x69,0x73,0x44,0x61,0x74, 0x65,0x2c,0x4f,0x74,0x3d,0x79,0x74,0x26,0x26,0x79,0x74,0x2e,0x69,0x73,0x4d,0x61, 0x70,0x2c,0x78,0x74,0x3d,0x79,0x74,0x26,0x26,0x79,0x74,0x2e,0x69,0x73,0x52,0x65, 0x67,0x45,0x78,0x70,0x2c,0x45,0x74,0x3d,0x79,0x74,0x26,0x26,0x79,0x74,0x2e,0x69, 0x73,0x53,0x65,0x74,0x2c,0x6a,0x74,0x3d,0x79,0x74,0x26,0x26,0x79,0x74,0x2e,0x69, 0x73,0x54,0x79,0x70,0x65,0x64,0x41,0x72,0x72,0x61,0x79,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6b,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b, 0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e, 0x5b,0x30,0x5d,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x5b,0x30,0x5d, 0x2c,0x6e,0x5b,0x31,0x5d,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x5b, 0x30,0x5d,0x2c,0x6e,0x5b,0x31,0x5d,0x2c,0x6e,0x5b,0x32,0x5d,0x29,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x6e, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x74,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x2d,0x31,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6f,0x3c,0x69,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x6f,0x5d,0x3b,0x74,0x28,0x72,0x2c, 0x61,0x2c,0x6e,0x28,0x61,0x29,0x2c,0x65,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x74,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31, 0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x26,0x26,0x21,0x31,0x21, 0x3d,0x3d,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x3b,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x41,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2d,0x2d,0x26,0x26,0x21,0x31,0x21,0x3d, 0x3d,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x3b,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x54,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72, 0x3b,0x29,0x69,0x66,0x28,0x21,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x74,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d, 0x31,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x5b,0x5d,0x3b, 0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b, 0x6e,0x5d,0x3b,0x74,0x28,0x61,0x2c,0x6e,0x2c,0x65,0x29,0x26,0x26,0x28,0x69,0x5b, 0x6f,0x2b,0x2b,0x5d,0x3d,0x61,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x74,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26, 0x57,0x74,0x28,0x65,0x2c,0x74,0x2c,0x30,0x29,0x3e,0x2d,0x31,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29,0x69,0x66,0x28,0x6e,0x28,0x74,0x2c, 0x65,0x5b,0x72,0x5d,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x49,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x41,0x72,0x72, 0x61,0x79,0x28,0x72,0x29,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x6f,0x5b,0x6e, 0x5d,0x3d,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x52,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c, 0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72, 0x3b,0x29,0x65,0x5b,0x6f,0x2b,0x6e,0x5d,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x4c,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x2d,0x31,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30, 0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x72,0x26, 0x26,0x69,0x26,0x26,0x28,0x6e,0x3d,0x65,0x5b,0x2b,0x2b,0x6f,0x5d,0x29,0x3b,0x2b, 0x2b,0x6f,0x3c,0x69,0x3b,0x29,0x6e,0x3d,0x74,0x28,0x6e,0x2c,0x65,0x5b,0x6f,0x5d, 0x2c,0x6f,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72, 0x28,0x72,0x26,0x26,0x6f,0x26,0x26,0x28,0x6e,0x3d,0x65,0x5b,0x2d,0x2d,0x6f,0x5d, 0x29,0x3b,0x6f,0x2d,0x2d,0x3b,0x29,0x6e,0x3d,0x74,0x28,0x6e,0x2c,0x65,0x5b,0x6f, 0x5d,0x2c,0x6f,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x74,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x69,0x66,0x28,0x74,0x28,0x65, 0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x76,0x61,0x72,0x20,0x42, 0x74,0x3d,0x47,0x74,0x28,0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e, 0x2c,0x6f,0x29,0x7b,0x69,0x66,0x28,0x74,0x28,0x65,0x2c,0x6e,0x2c,0x6f,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x6e,0x2c,0x21,0x31,0x7d,0x29,0x29, 0x2c,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x74,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x69,0x3d,0x6e,0x2b,0x28, 0x72,0x3f,0x31,0x3a,0x2d,0x31,0x29,0x3b,0x72,0x3f,0x69,0x2d,0x2d,0x3a,0x2b,0x2b, 0x69,0x3c,0x6f,0x3b,0x29,0x69,0x66,0x28,0x74,0x28,0x65,0x5b,0x69,0x5d,0x2c,0x69, 0x2c,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x2d,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57, 0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3d,0x3d,0x3d,0x74,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2d,0x31,0x2c, 0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x3b, 0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29,0x69,0x66,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x3d, 0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x2d,0x31,0x7d,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x55,0x74,0x28, 0x65,0x2c,0x48,0x74,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x24,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2d,0x31,0x2c,0x69,0x3d,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6f,0x3c,0x69,0x3b,0x29,0x69,0x66,0x28, 0x72,0x28,0x65,0x5b,0x6f,0x5d,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x48,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x21,0x3d,0x3d,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x56,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x59,0x74,0x28,0x65,0x2c, 0x74,0x29,0x2f,0x6e,0x3a,0x67,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x47,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x69,0x3a,0x74,0x5b,0x65,0x5d,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x74,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x3f,0x69,0x3a,0x65,0x5b,0x74,0x5d,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4b,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x6e,0x3d,0x72,0x3f, 0x28,0x72,0x3d,0x21,0x31,0x2c,0x65,0x29,0x3a,0x74,0x28,0x6e,0x2c,0x65,0x2c,0x6f, 0x2c,0x69,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x59,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x2c,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x61,0x3d,0x74,0x28,0x65,0x5b,0x72,0x5d,0x29,0x3b,0x61,0x21,0x3d,0x3d,0x69,0x26, 0x26,0x28,0x6e,0x3d,0x6e,0x3d,0x3d,0x3d,0x69,0x3f,0x61,0x3a,0x6e,0x2b,0x61,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x51,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x41,0x72,0x72,0x61,0x79,0x28, 0x65,0x29,0x3b,0x2b,0x2b,0x6e,0x3c,0x65,0x3b,0x29,0x72,0x5b,0x6e,0x5d,0x3d,0x74, 0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3f,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x67, 0x6e,0x28,0x65,0x29,0x2b,0x31,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x75,0x65,0x2c,0x22,0x22,0x29,0x3a,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4a,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x28,0x74,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x5a,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x49,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d,0x7d,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x68,0x61,0x73,0x28,0x74, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c, 0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72, 0x26,0x26,0x57,0x74,0x28,0x74,0x2c,0x65,0x5b,0x6e,0x5d,0x2c,0x30,0x29,0x3e,0x2d, 0x31,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x6e,0x2d,0x2d,0x26,0x26,0x57,0x74,0x28,0x74,0x2c,0x65,0x5b,0x6e,0x5d,0x2c, 0x30,0x29,0x3e,0x2d,0x31,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x30,0x3b,0x6e,0x2d,0x2d,0x3b,0x29,0x65,0x5b, 0x6e,0x5d,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x2b,0x2b,0x72,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x7d,0x76,0x61,0x72,0x20,0x6f,0x6e,0x3d,0x71,0x74,0x28,0x7b, 0x22,0x5c,0x78,0x63,0x30,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63,0x31, 0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63,0x32,0x22,0x3a,0x22,0x41,0x22, 0x2c,0x22,0x5c,0x78,0x63,0x33,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63, 0x34,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63,0x35,0x22,0x3a,0x22,0x41, 0x22,0x2c,0x22,0x5c,0x78,0x65,0x30,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78, 0x65,0x31,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78,0x65,0x32,0x22,0x3a,0x22, 0x61,0x22,0x2c,0x22,0x5c,0x78,0x65,0x33,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c, 0x78,0x65,0x34,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78,0x65,0x35,0x22,0x3a, 0x22,0x61,0x22,0x2c,0x22,0x5c,0x78,0x63,0x37,0x22,0x3a,0x22,0x43,0x22,0x2c,0x22, 0x5c,0x78,0x65,0x37,0x22,0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c,0x78,0x64,0x30,0x22, 0x3a,0x22,0x44,0x22,0x2c,0x22,0x5c,0x78,0x66,0x30,0x22,0x3a,0x22,0x64,0x22,0x2c, 0x22,0x5c,0x78,0x63,0x38,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x78,0x63,0x39, 0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x78,0x63,0x61,0x22,0x3a,0x22,0x45,0x22, 0x2c,0x22,0x5c,0x78,0x63,0x62,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x78,0x65, 0x38,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x78,0x65,0x39,0x22,0x3a,0x22,0x65, 0x22,0x2c,0x22,0x5c,0x78,0x65,0x61,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x78, 0x65,0x62,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x78,0x63,0x63,0x22,0x3a,0x22, 0x49,0x22,0x2c,0x22,0x5c,0x78,0x63,0x64,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c, 0x78,0x63,0x65,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x78,0x63,0x66,0x22,0x3a, 0x22,0x49,0x22,0x2c,0x22,0x5c,0x78,0x65,0x63,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22, 0x5c,0x78,0x65,0x64,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x78,0x65,0x65,0x22, 0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x78,0x65,0x66,0x22,0x3a,0x22,0x69,0x22,0x2c, 0x22,0x5c,0x78,0x64,0x31,0x22,0x3a,0x22,0x4e,0x22,0x2c,0x22,0x5c,0x78,0x66,0x31, 0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x78,0x64,0x32,0x22,0x3a,0x22,0x4f,0x22, 0x2c,0x22,0x5c,0x78,0x64,0x33,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x64, 0x34,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x35,0x22,0x3a,0x22,0x4f, 0x22,0x2c,0x22,0x5c,0x78,0x64,0x36,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78, 0x64,0x38,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x66,0x32,0x22,0x3a,0x22, 0x6f,0x22,0x2c,0x22,0x5c,0x78,0x66,0x33,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c, 0x78,0x66,0x34,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78,0x66,0x35,0x22,0x3a, 0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78,0x66,0x36,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22, 0x5c,0x78,0x66,0x38,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x39,0x22, 0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x78,0x64,0x61,0x22,0x3a,0x22,0x55,0x22,0x2c, 0x22,0x5c,0x78,0x64,0x62,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x78,0x64,0x63, 0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x78,0x66,0x39,0x22,0x3a,0x22,0x75,0x22, 0x2c,0x22,0x5c,0x78,0x66,0x61,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x78,0x66, 0x62,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x78,0x66,0x63,0x22,0x3a,0x22,0x75, 0x22,0x2c,0x22,0x5c,0x78,0x64,0x64,0x22,0x3a,0x22,0x59,0x22,0x2c,0x22,0x5c,0x78, 0x66,0x64,0x22,0x3a,0x22,0x79,0x22,0x2c,0x22,0x5c,0x78,0x66,0x66,0x22,0x3a,0x22, 0x79,0x22,0x2c,0x22,0x5c,0x78,0x63,0x36,0x22,0x3a,0x22,0x41,0x65,0x22,0x2c,0x22, 0x5c,0x78,0x65,0x36,0x22,0x3a,0x22,0x61,0x65,0x22,0x2c,0x22,0x5c,0x78,0x64,0x65, 0x22,0x3a,0x22,0x54,0x68,0x22,0x2c,0x22,0x5c,0x78,0x66,0x65,0x22,0x3a,0x22,0x74, 0x68,0x22,0x2c,0x22,0x5c,0x78,0x64,0x66,0x22,0x3a,0x22,0x73,0x73,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x30,0x30,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x30,0x32,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x34, 0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x31,0x22,0x3a,0x22, 0x61,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x33,0x22,0x3a,0x22,0x61,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x30,0x35,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x30,0x36,0x22,0x3a,0x22,0x43,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30, 0x38,0x22,0x3a,0x22,0x43,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x61,0x22,0x3a, 0x22,0x43,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x63,0x22,0x3a,0x22,0x43,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x37,0x22,0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x30,0x39,0x22,0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x30,0x62,0x22,0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x64,0x22, 0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x65,0x22,0x3a,0x22,0x44, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x30,0x22,0x3a,0x22,0x44,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x30,0x66,0x22,0x3a,0x22,0x64,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x31,0x31,0x22,0x3a,0x22,0x64,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x32, 0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x34,0x22,0x3a,0x22, 0x45,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x36,0x22,0x3a,0x22,0x45,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x31,0x38,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x31,0x61,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31, 0x33,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x35,0x22,0x3a, 0x22,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x37,0x22,0x3a,0x22,0x65,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x39,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x31,0x62,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x31,0x63,0x22,0x3a,0x22,0x47,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x65,0x22, 0x3a,0x22,0x47,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x30,0x22,0x3a,0x22,0x47, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x32,0x22,0x3a,0x22,0x47,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x31,0x64,0x22,0x3a,0x22,0x67,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x31,0x66,0x22,0x3a,0x22,0x67,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x31, 0x22,0x3a,0x22,0x67,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x33,0x22,0x3a,0x22, 0x67,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x34,0x22,0x3a,0x22,0x48,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x32,0x36,0x22,0x3a,0x22,0x48,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x32,0x35,0x22,0x3a,0x22,0x68,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32, 0x37,0x22,0x3a,0x22,0x68,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x38,0x22,0x3a, 0x22,0x49,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x61,0x22,0x3a,0x22,0x49,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x63,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x32,0x65,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x33,0x30,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x39,0x22, 0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x62,0x22,0x3a,0x22,0x69, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x64,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x32,0x66,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x33,0x31,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x34, 0x22,0x3a,0x22,0x4a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x35,0x22,0x3a,0x22, 0x6a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x36,0x22,0x3a,0x22,0x4b,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x33,0x37,0x22,0x3a,0x22,0x6b,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x33,0x38,0x22,0x3a,0x22,0x6b,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33, 0x39,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x62,0x22,0x3a, 0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x64,0x22,0x3a,0x22,0x4c,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x66,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x34,0x31,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x33,0x61,0x22,0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x63,0x22, 0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x65,0x22,0x3a,0x22,0x6c, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x30,0x22,0x3a,0x22,0x6c,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x34,0x32,0x22,0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x34,0x33,0x22,0x3a,0x22,0x4e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x35, 0x22,0x3a,0x22,0x4e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x37,0x22,0x3a,0x22, 0x4e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x61,0x22,0x3a,0x22,0x4e,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x34,0x34,0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x34,0x36,0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34, 0x38,0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x62,0x22,0x3a, 0x22,0x6e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x63,0x22,0x3a,0x22,0x4f,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x65,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x35,0x30,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x34,0x64,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x66,0x22, 0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x31,0x22,0x3a,0x22,0x6f, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x34,0x22,0x3a,0x22,0x52,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x35,0x36,0x22,0x3a,0x22,0x52,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x35,0x38,0x22,0x3a,0x22,0x52,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x35, 0x22,0x3a,0x22,0x72,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x37,0x22,0x3a,0x22, 0x72,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x39,0x22,0x3a,0x22,0x72,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x35,0x61,0x22,0x3a,0x22,0x53,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x35,0x63,0x22,0x3a,0x22,0x53,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35, 0x65,0x22,0x3a,0x22,0x53,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x30,0x22,0x3a, 0x22,0x53,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x62,0x22,0x3a,0x22,0x73,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x64,0x22,0x3a,0x22,0x73,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x35,0x66,0x22,0x3a,0x22,0x73,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x36,0x31,0x22,0x3a,0x22,0x73,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x32,0x22, 0x3a,0x22,0x54,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x34,0x22,0x3a,0x22,0x54, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x36,0x22,0x3a,0x22,0x54,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x36,0x33,0x22,0x3a,0x22,0x74,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x36,0x35,0x22,0x3a,0x22,0x74,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x37, 0x22,0x3a,0x22,0x74,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x38,0x22,0x3a,0x22, 0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x61,0x22,0x3a,0x22,0x55,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x36,0x63,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x36,0x65,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37, 0x30,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x32,0x22,0x3a, 0x22,0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x39,0x22,0x3a,0x22,0x75,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x62,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x36,0x64,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x36,0x66,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x31,0x22, 0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x33,0x22,0x3a,0x22,0x75, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x34,0x22,0x3a,0x22,0x57,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x37,0x35,0x22,0x3a,0x22,0x77,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x37,0x36,0x22,0x3a,0x22,0x59,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x37, 0x22,0x3a,0x22,0x79,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x38,0x22,0x3a,0x22, 0x59,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x39,0x22,0x3a,0x22,0x5a,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x37,0x62,0x22,0x3a,0x22,0x5a,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x37,0x64,0x22,0x3a,0x22,0x5a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37, 0x61,0x22,0x3a,0x22,0x7a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x63,0x22,0x3a, 0x22,0x7a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x65,0x22,0x3a,0x22,0x7a,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x32,0x22,0x3a,0x22,0x49,0x4a,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x33,0x33,0x22,0x3a,0x22,0x69,0x6a,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x35,0x32,0x22,0x3a,0x22,0x4f,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x35,0x33,0x22,0x3a,0x22,0x6f,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x39, 0x22,0x3a,0x22,0x27,0x6e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x66,0x22,0x3a, 0x22,0x73,0x22,0x7d,0x29,0x2c,0x61,0x6e,0x3d,0x71,0x74,0x28,0x7b,0x22,0x26,0x22, 0x3a,0x22,0x26,0x61,0x6d,0x70,0x3b,0x22,0x2c,0x22,0x3c,0x22,0x3a,0x22,0x26,0x6c, 0x74,0x3b,0x22,0x2c,0x22,0x3e,0x22,0x3a,0x22,0x26,0x67,0x74,0x3b,0x22,0x2c,0x27, 0x22,0x27,0x3a,0x22,0x26,0x71,0x75,0x6f,0x74,0x3b,0x22,0x2c,0x22,0x27,0x22,0x3a, 0x22,0x26,0x23,0x33,0x39,0x3b,0x22,0x7d,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x75,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x5c,0x5c,0x22,0x2b,0x6c,0x74,0x5b,0x65,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x63,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x74,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6c,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x2d,0x31,0x2c,0x6e,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x2e,0x73,0x69,0x7a, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x72,0x29,0x7b,0x6e,0x5b,0x2b,0x2b,0x74,0x5d,0x3d,0x5b,0x72,0x2c,0x65,0x5d,0x7d, 0x29,0x29,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x28,0x74,0x28,0x6e,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x66,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x5b,0x5d,0x3b,0x2b,0x2b,0x6e,0x3c,0x72, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x6e,0x5d,0x3b,0x61,0x21, 0x3d,0x3d,0x74,0x26,0x26,0x61,0x21,0x3d,0x3d,0x63,0x7c,0x7c,0x28,0x65,0x5b,0x6e, 0x5d,0x3d,0x63,0x2c,0x69,0x5b,0x6f,0x2b,0x2b,0x5d,0x3d,0x6e,0x29,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x64,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e, 0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x2e,0x73,0x69,0x7a,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x5b,0x2b, 0x2b,0x74,0x5d,0x3d,0x65,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x70,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x2d,0x31,0x2c,0x6e,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x2e,0x73,0x69,0x7a, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x6e,0x5b,0x2b,0x2b,0x74,0x5d,0x3d,0x5b,0x65,0x2c,0x65,0x5d,0x7d,0x29,0x29, 0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6e,0x28,0x65,0x29,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x74,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x3d,0x30,0x3b, 0x66,0x6f,0x72,0x28,0x3b,0x74,0x74,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x3b, 0x29,0x2b,0x2b,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x28,0x65, 0x29,0x3a,0x42,0x74,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x76,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6e, 0x28,0x65,0x29,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x74, 0x74,0x29,0x7c,0x7c,0x5b,0x5d,0x7d,0x28,0x65,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x22,0x29,0x7d,0x28,0x65,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x74,0x2d,0x2d,0x26,0x26,0x63,0x65,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x2e,0x63, 0x68,0x61,0x72,0x41,0x74,0x28,0x74,0x29,0x29,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x76,0x61,0x72,0x20,0x6d,0x6e,0x3d,0x71,0x74,0x28,0x7b, 0x22,0x26,0x61,0x6d,0x70,0x3b,0x22,0x3a,0x22,0x26,0x22,0x2c,0x22,0x26,0x6c,0x74, 0x3b,0x22,0x3a,0x22,0x3c,0x22,0x2c,0x22,0x26,0x67,0x74,0x3b,0x22,0x3a,0x22,0x3e, 0x22,0x2c,0x22,0x26,0x71,0x75,0x6f,0x74,0x3b,0x22,0x3a,0x27,0x22,0x27,0x2c,0x22, 0x26,0x23,0x33,0x39,0x3b,0x22,0x3a,0x22,0x27,0x22,0x7d,0x29,0x3b,0x76,0x61,0x72, 0x20,0x62,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x74,0x3f,0x68,0x74,0x3a,0x62,0x6e,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x73,0x28,0x68,0x74,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x29,0x2c,0x74,0x2c, 0x62,0x6e,0x2e,0x70,0x69,0x63,0x6b,0x28,0x68,0x74,0x2c,0x69,0x74,0x29,0x29,0x29, 0x2e,0x41,0x72,0x72,0x61,0x79,0x2c,0x72,0x3d,0x74,0x2e,0x44,0x61,0x74,0x65,0x2c, 0x6f,0x3d,0x74,0x2e,0x45,0x72,0x72,0x6f,0x72,0x2c,0x63,0x65,0x3d,0x74,0x2e,0x46, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x6a,0x65,0x3d,0x74,0x2e,0x4d,0x61,0x74, 0x68,0x2c,0x6b,0x65,0x3d,0x74,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2c,0x53,0x65, 0x3d,0x74,0x2e,0x52,0x65,0x67,0x45,0x78,0x70,0x2c,0x43,0x65,0x3d,0x74,0x2e,0x53, 0x74,0x72,0x69,0x6e,0x67,0x2c,0x41,0x65,0x3d,0x74,0x2e,0x54,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x2c,0x54,0x65,0x3d,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2c,0x50,0x65,0x3d,0x63,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2c,0x44,0x65,0x3d,0x6b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2c,0x4e,0x65,0x3d,0x74,0x5b,0x22,0x5f,0x5f,0x63,0x6f,0x72,0x65, 0x2d,0x6a,0x73,0x5f,0x73,0x68,0x61,0x72,0x65,0x64,0x5f,0x5f,0x22,0x5d,0x2c,0x49, 0x65,0x3d,0x50,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x52,0x65, 0x3d,0x44,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x2c,0x4c,0x65,0x3d,0x30,0x2c,0x46,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x2f,0x5b,0x5e,0x2e, 0x5d,0x2b,0x24,0x2f,0x2e,0x65,0x78,0x65,0x63,0x28,0x4e,0x65,0x26,0x26,0x4e,0x65, 0x2e,0x6b,0x65,0x79,0x73,0x26,0x26,0x4e,0x65,0x2e,0x6b,0x65,0x79,0x73,0x2e,0x49, 0x45,0x5f,0x50,0x52,0x4f,0x54,0x4f,0x7c,0x7c,0x22,0x22,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3f,0x22,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x28,0x73,0x72, 0x63,0x29,0x5f,0x31,0x2e,0x22,0x2b,0x65,0x3a,0x22,0x22,0x7d,0x28,0x29,0x2c,0x4d, 0x65,0x3d,0x44,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x42,0x65, 0x3d,0x49,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6b,0x65,0x29,0x2c,0x7a,0x65,0x3d, 0x68,0x74,0x2e,0x5f,0x2c,0x55,0x65,0x3d,0x53,0x65,0x28,0x22,0x5e,0x22,0x2b,0x49, 0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x52,0x65,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61, 0x63,0x65,0x28,0x69,0x65,0x2c,0x22,0x5c,0x5c,0x24,0x26,0x22,0x29,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x7c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29, 0x2e,0x2a,0x3f,0x28,0x3f,0x3d,0x5c,0x5c,0x5c,0x28,0x29,0x7c,0x20,0x66,0x6f,0x72, 0x20,0x2e,0x2b,0x3f,0x28,0x3f,0x3d,0x5c,0x5c,0x5c,0x5d,0x29,0x2f,0x67,0x2c,0x22, 0x24,0x31,0x2e,0x2a,0x3f,0x22,0x29,0x2b,0x22,0x24,0x22,0x29,0x2c,0x57,0x65,0x3d, 0x6d,0x74,0x3f,0x74,0x2e,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x69,0x2c,0x24,0x65, 0x3d,0x74,0x2e,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2c,0x48,0x65,0x3d,0x74,0x2e,0x55, 0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x2c,0x56,0x65,0x3d,0x57,0x65,0x3f, 0x57,0x65,0x2e,0x61,0x6c,0x6c,0x6f,0x63,0x55,0x6e,0x73,0x61,0x66,0x65,0x3a,0x69, 0x2c,0x47,0x65,0x3d,0x73,0x6e,0x28,0x6b,0x65,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x2c,0x6b,0x65,0x29,0x2c,0x71,0x65,0x3d, 0x6b,0x65,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x2c,0x4b,0x65,0x3d,0x44,0x65,0x2e, 0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72, 0x61,0x62,0x6c,0x65,0x2c,0x59,0x65,0x3d,0x54,0x65,0x2e,0x73,0x70,0x6c,0x69,0x63, 0x65,0x2c,0x51,0x65,0x3d,0x24,0x65,0x3f,0x24,0x65,0x2e,0x69,0x73,0x43,0x6f,0x6e, 0x63,0x61,0x74,0x53,0x70,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x3a,0x69,0x2c, 0x58,0x65,0x3d,0x24,0x65,0x3f,0x24,0x65,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f, 0x72,0x3a,0x69,0x2c,0x4a,0x65,0x3d,0x24,0x65,0x3f,0x24,0x65,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x54,0x61,0x67,0x3a,0x69,0x2c,0x74,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x70,0x69,0x28,0x6b,0x65,0x2c,0x22,0x64,0x65,0x66,0x69,0x6e,0x65, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x28,0x7b,0x7d,0x2c,0x22,0x22,0x2c,0x7b,0x7d,0x29,0x2c,0x65,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x7d,0x7d,0x28,0x29,0x2c,0x72,0x74, 0x3d,0x74,0x2e,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x21, 0x3d,0x3d,0x68,0x74,0x2e,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x26,0x26,0x74,0x2e,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x2c,0x6c,0x74,0x3d,0x72,0x26,0x26,0x72,0x2e,0x6e,0x6f,0x77,0x21,0x3d,0x3d, 0x68,0x74,0x2e,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x26,0x26,0x72,0x2e,0x6e, 0x6f,0x77,0x2c,0x64,0x74,0x3d,0x74,0x2e,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x21,0x3d,0x3d,0x68,0x74,0x2e,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x26,0x26,0x74,0x2e,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x2c,0x70,0x74,0x3d,0x6a,0x65,0x2e,0x63,0x65,0x69,0x6c,0x2c,0x76,0x74,0x3d,0x6a, 0x65,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x2c,0x67,0x74,0x3d,0x6b,0x65,0x2e,0x67,0x65, 0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x73,0x2c,0x62,0x74,0x3d,0x57,0x65,0x3f,0x57,0x65,0x2e,0x69,0x73,0x42, 0x75,0x66,0x66,0x65,0x72,0x3a,0x69,0x2c,0x79,0x74,0x3d,0x74,0x2e,0x69,0x73,0x46, 0x69,0x6e,0x69,0x74,0x65,0x2c,0x42,0x74,0x3d,0x54,0x65,0x2e,0x6a,0x6f,0x69,0x6e, 0x2c,0x71,0x74,0x3d,0x73,0x6e,0x28,0x6b,0x65,0x2e,0x6b,0x65,0x79,0x73,0x2c,0x6b, 0x65,0x29,0x2c,0x79,0x6e,0x3d,0x6a,0x65,0x2e,0x6d,0x61,0x78,0x2c,0x5f,0x6e,0x3d, 0x6a,0x65,0x2e,0x6d,0x69,0x6e,0x2c,0x77,0x6e,0x3d,0x72,0x2e,0x6e,0x6f,0x77,0x2c, 0x4f,0x6e,0x3d,0x74,0x2e,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x2c,0x78,0x6e, 0x3d,0x6a,0x65,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x2c,0x45,0x6e,0x3d,0x54,0x65, 0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x2c,0x6a,0x6e,0x3d,0x70,0x69,0x28,0x74, 0x2c,0x22,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x22,0x29,0x2c,0x6b,0x6e,0x3d, 0x70,0x69,0x28,0x74,0x2c,0x22,0x4d,0x61,0x70,0x22,0x29,0x2c,0x53,0x6e,0x3d,0x70, 0x69,0x28,0x74,0x2c,0x22,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x22,0x29,0x2c,0x43, 0x6e,0x3d,0x70,0x69,0x28,0x74,0x2c,0x22,0x53,0x65,0x74,0x22,0x29,0x2c,0x41,0x6e, 0x3d,0x70,0x69,0x28,0x74,0x2c,0x22,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x22,0x29, 0x2c,0x54,0x6e,0x3d,0x70,0x69,0x28,0x6b,0x65,0x2c,0x22,0x63,0x72,0x65,0x61,0x74, 0x65,0x22,0x29,0x2c,0x50,0x6e,0x3d,0x41,0x6e,0x26,0x26,0x6e,0x65,0x77,0x20,0x41, 0x6e,0x2c,0x44,0x6e,0x3d,0x7b,0x7d,0x2c,0x4e,0x6e,0x3d,0x7a,0x69,0x28,0x6a,0x6e, 0x29,0x2c,0x49,0x6e,0x3d,0x7a,0x69,0x28,0x6b,0x6e,0x29,0x2c,0x52,0x6e,0x3d,0x7a, 0x69,0x28,0x53,0x6e,0x29,0x2c,0x4c,0x6e,0x3d,0x7a,0x69,0x28,0x43,0x6e,0x29,0x2c, 0x46,0x6e,0x3d,0x7a,0x69,0x28,0x41,0x6e,0x29,0x2c,0x4d,0x6e,0x3d,0x24,0x65,0x3f, 0x24,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3a,0x69,0x2c,0x42, 0x6e,0x3d,0x4d,0x6e,0x3f,0x4d,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66,0x3a, 0x69,0x2c,0x7a,0x6e,0x3d,0x4d,0x6e,0x3f,0x4d,0x6e,0x2e,0x74,0x6f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x3a,0x69,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x21, 0x47,0x61,0x28,0x65,0x29,0x26,0x26,0x21,0x28,0x65,0x20,0x69,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x6f,0x66,0x20,0x56,0x6e,0x29,0x29,0x7b,0x69,0x66,0x28,0x65,0x20, 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x48,0x6e,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x52,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x22,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f, 0x22,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x69,0x28,0x65,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x48,0x6e,0x28,0x65,0x29, 0x7d,0x76,0x61,0x72,0x20,0x57,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x6e,0x75,0x28,0x74,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x69,0x66,0x28,0x71,0x65,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x71,0x65,0x28,0x74,0x29,0x3b,0x65,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x3d,0x74,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x65, 0x77,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x69,0x2c,0x6e,0x7d,0x7d,0x28,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x6e,0x28,0x29,0x7b,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x48,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x3d, 0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73, 0x5f,0x5f,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x63,0x68,0x61, 0x69,0x6e,0x5f,0x5f,0x3d,0x21,0x21,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x69,0x6e,0x64,0x65,0x78,0x5f,0x5f,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x5f,0x5f,0x3d,0x69,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x56,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x3d,0x65,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x3d,0x5b, 0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x69,0x72,0x5f,0x5f,0x3d,0x31, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64, 0x5f,0x5f,0x3d,0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x69,0x74,0x65, 0x72,0x61,0x74,0x65,0x65,0x73,0x5f,0x5f,0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x5f,0x74,0x61,0x6b,0x65,0x43,0x6f,0x75,0x6e,0x74,0x5f,0x5f,0x3d,0x6d, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x76,0x69,0x65,0x77,0x73,0x5f,0x5f,0x3d, 0x5b,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29, 0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65, 0x5b,0x74,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x5b,0x30, 0x5d,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x71,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31, 0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x63, 0x6c,0x65,0x61,0x72,0x28,0x29,0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73, 0x65,0x74,0x28,0x72,0x5b,0x30,0x5d,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28, 0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x3b,0x2b,0x2b,0x74, 0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x3b, 0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x5b,0x30,0x5d,0x2c,0x72,0x5b, 0x31,0x5d,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20,0x4b,0x6e,0x3b,0x2b,0x2b,0x74,0x3c,0x6e, 0x3b,0x29,0x74,0x68,0x69,0x73,0x2e,0x61,0x64,0x64,0x28,0x65,0x5b,0x74,0x5d,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20,0x71,0x6e,0x28,0x65,0x29,0x3b,0x74,0x68, 0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x74,0x2e,0x73,0x69,0x7a,0x65,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x47,0x61,0x28,0x65,0x29,0x2c,0x72,0x3d,0x21,0x6e, 0x26,0x26,0x56,0x61,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x21,0x6e,0x26,0x26,0x21,0x72, 0x26,0x26,0x51,0x61,0x28,0x65,0x29,0x2c,0x69,0x3d,0x21,0x6e,0x26,0x26,0x21,0x72, 0x26,0x26,0x21,0x6f,0x26,0x26,0x66,0x75,0x28,0x65,0x29,0x2c,0x61,0x3d,0x6e,0x7c, 0x7c,0x72,0x7c,0x7c,0x6f,0x7c,0x7c,0x69,0x2c,0x75,0x3d,0x61,0x3f,0x51,0x74,0x28, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x43,0x65,0x29,0x3a,0x5b,0x5d,0x2c, 0x63,0x3d,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6c,0x20,0x69,0x6e,0x20,0x65,0x29,0x21,0x74,0x26,0x26,0x21,0x52, 0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6c,0x29,0x7c,0x7c,0x61,0x26,0x26, 0x28,0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x3d,0x3d,0x6c,0x7c,0x7c,0x6f,0x26, 0x26,0x28,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x3d,0x3d,0x6c,0x7c,0x7c,0x22, 0x70,0x61,0x72,0x65,0x6e,0x74,0x22,0x3d,0x3d,0x6c,0x29,0x7c,0x7c,0x69,0x26,0x26, 0x28,0x22,0x62,0x75,0x66,0x66,0x65,0x72,0x22,0x3d,0x3d,0x6c,0x7c,0x7c,0x22,0x62, 0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x22,0x3d,0x3d,0x6c,0x7c,0x7c,0x22, 0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x22,0x3d,0x3d,0x6c,0x29,0x7c, 0x7c,0x5f,0x69,0x28,0x6c,0x2c,0x63,0x29,0x29,0x7c,0x7c,0x75,0x2e,0x70,0x75,0x73, 0x68,0x28,0x6c,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x3f,0x65,0x5b,0x59,0x72,0x28,0x30,0x2c,0x74,0x2d,0x31,0x29, 0x5d,0x3a,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x69,0x28,0x50, 0x6f,0x28,0x65,0x29,0x2c,0x63,0x72,0x28,0x74,0x2c,0x30,0x2c,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x72,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x69,0x28, 0x50,0x6f,0x28,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x74,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x28,0x6e,0x21,0x3d,0x3d,0x69, 0x26,0x26,0x21,0x57,0x61,0x28,0x65,0x5b,0x74,0x5d,0x2c,0x6e,0x29,0x7c,0x7c,0x6e, 0x3d,0x3d,0x3d,0x69,0x26,0x26,0x21,0x28,0x74,0x20,0x69,0x6e,0x20,0x65,0x29,0x29, 0x26,0x26,0x61,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6e,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x52,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x74,0x29,0x26,0x26,0x57,0x61,0x28,0x72,0x2c,0x6e,0x29,0x26, 0x26,0x28,0x6e,0x21,0x3d,0x3d,0x69,0x7c,0x7c,0x74,0x20,0x69,0x6e,0x20,0x65,0x29, 0x7c,0x7c,0x61,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x72,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x6e,0x2d,0x2d,0x3b,0x29,0x69,0x66,0x28,0x57,0x61,0x28,0x65,0x5b,0x6e,0x5d,0x5b, 0x30,0x5d,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6f,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x70,0x72,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x74,0x28,0x72,0x2c,0x65,0x2c, 0x6e,0x28,0x65,0x29,0x2c,0x69,0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x44,0x6f,0x28,0x74,0x2c,0x4e,0x75,0x28, 0x74,0x29,0x2c,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61, 0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74, 0x6f,0x5f,0x5f,0x22,0x3d,0x3d,0x74,0x26,0x26,0x74,0x74,0x3f,0x74,0x74,0x28,0x65, 0x2c,0x74,0x2c,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65, 0x3a,0x21,0x30,0x2c,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21, 0x30,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e,0x2c,0x77,0x72,0x69,0x74,0x61,0x62, 0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29,0x3a,0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x61,0x3d,0x6e,0x28,0x6f,0x29,0x2c,0x75, 0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29, 0x61,0x5b,0x72,0x5d,0x3d,0x75,0x3f,0x69,0x3a,0x43,0x75,0x28,0x65,0x2c,0x74,0x5b, 0x72,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x6e, 0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x65,0x3d,0x65,0x3c,0x3d,0x6e,0x3f,0x65,0x3a, 0x6e,0x29,0x2c,0x74,0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x65,0x3d,0x65,0x3e,0x3d, 0x74,0x3f,0x65,0x3a,0x74,0x29,0x29,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6c,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c, 0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x2c,0x63,0x3d,0x31,0x26,0x74,0x2c,0x6c, 0x3d,0x32,0x26,0x74,0x2c,0x73,0x3d,0x34,0x26,0x74,0x3b,0x69,0x66,0x28,0x6e,0x26, 0x26,0x28,0x75,0x3d,0x6f,0x3f,0x6e,0x28,0x65,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x29, 0x3a,0x6e,0x28,0x65,0x29,0x29,0x2c,0x75,0x21,0x3d,0x3d,0x69,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x75,0x3b,0x69,0x66,0x28,0x21,0x6e,0x75,0x28,0x65,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x47, 0x61,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x66,0x29,0x7b,0x69,0x66,0x28,0x75,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x6e,0x65,0x77, 0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x74, 0x29,0x3b,0x74,0x26,0x26,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x5b,0x30,0x5d,0x26,0x26,0x52,0x65,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22,0x69,0x6e,0x64,0x65,0x78,0x22,0x29,0x26,0x26, 0x28,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x2c,0x6e,0x2e,0x69,0x6e,0x70,0x75,0x74,0x3d,0x65,0x2e,0x69,0x6e,0x70,0x75,0x74, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x28,0x65,0x29,0x2c,0x21, 0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x6f,0x28,0x65,0x2c,0x75,0x29, 0x7d,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x67,0x69,0x28,0x65, 0x29,0x2c,0x70,0x3d,0x64,0x3d,0x3d,0x45,0x7c,0x7c,0x64,0x3d,0x3d,0x6a,0x3b,0x69, 0x66,0x28,0x51,0x61,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a, 0x6f,0x28,0x65,0x2c,0x63,0x29,0x3b,0x69,0x66,0x28,0x64,0x3d,0x3d,0x43,0x7c,0x7c, 0x64,0x3d,0x3d,0x79,0x7c,0x7c,0x70,0x26,0x26,0x21,0x6f,0x29,0x7b,0x69,0x66,0x28, 0x75,0x3d,0x6c,0x7c,0x7c,0x70,0x3f,0x7b,0x7d,0x3a,0x62,0x69,0x28,0x65,0x29,0x2c, 0x21,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x3f,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x44,0x6f,0x28,0x65,0x2c,0x76,0x69,0x28,0x65,0x29,0x2c,0x74,0x29,0x7d,0x28, 0x65,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x44,0x6f,0x28,0x74,0x2c,0x49, 0x75,0x28,0x74,0x29,0x2c,0x65,0x29,0x7d,0x28,0x75,0x2c,0x65,0x29,0x29,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x44,0x6f,0x28,0x65,0x2c,0x68,0x69,0x28,0x65,0x29,0x2c,0x74, 0x29,0x7d,0x28,0x65,0x2c,0x69,0x72,0x28,0x75,0x2c,0x65,0x29,0x29,0x7d,0x65,0x6c, 0x73,0x65,0x7b,0x69,0x66,0x28,0x21,0x63,0x74,0x5b,0x64,0x5d,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6f,0x3f,0x65,0x3a,0x7b,0x7d,0x3b,0x75,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x52,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x6f,0x28,0x65,0x29,0x3b,0x63, 0x61,0x73,0x65,0x20,0x77,0x3a,0x63,0x61,0x73,0x65,0x20,0x4f,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x72,0x28,0x2b,0x65,0x29,0x3b,0x63,0x61, 0x73,0x65,0x20,0x4c,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x74,0x3f,0x6b,0x6f,0x28,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x29,0x3a,0x65, 0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x28,0x6e,0x2c,0x65,0x2e,0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c, 0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7d,0x28,0x65, 0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x46,0x3a,0x63,0x61,0x73,0x65,0x20, 0x4d,0x3a,0x63,0x61,0x73,0x65,0x20,0x42,0x3a,0x63,0x61,0x73,0x65,0x20,0x7a,0x3a, 0x63,0x61,0x73,0x65,0x20,0x55,0x3a,0x63,0x61,0x73,0x65,0x20,0x57,0x3a,0x63,0x61, 0x73,0x65,0x20,0x24,0x3a,0x63,0x61,0x73,0x65,0x20,0x48,0x3a,0x63,0x61,0x73,0x65, 0x20,0x56,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x6f,0x28,0x65,0x2c,0x6e, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x6b,0x3a,0x63,0x61,0x73,0x65,0x20,0x50,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x72,0x3b,0x63,0x61,0x73, 0x65,0x20,0x53,0x3a,0x63,0x61,0x73,0x65,0x20,0x44,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x65,0x77,0x20,0x72,0x28,0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x20, 0x54,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x65, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x65,0x2e,0x73, 0x6f,0x75,0x72,0x63,0x65,0x2c,0x67,0x65,0x2e,0x65,0x78,0x65,0x63,0x28,0x65,0x29, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6c,0x61,0x73,0x74,0x49, 0x6e,0x64,0x65,0x78,0x3d,0x65,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78, 0x2c,0x74,0x7d,0x28,0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x4e,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x3d,0x65,0x2c,0x42,0x6e,0x3f,0x6b,0x65,0x28,0x42, 0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6f,0x29,0x29,0x3a,0x7b,0x7d,0x7d,0x76,0x61, 0x72,0x20,0x6f,0x7d,0x28,0x65,0x2c,0x64,0x2c,0x63,0x29,0x7d,0x7d,0x61,0x7c,0x7c, 0x28,0x61,0x3d,0x6e,0x65,0x77,0x20,0x51,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x68, 0x3d,0x61,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x68,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x3b,0x61,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c, 0x75,0x29,0x2c,0x63,0x75,0x28,0x65,0x29,0x3f,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b, 0x75,0x2e,0x61,0x64,0x64,0x28,0x6c,0x72,0x28,0x72,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x2c,0x65,0x2c,0x61,0x29,0x29,0x7d,0x29,0x29,0x3a,0x6f,0x75,0x28,0x65,0x29,0x26, 0x26,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x72,0x2c,0x6f,0x29,0x7b,0x75,0x2e,0x73,0x65,0x74,0x28, 0x6f,0x2c,0x6c,0x72,0x28,0x72,0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x2c,0x65,0x2c,0x61, 0x29,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x76,0x3d,0x66,0x3f,0x69,0x3a, 0x28,0x73,0x3f,0x6c,0x3f,0x61,0x69,0x3a,0x69,0x69,0x3a,0x6c,0x3f,0x49,0x75,0x3a, 0x4e,0x75,0x29,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x43,0x74, 0x28,0x76,0x7c,0x7c,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x72,0x2c,0x6f,0x29,0x7b,0x76,0x26,0x26,0x28,0x72,0x3d,0x65,0x5b,0x6f,0x3d,0x72, 0x5d,0x29,0x2c,0x6e,0x72,0x28,0x75,0x2c,0x6f,0x2c,0x6c,0x72,0x28,0x72,0x2c,0x74, 0x2c,0x6e,0x2c,0x6f,0x2c,0x65,0x2c,0x61,0x29,0x29,0x7d,0x29,0x29,0x2c,0x75,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x72,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x72,0x3b,0x66,0x6f,0x72,0x28,0x65,0x3d,0x6b,0x65,0x28,0x65, 0x29,0x3b,0x72,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x5b, 0x72,0x5d,0x2c,0x61,0x3d,0x74,0x5b,0x6f,0x5d,0x2c,0x75,0x3d,0x65,0x5b,0x6f,0x5d, 0x3b,0x69,0x66,0x28,0x75,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x21,0x28,0x6f,0x20,0x69, 0x6e,0x20,0x65,0x29,0x7c,0x7c,0x21,0x61,0x28,0x75,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e, 0x65,0x77,0x20,0x41,0x65,0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4e,0x69,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x69,0x2c,0x6e,0x29,0x7d,0x29,0x2c,0x74,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x72,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x2d,0x31,0x2c,0x69, 0x3d,0x44,0x74,0x2c,0x61,0x3d,0x21,0x30,0x2c,0x75,0x3d,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x63,0x3d,0x5b,0x5d,0x2c,0x6c,0x3d,0x74,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x21,0x75,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x63,0x3b,0x6e,0x26,0x26,0x28,0x74,0x3d,0x49,0x74,0x28,0x74,0x2c,0x4a,0x74, 0x28,0x6e,0x29,0x29,0x29,0x2c,0x72,0x3f,0x28,0x69,0x3d,0x4e,0x74,0x2c,0x61,0x3d, 0x21,0x31,0x29,0x3a,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x3d,0x32,0x30, 0x30,0x26,0x26,0x28,0x69,0x3d,0x65,0x6e,0x2c,0x61,0x3d,0x21,0x31,0x2c,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x59,0x6e,0x28,0x74,0x29,0x29,0x3b,0x65,0x3a,0x66,0x6f,0x72, 0x28,0x3b,0x2b,0x2b,0x6f,0x3c,0x75,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d, 0x65,0x5b,0x6f,0x5d,0x2c,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x3f,0x73, 0x3a,0x6e,0x28,0x73,0x29,0x3b,0x69,0x66,0x28,0x73,0x3d,0x72,0x7c,0x7c,0x30,0x21, 0x3d,0x3d,0x73,0x3f,0x73,0x3a,0x30,0x2c,0x61,0x26,0x26,0x66,0x3d,0x3d,0x3d,0x66, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x64,0x3d,0x6c,0x3b,0x64,0x2d, 0x2d,0x3b,0x29,0x69,0x66,0x28,0x74,0x5b,0x64,0x5d,0x3d,0x3d,0x3d,0x66,0x29,0x63, 0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x20,0x65,0x3b,0x63,0x2e,0x70,0x75,0x73,0x68, 0x28,0x73,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x28,0x74,0x2c,0x66,0x2c,0x72, 0x29,0x7c,0x7c,0x63,0x2e,0x70,0x75,0x73,0x68,0x28,0x73,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x63,0x7d,0x55,0x6e,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74, 0x65,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3d,0x7b,0x65,0x73,0x63,0x61,0x70, 0x65,0x3a,0x5a,0x2c,0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x65,0x3a,0x65,0x65,0x2c, 0x69,0x6e,0x74,0x65,0x72,0x70,0x6f,0x6c,0x61,0x74,0x65,0x3a,0x74,0x65,0x2c,0x76, 0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x3a,0x22,0x22,0x2c,0x69,0x6d,0x70,0x6f,0x72, 0x74,0x73,0x3a,0x7b,0x5f,0x3a,0x55,0x6e,0x7d,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x24,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2c,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x55,0x6e, 0x2c,0x48,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x57,0x6e, 0x28,0x24,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x48, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x48,0x6e,0x2c,0x56,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x57,0x6e,0x28,0x24,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x3d,0x56,0x6e,0x2c,0x47,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f, 0x3d,0x54,0x6e,0x3f,0x54,0x6e,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3a,0x7b,0x7d,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x7d,0x2c,0x47,0x6e,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x26,0x26, 0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61, 0x74,0x61,0x5f,0x5f,0x5b,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2d,0x3d,0x74,0x3f,0x31,0x3a,0x30,0x2c, 0x74,0x7d,0x2c,0x47,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x67,0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x54,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x5b,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x3d, 0x3d,0x75,0x3f,0x69,0x3a,0x6e,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x65, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x65,0x29,0x3f,0x74,0x5b,0x65,0x5d,0x3a, 0x69,0x7d,0x2c,0x47,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x68,0x61,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x54,0x6e,0x3f,0x74,0x5b, 0x65,0x5d,0x21,0x3d,0x3d,0x69,0x3a,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x2c,0x65,0x29,0x7d,0x2c,0x47,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x73,0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2b,0x3d,0x74,0x68,0x69,0x73,0x2e,0x68, 0x61,0x73,0x28,0x65,0x29,0x3f,0x30,0x3a,0x31,0x2c,0x6e,0x5b,0x65,0x5d,0x3d,0x54, 0x6e,0x26,0x26,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x75,0x3a,0x74,0x2c,0x74,0x68,0x69, 0x73,0x7d,0x2c,0x71,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x63,0x6c,0x65,0x61,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x5b, 0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x7d,0x2c,0x71, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65, 0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x2c,0x6e,0x3d,0x72,0x72,0x28,0x74,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x28,0x6e,0x3c,0x30,0x29,0x26,0x26,0x28,0x6e,0x3d,0x3d,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x3f,0x74,0x2e,0x70,0x6f,0x70,0x28, 0x29,0x3a,0x59,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x2c,0x31,0x29, 0x2c,0x2d,0x2d,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x21,0x30,0x29, 0x7d,0x2c,0x71,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67, 0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x2c,0x6e,0x3d,0x72,0x72,0x28,0x74,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3c,0x30,0x3f,0x69,0x3a,0x74,0x5b,0x6e,0x5d,0x5b,0x31, 0x5d,0x7d,0x2c,0x71,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x68,0x61,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x2c,0x65,0x29,0x3e,0x2d,0x31,0x7d,0x2c,0x71, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f, 0x5f,0x2c,0x72,0x3d,0x72,0x72,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x3c,0x30,0x3f,0x28,0x2b,0x2b,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x2c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x65,0x2c,0x74,0x5d, 0x29,0x29,0x3a,0x6e,0x5b,0x72,0x5d,0x5b,0x31,0x5d,0x3d,0x74,0x2c,0x74,0x68,0x69, 0x73,0x7d,0x2c,0x4b,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x63,0x6c,0x65,0x61,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x7b,0x68,0x61,0x73,0x68, 0x3a,0x6e,0x65,0x77,0x20,0x47,0x6e,0x2c,0x6d,0x61,0x70,0x3a,0x6e,0x65,0x77,0x28, 0x6b,0x6e,0x7c,0x7c,0x71,0x6e,0x29,0x2c,0x73,0x74,0x72,0x69,0x6e,0x67,0x3a,0x6e, 0x65,0x77,0x20,0x47,0x6e,0x7d,0x7d,0x2c,0x4b,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x66,0x69, 0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x2d,0x3d,0x74,0x3f,0x31,0x3a,0x30,0x2c,0x74,0x7d,0x2c,0x4b,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x69,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2e,0x67,0x65,0x74, 0x28,0x65,0x29,0x7d,0x2c,0x4b,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x68,0x61,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x69,0x28,0x74,0x68,0x69,0x73, 0x2c,0x65,0x29,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7d,0x2c,0x4b,0x6e,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x66,0x69,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x72,0x3d,0x6e,0x2e, 0x73,0x69,0x7a,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73,0x65, 0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65, 0x2b,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x3d,0x72,0x3f,0x30,0x3a,0x31,0x2c, 0x74,0x68,0x69,0x73,0x7d,0x2c,0x59,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x61,0x64,0x64,0x3d,0x59,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x70,0x75,0x73,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c, 0x75,0x29,0x2c,0x74,0x68,0x69,0x73,0x7d,0x2c,0x59,0x6e,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x2e,0x68,0x61,0x73,0x28,0x65, 0x29,0x7d,0x2c,0x51,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x63,0x6c,0x65,0x61,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e, 0x65,0x77,0x20,0x71,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d, 0x30,0x7d,0x2c,0x51,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x64,0x65,0x6c,0x65,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x64,0x61,0x74,0x61,0x5f,0x5f,0x2c,0x6e,0x3d,0x74,0x2e,0x64,0x65,0x6c,0x65,0x74, 0x65,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x73,0x69,0x7a,0x65,0x3d,0x74,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x6e,0x7d,0x2c, 0x51,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f, 0x5f,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7d,0x2c,0x51,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x2e,0x68,0x61,0x73,0x28, 0x65,0x29,0x7d,0x2c,0x51,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x73,0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x6e,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x71,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x21, 0x6b,0x6e,0x7c,0x7c,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x31,0x39,0x39, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b, 0x65,0x2c,0x74,0x5d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d, 0x2b,0x2b,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x74,0x68,0x69,0x73,0x3b,0x6e,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e,0x65, 0x77,0x20,0x4b,0x6e,0x28,0x72,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x74,0x68,0x69,0x73,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x70,0x72,0x3d,0x52,0x6f,0x28,0x77,0x72,0x29,0x2c,0x68, 0x72,0x3d,0x52,0x6f,0x28,0x4f,0x72,0x2c,0x21,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x76,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x21,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x72,0x28, 0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c, 0x6f,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x21,0x21,0x74,0x28, 0x65,0x2c,0x72,0x2c,0x6f,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x67,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x72,0x5d,0x2c,0x75,0x3d,0x74,0x28,0x61,0x29, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x75,0x26,0x26,0x28,0x63,0x3d, 0x3d,0x3d,0x69,0x3f,0x75,0x3d,0x3d,0x3d,0x75,0x26,0x26,0x21,0x73,0x75,0x28,0x75, 0x29,0x3a,0x6e,0x28,0x75,0x2c,0x63,0x29,0x29,0x29,0x76,0x61,0x72,0x20,0x63,0x3d, 0x75,0x2c,0x6c,0x3d,0x61,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x70,0x72,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x74,0x28,0x65,0x2c,0x72,0x2c,0x6f,0x29,0x26,0x26, 0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x2d,0x31,0x2c,0x61, 0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x6e,0x7c, 0x7c,0x28,0x6e,0x3d,0x79,0x69,0x29,0x2c,0x6f,0x7c,0x7c,0x28,0x6f,0x3d,0x5b,0x5d, 0x29,0x3b,0x2b,0x2b,0x69,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d, 0x65,0x5b,0x69,0x5d,0x3b,0x74,0x3e,0x30,0x26,0x26,0x6e,0x28,0x75,0x29,0x3f,0x74, 0x3e,0x31,0x3f,0x62,0x72,0x28,0x75,0x2c,0x74,0x2d,0x31,0x2c,0x6e,0x2c,0x72,0x2c, 0x6f,0x29,0x3a,0x52,0x74,0x28,0x6f,0x2c,0x75,0x29,0x3a,0x72,0x7c,0x7c,0x28,0x6f, 0x5b,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x5d,0x3d,0x75,0x29,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x76,0x61,0x72,0x20,0x79,0x72,0x3d,0x4c,0x6f, 0x28,0x29,0x2c,0x5f,0x72,0x3d,0x4c,0x6f,0x28,0x21,0x30,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x79,0x72,0x28,0x65,0x2c,0x74,0x2c,0x4e, 0x75,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x72,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x5f,0x72, 0x28,0x65,0x2c,0x74,0x2c,0x4e,0x75,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x78,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x50,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x61,0x28,0x65,0x5b,0x74, 0x5d,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45, 0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x30,0x2c,0x72,0x3d,0x28,0x74,0x3d,0x77,0x6f,0x28,0x74,0x2c,0x65,0x29,0x29, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26, 0x26,0x6e,0x3c,0x72,0x3b,0x29,0x65,0x3d,0x65,0x5b,0x42,0x69,0x28,0x74,0x5b,0x6e, 0x2b,0x2b,0x5d,0x29,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26, 0x6e,0x3d,0x3d,0x72,0x3f,0x65,0x3a,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6a,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x74,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x61, 0x28,0x65,0x29,0x3f,0x72,0x3a,0x52,0x74,0x28,0x72,0x2c,0x6e,0x28,0x65,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x72,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65, 0x3d,0x3d,0x3d,0x69,0x3f,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5d,0x22,0x3a,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x4e,0x75,0x6c,0x6c,0x5d,0x22,0x3a,0x4a,0x65,0x26,0x26,0x4a,0x65, 0x20,0x69,0x6e,0x20,0x6b,0x65,0x28,0x65,0x29,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x52,0x65,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x2c,0x4a,0x65,0x29,0x2c,0x6e,0x3d,0x65,0x5b,0x4a,0x65, 0x5d,0x3b,0x74,0x72,0x79,0x7b,0x65,0x5b,0x4a,0x65,0x5d,0x3d,0x69,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x21,0x30,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x61,0x29,0x7b, 0x7d,0x76,0x61,0x72,0x20,0x6f,0x3d,0x4d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65, 0x29,0x3b,0x72,0x26,0x26,0x28,0x74,0x3f,0x65,0x5b,0x4a,0x65,0x5d,0x3d,0x6e,0x3a, 0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x5b,0x4a,0x65,0x5d,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x28,0x65,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x65, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x3e,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x43,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x52,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x41,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x74,0x20,0x69,0x6e,0x20,0x6b,0x65,0x28, 0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x72,0x28,0x65, 0x2c,0x74,0x2c,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x72,0x3f,0x4e,0x74,0x3a,0x44,0x74,0x2c,0x61,0x3d,0x65,0x5b,0x30,0x5d,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x75,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2c,0x63,0x3d,0x75,0x2c,0x6c,0x3d,0x6e,0x28,0x75,0x29,0x2c,0x73,0x3d,0x31,0x2f, 0x30,0x2c,0x66,0x3d,0x5b,0x5d,0x3b,0x63,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x64,0x3d,0x65,0x5b,0x63,0x5d,0x3b,0x63,0x26,0x26,0x74,0x26,0x26,0x28,0x64, 0x3d,0x49,0x74,0x28,0x64,0x2c,0x4a,0x74,0x28,0x74,0x29,0x29,0x29,0x2c,0x73,0x3d, 0x5f,0x6e,0x28,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x73,0x29,0x2c,0x6c, 0x5b,0x63,0x5d,0x3d,0x21,0x72,0x26,0x26,0x28,0x74,0x7c,0x7c,0x61,0x3e,0x3d,0x31, 0x32,0x30,0x26,0x26,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x3d,0x31,0x32, 0x30,0x29,0x3f,0x6e,0x65,0x77,0x20,0x59,0x6e,0x28,0x63,0x26,0x26,0x64,0x29,0x3a, 0x69,0x7d,0x64,0x3d,0x65,0x5b,0x30,0x5d,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x2d, 0x31,0x2c,0x68,0x3d,0x6c,0x5b,0x30,0x5d,0x3b,0x65,0x3a,0x66,0x6f,0x72,0x28,0x3b, 0x2b,0x2b,0x70,0x3c,0x61,0x26,0x26,0x66,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c, 0x73,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x76,0x3d,0x64,0x5b,0x70,0x5d,0x2c,0x67, 0x3d,0x74,0x3f,0x74,0x28,0x76,0x29,0x3a,0x76,0x3b,0x69,0x66,0x28,0x76,0x3d,0x72, 0x7c,0x7c,0x30,0x21,0x3d,0x3d,0x76,0x3f,0x76,0x3a,0x30,0x2c,0x21,0x28,0x68,0x3f, 0x65,0x6e,0x28,0x68,0x2c,0x67,0x29,0x3a,0x6f,0x28,0x66,0x2c,0x67,0x2c,0x72,0x29, 0x29,0x29,0x7b,0x66,0x6f,0x72,0x28,0x63,0x3d,0x75,0x3b,0x2d,0x2d,0x63,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x6c,0x5b,0x63,0x5d,0x3b,0x69,0x66,0x28,0x21, 0x28,0x6d,0x3f,0x65,0x6e,0x28,0x6d,0x2c,0x67,0x29,0x3a,0x6f,0x28,0x65,0x5b,0x63, 0x5d,0x2c,0x67,0x2c,0x72,0x29,0x29,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, 0x20,0x65,0x7d,0x68,0x26,0x26,0x68,0x2e,0x70,0x75,0x73,0x68,0x28,0x67,0x29,0x2c, 0x66,0x2e,0x70,0x75,0x73,0x68,0x28,0x76,0x29,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x72,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x28,0x65,0x3d,0x41,0x69,0x28,0x65,0x2c,0x74,0x3d,0x77,0x6f,0x28, 0x74,0x2c,0x65,0x29,0x29,0x29,0x3f,0x65,0x3a,0x65,0x5b,0x42,0x69,0x28,0x4a,0x69, 0x28,0x74,0x29,0x29,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x72,0x3f,0x69,0x3a,0x6b,0x74,0x28,0x72,0x2c,0x65,0x2c,0x6e,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x72,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x6b,0x72, 0x28,0x65,0x29,0x3d,0x3d,0x79,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x4e,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x7c,0x7c,0x21, 0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x21,0x72,0x75,0x28,0x74,0x29,0x3f,0x65,0x21, 0x3d,0x3d,0x65,0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x29, 0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x47,0x61,0x28,0x65,0x29,0x2c,0x63,0x3d,0x47, 0x61,0x28,0x74,0x29,0x2c,0x6c,0x3d,0x75,0x3f,0x5f,0x3a,0x67,0x69,0x28,0x65,0x29, 0x2c,0x73,0x3d,0x63,0x3f,0x5f,0x3a,0x67,0x69,0x28,0x74,0x29,0x2c,0x66,0x3d,0x28, 0x6c,0x3d,0x6c,0x3d,0x3d,0x79,0x3f,0x43,0x3a,0x6c,0x29,0x3d,0x3d,0x43,0x2c,0x64, 0x3d,0x28,0x73,0x3d,0x73,0x3d,0x3d,0x79,0x3f,0x43,0x3a,0x73,0x29,0x3d,0x3d,0x43, 0x2c,0x70,0x3d,0x6c,0x3d,0x3d,0x73,0x3b,0x69,0x66,0x28,0x70,0x26,0x26,0x51,0x61, 0x28,0x65,0x29,0x29,0x7b,0x69,0x66,0x28,0x21,0x51,0x61,0x28,0x74,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x75,0x3d,0x21,0x30,0x2c,0x66,0x3d,0x21, 0x31,0x7d,0x69,0x66,0x28,0x70,0x26,0x26,0x21,0x66,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x61,0x7c,0x7c,0x28,0x61,0x3d,0x6e,0x65,0x77,0x20,0x51,0x6e,0x29,0x2c, 0x75,0x7c,0x7c,0x66,0x75,0x28,0x65,0x29,0x3f,0x72,0x69,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29, 0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x4c,0x3a,0x69,0x66,0x28,0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74, 0x68,0x21,0x3d,0x74,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x7c, 0x7c,0x65,0x2e,0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x21,0x3d,0x74, 0x2e,0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x3b,0x65,0x3d,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x2c, 0x74,0x3d,0x74,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x3b,0x63,0x61,0x73,0x65,0x20, 0x52,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x65,0x2e,0x62,0x79,0x74,0x65, 0x4c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d,0x74,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65, 0x6e,0x67,0x74,0x68,0x7c,0x7c,0x21,0x69,0x28,0x6e,0x65,0x77,0x20,0x48,0x65,0x28, 0x65,0x29,0x2c,0x6e,0x65,0x77,0x20,0x48,0x65,0x28,0x74,0x29,0x29,0x29,0x3b,0x63, 0x61,0x73,0x65,0x20,0x77,0x3a,0x63,0x61,0x73,0x65,0x20,0x4f,0x3a,0x63,0x61,0x73, 0x65,0x20,0x53,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x61,0x28,0x2b,0x65, 0x2c,0x2b,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x78,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x3d,0x74,0x2e,0x6e,0x61,0x6d, 0x65,0x26,0x26,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3d,0x3d,0x74,0x2e, 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x54,0x3a,0x63, 0x61,0x73,0x65,0x20,0x44,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d, 0x74,0x2b,0x22,0x22,0x3b,0x63,0x61,0x73,0x65,0x20,0x6b,0x3a,0x76,0x61,0x72,0x20, 0x75,0x3d,0x6c,0x6e,0x3b,0x63,0x61,0x73,0x65,0x20,0x50,0x3a,0x76,0x61,0x72,0x20, 0x63,0x3d,0x31,0x26,0x72,0x3b,0x69,0x66,0x28,0x75,0x7c,0x7c,0x28,0x75,0x3d,0x64, 0x6e,0x29,0x2c,0x65,0x2e,0x73,0x69,0x7a,0x65,0x21,0x3d,0x74,0x2e,0x73,0x69,0x7a, 0x65,0x26,0x26,0x21,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76, 0x61,0x72,0x20,0x6c,0x3d,0x61,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x69,0x66, 0x28,0x6c,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x3d,0x3d,0x74,0x3b,0x72, 0x7c,0x3d,0x32,0x2c,0x61,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x3b,0x76, 0x61,0x72,0x20,0x73,0x3d,0x72,0x69,0x28,0x75,0x28,0x65,0x29,0x2c,0x75,0x28,0x74, 0x29,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x61,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x2c,0x73,0x3b, 0x63,0x61,0x73,0x65,0x20,0x4e,0x3a,0x69,0x66,0x28,0x42,0x6e,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x42,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x3d,0x3d, 0x42,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x7d,0x28,0x65,0x2c,0x74,0x2c,0x6c,0x2c,0x6e,0x2c,0x72,0x2c,0x6f, 0x2c,0x61,0x29,0x3b,0x69,0x66,0x28,0x21,0x28,0x31,0x26,0x6e,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x68,0x3d,0x66,0x26,0x26,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x65,0x2c,0x22,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x22,0x29, 0x2c,0x76,0x3d,0x64,0x26,0x26,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c, 0x22,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x22,0x29,0x3b,0x69, 0x66,0x28,0x68,0x7c,0x7c,0x76,0x29,0x7b,0x76,0x61,0x72,0x20,0x67,0x3d,0x68,0x3f, 0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x3a,0x65,0x2c,0x6d,0x3d,0x76,0x3f, 0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x3a,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x61,0x7c,0x7c,0x28,0x61,0x3d,0x6e,0x65,0x77,0x20,0x51,0x6e,0x29, 0x2c,0x6f,0x28,0x67,0x2c,0x6d,0x2c,0x6e,0x2c,0x72,0x2c,0x61,0x29,0x7d,0x7d,0x69, 0x66,0x28,0x21,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x61,0x7c,0x7c,0x28,0x61,0x3d,0x6e,0x65,0x77,0x20,0x51, 0x6e,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x31, 0x26,0x6e,0x2c,0x63,0x3d,0x69,0x69,0x28,0x65,0x29,0x2c,0x6c,0x3d,0x63,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x73,0x3d,0x69,0x69,0x28,0x74,0x29,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x6c,0x21,0x3d,0x73,0x26,0x26,0x21,0x75, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d, 0x6c,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x66,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x64,0x3d,0x63,0x5b,0x66,0x5d,0x3b,0x69,0x66,0x28,0x21,0x28,0x75,0x3f,0x64, 0x20,0x69,0x6e,0x20,0x74,0x3a,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c, 0x64,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x76,0x61,0x72, 0x20,0x70,0x3d,0x61,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x2c,0x68,0x3d,0x61,0x2e, 0x67,0x65,0x74,0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x70,0x26,0x26,0x68,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x3d,0x3d,0x74,0x26,0x26,0x68,0x3d,0x3d,0x65, 0x3b,0x76,0x61,0x72,0x20,0x76,0x3d,0x21,0x30,0x3b,0x61,0x2e,0x73,0x65,0x74,0x28, 0x65,0x2c,0x74,0x29,0x2c,0x61,0x2e,0x73,0x65,0x74,0x28,0x74,0x2c,0x65,0x29,0x3b, 0x76,0x61,0x72,0x20,0x67,0x3d,0x75,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x2b,0x2b,0x66, 0x3c,0x6c,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x65,0x5b,0x64,0x3d,0x63, 0x5b,0x66,0x5d,0x5d,0x2c,0x62,0x3d,0x74,0x5b,0x64,0x5d,0x3b,0x69,0x66,0x28,0x72, 0x29,0x76,0x61,0x72,0x20,0x79,0x3d,0x75,0x3f,0x72,0x28,0x62,0x2c,0x6d,0x2c,0x64, 0x2c,0x74,0x2c,0x65,0x2c,0x61,0x29,0x3a,0x72,0x28,0x6d,0x2c,0x62,0x2c,0x64,0x2c, 0x65,0x2c,0x74,0x2c,0x61,0x29,0x3b,0x69,0x66,0x28,0x21,0x28,0x79,0x3d,0x3d,0x3d, 0x69,0x3f,0x6d,0x3d,0x3d,0x3d,0x62,0x7c,0x7c,0x6f,0x28,0x6d,0x2c,0x62,0x2c,0x6e, 0x2c,0x72,0x2c,0x61,0x29,0x3a,0x79,0x29,0x29,0x7b,0x76,0x3d,0x21,0x31,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x7d,0x67,0x7c,0x7c,0x28,0x67,0x3d,0x22,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x3d,0x3d,0x64,0x29,0x7d,0x69,0x66,0x28, 0x76,0x26,0x26,0x21,0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x5f,0x3d,0x65,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2c,0x77,0x3d,0x74,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x5f,0x3d,0x3d,0x77,0x7c, 0x7c,0x21,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22, 0x69,0x6e,0x20,0x65,0x29,0x7c,0x7c,0x21,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72, 0x75,0x63,0x74,0x6f,0x72,0x22,0x69,0x6e,0x20,0x74,0x29,0x7c,0x7c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x5f,0x26,0x26,0x5f,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20, 0x5f,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x26,0x26,0x77,0x20,0x69,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x6f,0x66,0x20,0x77,0x7c,0x7c,0x28,0x76,0x3d,0x21,0x31,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28, 0x65,0x29,0x2c,0x61,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x29,0x2c,0x76, 0x7d,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x29,0x7d,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x4e,0x72,0x2c,0x6f,0x29,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2c,0x61,0x3d,0x6f,0x2c,0x75,0x3d,0x21,0x72,0x3b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x61,0x3b, 0x66,0x6f,0x72,0x28,0x65,0x3d,0x6b,0x65,0x28,0x65,0x29,0x3b,0x6f,0x2d,0x2d,0x3b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x6e,0x5b,0x6f,0x5d,0x3b,0x69,0x66,0x28, 0x75,0x26,0x26,0x63,0x5b,0x32,0x5d,0x3f,0x63,0x5b,0x31,0x5d,0x21,0x3d,0x3d,0x65, 0x5b,0x63,0x5b,0x30,0x5d,0x5d,0x3a,0x21,0x28,0x63,0x5b,0x30,0x5d,0x69,0x6e,0x20, 0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x66,0x6f,0x72,0x28, 0x3b,0x2b,0x2b,0x6f,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x28, 0x63,0x3d,0x6e,0x5b,0x6f,0x5d,0x29,0x5b,0x30,0x5d,0x2c,0x73,0x3d,0x65,0x5b,0x6c, 0x5d,0x2c,0x66,0x3d,0x63,0x5b,0x31,0x5d,0x3b,0x69,0x66,0x28,0x75,0x26,0x26,0x63, 0x5b,0x32,0x5d,0x29,0x7b,0x69,0x66,0x28,0x73,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x21, 0x28,0x6c,0x20,0x69,0x6e,0x20,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x6e,0x65,0x77, 0x20,0x51,0x6e,0x3b,0x69,0x66,0x28,0x72,0x29,0x76,0x61,0x72,0x20,0x70,0x3d,0x72, 0x28,0x73,0x2c,0x66,0x2c,0x6c,0x2c,0x65,0x2c,0x74,0x2c,0x64,0x29,0x3b,0x69,0x66, 0x28,0x21,0x28,0x70,0x3d,0x3d,0x3d,0x69,0x3f,0x4e,0x72,0x28,0x66,0x2c,0x73,0x2c, 0x33,0x2c,0x72,0x2c,0x64,0x29,0x3a,0x70,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x72,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x28,0x21,0x6e,0x75,0x28,0x65,0x29,0x7c,0x7c,0x28,0x74,0x3d,0x65, 0x2c,0x46,0x65,0x26,0x26,0x46,0x65,0x20,0x69,0x6e,0x20,0x74,0x29,0x29,0x26,0x26, 0x28,0x5a,0x61,0x28,0x65,0x29,0x3f,0x55,0x65,0x3a,0x79,0x65,0x29,0x2e,0x74,0x65, 0x73,0x74,0x28,0x7a,0x69,0x28,0x65,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x72,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x3f,0x69,0x63,0x3a,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x47,0x61,0x28,0x65,0x29,0x3f, 0x57,0x72,0x28,0x65,0x5b,0x30,0x5d,0x2c,0x65,0x5b,0x31,0x5d,0x29,0x3a,0x55,0x72, 0x28,0x65,0x29,0x3a,0x68,0x63,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x46,0x72,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x6a,0x69,0x28, 0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71,0x74,0x28,0x65,0x29,0x3b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x6e,0x20,0x69,0x6e,0x20,0x6b,0x65,0x28,0x65,0x29,0x29,0x52,0x65,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26,0x22,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x21,0x3d,0x6e,0x26,0x26,0x74,0x2e,0x70,0x75, 0x73,0x68,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x72,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x21,0x6e,0x75,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x6b,0x65,0x28,0x65, 0x29,0x29,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6a, 0x69,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x72,0x20,0x69,0x6e,0x20,0x65,0x29,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x21,0x3d,0x72,0x7c,0x7c,0x21,0x74,0x26,0x26, 0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x72,0x29,0x29,0x26,0x26,0x6e, 0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x72,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3c,0x74,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x4b,0x61,0x28,0x65,0x29,0x3f, 0x6e,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3a,0x5b,0x5d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x72,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x69,0x29,0x7b,0x6f,0x5b,0x2b,0x2b, 0x72,0x5d,0x3d,0x74,0x28,0x65,0x2c,0x6e,0x2c,0x69,0x29,0x7d,0x29,0x29,0x2c,0x6f, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x72,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x64,0x69,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x31,0x3d,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26, 0x74,0x5b,0x30,0x5d,0x5b,0x32,0x5d,0x3f,0x53,0x69,0x28,0x74,0x5b,0x30,0x5d,0x5b, 0x30,0x5d,0x2c,0x74,0x5b,0x30,0x5d,0x5b,0x31,0x5d,0x29,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x49,0x72,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x72,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x69,0x28,0x65,0x29,0x26,0x26, 0x6b,0x69,0x28,0x74,0x29,0x3f,0x53,0x69,0x28,0x42,0x69,0x28,0x65,0x29,0x2c,0x74, 0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x43,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x72,0x3d,0x3d,0x3d,0x74,0x3f, 0x41,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3a,0x4e,0x72,0x28,0x74,0x2c,0x72,0x2c,0x33, 0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x72,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x65,0x21,0x3d,0x3d,0x74,0x26, 0x26,0x79,0x72,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x61,0x2c,0x75,0x29,0x7b,0x69,0x66,0x28,0x6f,0x7c,0x7c,0x28,0x6f,0x3d,0x6e,0x65, 0x77,0x20,0x51,0x6e,0x29,0x2c,0x6e,0x75,0x28,0x61,0x29,0x29,0x21,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c, 0x61,0x2c,0x75,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x50,0x69,0x28,0x65,0x2c, 0x6e,0x29,0x2c,0x6c,0x3d,0x50,0x69,0x28,0x74,0x2c,0x6e,0x29,0x2c,0x73,0x3d,0x75, 0x2e,0x67,0x65,0x74,0x28,0x6c,0x29,0x3b,0x69,0x66,0x28,0x73,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x74,0x72,0x28,0x65,0x2c,0x6e,0x2c, 0x73,0x29,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x61,0x3f,0x61,0x28,0x63,0x2c,0x6c, 0x2c,0x6e,0x2b,0x22,0x22,0x2c,0x65,0x2c,0x74,0x2c,0x75,0x29,0x3a,0x69,0x2c,0x64, 0x3d,0x66,0x3d,0x3d,0x3d,0x69,0x3b,0x69,0x66,0x28,0x64,0x29,0x7b,0x76,0x61,0x72, 0x20,0x70,0x3d,0x47,0x61,0x28,0x6c,0x29,0x2c,0x68,0x3d,0x21,0x70,0x26,0x26,0x51, 0x61,0x28,0x6c,0x29,0x2c,0x76,0x3d,0x21,0x70,0x26,0x26,0x21,0x68,0x26,0x26,0x66, 0x75,0x28,0x6c,0x29,0x3b,0x66,0x3d,0x6c,0x2c,0x70,0x7c,0x7c,0x68,0x7c,0x7c,0x76, 0x3f,0x47,0x61,0x28,0x63,0x29,0x3f,0x66,0x3d,0x63,0x3a,0x59,0x61,0x28,0x63,0x29, 0x3f,0x66,0x3d,0x50,0x6f,0x28,0x63,0x29,0x3a,0x68,0x3f,0x28,0x64,0x3d,0x21,0x31, 0x2c,0x66,0x3d,0x6a,0x6f,0x28,0x6c,0x2c,0x21,0x30,0x29,0x29,0x3a,0x76,0x3f,0x28, 0x64,0x3d,0x21,0x31,0x2c,0x66,0x3d,0x53,0x6f,0x28,0x6c,0x2c,0x21,0x30,0x29,0x29, 0x3a,0x66,0x3d,0x5b,0x5d,0x3a,0x61,0x75,0x28,0x6c,0x29,0x7c,0x7c,0x56,0x61,0x28, 0x6c,0x29,0x3f,0x28,0x66,0x3d,0x63,0x2c,0x56,0x61,0x28,0x63,0x29,0x3f,0x66,0x3d, 0x79,0x75,0x28,0x63,0x29,0x3a,0x6e,0x75,0x28,0x63,0x29,0x26,0x26,0x21,0x5a,0x61, 0x28,0x63,0x29,0x7c,0x7c,0x28,0x66,0x3d,0x62,0x69,0x28,0x6c,0x29,0x29,0x29,0x3a, 0x64,0x3d,0x21,0x31,0x7d,0x64,0x26,0x26,0x28,0x75,0x2e,0x73,0x65,0x74,0x28,0x6c, 0x2c,0x66,0x29,0x2c,0x6f,0x28,0x66,0x2c,0x6c,0x2c,0x72,0x2c,0x61,0x2c,0x75,0x29, 0x2c,0x75,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x6c,0x29,0x29,0x3b,0x74,0x72, 0x28,0x65,0x2c,0x6e,0x2c,0x66,0x29,0x7d,0x28,0x65,0x2c,0x74,0x2c,0x75,0x2c,0x6e, 0x2c,0x24,0x72,0x2c,0x72,0x2c,0x6f,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61, 0x72,0x20,0x63,0x3d,0x72,0x3f,0x72,0x28,0x50,0x69,0x28,0x65,0x2c,0x75,0x29,0x2c, 0x61,0x2c,0x75,0x2b,0x22,0x22,0x2c,0x65,0x2c,0x74,0x2c,0x6f,0x29,0x3a,0x69,0x3b, 0x63,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x63,0x3d,0x61,0x29,0x2c,0x74,0x72,0x28, 0x65,0x2c,0x75,0x2c,0x63,0x29,0x7d,0x7d,0x29,0x2c,0x49,0x75,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x48,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66, 0x28,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x69,0x28,0x74,0x2b,0x3d, 0x74,0x3c,0x30,0x3f,0x6e,0x3a,0x30,0x2c,0x6e,0x29,0x3f,0x65,0x5b,0x74,0x5d,0x3a, 0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x72,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x74,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f, 0x49,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x61,0x28,0x65,0x29,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x45,0x72,0x28,0x74,0x2c,0x31,0x3d,0x3d,0x3d,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3f,0x65,0x5b,0x30,0x5d,0x3a,0x65,0x29,0x7d,0x3a,0x65,0x7d,0x29, 0x29,0x3a,0x5b,0x69,0x63,0x5d,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x3b, 0x74,0x3d,0x49,0x74,0x28,0x74,0x2c,0x4a,0x74,0x28,0x73,0x69,0x28,0x29,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x7a,0x72,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x49,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x29, 0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x72,0x69,0x74,0x65, 0x72,0x69,0x61,0x3a,0x69,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x2b,0x2b,0x72,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x7d,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x66,0x6f,0x72,0x28,0x65,0x2e,0x73,0x6f,0x72,0x74,0x28,0x74,0x29,0x3b,0x6e,0x2d, 0x2d,0x3b,0x29,0x65,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x28,0x6f,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d, 0x65,0x2e,0x63,0x72,0x69,0x74,0x65,0x72,0x69,0x61,0x2c,0x69,0x3d,0x74,0x2e,0x63, 0x72,0x69,0x74,0x65,0x72,0x69,0x61,0x2c,0x61,0x3d,0x6f,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2c,0x75,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f, 0x72,0x28,0x3b,0x2b,0x2b,0x72,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x63, 0x3d,0x43,0x6f,0x28,0x6f,0x5b,0x72,0x5d,0x2c,0x69,0x5b,0x72,0x5d,0x29,0x3b,0x69, 0x66,0x28,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3e,0x3d,0x75,0x3f, 0x63,0x3a,0x63,0x2a,0x28,0x22,0x64,0x65,0x73,0x63,0x22,0x3d,0x3d,0x6e,0x5b,0x72, 0x5d,0x3f,0x2d,0x31,0x3a,0x31,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x2d,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x7d,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x47,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x69,0x3d,0x7b,0x7d,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x74,0x5b,0x72,0x5d,0x2c,0x75,0x3d,0x45, 0x72,0x28,0x65,0x2c,0x61,0x29,0x3b,0x6e,0x28,0x75,0x2c,0x61,0x29,0x26,0x26,0x65, 0x6f,0x28,0x69,0x2c,0x77,0x6f,0x28,0x61,0x2c,0x65,0x29,0x2c,0x75,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x71,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x72,0x3f,0x24,0x74,0x3a,0x57,0x74,0x2c,0x69,0x3d,0x2d,0x31,0x2c, 0x61,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x75,0x3d,0x65,0x3b,0x66, 0x6f,0x72,0x28,0x65,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x50,0x6f,0x28, 0x74,0x29,0x29,0x2c,0x6e,0x26,0x26,0x28,0x75,0x3d,0x49,0x74,0x28,0x65,0x2c,0x4a, 0x74,0x28,0x6e,0x29,0x29,0x29,0x3b,0x2b,0x2b,0x69,0x3c,0x61,0x3b,0x29,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x63,0x3d,0x30,0x2c,0x6c,0x3d,0x74,0x5b,0x69,0x5d, 0x2c,0x73,0x3d,0x6e,0x3f,0x6e,0x28,0x6c,0x29,0x3a,0x6c,0x3b,0x28,0x63,0x3d,0x6f, 0x28,0x75,0x2c,0x73,0x2c,0x63,0x2c,0x72,0x29,0x29,0x3e,0x2d,0x31,0x3b,0x29,0x75, 0x21,0x3d,0x3d,0x65,0x26,0x26,0x59,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x75,0x2c, 0x63,0x2c,0x31,0x29,0x2c,0x59,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x63, 0x2c,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x3f,0x74,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3a,0x30,0x2c,0x72,0x3d,0x6e,0x2d,0x31,0x3b,0x6e,0x2d,0x2d,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x69,0x66,0x28,0x6e, 0x3d,0x3d,0x72,0x7c,0x7c,0x6f,0x21,0x3d,0x3d,0x69,0x29,0x7b,0x76,0x61,0x72,0x20, 0x69,0x3d,0x6f,0x3b,0x5f,0x69,0x28,0x6f,0x29,0x3f,0x59,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x6f,0x2c,0x31,0x29,0x3a,0x70,0x6f,0x28,0x65,0x2c,0x6f,0x29, 0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x59,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2b,0x76,0x74,0x28,0x78,0x6e,0x28,0x29,0x2a,0x28,0x74,0x2d, 0x65,0x2b,0x31,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51, 0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22,0x22,0x3b, 0x69,0x66,0x28,0x21,0x65,0x7c,0x7c,0x74,0x3c,0x31,0x7c,0x7c,0x74,0x3e,0x76,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x64,0x6f,0x7b,0x74,0x25,0x32,0x26, 0x26,0x28,0x6e,0x2b,0x3d,0x65,0x29,0x2c,0x28,0x74,0x3d,0x76,0x74,0x28,0x74,0x2f, 0x32,0x29,0x29,0x26,0x26,0x28,0x65,0x2b,0x3d,0x65,0x29,0x7d,0x77,0x68,0x69,0x6c, 0x65,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x69,0x28,0x43,0x69,0x28,0x65,0x2c,0x74,0x2c, 0x69,0x63,0x29,0x2c,0x65,0x2b,0x22,0x22,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x4a,0x72,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4a,0x6e,0x28,0x57,0x75,0x28,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x5a,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x57,0x75,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x69, 0x28,0x6e,0x2c,0x63,0x72,0x28,0x74,0x2c,0x30,0x2c,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6f, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x69,0x66,0x28,0x21,0x6e,0x75, 0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x28,0x74,0x3d,0x77, 0x6f,0x28,0x74,0x2c,0x65,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x75, 0x3d,0x61,0x2d,0x31,0x2c,0x63,0x3d,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x63, 0x26,0x26,0x2b,0x2b,0x6f,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d, 0x42,0x69,0x28,0x74,0x5b,0x6f,0x5d,0x29,0x2c,0x73,0x3d,0x6e,0x3b,0x69,0x66,0x28, 0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x3d,0x3d,0x3d,0x6c,0x7c, 0x7c,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x3d,0x3d, 0x3d,0x6c,0x7c,0x7c,0x22,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x22,0x3d, 0x3d,0x3d,0x6c,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28, 0x6f,0x21,0x3d,0x75,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x63,0x5b,0x6c,0x5d, 0x3b,0x28,0x73,0x3d,0x72,0x3f,0x72,0x28,0x66,0x2c,0x6c,0x2c,0x63,0x29,0x3a,0x69, 0x29,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x73,0x3d,0x6e,0x75,0x28,0x66,0x29,0x3f, 0x66,0x3a,0x5f,0x69,0x28,0x74,0x5b,0x6f,0x2b,0x31,0x5d,0x29,0x3f,0x5b,0x5d,0x3a, 0x7b,0x7d,0x29,0x7d,0x6e,0x72,0x28,0x63,0x2c,0x6c,0x2c,0x73,0x29,0x2c,0x63,0x3d, 0x63,0x5b,0x6c,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x76,0x61, 0x72,0x20,0x74,0x6f,0x3d,0x50,0x6e,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x6e,0x2e, 0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x65,0x7d,0x3a,0x69,0x63,0x2c,0x6e, 0x6f,0x3d,0x74,0x74,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x74,0x28,0x65,0x2c,0x22, 0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x7b,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x65,0x6e,0x75,0x6d,0x65, 0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x31,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e, 0x63,0x28,0x74,0x29,0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30, 0x7d,0x29,0x7d,0x3a,0x69,0x63,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x72,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x69,0x28, 0x57,0x75,0x28,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6f,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x2d,0x31,0x2c,0x69,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x3c, 0x30,0x26,0x26,0x28,0x74,0x3d,0x2d,0x74,0x3e,0x69,0x3f,0x30,0x3a,0x69,0x2b,0x74, 0x29,0x2c,0x28,0x72,0x3d,0x72,0x3e,0x69,0x3f,0x69,0x3a,0x72,0x29,0x3c,0x30,0x26, 0x26,0x28,0x72,0x2b,0x3d,0x69,0x29,0x2c,0x69,0x3d,0x74,0x3e,0x72,0x3f,0x30,0x3a, 0x72,0x2d,0x74,0x3e,0x3e,0x3e,0x30,0x2c,0x74,0x3e,0x3e,0x3e,0x3d,0x30,0x3b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x28,0x69,0x29,0x3b,0x2b,0x2b, 0x6f,0x3c,0x69,0x3b,0x29,0x61,0x5b,0x6f,0x5d,0x3d,0x65,0x5b,0x6f,0x2b,0x74,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x69,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x72,0x28,0x65,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x28,0x6e,0x3d,0x74,0x28,0x65,0x2c,0x72,0x2c,0x6f,0x29, 0x29,0x7d,0x29,0x29,0x2c,0x21,0x21,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x61,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x72,0x3a, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x22,0x6e,0x75,0x6d, 0x62,0x65,0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26, 0x74,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x6f,0x3c,0x3d,0x32,0x31,0x34,0x37,0x34,0x38, 0x33,0x36,0x34,0x37,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x72,0x3c,0x6f,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x72,0x2b,0x6f,0x3e,0x3e,0x3e,0x31,0x2c,0x61, 0x3d,0x65,0x5b,0x69,0x5d,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x61,0x26,0x26, 0x21,0x73,0x75,0x28,0x61,0x29,0x26,0x26,0x28,0x6e,0x3f,0x61,0x3c,0x3d,0x74,0x3a, 0x61,0x3c,0x74,0x29,0x3f,0x72,0x3d,0x69,0x2b,0x31,0x3a,0x6f,0x3d,0x69,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75, 0x6f,0x28,0x65,0x2c,0x74,0x2c,0x69,0x63,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x75,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x30,0x2c,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66, 0x28,0x30,0x3d,0x3d,0x3d,0x61,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x75,0x3d,0x28,0x74,0x3d,0x6e,0x28,0x74, 0x29,0x29,0x21,0x3d,0x3d,0x74,0x2c,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x74,0x2c,0x6c,0x3d,0x73,0x75,0x28,0x74,0x29,0x2c,0x73,0x3d,0x74,0x3d,0x3d,0x3d, 0x69,0x3b,0x6f,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x76,0x74, 0x28,0x28,0x6f,0x2b,0x61,0x29,0x2f,0x32,0x29,0x2c,0x64,0x3d,0x6e,0x28,0x65,0x5b, 0x66,0x5d,0x29,0x2c,0x70,0x3d,0x64,0x21,0x3d,0x3d,0x69,0x2c,0x68,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x64,0x2c,0x76,0x3d,0x64,0x3d,0x3d,0x3d,0x64,0x2c,0x67, 0x3d,0x73,0x75,0x28,0x64,0x29,0x3b,0x69,0x66,0x28,0x75,0x29,0x76,0x61,0x72,0x20, 0x6d,0x3d,0x72,0x7c,0x7c,0x76,0x3b,0x65,0x6c,0x73,0x65,0x20,0x6d,0x3d,0x73,0x3f, 0x76,0x26,0x26,0x28,0x72,0x7c,0x7c,0x70,0x29,0x3a,0x63,0x3f,0x76,0x26,0x26,0x70, 0x26,0x26,0x28,0x72,0x7c,0x7c,0x21,0x68,0x29,0x3a,0x6c,0x3f,0x76,0x26,0x26,0x70, 0x26,0x26,0x21,0x68,0x26,0x26,0x28,0x72,0x7c,0x7c,0x21,0x67,0x29,0x3a,0x21,0x68, 0x26,0x26,0x21,0x67,0x26,0x26,0x28,0x72,0x3f,0x64,0x3c,0x3d,0x74,0x3a,0x64,0x3c, 0x74,0x29,0x3b,0x6d,0x3f,0x6f,0x3d,0x66,0x2b,0x31,0x3a,0x61,0x3d,0x66,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x6e,0x28,0x61,0x2c,0x34,0x32,0x39,0x34,0x39, 0x36,0x37,0x32,0x39,0x34,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x63,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c, 0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x5b,0x5d,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x6e,0x5d,0x2c,0x75,0x3d,0x74,0x3f, 0x74,0x28,0x61,0x29,0x3a,0x61,0x3b,0x69,0x66,0x28,0x21,0x6e,0x7c,0x7c,0x21,0x57, 0x61,0x28,0x75,0x2c,0x63,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x75,0x3b, 0x69,0x5b,0x6f,0x2b,0x2b,0x5d,0x3d,0x30,0x3d,0x3d,0x3d,0x61,0x3f,0x30,0x3a,0x61, 0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x3f,0x65,0x3a,0x73,0x75,0x28,0x65,0x29,0x3f,0x67,0x3a,0x2b,0x65,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6f,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66, 0x28,0x47,0x61,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x74, 0x28,0x65,0x2c,0x73,0x6f,0x29,0x2b,0x22,0x22,0x3b,0x69,0x66,0x28,0x73,0x75,0x28, 0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x6e,0x3f,0x7a,0x6e,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x3a,0x22,0x22,0x3b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2b,0x22,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x30,0x22,0x3d, 0x3d,0x74,0x26,0x26,0x31,0x2f,0x65,0x3d,0x3d,0x2d,0x31,0x2f,0x30,0x3f,0x22,0x2d, 0x30,0x22,0x3a,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31, 0x2c,0x6f,0x3d,0x44,0x74,0x2c,0x69,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2c,0x61,0x3d,0x21,0x30,0x2c,0x75,0x3d,0x5b,0x5d,0x2c,0x63,0x3d,0x75,0x3b,0x69, 0x66,0x28,0x6e,0x29,0x61,0x3d,0x21,0x31,0x2c,0x6f,0x3d,0x4e,0x74,0x3b,0x65,0x6c, 0x73,0x65,0x20,0x69,0x66,0x28,0x69,0x3e,0x3d,0x32,0x30,0x30,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6c,0x3d,0x74,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x58,0x6f,0x28,0x65,0x29, 0x3b,0x69,0x66,0x28,0x6c,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x6e,0x28, 0x6c,0x29,0x3b,0x61,0x3d,0x21,0x31,0x2c,0x6f,0x3d,0x65,0x6e,0x2c,0x63,0x3d,0x6e, 0x65,0x77,0x20,0x59,0x6e,0x7d,0x65,0x6c,0x73,0x65,0x20,0x63,0x3d,0x74,0x3f,0x5b, 0x5d,0x3a,0x75,0x3b,0x65,0x3a,0x66,0x6f,0x72,0x28,0x3b,0x2b,0x2b,0x72,0x3c,0x69, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x65,0x5b,0x72,0x5d,0x2c,0x66,0x3d, 0x74,0x3f,0x74,0x28,0x73,0x29,0x3a,0x73,0x3b,0x69,0x66,0x28,0x73,0x3d,0x6e,0x7c, 0x7c,0x30,0x21,0x3d,0x3d,0x73,0x3f,0x73,0x3a,0x30,0x2c,0x61,0x26,0x26,0x66,0x3d, 0x3d,0x3d,0x66,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x64,0x3d,0x63, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x64,0x2d,0x2d,0x3b,0x29,0x69,0x66,0x28, 0x63,0x5b,0x64,0x5d,0x3d,0x3d,0x3d,0x66,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75, 0x65,0x20,0x65,0x3b,0x74,0x26,0x26,0x63,0x2e,0x70,0x75,0x73,0x68,0x28,0x66,0x29, 0x2c,0x75,0x2e,0x70,0x75,0x73,0x68,0x28,0x73,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20, 0x6f,0x28,0x63,0x2c,0x66,0x2c,0x6e,0x29,0x7c,0x7c,0x28,0x63,0x21,0x3d,0x3d,0x75, 0x26,0x26,0x63,0x2e,0x70,0x75,0x73,0x68,0x28,0x66,0x29,0x2c,0x75,0x2e,0x70,0x75, 0x73,0x68,0x28,0x73,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x65, 0x3d,0x41,0x69,0x28,0x65,0x2c,0x74,0x3d,0x77,0x6f,0x28,0x74,0x2c,0x65,0x29,0x29, 0x29,0x7c,0x7c,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x5b,0x42,0x69,0x28,0x4a, 0x69,0x28,0x74,0x29,0x29,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x68,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x28,0x45,0x72,0x28,0x65, 0x2c,0x74,0x29,0x29,0x2c,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x76,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c, 0x69,0x3d,0x72,0x3f,0x6f,0x3a,0x2d,0x31,0x3b,0x28,0x72,0x3f,0x69,0x2d,0x2d,0x3a, 0x2b,0x2b,0x69,0x3c,0x6f,0x29,0x26,0x26,0x74,0x28,0x65,0x5b,0x69,0x5d,0x2c,0x69, 0x2c,0x65,0x29,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x6f, 0x6f,0x28,0x65,0x2c,0x72,0x3f,0x30,0x3a,0x69,0x2c,0x72,0x3f,0x69,0x2b,0x31,0x3a, 0x6f,0x29,0x3a,0x6f,0x6f,0x28,0x65,0x2c,0x72,0x3f,0x69,0x2b,0x31,0x3a,0x30,0x2c, 0x72,0x3f,0x6f,0x3a,0x69,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x67,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x6f,0x66,0x20,0x56,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x6e,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x28,0x29,0x29,0x2c,0x4c,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x2e,0x66,0x75,0x6e,0x63,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2e, 0x74,0x68,0x69,0x73,0x41,0x72,0x67,0x2c,0x52,0x74,0x28,0x5b,0x65,0x5d,0x2c,0x74, 0x2e,0x61,0x72,0x67,0x73,0x29,0x29,0x7d,0x29,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69, 0x66,0x28,0x6f,0x3c,0x32,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3f,0x66, 0x6f,0x28,0x65,0x5b,0x30,0x5d,0x29,0x3a,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x69,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x6e,0x28,0x6f,0x29,0x3b,0x2b, 0x2b,0x69,0x3c,0x6f,0x3b,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x75,0x3d, 0x65,0x5b,0x69,0x5d,0x2c,0x63,0x3d,0x2d,0x31,0x3b,0x2b,0x2b,0x63,0x3c,0x6f,0x3b, 0x29,0x63,0x21,0x3d,0x69,0x26,0x26,0x28,0x61,0x5b,0x69,0x5d,0x3d,0x64,0x72,0x28, 0x61,0x5b,0x69,0x5d,0x7c,0x7c,0x75,0x2c,0x65,0x5b,0x63,0x5d,0x2c,0x74,0x2c,0x72, 0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x6f,0x28,0x62,0x72,0x28, 0x61,0x2c,0x31,0x29,0x2c,0x74,0x2c,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x62,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x61,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c, 0x75,0x3d,0x7b,0x7d,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x63,0x3d,0x72,0x3c,0x61,0x3f,0x74,0x5b,0x72,0x5d,0x3a,0x69,0x3b,0x6e,0x28, 0x75,0x2c,0x65,0x5b,0x72,0x5d,0x2c,0x63,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x75,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x6f,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x61,0x28,0x65,0x29,0x3f,0x65, 0x3a,0x5b,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x6f,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a, 0x69,0x63,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x6f,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x61,0x28,0x65,0x29, 0x3f,0x65,0x3a,0x4f,0x69,0x28,0x65,0x2c,0x74,0x29,0x3f,0x5b,0x65,0x5d,0x3a,0x4d, 0x69,0x28,0x5f,0x75,0x28,0x65,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x4f,0x6f,0x3d, 0x58,0x72,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x6f,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x6e,0x3d, 0x3d,0x3d,0x69,0x3f,0x72,0x3a,0x6e,0x2c,0x21,0x74,0x26,0x26,0x6e,0x3e,0x3d,0x72, 0x3f,0x65,0x3a,0x6f,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x76,0x61,0x72, 0x20,0x45,0x6f,0x3d,0x72,0x74,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x74,0x2e,0x63,0x6c, 0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x29,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x69,0x66,0x28,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x56,0x65,0x3f,0x56,0x65,0x28,0x6e,0x29,0x3a, 0x6e,0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f, 0x70,0x79,0x28,0x72,0x29,0x2c,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6b,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77, 0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x65, 0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x48,0x65,0x28,0x74,0x29,0x2e,0x73,0x65, 0x74,0x28,0x6e,0x65,0x77,0x20,0x48,0x65,0x28,0x65,0x29,0x29,0x2c,0x74,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x3f,0x6b,0x6f,0x28,0x65,0x2e,0x62,0x75,0x66, 0x66,0x65,0x72,0x29,0x3a,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x6e,0x2c,0x65,0x2e,0x62,0x79,0x74,0x65,0x4f, 0x66,0x66,0x73,0x65,0x74,0x2c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x6f,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x65,0x21,0x3d,0x3d,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x21,0x3d,0x3d,0x69,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x65,0x2c,0x6f,0x3d,0x65,0x3d,0x3d,0x3d,0x65,0x2c,0x61,0x3d,0x73,0x75,0x28,0x65, 0x29,0x2c,0x75,0x3d,0x74,0x21,0x3d,0x3d,0x69,0x2c,0x63,0x3d,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x74,0x2c,0x6c,0x3d,0x74,0x3d,0x3d,0x3d,0x74,0x2c,0x73,0x3d,0x73, 0x75,0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x21,0x63,0x26,0x26,0x21,0x73,0x26,0x26, 0x21,0x61,0x26,0x26,0x65,0x3e,0x74,0x7c,0x7c,0x61,0x26,0x26,0x75,0x26,0x26,0x6c, 0x26,0x26,0x21,0x63,0x26,0x26,0x21,0x73,0x7c,0x7c,0x72,0x26,0x26,0x75,0x26,0x26, 0x6c,0x7c,0x7c,0x21,0x6e,0x26,0x26,0x6c,0x7c,0x7c,0x21,0x6f,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x31,0x3b,0x69,0x66,0x28,0x21,0x72,0x26,0x26,0x21,0x61,0x26, 0x26,0x21,0x73,0x26,0x26,0x65,0x3c,0x74,0x7c,0x7c,0x73,0x26,0x26,0x6e,0x26,0x26, 0x6f,0x26,0x26,0x21,0x72,0x26,0x26,0x21,0x61,0x7c,0x7c,0x63,0x26,0x26,0x6e,0x26, 0x26,0x6f,0x7c,0x7c,0x21,0x75,0x26,0x26,0x6f,0x7c,0x7c,0x21,0x6c,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x6f,0x28,0x65,0x2c,0x74,0x2c, 0x72,0x2c,0x6f,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x2d, 0x31,0x2c,0x61,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x75,0x3d,0x72, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x63,0x3d,0x2d,0x31,0x2c,0x6c,0x3d,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x73,0x3d,0x79,0x6e,0x28,0x61,0x2d,0x75, 0x2c,0x30,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x6c,0x2b,0x73,0x29,0x2c,0x64,0x3d,0x21, 0x6f,0x3b,0x2b,0x2b,0x63,0x3c,0x6c,0x3b,0x29,0x66,0x5b,0x63,0x5d,0x3d,0x74,0x5b, 0x63,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x2b,0x2b,0x69,0x3c,0x75,0x3b,0x29,0x28, 0x64,0x7c,0x7c,0x69,0x3c,0x61,0x29,0x26,0x26,0x28,0x66,0x5b,0x72,0x5b,0x69,0x5d, 0x5d,0x3d,0x65,0x5b,0x69,0x5d,0x29,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x73,0x2d,0x2d, 0x3b,0x29,0x66,0x5b,0x63,0x2b,0x2b,0x5d,0x3d,0x65,0x5b,0x69,0x2b,0x2b,0x5d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x54,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x75,0x3d,0x2d,0x31,0x2c,0x63,0x3d,0x72,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x6c,0x3d,0x2d,0x31,0x2c,0x73,0x3d,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x66,0x3d,0x79,0x6e,0x28,0x61,0x2d,0x63,0x2c,0x30, 0x29,0x2c,0x64,0x3d,0x6e,0x28,0x66,0x2b,0x73,0x29,0x2c,0x70,0x3d,0x21,0x6f,0x3b, 0x2b,0x2b,0x69,0x3c,0x66,0x3b,0x29,0x64,0x5b,0x69,0x5d,0x3d,0x65,0x5b,0x69,0x5d, 0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x68,0x3d,0x69,0x3b,0x2b,0x2b,0x6c, 0x3c,0x73,0x3b,0x29,0x64,0x5b,0x68,0x2b,0x6c,0x5d,0x3d,0x74,0x5b,0x6c,0x5d,0x3b, 0x66,0x6f,0x72,0x28,0x3b,0x2b,0x2b,0x75,0x3c,0x63,0x3b,0x29,0x28,0x70,0x7c,0x7c, 0x69,0x3c,0x61,0x29,0x26,0x26,0x28,0x64,0x5b,0x68,0x2b,0x72,0x5b,0x75,0x5d,0x5d, 0x3d,0x65,0x5b,0x69,0x2b,0x2b,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x64,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x6f,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x74,0x7c,0x7c,0x28,0x74, 0x3d,0x6e,0x28,0x6f,0x29,0x29,0x3b,0x2b,0x2b,0x72,0x3c,0x6f,0x3b,0x29,0x74,0x5b, 0x72,0x5d,0x3d,0x65,0x5b,0x72,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x6f,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x21,0x6e,0x3b,0x6e, 0x7c,0x7c,0x28,0x6e,0x3d,0x7b,0x7d,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x61,0x3d,0x2d,0x31,0x2c,0x75,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x2b,0x2b,0x61,0x3c,0x75,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x74, 0x5b,0x61,0x5d,0x2c,0x6c,0x3d,0x72,0x3f,0x72,0x28,0x6e,0x5b,0x63,0x5d,0x2c,0x65, 0x5b,0x63,0x5d,0x2c,0x63,0x2c,0x6e,0x2c,0x65,0x29,0x3a,0x69,0x3b,0x6c,0x3d,0x3d, 0x3d,0x69,0x26,0x26,0x28,0x6c,0x3d,0x65,0x5b,0x63,0x5d,0x29,0x2c,0x6f,0x3f,0x61, 0x72,0x28,0x6e,0x2c,0x63,0x2c,0x6c,0x29,0x3a,0x6e,0x72,0x28,0x6e,0x2c,0x63,0x2c, 0x6c,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x4e,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x47,0x61,0x28,0x6e,0x29,0x3f,0x53,0x74, 0x3a,0x6f,0x72,0x2c,0x69,0x3d,0x74,0x3f,0x74,0x28,0x29,0x3a,0x7b,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x6e,0x2c,0x65,0x2c,0x73,0x69,0x28,0x72, 0x2c,0x32,0x29,0x2c,0x69,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x49,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x58,0x72, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x6e,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x61,0x3d,0x6f,0x3e,0x31,0x3f,0x6e,0x5b,0x6f,0x2d,0x31,0x5d, 0x3a,0x69,0x2c,0x75,0x3d,0x6f,0x3e,0x32,0x3f,0x6e,0x5b,0x32,0x5d,0x3a,0x69,0x3b, 0x66,0x6f,0x72,0x28,0x61,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x33, 0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x61,0x3f,0x28,0x6f,0x2d,0x2d,0x2c,0x61,0x29,0x3a,0x69, 0x2c,0x75,0x26,0x26,0x77,0x69,0x28,0x6e,0x5b,0x30,0x5d,0x2c,0x6e,0x5b,0x31,0x5d, 0x2c,0x75,0x29,0x26,0x26,0x28,0x61,0x3d,0x6f,0x3c,0x33,0x3f,0x69,0x3a,0x61,0x2c, 0x6f,0x3d,0x31,0x29,0x2c,0x74,0x3d,0x6b,0x65,0x28,0x74,0x29,0x3b,0x2b,0x2b,0x72, 0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x6e,0x5b,0x72,0x5d,0x3b, 0x63,0x26,0x26,0x65,0x28,0x74,0x2c,0x63,0x2c,0x72,0x2c,0x61,0x29,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x52,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72,0x29,0x7b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x3b,0x69,0x66,0x28,0x21,0x4b,0x61,0x28,0x6e,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x6e,0x2c,0x72,0x29,0x3b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x69, 0x3d,0x74,0x3f,0x6f,0x3a,0x2d,0x31,0x2c,0x61,0x3d,0x6b,0x65,0x28,0x6e,0x29,0x3b, 0x28,0x74,0x3f,0x69,0x2d,0x2d,0x3a,0x2b,0x2b,0x69,0x3c,0x6f,0x29,0x26,0x26,0x21, 0x31,0x21,0x3d,0x3d,0x72,0x28,0x61,0x5b,0x69,0x5d,0x2c,0x69,0x2c,0x61,0x29,0x3b, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x4c,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x2d,0x31,0x2c,0x69, 0x3d,0x6b,0x65,0x28,0x74,0x29,0x2c,0x61,0x3d,0x72,0x28,0x74,0x29,0x2c,0x75,0x3d, 0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x75,0x2d,0x2d,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x63,0x3d,0x61,0x5b,0x65,0x3f,0x75,0x3a,0x2b,0x2b,0x6f,0x5d,0x3b, 0x69,0x66,0x28,0x21,0x31,0x3d,0x3d,0x3d,0x6e,0x28,0x69,0x5b,0x63,0x5d,0x2c,0x63, 0x2c,0x69,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x6f,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x63,0x6e,0x28,0x74, 0x3d,0x5f,0x75,0x28,0x74,0x29,0x29,0x3f,0x76,0x6e,0x28,0x74,0x29,0x3a,0x69,0x2c, 0x72,0x3d,0x6e,0x3f,0x6e,0x5b,0x30,0x5d,0x3a,0x74,0x2e,0x63,0x68,0x61,0x72,0x41, 0x74,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x3f,0x78,0x6f,0x28,0x6e,0x2c,0x31,0x29, 0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x22,0x29,0x3a,0x74,0x2e,0x73,0x6c,0x69,0x63, 0x65,0x28,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x5b,0x65,0x5d, 0x28,0x29,0x2b,0x6f,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d, 0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c, 0x74,0x28,0x5a,0x75,0x28,0x56,0x75,0x28,0x74,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61, 0x63,0x65,0x28,0x5a,0x65,0x2c,0x22,0x22,0x29,0x29,0x2c,0x65,0x2c,0x22,0x22,0x29, 0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x6f,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x65,0x77,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x65,0x28,0x74,0x5b,0x30,0x5d, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x65,0x77,0x20,0x65,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x65,0x77,0x20,0x65,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x74, 0x5b,0x32,0x5d,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x65,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b, 0x31,0x5d,0x2c,0x74,0x5b,0x32,0x5d,0x2c,0x74,0x5b,0x33,0x5d,0x29,0x3b,0x63,0x61, 0x73,0x65,0x20,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20, 0x65,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x74,0x5b,0x32,0x5d, 0x2c,0x74,0x5b,0x33,0x5d,0x2c,0x74,0x5b,0x34,0x5d,0x29,0x3b,0x63,0x61,0x73,0x65, 0x20,0x36,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x65,0x28, 0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x74,0x5b,0x32,0x5d,0x2c,0x74, 0x5b,0x33,0x5d,0x2c,0x74,0x5b,0x34,0x5d,0x2c,0x74,0x5b,0x35,0x5d,0x29,0x3b,0x63, 0x61,0x73,0x65,0x20,0x37,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77, 0x20,0x65,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x74,0x5b,0x32, 0x5d,0x2c,0x74,0x5b,0x33,0x5d,0x2c,0x74,0x5b,0x34,0x5d,0x2c,0x74,0x5b,0x35,0x5d, 0x2c,0x74,0x5b,0x36,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x6e,0x3d,0x57,0x6e,0x28, 0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x72,0x3d,0x65, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x6e,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x28,0x72,0x29,0x3f,0x72,0x3a,0x6e,0x7d,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6b,0x65,0x28,0x74,0x29,0x3b, 0x69,0x66,0x28,0x21,0x4b,0x61,0x28,0x74,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x61, 0x3d,0x73,0x69,0x28,0x6e,0x2c,0x33,0x29,0x3b,0x74,0x3d,0x4e,0x75,0x28,0x74,0x29, 0x2c,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x28,0x6f,0x5b,0x65,0x5d,0x2c,0x65,0x2c,0x6f, 0x29,0x7d,0x7d,0x76,0x61,0x72,0x20,0x75,0x3d,0x65,0x28,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x3e,0x2d,0x31,0x3f,0x6f,0x5b, 0x61,0x3f,0x74,0x5b,0x75,0x5d,0x3a,0x75,0x5d,0x3a,0x69,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x69,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x72,0x3d,0x6e,0x2c,0x6f,0x3d,0x48,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x74,0x68,0x72,0x75,0x3b,0x66,0x6f,0x72,0x28,0x65,0x26, 0x26,0x74,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29,0x3b,0x72,0x2d,0x2d, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74,0x5b,0x72,0x5d,0x3b,0x69,0x66, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x75,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20, 0x41,0x65,0x28,0x61,0x29,0x3b,0x69,0x66,0x28,0x6f,0x26,0x26,0x21,0x63,0x26,0x26, 0x22,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x22,0x3d,0x3d,0x63,0x69,0x28,0x75,0x29, 0x29,0x76,0x61,0x72,0x20,0x63,0x3d,0x6e,0x65,0x77,0x20,0x48,0x6e,0x28,0x5b,0x5d, 0x2c,0x21,0x30,0x29,0x7d,0x66,0x6f,0x72,0x28,0x72,0x3d,0x63,0x3f,0x72,0x3a,0x6e, 0x3b,0x2b,0x2b,0x72,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x63, 0x69,0x28,0x75,0x3d,0x74,0x5b,0x72,0x5d,0x29,0x2c,0x73,0x3d,0x22,0x77,0x72,0x61, 0x70,0x70,0x65,0x72,0x22,0x3d,0x3d,0x6c,0x3f,0x75,0x69,0x28,0x75,0x29,0x3a,0x69, 0x3b,0x63,0x3d,0x73,0x26,0x26,0x78,0x69,0x28,0x73,0x5b,0x30,0x5d,0x29,0x26,0x26, 0x34,0x32,0x34,0x3d,0x3d,0x73,0x5b,0x31,0x5d,0x26,0x26,0x21,0x73,0x5b,0x34,0x5d, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x31,0x3d,0x3d,0x73,0x5b,0x39,0x5d, 0x3f,0x63,0x5b,0x63,0x69,0x28,0x73,0x5b,0x30,0x5d,0x29,0x5d,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x63,0x2c,0x73,0x5b,0x33,0x5d,0x29,0x3a,0x31,0x3d,0x3d,0x75,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x78,0x69,0x28,0x75,0x29,0x3f,0x63,0x5b, 0x6c,0x5d,0x28,0x29,0x3a,0x63,0x2e,0x74,0x68,0x72,0x75,0x28,0x75,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2c,0x72,0x3d,0x65,0x5b,0x30,0x5d,0x3b,0x69,0x66,0x28,0x63,0x26,0x26,0x31,0x3d, 0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x47,0x61,0x28,0x72,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x2e,0x70,0x6c,0x61,0x6e,0x74,0x28, 0x72,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x6e,0x3f,0x74,0x5b,0x6f,0x5d,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3a,0x72,0x3b, 0x2b,0x2b,0x6f,0x3c,0x6e,0x3b,0x29,0x69,0x3d,0x74,0x5b,0x6f,0x5d,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x69,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x69,0x7d,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x57,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x2c,0x75,0x2c, 0x63,0x2c,0x6c,0x2c,0x73,0x2c,0x66,0x29,0x7b,0x76,0x61,0x72,0x20,0x70,0x3d,0x74, 0x26,0x64,0x2c,0x68,0x3d,0x31,0x26,0x74,0x2c,0x76,0x3d,0x32,0x26,0x74,0x2c,0x67, 0x3d,0x32,0x34,0x26,0x74,0x2c,0x6d,0x3d,0x35,0x31,0x32,0x26,0x74,0x2c,0x62,0x3d, 0x76,0x3f,0x69,0x3a,0x42,0x6f,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x64,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x79,0x3d,0x6e,0x28,0x64,0x29,0x2c, 0x5f,0x3d,0x64,0x3b,0x5f,0x2d,0x2d,0x3b,0x29,0x79,0x5b,0x5f,0x5d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x5f,0x5d,0x3b,0x69,0x66,0x28,0x67,0x29, 0x76,0x61,0x72,0x20,0x77,0x3d,0x6c,0x69,0x28,0x69,0x29,0x2c,0x4f,0x3d,0x72,0x6e, 0x28,0x79,0x2c,0x77,0x29,0x3b,0x69,0x66,0x28,0x6f,0x26,0x26,0x28,0x79,0x3d,0x41, 0x6f,0x28,0x79,0x2c,0x6f,0x2c,0x61,0x2c,0x67,0x29,0x29,0x2c,0x75,0x26,0x26,0x28, 0x79,0x3d,0x54,0x6f,0x28,0x79,0x2c,0x75,0x2c,0x63,0x2c,0x67,0x29,0x29,0x2c,0x64, 0x2d,0x3d,0x4f,0x2c,0x67,0x26,0x26,0x64,0x3c,0x66,0x29,0x7b,0x76,0x61,0x72,0x20, 0x78,0x3d,0x66,0x6e,0x28,0x79,0x2c,0x77,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x59,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x57,0x6f,0x2c,0x69,0x2e,0x70,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x72,0x2c,0x79,0x2c,0x78,0x2c,0x6c, 0x2c,0x73,0x2c,0x66,0x2d,0x64,0x29,0x7d,0x76,0x61,0x72,0x20,0x45,0x3d,0x68,0x3f, 0x72,0x3a,0x74,0x68,0x69,0x73,0x2c,0x6a,0x3d,0x76,0x3f,0x45,0x5b,0x65,0x5d,0x3a, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x3d,0x79,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x6c,0x3f,0x79,0x3d,0x54,0x69,0x28,0x79,0x2c,0x6c,0x29,0x3a, 0x6d,0x26,0x26,0x64,0x3e,0x31,0x26,0x26,0x79,0x2e,0x72,0x65,0x76,0x65,0x72,0x73, 0x65,0x28,0x29,0x2c,0x70,0x26,0x26,0x73,0x3c,0x64,0x26,0x26,0x28,0x79,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3d,0x73,0x29,0x2c,0x74,0x68,0x69,0x73,0x26,0x26,0x74, 0x68,0x69,0x73,0x21,0x3d,0x3d,0x68,0x74,0x26,0x26,0x74,0x68,0x69,0x73,0x20,0x69, 0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x69,0x26,0x26,0x28,0x6a,0x3d, 0x62,0x7c,0x7c,0x42,0x6f,0x28,0x6a,0x29,0x29,0x2c,0x6a,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x45,0x2c,0x79,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x24,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x72, 0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6f, 0x2c,0x69,0x29,0x7b,0x74,0x28,0x72,0x2c,0x6e,0x28,0x65,0x29,0x2c,0x6f,0x2c,0x69, 0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x28,0x72,0x29, 0x2c,0x7b,0x7d,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x48, 0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3b,0x69,0x66,0x28,0x6e,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x72,0x3d,0x3d,0x3d, 0x69,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b,0x69,0x66,0x28,0x6e,0x21, 0x3d,0x3d,0x69,0x26,0x26,0x28,0x6f,0x3d,0x6e,0x29,0x2c,0x72,0x21,0x3d,0x3d,0x69, 0x29,0x7b,0x69,0x66,0x28,0x6f,0x3d,0x3d,0x3d,0x69,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x3b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6e,0x7c,0x7c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x3f,0x28,0x6e,0x3d,0x73,0x6f, 0x28,0x6e,0x29,0x2c,0x72,0x3d,0x73,0x6f,0x28,0x72,0x29,0x29,0x3a,0x28,0x6e,0x3d, 0x6c,0x6f,0x28,0x6e,0x29,0x2c,0x72,0x3d,0x6c,0x6f,0x28,0x72,0x29,0x29,0x2c,0x6f, 0x3d,0x65,0x28,0x6e,0x2c,0x72,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x6f,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x69,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x3d,0x49,0x74,0x28,0x74,0x2c,0x4a,0x74,0x28,0x73,0x69,0x28,0x29,0x29,0x29,0x2c, 0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x65,0x2c,0x72, 0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x28,0x74,0x3d,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x22,0x20,0x22, 0x3a,0x73,0x6f,0x28,0x74,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69, 0x66,0x28,0x6e,0x3c,0x32,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x51, 0x72,0x28,0x74,0x2c,0x65,0x29,0x3a,0x74,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x51, 0x72,0x28,0x74,0x2c,0x70,0x74,0x28,0x65,0x2f,0x68,0x6e,0x28,0x74,0x29,0x29,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6e,0x28,0x74,0x29,0x3f,0x78,0x6f, 0x28,0x76,0x6e,0x28,0x72,0x29,0x2c,0x30,0x2c,0x65,0x29,0x2e,0x6a,0x6f,0x69,0x6e, 0x28,0x22,0x22,0x29,0x3a,0x72,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x65, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x6f,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x26,0x26,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x6f,0x26,0x26,0x77,0x69,0x28,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x26, 0x26,0x28,0x72,0x3d,0x6f,0x3d,0x69,0x29,0x2c,0x74,0x3d,0x76,0x75,0x28,0x74,0x29, 0x2c,0x72,0x3d,0x3d,0x3d,0x69,0x3f,0x28,0x72,0x3d,0x74,0x2c,0x74,0x3d,0x30,0x29, 0x3a,0x72,0x3d,0x76,0x75,0x28,0x72,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x69,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x79,0x6e,0x28,0x70,0x74,0x28, 0x28,0x74,0x2d,0x65,0x29,0x2f,0x28,0x72,0x7c,0x7c,0x31,0x29,0x29,0x2c,0x30,0x29, 0x2c,0x75,0x3d,0x6e,0x28,0x61,0x29,0x3b,0x61,0x2d,0x2d,0x3b,0x29,0x75,0x5b,0x6f, 0x3f,0x61,0x3a,0x2b,0x2b,0x69,0x5d,0x3d,0x65,0x2c,0x65,0x2b,0x3d,0x72,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x7d,0x28,0x74,0x2c,0x72,0x2c,0x6f,0x3d,0x6f, 0x3d,0x3d,0x3d,0x69,0x3f,0x74,0x3c,0x72,0x3f,0x31,0x3a,0x2d,0x31,0x3a,0x76,0x75, 0x28,0x6f,0x29,0x2c,0x65,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4b,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x74,0x26,0x26,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x7c,0x7c,0x28,0x74,0x3d,0x62,0x75,0x28, 0x74,0x29,0x2c,0x6e,0x3d,0x62,0x75,0x28,0x6e,0x29,0x29,0x2c,0x65,0x28,0x74,0x2c, 0x6e,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x6f,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x2c,0x75,0x2c,0x63,0x2c, 0x6c,0x2c,0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x70,0x3d,0x38,0x26,0x74,0x3b,0x74, 0x7c,0x3d,0x70,0x3f,0x73,0x3a,0x66,0x2c,0x34,0x26,0x28,0x74,0x26,0x3d,0x7e,0x28, 0x70,0x3f,0x66,0x3a,0x73,0x29,0x29,0x7c,0x7c,0x28,0x74,0x26,0x3d,0x2d,0x34,0x29, 0x3b,0x76,0x61,0x72,0x20,0x68,0x3d,0x5b,0x65,0x2c,0x74,0x2c,0x6f,0x2c,0x70,0x3f, 0x61,0x3a,0x69,0x2c,0x70,0x3f,0x75,0x3a,0x69,0x2c,0x70,0x3f,0x69,0x3a,0x61,0x2c, 0x70,0x3f,0x69,0x3a,0x75,0x2c,0x63,0x2c,0x6c,0x2c,0x64,0x5d,0x2c,0x76,0x3d,0x6e, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x69,0x2c,0x68,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x78,0x69,0x28,0x65,0x29,0x26,0x26,0x44,0x69,0x28,0x76,0x2c,0x68, 0x29,0x2c,0x76,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d, 0x72,0x2c,0x52,0x69,0x28,0x76,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x51,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x6a,0x65,0x5b,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x65, 0x3d,0x62,0x75,0x28,0x65,0x29,0x2c,0x28,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x6e,0x3f,0x30,0x3a,0x5f,0x6e,0x28,0x67,0x75,0x28,0x6e,0x29,0x2c,0x32,0x39,0x32, 0x29,0x29,0x26,0x26,0x79,0x74,0x28,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x28,0x5f,0x75,0x28,0x65,0x29,0x2b,0x22,0x65,0x22,0x29,0x2e,0x73,0x70,0x6c, 0x69,0x74,0x28,0x22,0x65,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2b,0x28, 0x28,0x72,0x3d,0x28,0x5f,0x75,0x28,0x74,0x28,0x72,0x5b,0x30,0x5d,0x2b,0x22,0x65, 0x22,0x2b,0x28,0x2b,0x72,0x5b,0x31,0x5d,0x2b,0x6e,0x29,0x29,0x29,0x2b,0x22,0x65, 0x22,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x65,0x22,0x29,0x29,0x5b,0x30, 0x5d,0x2b,0x22,0x65,0x22,0x2b,0x28,0x2b,0x72,0x5b,0x31,0x5d,0x2d,0x6e,0x29,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x29,0x7d,0x7d,0x76,0x61, 0x72,0x20,0x58,0x6f,0x3d,0x43,0x6e,0x26,0x26,0x31,0x2f,0x64,0x6e,0x28,0x6e,0x65, 0x77,0x20,0x43,0x6e,0x28,0x5b,0x2c,0x2d,0x30,0x5d,0x29,0x29,0x5b,0x31,0x5d,0x3d, 0x3d,0x68,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x43,0x6e,0x28,0x65,0x29,0x7d, 0x3a,0x73,0x63,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x6f,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x67,0x69,0x28,0x74, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x3d,0x6b,0x3f,0x6c,0x6e, 0x28,0x74,0x29,0x3a,0x6e,0x3d,0x3d,0x50,0x3f,0x70,0x6e,0x28,0x74,0x29,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x49,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x74,0x2c,0x65, 0x5b,0x74,0x5d,0x5d,0x7d,0x29,0x29,0x7d,0x28,0x74,0x2c,0x65,0x28,0x74,0x29,0x29, 0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x6f,0x28,0x65,0x2c, 0x74,0x2c,0x72,0x2c,0x6f,0x2c,0x75,0x2c,0x68,0x2c,0x76,0x2c,0x67,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6d,0x3d,0x32,0x26,0x74,0x3b,0x69,0x66,0x28,0x21,0x6d,0x26,0x26, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x41, 0x65,0x28,0x61,0x29,0x3b,0x76,0x61,0x72,0x20,0x62,0x3d,0x6f,0x3f,0x6f,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3a,0x30,0x3b,0x69,0x66,0x28,0x62,0x7c,0x7c,0x28,0x74, 0x26,0x3d,0x2d,0x39,0x37,0x2c,0x6f,0x3d,0x75,0x3d,0x69,0x29,0x2c,0x76,0x3d,0x76, 0x3d,0x3d,0x3d,0x69,0x3f,0x76,0x3a,0x79,0x6e,0x28,0x67,0x75,0x28,0x76,0x29,0x2c, 0x30,0x29,0x2c,0x67,0x3d,0x67,0x3d,0x3d,0x3d,0x69,0x3f,0x67,0x3a,0x67,0x75,0x28, 0x67,0x29,0x2c,0x62,0x2d,0x3d,0x75,0x3f,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3a,0x30,0x2c,0x74,0x26,0x66,0x29,0x7b,0x76,0x61,0x72,0x20,0x79,0x3d,0x6f,0x2c, 0x5f,0x3d,0x75,0x3b,0x6f,0x3d,0x75,0x3d,0x69,0x7d,0x76,0x61,0x72,0x20,0x77,0x3d, 0x6d,0x3f,0x69,0x3a,0x75,0x69,0x28,0x65,0x29,0x2c,0x4f,0x3d,0x5b,0x65,0x2c,0x74, 0x2c,0x72,0x2c,0x6f,0x2c,0x75,0x2c,0x79,0x2c,0x5f,0x2c,0x68,0x2c,0x76,0x2c,0x67, 0x5d,0x3b,0x69,0x66,0x28,0x77,0x26,0x26,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x31,0x5d, 0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x2c,0x6f,0x3d,0x6e,0x7c,0x72,0x2c,0x69,0x3d, 0x6f,0x3c,0x31,0x33,0x31,0x2c,0x61,0x3d,0x72,0x3d,0x3d,0x64,0x26,0x26,0x38,0x3d, 0x3d,0x6e,0x7c,0x7c,0x72,0x3d,0x3d,0x64,0x26,0x26,0x6e,0x3d,0x3d,0x70,0x26,0x26, 0x65,0x5b,0x37,0x5d,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x74,0x5b,0x38, 0x5d,0x7c,0x7c,0x33,0x38,0x34,0x3d,0x3d,0x72,0x26,0x26,0x74,0x5b,0x37,0x5d,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x3d,0x74,0x5b,0x38,0x5d,0x26,0x26,0x38,0x3d, 0x3d,0x6e,0x3b,0x69,0x66,0x28,0x21,0x69,0x26,0x26,0x21,0x61,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3b,0x31,0x26,0x72,0x26,0x26,0x28,0x65,0x5b,0x32,0x5d, 0x3d,0x74,0x5b,0x32,0x5d,0x2c,0x6f,0x7c,0x3d,0x31,0x26,0x6e,0x3f,0x30,0x3a,0x34, 0x29,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74,0x5b,0x33,0x5d,0x3b,0x69,0x66,0x28, 0x75,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x65,0x5b,0x33,0x5d,0x3b,0x65,0x5b, 0x33,0x5d,0x3d,0x6c,0x3f,0x41,0x6f,0x28,0x6c,0x2c,0x75,0x2c,0x74,0x5b,0x34,0x5d, 0x29,0x3a,0x75,0x2c,0x65,0x5b,0x34,0x5d,0x3d,0x6c,0x3f,0x66,0x6e,0x28,0x65,0x5b, 0x33,0x5d,0x2c,0x63,0x29,0x3a,0x74,0x5b,0x34,0x5d,0x7d,0x28,0x75,0x3d,0x74,0x5b, 0x35,0x5d,0x29,0x26,0x26,0x28,0x6c,0x3d,0x65,0x5b,0x35,0x5d,0x2c,0x65,0x5b,0x35, 0x5d,0x3d,0x6c,0x3f,0x54,0x6f,0x28,0x6c,0x2c,0x75,0x2c,0x74,0x5b,0x36,0x5d,0x29, 0x3a,0x75,0x2c,0x65,0x5b,0x36,0x5d,0x3d,0x6c,0x3f,0x66,0x6e,0x28,0x65,0x5b,0x35, 0x5d,0x2c,0x63,0x29,0x3a,0x74,0x5b,0x36,0x5d,0x29,0x3b,0x28,0x75,0x3d,0x74,0x5b, 0x37,0x5d,0x29,0x26,0x26,0x28,0x65,0x5b,0x37,0x5d,0x3d,0x75,0x29,0x3b,0x72,0x26, 0x64,0x26,0x26,0x28,0x65,0x5b,0x38,0x5d,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x5b,0x38,0x5d,0x3f,0x74,0x5b,0x38,0x5d,0x3a,0x5f,0x6e,0x28,0x65,0x5b,0x38,0x5d, 0x2c,0x74,0x5b,0x38,0x5d,0x29,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x5b, 0x39,0x5d,0x26,0x26,0x28,0x65,0x5b,0x39,0x5d,0x3d,0x74,0x5b,0x39,0x5d,0x29,0x3b, 0x65,0x5b,0x30,0x5d,0x3d,0x74,0x5b,0x30,0x5d,0x2c,0x65,0x5b,0x31,0x5d,0x3d,0x6f, 0x7d,0x28,0x4f,0x2c,0x77,0x29,0x2c,0x65,0x3d,0x4f,0x5b,0x30,0x5d,0x2c,0x74,0x3d, 0x4f,0x5b,0x31,0x5d,0x2c,0x72,0x3d,0x4f,0x5b,0x32,0x5d,0x2c,0x6f,0x3d,0x4f,0x5b, 0x33,0x5d,0x2c,0x75,0x3d,0x4f,0x5b,0x34,0x5d,0x2c,0x21,0x28,0x67,0x3d,0x4f,0x5b, 0x39,0x5d,0x3d,0x4f,0x5b,0x39,0x5d,0x3d,0x3d,0x3d,0x69,0x3f,0x6d,0x3f,0x30,0x3a, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x79,0x6e,0x28,0x4f,0x5b,0x39,0x5d, 0x2d,0x62,0x2c,0x30,0x29,0x29,0x26,0x26,0x32,0x34,0x26,0x74,0x26,0x26,0x28,0x74, 0x26,0x3d,0x2d,0x32,0x35,0x29,0x2c,0x74,0x26,0x26,0x31,0x21,0x3d,0x74,0x29,0x78, 0x3d,0x38,0x3d,0x3d,0x74,0x7c,0x7c,0x74,0x3d,0x3d,0x6c,0x3f,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x42,0x6f,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x75,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x63,0x3d,0x6e,0x28,0x75,0x29,0x2c,0x6c,0x3d, 0x75,0x2c,0x73,0x3d,0x6c,0x69,0x28,0x61,0x29,0x3b,0x6c,0x2d,0x2d,0x3b,0x29,0x63, 0x5b,0x6c,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6c,0x5d, 0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x75,0x3c,0x33,0x26,0x26,0x63,0x5b,0x30,0x5d, 0x21,0x3d,0x3d,0x73,0x26,0x26,0x63,0x5b,0x75,0x2d,0x31,0x5d,0x21,0x3d,0x3d,0x73, 0x3f,0x5b,0x5d,0x3a,0x66,0x6e,0x28,0x63,0x2c,0x73,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x75,0x2d,0x3d,0x66,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3c, 0x72,0x3f,0x59,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x57,0x6f,0x2c,0x61,0x2e,0x70,0x6c, 0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x69,0x2c,0x63,0x2c,0x66,0x2c, 0x69,0x2c,0x69,0x2c,0x72,0x2d,0x75,0x29,0x3a,0x6b,0x74,0x28,0x74,0x68,0x69,0x73, 0x26,0x26,0x74,0x68,0x69,0x73,0x21,0x3d,0x3d,0x68,0x74,0x26,0x26,0x74,0x68,0x69, 0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x61,0x3f,0x6f, 0x3a,0x65,0x2c,0x74,0x68,0x69,0x73,0x2c,0x63,0x29,0x7d,0x7d,0x28,0x65,0x2c,0x74, 0x2c,0x67,0x29,0x3a,0x74,0x21,0x3d,0x73,0x26,0x26,0x33,0x33,0x21,0x3d,0x74,0x7c, 0x7c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x57,0x6f,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x69,0x2c,0x4f,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d, 0x31,0x26,0x74,0x2c,0x61,0x3d,0x42,0x6f,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x75,0x3d,0x2d,0x31,0x2c,0x63,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c, 0x6c,0x3d,0x2d,0x31,0x2c,0x73,0x3d,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c, 0x66,0x3d,0x6e,0x28,0x73,0x2b,0x63,0x29,0x2c,0x64,0x3d,0x74,0x68,0x69,0x73,0x26, 0x26,0x74,0x68,0x69,0x73,0x21,0x3d,0x3d,0x68,0x74,0x26,0x26,0x74,0x68,0x69,0x73, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x74,0x3f,0x61,0x3a, 0x65,0x3b,0x2b,0x2b,0x6c,0x3c,0x73,0x3b,0x29,0x66,0x5b,0x6c,0x5d,0x3d,0x6f,0x5b, 0x6c,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x63,0x2d,0x2d,0x3b,0x29,0x66,0x5b,0x6c, 0x2b,0x2b,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x2b,0x2b, 0x75,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x64,0x2c,0x69, 0x3f,0x72,0x3a,0x74,0x68,0x69,0x73,0x2c,0x66,0x29,0x7d,0x7d,0x28,0x65,0x2c,0x74, 0x2c,0x72,0x2c,0x6f,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x76,0x61,0x72,0x20,0x78, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x31,0x26,0x74,0x2c,0x6f,0x3d,0x42,0x6f,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x74,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x68, 0x69,0x73,0x26,0x26,0x74,0x68,0x69,0x73,0x21,0x3d,0x3d,0x68,0x74,0x26,0x26,0x74, 0x68,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x74, 0x3f,0x6f,0x3a,0x65,0x29,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x72,0x3f,0x6e,0x3a, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x7d,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x52,0x69,0x28,0x28,0x77,0x3f,0x74,0x6f,0x3a,0x44,0x69,0x29,0x28,0x78,0x2c,0x4f, 0x29,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x69,0x7c,0x7c,0x57,0x61,0x28,0x65,0x2c,0x44, 0x65,0x5b,0x6e,0x5d,0x29,0x26,0x26,0x21,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x72,0x2c,0x6e,0x29,0x3f,0x74,0x3a,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x74,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x28,0x65,0x29,0x26,0x26, 0x6e,0x75,0x28,0x74,0x29,0x26,0x26,0x28,0x61,0x2e,0x73,0x65,0x74,0x28,0x74,0x2c, 0x65,0x29,0x2c,0x24,0x72,0x28,0x65,0x2c,0x74,0x2c,0x69,0x2c,0x74,0x69,0x2c,0x61, 0x29,0x2c,0x61,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x29,0x29,0x2c,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x69,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x75,0x28,0x65,0x29,0x3f,0x69,0x3a,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x69,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d, 0x31,0x26,0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6c, 0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x63,0x21,0x3d, 0x6c,0x26,0x26,0x21,0x28,0x75,0x26,0x26,0x6c,0x3e,0x63,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x61,0x2e,0x67,0x65, 0x74,0x28,0x65,0x29,0x2c,0x66,0x3d,0x61,0x2e,0x67,0x65,0x74,0x28,0x74,0x29,0x3b, 0x69,0x66,0x28,0x73,0x26,0x26,0x66,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73, 0x3d,0x3d,0x74,0x26,0x26,0x66,0x3d,0x3d,0x65,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d, 0x2d,0x31,0x2c,0x70,0x3d,0x21,0x30,0x2c,0x68,0x3d,0x32,0x26,0x6e,0x3f,0x6e,0x65, 0x77,0x20,0x59,0x6e,0x3a,0x69,0x3b,0x66,0x6f,0x72,0x28,0x61,0x2e,0x73,0x65,0x74, 0x28,0x65,0x2c,0x74,0x29,0x2c,0x61,0x2e,0x73,0x65,0x74,0x28,0x74,0x2c,0x65,0x29, 0x3b,0x2b,0x2b,0x64,0x3c,0x63,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x76,0x3d,0x65, 0x5b,0x64,0x5d,0x2c,0x67,0x3d,0x74,0x5b,0x64,0x5d,0x3b,0x69,0x66,0x28,0x72,0x29, 0x76,0x61,0x72,0x20,0x6d,0x3d,0x75,0x3f,0x72,0x28,0x67,0x2c,0x76,0x2c,0x64,0x2c, 0x74,0x2c,0x65,0x2c,0x61,0x29,0x3a,0x72,0x28,0x76,0x2c,0x67,0x2c,0x64,0x2c,0x65, 0x2c,0x74,0x2c,0x61,0x29,0x3b,0x69,0x66,0x28,0x6d,0x21,0x3d,0x3d,0x69,0x29,0x7b, 0x69,0x66,0x28,0x6d,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x3b,0x70,0x3d, 0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x69,0x66,0x28,0x68,0x29,0x7b,0x69, 0x66,0x28,0x21,0x4d,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x6e,0x28,0x68,0x2c, 0x74,0x29,0x26,0x26,0x28,0x76,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x6f,0x28,0x76,0x2c, 0x65,0x2c,0x6e,0x2c,0x72,0x2c,0x61,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x68,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x7d,0x29,0x29,0x29,0x7b,0x70, 0x3d,0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20, 0x69,0x66,0x28,0x76,0x21,0x3d,0x3d,0x67,0x26,0x26,0x21,0x6f,0x28,0x76,0x2c,0x67, 0x2c,0x6e,0x2c,0x72,0x2c,0x61,0x29,0x29,0x7b,0x70,0x3d,0x21,0x31,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x64,0x65, 0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x2c,0x61,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65, 0x28,0x74,0x29,0x2c,0x70,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f, 0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x69,0x28,0x43, 0x69,0x28,0x65,0x2c,0x69,0x2c,0x71,0x69,0x29,0x2c,0x65,0x2b,0x22,0x22,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x69,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x72,0x28,0x65,0x2c,0x4e,0x75,0x2c,0x68,0x69, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x69,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x72,0x28,0x65,0x2c,0x49,0x75,0x2c, 0x76,0x69,0x29,0x7d,0x76,0x61,0x72,0x20,0x75,0x69,0x3d,0x50,0x6e,0x3f,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x50,0x6e,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7d,0x3a,0x73,0x63,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x69,0x28,0x65,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2b,0x22, 0x22,0x2c,0x6e,0x3d,0x44,0x6e,0x5b,0x74,0x5d,0x2c,0x72,0x3d,0x52,0x65,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x44,0x6e,0x2c,0x74,0x29,0x3f,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3a,0x30,0x3b,0x72,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x6e,0x5b,0x72,0x5d,0x2c,0x69,0x3d,0x6f,0x2e,0x66,0x75,0x6e,0x63,0x3b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x69,0x7c,0x7c,0x69,0x3d,0x3d,0x65,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x6e,0x61,0x6d,0x65,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6c,0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x52,0x65,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x55,0x6e,0x2c,0x22,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f, 0x6c,0x64,0x65,0x72,0x22,0x29,0x3f,0x55,0x6e,0x3a,0x65,0x29,0x2e,0x70,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x73,0x69,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x55,0x6e,0x2e, 0x69,0x74,0x65,0x72,0x61,0x74,0x65,0x65,0x7c,0x7c,0x61,0x63,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3d,0x65,0x3d,0x3d,0x3d,0x61,0x63,0x3f,0x4c,0x72,0x3a, 0x65,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3f,0x65,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x29,0x3a, 0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x69,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72, 0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d, 0x74,0x7c,0x7c,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d,0x74,0x3f, 0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x21,0x3d,0x3d,0x65,0x3a, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7d,0x28,0x74,0x29,0x3f,0x6e,0x5b,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x3f,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3a,0x22,0x68,0x61,0x73,0x68, 0x22,0x5d,0x3a,0x6e,0x2e,0x6d,0x61,0x70,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x64,0x69,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x74,0x3d,0x4e,0x75,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x6e,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74, 0x5b,0x6e,0x5d,0x2c,0x6f,0x3d,0x65,0x5b,0x72,0x5d,0x3b,0x74,0x5b,0x6e,0x5d,0x3d, 0x5b,0x72,0x2c,0x6f,0x2c,0x6b,0x69,0x28,0x6f,0x29,0x5d,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x69, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x69,0x3a,0x65,0x5b,0x74,0x5d,0x7d, 0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x72,0x28, 0x6e,0x29,0x3f,0x6e,0x3a,0x69,0x7d,0x76,0x61,0x72,0x20,0x68,0x69,0x3d,0x67,0x74, 0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x5b,0x5d,0x3a,0x28, 0x65,0x3d,0x6b,0x65,0x28,0x65,0x29,0x2c,0x50,0x74,0x28,0x67,0x74,0x28,0x65,0x29, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4b,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74, 0x29,0x7d,0x29,0x29,0x29,0x7d,0x3a,0x6d,0x63,0x2c,0x76,0x69,0x3d,0x67,0x74,0x3f, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x65,0x3b,0x29,0x52,0x74,0x28,0x74, 0x2c,0x68,0x69,0x28,0x65,0x29,0x29,0x2c,0x65,0x3d,0x47,0x65,0x28,0x65,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x3a,0x6d,0x63,0x2c,0x67,0x69,0x3d, 0x6b,0x72,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x69,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d, 0x2d,0x31,0x2c,0x6f,0x3d,0x28,0x74,0x3d,0x77,0x6f,0x28,0x74,0x2c,0x65,0x29,0x29, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x69,0x3d,0x21,0x31,0x3b,0x2b,0x2b,0x72, 0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x42,0x69,0x28,0x74,0x5b, 0x72,0x5d,0x29,0x3b,0x69,0x66,0x28,0x21,0x28,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x65,0x26,0x26,0x6e,0x28,0x65,0x2c,0x61,0x29,0x29,0x29,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x65,0x3d,0x65,0x5b,0x61,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x69,0x7c,0x7c,0x2b,0x2b,0x72,0x21,0x3d,0x6f,0x3f,0x69,0x3a,0x21,0x21,0x28,0x6f, 0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x29,0x26,0x26,0x74,0x75,0x28,0x6f,0x29,0x26,0x26,0x5f,0x69,0x28, 0x61,0x2c,0x6f,0x29,0x26,0x26,0x28,0x47,0x61,0x28,0x65,0x29,0x7c,0x7c,0x56,0x61, 0x28,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x69, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x7c,0x7c,0x6a,0x69,0x28,0x65, 0x29,0x3f,0x7b,0x7d,0x3a,0x57,0x6e,0x28,0x47,0x65,0x28,0x65,0x29,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x69,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x47,0x61,0x28,0x65,0x29,0x7c,0x7c,0x56,0x61,0x28,0x65, 0x29,0x7c,0x7c,0x21,0x21,0x28,0x51,0x65,0x26,0x26,0x65,0x26,0x26,0x65,0x5b,0x51, 0x65,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x69,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x28,0x74,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x3a,0x74,0x29,0x26,0x26,0x28,0x22,0x6e, 0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x6e,0x7c,0x7c,0x22,0x73,0x79,0x6d,0x62, 0x6f,0x6c,0x22,0x21,0x3d,0x6e,0x26,0x26,0x77,0x65,0x2e,0x74,0x65,0x73,0x74,0x28, 0x65,0x29,0x29,0x26,0x26,0x65,0x3e,0x2d,0x31,0x26,0x26,0x65,0x25,0x31,0x3d,0x3d, 0x30,0x26,0x26,0x65,0x3c,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x21,0x6e,0x75, 0x28,0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x21,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x72, 0x3f,0x4b,0x61,0x28,0x6e,0x29,0x26,0x26,0x5f,0x69,0x28,0x74,0x2c,0x6e,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d, 0x3d,0x72,0x26,0x26,0x74,0x20,0x69,0x6e,0x20,0x6e,0x29,0x26,0x26,0x57,0x61,0x28, 0x6e,0x5b,0x74,0x5d,0x2c,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4f,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x47,0x61,0x28,0x65, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x6e,0x26,0x26,0x22, 0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x21,0x3d,0x6e,0x26,0x26,0x22,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x22,0x21,0x3d,0x6e,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x65,0x26,0x26,0x21,0x73,0x75,0x28,0x65,0x29,0x29,0x7c,0x7c,0x28,0x72,0x65,0x2e, 0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x7c,0x7c,0x21,0x6e,0x65,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x29,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26,0x65, 0x20,0x69,0x6e,0x20,0x6b,0x65,0x28,0x74,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x78,0x69,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x63,0x69,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x55,0x6e,0x5b,0x74,0x5d,0x3b,0x69,0x66, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x6e,0x7c,0x7c,0x21,0x28,0x74,0x20,0x69,0x6e,0x20,0x56,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x75,0x69,0x28, 0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x72,0x26,0x26,0x65,0x3d, 0x3d,0x3d,0x72,0x5b,0x30,0x5d,0x7d,0x28,0x6a,0x6e,0x26,0x26,0x67,0x69,0x28,0x6e, 0x65,0x77,0x20,0x6a,0x6e,0x28,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x42, 0x75,0x66,0x66,0x65,0x72,0x28,0x31,0x29,0x29,0x29,0x21,0x3d,0x4c,0x7c,0x7c,0x6b, 0x6e,0x26,0x26,0x67,0x69,0x28,0x6e,0x65,0x77,0x20,0x6b,0x6e,0x29,0x21,0x3d,0x6b, 0x7c,0x7c,0x53,0x6e,0x26,0x26,0x67,0x69,0x28,0x53,0x6e,0x2e,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x28,0x29,0x29,0x21,0x3d,0x41,0x7c,0x7c,0x43,0x6e,0x26,0x26,0x67, 0x69,0x28,0x6e,0x65,0x77,0x20,0x43,0x6e,0x29,0x21,0x3d,0x50,0x7c,0x7c,0x41,0x6e, 0x26,0x26,0x67,0x69,0x28,0x6e,0x65,0x77,0x20,0x41,0x6e,0x29,0x21,0x3d,0x49,0x29, 0x26,0x26,0x28,0x67,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6b,0x72,0x28,0x65,0x29,0x2c,0x6e,0x3d, 0x74,0x3d,0x3d,0x43,0x3f,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x3a,0x69,0x2c,0x72,0x3d,0x6e,0x3f,0x7a,0x69,0x28,0x6e,0x29,0x3a,0x22, 0x22,0x3b,0x69,0x66,0x28,0x72,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x72,0x29, 0x7b,0x63,0x61,0x73,0x65,0x20,0x4e,0x6e,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4c,0x3b,0x63,0x61,0x73,0x65,0x20,0x49,0x6e,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x52,0x6e,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x41,0x3b,0x63,0x61,0x73,0x65,0x20,0x4c,0x6e,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x50,0x3b,0x63,0x61,0x73,0x65,0x20,0x46,0x6e,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x49,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x29, 0x3b,0x76,0x61,0x72,0x20,0x45,0x69,0x3d,0x4e,0x65,0x3f,0x5a,0x61,0x3a,0x62,0x63, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x69,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d, 0x3d,0x3d,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x44,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6b,0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x21,0x6e,0x75,0x28,0x65,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e, 0x26,0x26,0x28,0x6e,0x5b,0x65,0x5d,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x21, 0x3d,0x3d,0x69,0x7c,0x7c,0x65,0x20,0x69,0x6e,0x20,0x6b,0x65,0x28,0x6e,0x29,0x29, 0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x69,0x28,0x65, 0x2c,0x74,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x79, 0x6e,0x28,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2d,0x31,0x3a,0x74,0x2c,0x30,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x69,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x79,0x6e, 0x28,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x74,0x2c,0x30,0x29,0x2c,0x75, 0x3d,0x6e,0x28,0x61,0x29,0x3b,0x2b,0x2b,0x69,0x3c,0x61,0x3b,0x29,0x75,0x5b,0x69, 0x5d,0x3d,0x6f,0x5b,0x74,0x2b,0x69,0x5d,0x3b,0x69,0x3d,0x2d,0x31,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x63,0x3d,0x6e,0x28,0x74,0x2b,0x31,0x29,0x3b,0x2b, 0x2b,0x69,0x3c,0x74,0x3b,0x29,0x63,0x5b,0x69,0x5d,0x3d,0x6f,0x5b,0x69,0x5d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x5b,0x74,0x5d,0x3d,0x72,0x28,0x75,0x29, 0x2c,0x6b,0x74,0x28,0x65,0x2c,0x74,0x68,0x69,0x73,0x2c,0x63,0x29,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c, 0x32,0x3f,0x65,0x3a,0x45,0x72,0x28,0x65,0x2c,0x6f,0x6f,0x28,0x74,0x2c,0x30,0x2c, 0x2d,0x31,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x69, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x5f,0x6e,0x28,0x74,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x29,0x2c,0x6f,0x3d,0x50,0x6f,0x28,0x65, 0x29,0x3b,0x72,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x74,0x5b, 0x72,0x5d,0x3b,0x65,0x5b,0x72,0x5d,0x3d,0x5f,0x69,0x28,0x61,0x2c,0x6e,0x29,0x3f, 0x6f,0x5b,0x61,0x5d,0x3a,0x69,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x69,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x22,0x21,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x5b,0x74,0x5d, 0x29,0x26,0x26,0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x21,0x3d, 0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d,0x7d,0x76,0x61, 0x72,0x20,0x44,0x69,0x3d,0x4c,0x69,0x28,0x74,0x6f,0x29,0x2c,0x4e,0x69,0x3d,0x64, 0x74,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x74,0x2e,0x73,0x65,0x74,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x49,0x69,0x3d,0x4c, 0x69,0x28,0x6e,0x6f,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52, 0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74, 0x2b,0x22,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x69,0x28,0x65,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28, 0x21,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x2d,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x72, 0x5d,0x3d,0x28,0x6e,0x3e,0x31,0x3f,0x22,0x26,0x20,0x22,0x3a,0x22,0x22,0x29,0x2b, 0x74,0x5b,0x72,0x5d,0x2c,0x74,0x3d,0x74,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x6e,0x3e, 0x32,0x3f,0x22,0x2c,0x20,0x22,0x3a,0x22,0x20,0x22,0x29,0x2c,0x65,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x6c,0x65,0x2c,0x22,0x7b,0x5c,0x6e,0x2f,0x2a,0x20, 0x5b,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x22,0x2b, 0x74,0x2b,0x22,0x5d,0x20,0x2a,0x2f,0x5c,0x6e,0x22,0x29,0x7d,0x28,0x72,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x43,0x74,0x28,0x62,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x5f,0x2e,0x22, 0x2b,0x6e,0x5b,0x30,0x5d,0x3b,0x74,0x26,0x6e,0x5b,0x31,0x5d,0x26,0x26,0x21,0x44, 0x74,0x28,0x65,0x2c,0x72,0x29,0x26,0x26,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x72, 0x29,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x73,0x6f,0x72,0x74,0x28,0x29,0x7d,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x73,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3f,0x74,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74, 0x28,0x66,0x65,0x29,0x3a,0x5b,0x5d,0x7d,0x28,0x72,0x29,0x2c,0x6e,0x29,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x69,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x30,0x2c,0x6e,0x3d,0x30,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x77,0x6e,0x28,0x29,0x2c,0x6f,0x3d,0x31,0x36,0x2d,0x28,0x72, 0x2d,0x6e,0x29,0x3b,0x69,0x66,0x28,0x6e,0x3d,0x72,0x2c,0x6f,0x3e,0x30,0x29,0x7b, 0x69,0x66,0x28,0x2b,0x2b,0x74,0x3e,0x3d,0x38,0x30,0x30,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x7d, 0x65,0x6c,0x73,0x65,0x20,0x74,0x3d,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x69,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46, 0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c, 0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x72,0x2d,0x31, 0x3b,0x66,0x6f,0x72,0x28,0x74,0x3d,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x72,0x3a,0x74, 0x3b,0x2b,0x2b,0x6e,0x3c,0x74,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x59, 0x72,0x28,0x6e,0x2c,0x6f,0x29,0x2c,0x75,0x3d,0x65,0x5b,0x61,0x5d,0x3b,0x65,0x5b, 0x61,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x2c,0x65,0x5b,0x6e,0x5d,0x3d,0x75,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x74, 0x2c,0x65,0x7d,0x76,0x61,0x72,0x20,0x4d,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4c,0x61,0x28,0x65, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x35,0x30,0x30,0x3d,0x3d,0x3d,0x6e,0x2e,0x73,0x69,0x7a, 0x65,0x26,0x26,0x6e,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x2c,0x65,0x7d,0x29, 0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x63,0x61,0x63,0x68,0x65,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x34,0x36,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x61,0x72,0x43,0x6f, 0x64,0x65,0x41,0x74,0x28,0x30,0x29,0x26,0x26,0x74,0x2e,0x70,0x75,0x73,0x68,0x28, 0x22,0x22,0x29,0x2c,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x6f,0x65, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x72, 0x2c,0x6f,0x29,0x7b,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x3f,0x6f,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x68,0x65,0x2c,0x22,0x24,0x31,0x22,0x29,0x3a, 0x6e,0x7c,0x7c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x74,0x7d,0x29,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x69,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x7c,0x7c,0x73,0x75,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2b,0x22,0x22,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x30,0x22,0x3d,0x3d,0x74,0x26,0x26,0x31,0x2f,0x65,0x3d, 0x3d,0x2d,0x31,0x2f,0x30,0x3f,0x22,0x2d,0x30,0x22,0x3a,0x74,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x69,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x49,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x7d,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2b,0x22,0x22,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29, 0x7b,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x55,0x69,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x20, 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x56,0x6e,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x48,0x6e,0x28,0x65,0x2e,0x5f,0x5f, 0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x2c,0x65,0x2e,0x5f,0x5f,0x63,0x68, 0x61,0x69,0x6e,0x5f,0x5f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x3d,0x50,0x6f,0x28,0x65, 0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x29,0x2c,0x74,0x2e, 0x5f,0x5f,0x69,0x6e,0x64,0x65,0x78,0x5f,0x5f,0x3d,0x65,0x2e,0x5f,0x5f,0x69,0x6e, 0x64,0x65,0x78,0x5f,0x5f,0x2c,0x74,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73, 0x5f,0x5f,0x3d,0x65,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x5f,0x5f,0x2c, 0x74,0x7d,0x76,0x61,0x72,0x20,0x57,0x69,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x59,0x61,0x28,0x65,0x29,0x3f,0x64,0x72,0x28,0x65,0x2c,0x62,0x72,0x28, 0x74,0x2c,0x31,0x2c,0x59,0x61,0x2c,0x21,0x30,0x29,0x29,0x3a,0x5b,0x5d,0x7d,0x29, 0x29,0x2c,0x24,0x69,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4a,0x69,0x28, 0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x61,0x28,0x6e,0x29,0x26, 0x26,0x28,0x6e,0x3d,0x69,0x29,0x2c,0x59,0x61,0x28,0x65,0x29,0x3f,0x64,0x72,0x28, 0x65,0x2c,0x62,0x72,0x28,0x74,0x2c,0x31,0x2c,0x59,0x61,0x2c,0x21,0x30,0x29,0x2c, 0x73,0x69,0x28,0x6e,0x2c,0x32,0x29,0x29,0x3a,0x5b,0x5d,0x7d,0x29,0x29,0x2c,0x48, 0x69,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4a,0x69,0x28,0x74,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x61,0x28,0x6e,0x29,0x26,0x26,0x28,0x6e, 0x3d,0x69,0x29,0x2c,0x59,0x61,0x28,0x65,0x29,0x3f,0x64,0x72,0x28,0x65,0x2c,0x62, 0x72,0x28,0x74,0x2c,0x31,0x2c,0x59,0x61,0x2c,0x21,0x30,0x29,0x2c,0x69,0x2c,0x6e, 0x29,0x3a,0x5b,0x5d,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x56,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x21,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x2d,0x31,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e, 0x3f,0x30,0x3a,0x67,0x75,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x3c,0x30,0x26,0x26,0x28,0x6f,0x3d,0x79,0x6e,0x28,0x72,0x2b,0x6f,0x2c,0x30, 0x29,0x29,0x2c,0x55,0x74,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c, 0x6f,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x69,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69, 0x66,0x28,0x21,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x72,0x2d,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x6f,0x3d,0x67,0x75,0x28,0x6e,0x29,0x2c,0x6f, 0x3d,0x6e,0x3c,0x30,0x3f,0x79,0x6e,0x28,0x72,0x2b,0x6f,0x2c,0x30,0x29,0x3a,0x5f, 0x6e,0x28,0x6f,0x2c,0x72,0x2d,0x31,0x29,0x29,0x2c,0x55,0x74,0x28,0x65,0x2c,0x73, 0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x6f,0x2c,0x21,0x30,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x3f,0x62,0x72,0x28,0x65,0x2c,0x31,0x29,0x3a,0x5b, 0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x69,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3f,0x65,0x5b,0x30,0x5d,0x3a,0x69,0x7d,0x76,0x61,0x72,0x20,0x59, 0x69,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x49,0x74,0x28,0x65,0x2c,0x79,0x6f,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x26,0x26,0x74,0x5b,0x30,0x5d,0x3d,0x3d,0x3d,0x65,0x5b,0x30,0x5d,0x3f,0x54,0x72, 0x28,0x74,0x29,0x3a,0x5b,0x5d,0x7d,0x29,0x29,0x2c,0x51,0x69,0x3d,0x58,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x4a,0x69,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x49,0x74,0x28,0x65,0x2c, 0x79,0x6f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x4a, 0x69,0x28,0x6e,0x29,0x3f,0x74,0x3d,0x69,0x3a,0x6e,0x2e,0x70,0x6f,0x70,0x28,0x29, 0x2c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x6e,0x5b,0x30,0x5d,0x3d, 0x3d,0x3d,0x65,0x5b,0x30,0x5d,0x3f,0x54,0x72,0x28,0x6e,0x2c,0x73,0x69,0x28,0x74, 0x2c,0x32,0x29,0x29,0x3a,0x5b,0x5d,0x7d,0x29,0x29,0x2c,0x58,0x69,0x3d,0x58,0x72, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x4a,0x69,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x49,0x74,0x28,0x65, 0x2c,0x79,0x6f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x3f,0x74,0x3a,0x69,0x29,0x26,0x26,0x6e,0x2e,0x70,0x6f,0x70,0x28,0x29, 0x2c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x6e,0x5b,0x30,0x5d,0x3d, 0x3d,0x3d,0x65,0x5b,0x30,0x5d,0x3f,0x54,0x72,0x28,0x6e,0x2c,0x69,0x2c,0x74,0x29, 0x3a,0x5b,0x5d,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x4a,0x69,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3f,0x65,0x5b,0x74,0x2d,0x31,0x5d,0x3a,0x69, 0x7d,0x76,0x61,0x72,0x20,0x5a,0x69,0x3d,0x58,0x72,0x28,0x65,0x61,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x26,0x26,0x74,0x26,0x26,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f, 0x71,0x72,0x28,0x65,0x2c,0x74,0x29,0x3a,0x65,0x7d,0x76,0x61,0x72,0x20,0x74,0x61, 0x3d,0x6f,0x69,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x75,0x72, 0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4b,0x72,0x28, 0x65,0x2c,0x49,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x69,0x28,0x65,0x2c, 0x6e,0x29,0x3f,0x2b,0x65,0x3a,0x65,0x7d,0x29,0x29,0x2e,0x73,0x6f,0x72,0x74,0x28, 0x43,0x6f,0x29,0x29,0x2c,0x72,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6e,0x61,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x45,0x6e,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x29,0x7d,0x76,0x61,0x72,0x20,0x72,0x61,0x3d,0x58,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x6f,0x28,0x62,0x72,0x28,0x65,0x2c,0x31,0x2c,0x59,0x61,0x2c, 0x21,0x30,0x29,0x29,0x7d,0x29,0x29,0x2c,0x6f,0x61,0x3d,0x58,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4a,0x69,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x61, 0x28,0x74,0x29,0x26,0x26,0x28,0x74,0x3d,0x69,0x29,0x2c,0x66,0x6f,0x28,0x62,0x72, 0x28,0x65,0x2c,0x31,0x2c,0x59,0x61,0x2c,0x21,0x30,0x29,0x2c,0x73,0x69,0x28,0x74, 0x2c,0x32,0x29,0x29,0x7d,0x29,0x29,0x2c,0x69,0x61,0x3d,0x58,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4a,0x69,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x74,0x3f,0x74,0x3a,0x69,0x2c,0x66,0x6f,0x28,0x62,0x72,0x28,0x65, 0x2c,0x31,0x2c,0x59,0x61,0x2c,0x21,0x30,0x29,0x2c,0x69,0x2c,0x74,0x29,0x7d,0x29, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x61,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x21,0x65,0x7c,0x7c,0x21,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x50,0x74,0x28,0x65, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x59,0x61,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d, 0x79,0x6e,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x29,0x2c,0x21, 0x30,0x7d,0x29,0x29,0x2c,0x51,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x74, 0x28,0x65,0x2c,0x47,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x21,0x65,0x7c,0x7c,0x21,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x61, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x74,0x3f,0x6e,0x3a,0x49,0x74,0x28,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74, 0x28,0x74,0x2c,0x69,0x2c,0x65,0x29,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x63, 0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x61,0x28,0x65,0x29, 0x3f,0x64,0x72,0x28,0x65,0x2c,0x74,0x29,0x3a,0x5b,0x5d,0x7d,0x29,0x29,0x2c,0x6c, 0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x6f,0x28,0x50,0x74,0x28,0x65, 0x2c,0x59,0x61,0x29,0x29,0x7d,0x29,0x29,0x2c,0x73,0x61,0x3d,0x58,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x4a,0x69,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59, 0x61,0x28,0x74,0x29,0x26,0x26,0x28,0x74,0x3d,0x69,0x29,0x2c,0x6d,0x6f,0x28,0x50, 0x74,0x28,0x65,0x2c,0x59,0x61,0x29,0x2c,0x73,0x69,0x28,0x74,0x2c,0x32,0x29,0x29, 0x7d,0x29,0x29,0x2c,0x66,0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4a,0x69,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74, 0x3f,0x74,0x3a,0x69,0x2c,0x6d,0x6f,0x28,0x50,0x74,0x28,0x65,0x2c,0x59,0x61,0x29, 0x2c,0x69,0x2c,0x74,0x29,0x7d,0x29,0x29,0x2c,0x64,0x61,0x3d,0x58,0x72,0x28,0x61, 0x61,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x74,0x3e,0x31,0x3f,0x65, 0x5b,0x74,0x2d,0x31,0x5d,0x3a,0x69,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x6e,0x3f,0x28,0x65,0x2e,0x70,0x6f,0x70,0x28,0x29,0x2c,0x6e, 0x29,0x3a,0x69,0x2c,0x75,0x61,0x28,0x65,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x55,0x6e,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x2e,0x5f,0x5f,0x63,0x68,0x61,0x69,0x6e,0x5f,0x5f,0x3d,0x21,0x30,0x2c, 0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x29,0x7d,0x76, 0x61,0x72,0x20,0x67,0x61,0x3d,0x6f,0x69,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x74,0x3f,0x65,0x5b,0x30,0x5d,0x3a,0x30,0x2c, 0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64, 0x5f,0x5f,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x72,0x28,0x74,0x2c,0x65,0x29,0x7d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x74,0x3e,0x31,0x7c,0x7c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x72,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x6f,0x66,0x20,0x56,0x6e,0x26,0x26,0x5f,0x69,0x28,0x6e,0x29,0x3f,0x28, 0x28,0x72,0x3d,0x72,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x6e,0x2c,0x2b,0x6e,0x2b, 0x28,0x74,0x3f,0x31,0x3a,0x30,0x29,0x29,0x29,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x73,0x5f,0x5f,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x66,0x75,0x6e,0x63, 0x3a,0x76,0x61,0x2c,0x61,0x72,0x67,0x73,0x3a,0x5b,0x6f,0x5d,0x2c,0x74,0x68,0x69, 0x73,0x41,0x72,0x67,0x3a,0x69,0x7d,0x29,0x2c,0x6e,0x65,0x77,0x20,0x48,0x6e,0x28, 0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x63,0x68,0x61,0x69,0x6e,0x5f,0x5f, 0x29,0x2e,0x74,0x68,0x72,0x75,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x21,0x65, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x65,0x2e,0x70,0x75,0x73,0x68,0x28, 0x69,0x29,0x2c,0x65,0x7d,0x29,0x29,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x74,0x68, 0x72,0x75,0x28,0x6f,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x6d,0x61,0x3d, 0x4e,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29, 0x3f,0x2b,0x2b,0x65,0x5b,0x6e,0x5d,0x3a,0x61,0x72,0x28,0x65,0x2c,0x6e,0x2c,0x31, 0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x62,0x61,0x3d,0x7a,0x6f,0x28,0x56, 0x69,0x29,0x2c,0x79,0x61,0x3d,0x7a,0x6f,0x28,0x47,0x69,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x47,0x61,0x28,0x65,0x29,0x3f,0x43,0x74,0x3a,0x70,0x72, 0x29,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x47,0x61,0x28,0x65,0x29,0x3f,0x41,0x74,0x3a,0x68,0x72, 0x29,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x7d,0x76,0x61,0x72, 0x20,0x4f,0x61,0x3d,0x4e,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x65,0x2c,0x6e,0x29,0x3f,0x65,0x5b,0x6e,0x5d,0x2e,0x70,0x75,0x73,0x68,0x28,0x74, 0x29,0x3a,0x61,0x72,0x28,0x65,0x2c,0x6e,0x2c,0x5b,0x74,0x5d,0x29,0x7d,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x78,0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x2d,0x31,0x2c,0x69,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2c,0x61,0x3d,0x4b,0x61, 0x28,0x65,0x29,0x3f,0x6e,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3a, 0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x72,0x28,0x65,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x61,0x5b,0x2b,0x2b, 0x6f,0x5d,0x3d,0x69,0x3f,0x6b,0x74,0x28,0x74,0x2c,0x65,0x2c,0x72,0x29,0x3a,0x50, 0x72,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7d,0x29,0x29,0x2c,0x61,0x7d,0x29,0x29, 0x2c,0x45,0x61,0x3d,0x4e,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x61,0x72,0x28,0x65,0x2c,0x6e,0x2c,0x74, 0x29,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x61, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x47,0x61,0x28, 0x65,0x29,0x3f,0x49,0x74,0x3a,0x7a,0x72,0x29,0x28,0x65,0x2c,0x73,0x69,0x28,0x74, 0x2c,0x33,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x6b,0x61,0x3d,0x4e,0x6f,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x65,0x5b,0x6e,0x3f,0x30,0x3a,0x31,0x5d,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29, 0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x5b,0x5b,0x5d,0x2c,0x5b,0x5d,0x5d,0x7d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x53,0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x3e,0x31,0x26,0x26,0x77,0x69,0x28,0x65,0x2c,0x74,0x5b,0x30, 0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x29,0x3f,0x74,0x3d,0x5b,0x5d,0x3a,0x6e,0x3e,0x32, 0x26,0x26,0x77,0x69,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x74, 0x5b,0x32,0x5d,0x29,0x26,0x26,0x28,0x74,0x3d,0x5b,0x74,0x5b,0x30,0x5d,0x5d,0x29, 0x2c,0x56,0x72,0x28,0x65,0x2c,0x62,0x72,0x28,0x74,0x2c,0x31,0x29,0x2c,0x5b,0x5d, 0x29,0x7d,0x29,0x29,0x2c,0x43,0x61,0x3d,0x6c,0x74,0x7c,0x7c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x74, 0x2e,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x6e,0x3f,0x69,0x3a,0x74,0x2c,0x74, 0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3a,0x74,0x2c,0x5a,0x6f,0x28,0x65,0x2c,0x64,0x2c,0x69,0x2c, 0x69,0x2c,0x69,0x2c,0x69,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x54,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b, 0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x41,0x65,0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x67,0x75,0x28,0x65,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x2d,0x65,0x3e,0x30,0x26,0x26,0x28, 0x6e,0x3d,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x29,0x2c,0x65,0x3c,0x3d,0x31,0x26, 0x26,0x28,0x74,0x3d,0x69,0x29,0x2c,0x6e,0x7d,0x7d,0x76,0x61,0x72,0x20,0x50,0x61, 0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x31,0x3b,0x69,0x66,0x28, 0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x66,0x6e,0x28,0x6e,0x2c,0x6c,0x69,0x28,0x50,0x61,0x29,0x29,0x3b,0x72,0x7c,0x3d, 0x73,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x6f,0x28,0x65,0x2c,0x72,0x2c, 0x74,0x2c,0x6e,0x2c,0x6f,0x29,0x7d,0x29,0x29,0x2c,0x44,0x61,0x3d,0x58,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x33,0x3b,0x69,0x66,0x28,0x6e,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x66,0x6e,0x28,0x6e, 0x2c,0x6c,0x69,0x28,0x44,0x61,0x29,0x29,0x3b,0x72,0x7c,0x3d,0x73,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x5a,0x6f,0x28,0x74,0x2c,0x72,0x2c,0x65,0x2c,0x6e,0x2c, 0x6f,0x29,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e, 0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f, 0x2c,0x75,0x2c,0x63,0x2c,0x6c,0x2c,0x73,0x2c,0x66,0x3d,0x30,0x2c,0x64,0x3d,0x21, 0x31,0x2c,0x70,0x3d,0x21,0x31,0x2c,0x68,0x3d,0x21,0x30,0x3b,0x69,0x66,0x28,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x41,0x65, 0x28,0x61,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x28,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x2c,0x61,0x3d,0x6f,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x6f,0x3d,0x69,0x2c,0x66,0x3d,0x74,0x2c,0x63, 0x3d,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x61,0x2c,0x6e,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x3d,0x65,0x2c,0x6c,0x3d,0x4e,0x69,0x28,0x62,0x2c,0x74,0x29, 0x2c,0x64,0x3f,0x76,0x28,0x65,0x29,0x3a,0x63,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6d,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2d, 0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x3d,0x3d,0x3d,0x69,0x7c,0x7c, 0x6e,0x3e,0x3d,0x74,0x7c,0x7c,0x6e,0x3c,0x30,0x7c,0x7c,0x70,0x26,0x26,0x65,0x2d, 0x66,0x3e,0x3d,0x75,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x43,0x61,0x28,0x29,0x3b,0x69,0x66,0x28, 0x6d,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x79,0x28,0x65,0x29, 0x3b,0x6c,0x3d,0x4e,0x69,0x28,0x62,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2d,0x28,0x65,0x2d,0x73, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x3f,0x5f,0x6e,0x28,0x6e,0x2c, 0x75,0x2d,0x28,0x65,0x2d,0x66,0x29,0x29,0x3a,0x6e,0x7d,0x28,0x65,0x29,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6c,0x3d,0x69,0x2c,0x68,0x26,0x26,0x72,0x3f,0x76,0x28, 0x65,0x29,0x3a,0x28,0x72,0x3d,0x6f,0x3d,0x69,0x2c,0x63,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x43,0x61,0x28,0x29,0x2c,0x6e,0x3d,0x6d,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x72, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6f,0x3d,0x74,0x68,0x69, 0x73,0x2c,0x73,0x3d,0x65,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x6c,0x3d,0x3d,0x3d, 0x69,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x28,0x73,0x29,0x3b,0x69,0x66, 0x28,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x6f,0x28,0x6c,0x29,0x2c, 0x6c,0x3d,0x4e,0x69,0x28,0x62,0x2c,0x74,0x29,0x2c,0x76,0x28,0x73,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x6c,0x3d, 0x4e,0x69,0x28,0x62,0x2c,0x74,0x29,0x29,0x2c,0x63,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3d,0x62,0x75,0x28,0x74,0x29,0x7c,0x7c,0x30,0x2c,0x6e,0x75,0x28, 0x6e,0x29,0x26,0x26,0x28,0x64,0x3d,0x21,0x21,0x6e,0x2e,0x6c,0x65,0x61,0x64,0x69, 0x6e,0x67,0x2c,0x75,0x3d,0x28,0x70,0x3d,0x22,0x6d,0x61,0x78,0x57,0x61,0x69,0x74, 0x22,0x69,0x6e,0x20,0x6e,0x29,0x3f,0x79,0x6e,0x28,0x62,0x75,0x28,0x6e,0x2e,0x6d, 0x61,0x78,0x57,0x61,0x69,0x74,0x29,0x7c,0x7c,0x30,0x2c,0x74,0x29,0x3a,0x75,0x2c, 0x68,0x3d,0x22,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67,0x22,0x69,0x6e,0x20,0x6e, 0x3f,0x21,0x21,0x6e,0x2e,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67,0x3a,0x68,0x29, 0x2c,0x5f,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x6c,0x21,0x3d,0x3d,0x69,0x26,0x26,0x45,0x6f,0x28,0x6c, 0x29,0x2c,0x66,0x3d,0x30,0x2c,0x72,0x3d,0x73,0x3d,0x6f,0x3d,0x6c,0x3d,0x69,0x7d, 0x2c,0x5f,0x2e,0x66,0x6c,0x75,0x73,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x3d,0x3d,0x3d,0x69, 0x3f,0x63,0x3a,0x79,0x28,0x43,0x61,0x28,0x29,0x29,0x7d,0x2c,0x5f,0x7d,0x76,0x61, 0x72,0x20,0x49,0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x72, 0x28,0x65,0x2c,0x31,0x2c,0x74,0x29,0x7d,0x29,0x29,0x2c,0x52,0x61,0x3d,0x58,0x72, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x72,0x28,0x65,0x2c,0x62,0x75, 0x28,0x74,0x29,0x7c,0x7c,0x30,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x41, 0x65,0x28,0x61,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6f,0x3d,0x74,0x3f,0x74,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x3a,0x72,0x5b,0x30,0x5d, 0x2c,0x69,0x3d,0x6e,0x2e,0x63,0x61,0x63,0x68,0x65,0x3b,0x69,0x66,0x28,0x69,0x2e, 0x68,0x61,0x73,0x28,0x6f,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x2e, 0x67,0x65,0x74,0x28,0x6f,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x61,0x63,0x68,0x65,0x3d,0x69,0x2e,0x73,0x65, 0x74,0x28,0x6f,0x2c,0x61,0x29,0x7c,0x7c,0x69,0x2c,0x61,0x7d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x61,0x63,0x68,0x65,0x3d,0x6e,0x65,0x77,0x28, 0x4c,0x61,0x2e,0x43,0x61,0x63,0x68,0x65,0x7c,0x7c,0x4b,0x6e,0x29,0x2c,0x6e,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x61,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x41,0x65,0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x68,0x69,0x73,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x74, 0x5b,0x30,0x5d,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x74, 0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x33, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x68,0x69,0x73,0x2c,0x74,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x74,0x5b, 0x32,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x74,0x29,0x7d,0x7d,0x4c,0x61,0x2e,0x43, 0x61,0x63,0x68,0x65,0x3d,0x4b,0x6e,0x3b,0x76,0x61,0x72,0x20,0x4d,0x61,0x3d,0x4f, 0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x28,0x74,0x3d,0x31,0x3d,0x3d,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x47,0x61,0x28,0x74,0x5b,0x30,0x5d,0x29,0x3f, 0x49,0x74,0x28,0x74,0x5b,0x30,0x5d,0x2c,0x4a,0x74,0x28,0x73,0x69,0x28,0x29,0x29, 0x29,0x3a,0x49,0x74,0x28,0x62,0x72,0x28,0x74,0x2c,0x31,0x29,0x2c,0x4a,0x74,0x28, 0x73,0x69,0x28,0x29,0x29,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x2d,0x31,0x2c,0x69,0x3d,0x5f,0x6e,0x28,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2c,0x6e,0x29,0x3b,0x2b,0x2b,0x6f,0x3c,0x69,0x3b,0x29,0x72,0x5b,0x6f,0x5d,0x3d, 0x74,0x5b,0x6f,0x5d,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x72, 0x5b,0x6f,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x65, 0x2c,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x42, 0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x66,0x6e,0x28,0x74,0x2c,0x6c, 0x69,0x28,0x42,0x61,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x6f, 0x28,0x65,0x2c,0x73,0x2c,0x69,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x2c,0x7a, 0x61,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x66,0x6e,0x28,0x74,0x2c,0x6c, 0x69,0x28,0x7a,0x61,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x6f, 0x28,0x65,0x2c,0x66,0x2c,0x69,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x2c,0x55, 0x61,0x3d,0x6f,0x69,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x6f,0x28,0x65,0x2c, 0x70,0x2c,0x69,0x2c,0x69,0x2c,0x69,0x2c,0x74,0x29,0x7d,0x29,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x65,0x21,0x3d, 0x3d,0x65,0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x7d,0x76,0x61,0x72,0x20,0x24,0x61, 0x3d,0x4b,0x6f,0x28,0x53,0x72,0x29,0x2c,0x48,0x61,0x3d,0x4b,0x6f,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3e,0x3d,0x74,0x7d,0x29,0x29,0x2c,0x56,0x61,0x3d,0x44, 0x72,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x7d,0x28,0x29, 0x29,0x3f,0x44,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x52, 0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22,0x63,0x61,0x6c,0x6c,0x65,0x65, 0x22,0x29,0x26,0x26,0x21,0x4b,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22, 0x63,0x61,0x6c,0x6c,0x65,0x65,0x22,0x29,0x7d,0x2c,0x47,0x61,0x3d,0x6e,0x2e,0x69, 0x73,0x41,0x72,0x72,0x61,0x79,0x2c,0x71,0x61,0x3d,0x5f,0x74,0x3f,0x4a,0x74,0x28, 0x5f,0x74,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x6b,0x72, 0x28,0x65,0x29,0x3d,0x3d,0x52,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4b,0x61,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x74,0x75,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x26,0x26,0x21,0x5a,0x61,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x59,0x61,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x4b,0x61,0x28,0x65,0x29,0x7d,0x76, 0x61,0x72,0x20,0x51,0x61,0x3d,0x62,0x74,0x7c,0x7c,0x62,0x63,0x2c,0x58,0x61,0x3d, 0x77,0x74,0x3f,0x4a,0x74,0x28,0x77,0x74,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28, 0x65,0x29,0x26,0x26,0x6b,0x72,0x28,0x65,0x29,0x3d,0x3d,0x4f,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x61,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x21,0x72,0x75,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x6b,0x72,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x3d,0x3d,0x78,0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x44,0x4f,0x4d,0x45,0x78,0x63,0x65,0x70,0x74,0x69,0x6f,0x6e,0x5d,0x22, 0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x26, 0x26,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x26,0x26,0x21,0x61,0x75,0x28,0x65,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x61,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x21,0x6e,0x75,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6b,0x72,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d,0x45,0x7c,0x7c,0x74,0x3d,0x3d,0x6a, 0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x73,0x79,0x6e,0x63, 0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x50,0x72,0x6f,0x78,0x79,0x5d,0x22,0x3d, 0x3d,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x75,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x3d,0x3d,0x67, 0x75,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x75, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62,0x65, 0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x3e, 0x2d,0x31,0x26,0x26,0x65,0x25,0x31,0x3d,0x3d,0x30,0x26,0x26,0x65,0x3c,0x3d,0x76, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x75,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x28, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x76,0x61, 0x72,0x20,0x6f,0x75,0x3d,0x4f,0x74,0x3f,0x4a,0x74,0x28,0x4f,0x74,0x29,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x67,0x69,0x28,0x65,0x29,0x3d,0x3d, 0x6b,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x75,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x72,0x75,0x28,0x65, 0x29,0x26,0x26,0x6b,0x72,0x28,0x65,0x29,0x3d,0x3d,0x53,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x61,0x75,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x72, 0x75,0x28,0x65,0x29,0x7c,0x7c,0x6b,0x72,0x28,0x65,0x29,0x21,0x3d,0x43,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x47,0x65, 0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x52, 0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72, 0x75,0x63,0x74,0x6f,0x72,0x22,0x29,0x26,0x26,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x6e,0x26,0x26,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20, 0x6e,0x26,0x26,0x49,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x29,0x3d,0x3d,0x42, 0x65,0x7d,0x76,0x61,0x72,0x20,0x75,0x75,0x3d,0x78,0x74,0x3f,0x4a,0x74,0x28,0x78, 0x74,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x6b,0x72,0x28, 0x65,0x29,0x3d,0x3d,0x54,0x7d,0x3b,0x76,0x61,0x72,0x20,0x63,0x75,0x3d,0x45,0x74, 0x3f,0x4a,0x74,0x28,0x45,0x74,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29, 0x26,0x26,0x67,0x69,0x28,0x65,0x29,0x3d,0x3d,0x50,0x7d,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6c,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x7c,0x7c,0x21,0x47,0x61,0x28,0x65,0x29,0x26,0x26,0x72,0x75,0x28, 0x65,0x29,0x26,0x26,0x6b,0x72,0x28,0x65,0x29,0x3d,0x3d,0x44,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x7c,0x7c,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x6b,0x72,0x28, 0x65,0x29,0x3d,0x3d,0x4e,0x7d,0x76,0x61,0x72,0x20,0x66,0x75,0x3d,0x6a,0x74,0x3f, 0x4a,0x74,0x28,0x6a,0x74,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26, 0x26,0x74,0x75,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x21, 0x21,0x75,0x74,0x5b,0x6b,0x72,0x28,0x65,0x29,0x5d,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x64,0x75,0x3d,0x4b,0x6f,0x28,0x42,0x72,0x29,0x2c,0x70,0x75,0x3d,0x4b,0x6f,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3c,0x3d,0x74,0x7d,0x29,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x75,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x69,0x66,0x28,0x4b, 0x61,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x75,0x28,0x65, 0x29,0x3f,0x76,0x6e,0x28,0x65,0x29,0x3a,0x50,0x6f,0x28,0x65,0x29,0x3b,0x69,0x66, 0x28,0x58,0x65,0x26,0x26,0x65,0x5b,0x58,0x65,0x5d,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x5b,0x5d,0x3b,0x21,0x28,0x74, 0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b, 0x29,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x28,0x65,0x5b,0x58,0x65,0x5d, 0x28,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x67,0x69,0x28,0x65,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x3d,0x6b,0x3f,0x6c,0x6e,0x3a,0x74, 0x3d,0x3d,0x50,0x3f,0x64,0x6e,0x3a,0x57,0x75,0x29,0x28,0x65,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3f,0x28,0x65,0x3d,0x62,0x75,0x28,0x65,0x29,0x29,0x3d, 0x3d,0x3d,0x68,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x2d,0x31,0x2f,0x30,0x3f,0x31,0x37, 0x39,0x37,0x36,0x39,0x33,0x31,0x33,0x34,0x38,0x36,0x32,0x33,0x31,0x35,0x37,0x65, 0x32,0x39,0x32,0x2a,0x28,0x65,0x3c,0x30,0x3f,0x2d,0x31,0x3a,0x31,0x29,0x3a,0x65, 0x3d,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x30,0x3a,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x65, 0x3a,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x75,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x76,0x75,0x28,0x65,0x29,0x2c,0x6e,0x3d, 0x74,0x25,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x74, 0x3f,0x6e,0x3f,0x74,0x2d,0x6e,0x3a,0x74,0x3a,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6d,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3f,0x63,0x72,0x28,0x67,0x75,0x28,0x65,0x29,0x2c,0x30,0x2c,0x6d,0x29, 0x3a,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x75,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3b,0x69,0x66,0x28,0x73,0x75,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x67,0x3b,0x69,0x66,0x28,0x6e,0x75,0x28,0x65,0x29,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66,0x3f, 0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66,0x28,0x29,0x3a,0x65,0x3b,0x65,0x3d, 0x6e,0x75,0x28,0x74,0x29,0x3f,0x74,0x2b,0x22,0x22,0x3a,0x74,0x7d,0x69,0x66,0x28, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f, 0x65,0x3a,0x2b,0x65,0x3b,0x65,0x3d,0x58,0x74,0x28,0x65,0x29,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x62,0x65,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x7c,0x7c,0x5f,0x65,0x2e,0x74,0x65,0x73,0x74,0x28, 0x65,0x29,0x3f,0x66,0x74,0x28,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x32,0x29, 0x2c,0x6e,0x3f,0x32,0x3a,0x38,0x29,0x3a,0x6d,0x65,0x2e,0x74,0x65,0x73,0x74,0x28, 0x65,0x29,0x3f,0x67,0x3a,0x2b,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x79,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x6f, 0x28,0x65,0x2c,0x49,0x75,0x28,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x5f,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x22,0x22,0x3a,0x73,0x6f,0x28,0x65,0x29, 0x7d,0x76,0x61,0x72,0x20,0x77,0x75,0x3d,0x49,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6a,0x69,0x28, 0x74,0x29,0x7c,0x7c,0x4b,0x61,0x28,0x74,0x29,0x29,0x44,0x6f,0x28,0x74,0x2c,0x4e, 0x75,0x28,0x74,0x29,0x2c,0x65,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x74,0x29,0x52,0x65,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x29,0x26,0x26,0x6e,0x72,0x28,0x65,0x2c,0x6e, 0x2c,0x74,0x5b,0x6e,0x5d,0x29,0x7d,0x29,0x29,0x2c,0x4f,0x75,0x3d,0x49,0x6f,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x44, 0x6f,0x28,0x74,0x2c,0x49,0x75,0x28,0x74,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c, 0x78,0x75,0x3d,0x49,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x44,0x6f,0x28,0x74,0x2c,0x49,0x75, 0x28,0x74,0x29,0x2c,0x65,0x2c,0x72,0x29,0x7d,0x29,0x29,0x2c,0x45,0x75,0x3d,0x49, 0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7b,0x44,0x6f,0x28,0x74,0x2c,0x4e,0x75,0x28,0x74,0x29,0x2c, 0x65,0x2c,0x72,0x29,0x7d,0x29,0x29,0x2c,0x6a,0x75,0x3d,0x6f,0x69,0x28,0x75,0x72, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6b,0x75,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x3d,0x6b,0x65,0x28, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x74,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x72,0x3e,0x32,0x3f,0x74,0x5b,0x32, 0x5d,0x3a,0x69,0x3b,0x66,0x6f,0x72,0x28,0x6f,0x26,0x26,0x77,0x69,0x28,0x74,0x5b, 0x30,0x5d,0x2c,0x74,0x5b,0x31,0x5d,0x2c,0x6f,0x29,0x26,0x26,0x28,0x72,0x3d,0x31, 0x29,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x61,0x3d,0x74,0x5b,0x6e,0x5d,0x2c,0x75,0x3d,0x49,0x75,0x28,0x61,0x29,0x2c, 0x63,0x3d,0x2d,0x31,0x2c,0x6c,0x3d,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x2b,0x2b,0x63,0x3c,0x6c,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x75,0x5b, 0x63,0x5d,0x2c,0x66,0x3d,0x65,0x5b,0x73,0x5d,0x3b,0x28,0x66,0x3d,0x3d,0x3d,0x69, 0x7c,0x7c,0x57,0x61,0x28,0x66,0x2c,0x44,0x65,0x5b,0x73,0x5d,0x29,0x26,0x26,0x21, 0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x73,0x29,0x29,0x26,0x26,0x28, 0x65,0x5b,0x73,0x5d,0x3d,0x61,0x5b,0x73,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x29,0x29,0x2c,0x53,0x75,0x3d,0x58,0x72,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x69,0x2c,0x74,0x69,0x29,0x2c,0x6b,0x74, 0x28,0x4c,0x75,0x2c,0x69,0x2c,0x65,0x29,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x43,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x69,0x3a,0x45, 0x72,0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d, 0x3d,0x3d,0x69,0x3f,0x6e,0x3a,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x41,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x6d,0x69,0x28,0x65,0x2c,0x74,0x2c, 0x41,0x72,0x29,0x7d,0x76,0x61,0x72,0x20,0x54,0x75,0x3d,0x24,0x6f,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x26,0x26,0x28,0x74,0x3d,0x4d,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x74,0x29,0x29,0x2c,0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x7d,0x29,0x2c,0x6e, 0x63,0x28,0x69,0x63,0x29,0x29,0x2c,0x50,0x75,0x3d,0x24,0x6f,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x74,0x6f,0x53,0x74, 0x72,0x69,0x6e,0x67,0x26,0x26,0x28,0x74,0x3d,0x4d,0x65,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x74,0x29,0x29,0x2c,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74, 0x29,0x3f,0x65,0x5b,0x74,0x5d,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x29,0x3a,0x65, 0x5b,0x74,0x5d,0x3d,0x5b,0x6e,0x5d,0x7d,0x29,0x2c,0x73,0x69,0x29,0x2c,0x44,0x75, 0x3d,0x58,0x72,0x28,0x50,0x72,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4e,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4b,0x61, 0x28,0x65,0x29,0x3f,0x58,0x6e,0x28,0x65,0x29,0x3a,0x46,0x72,0x28,0x65,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x75,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4b,0x61,0x28,0x65,0x29,0x3f,0x58,0x6e,0x28,0x65, 0x2c,0x21,0x30,0x29,0x3a,0x4d,0x72,0x28,0x65,0x29,0x7d,0x76,0x61,0x72,0x20,0x52, 0x75,0x3d,0x49,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x24,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d, 0x29,0x29,0x2c,0x4c,0x75,0x3d,0x49,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x24,0x72,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7d,0x29,0x29,0x2c,0x46,0x75,0x3d,0x6f,0x69, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x21,0x31,0x3b,0x74,0x3d,0x49,0x74,0x28,0x74,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3d,0x77,0x6f,0x28,0x74,0x2c,0x65,0x29,0x2c,0x72,0x7c,0x7c,0x28,0x72, 0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x29,0x2c,0x74,0x7d,0x29, 0x29,0x2c,0x44,0x6f,0x28,0x65,0x2c,0x61,0x69,0x28,0x65,0x29,0x2c,0x6e,0x29,0x2c, 0x72,0x26,0x26,0x28,0x6e,0x3d,0x6c,0x72,0x28,0x6e,0x2c,0x37,0x2c,0x6e,0x69,0x29, 0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2d,0x2d,0x3b,0x29,0x70,0x6f,0x28,0x6e,0x2c,0x74, 0x5b,0x6f,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x4d,0x75,0x3d,0x6f,0x69,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x7b,0x7d,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x47,0x72,0x28,0x65,0x2c,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x75, 0x28,0x65,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x28,0x65,0x2c,0x74,0x29,0x7d,0x29, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x75,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x49,0x74,0x28, 0x61,0x69,0x28,0x65,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x73,0x69,0x28,0x74,0x29,0x2c,0x47, 0x72,0x28,0x65,0x2c,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x2c, 0x6e,0x5b,0x30,0x5d,0x29,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x7a,0x75,0x3d, 0x4a,0x6f,0x28,0x4e,0x75,0x29,0x2c,0x55,0x75,0x3d,0x4a,0x6f,0x28,0x49,0x75,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x75,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x5b, 0x5d,0x3a,0x5a,0x74,0x28,0x65,0x2c,0x4e,0x75,0x28,0x65,0x29,0x29,0x7d,0x76,0x61, 0x72,0x20,0x24,0x75,0x3d,0x4d,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3d,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28, 0x29,0x2c,0x65,0x2b,0x28,0x6e,0x3f,0x48,0x75,0x28,0x74,0x29,0x3a,0x74,0x29,0x7d, 0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x48,0x75,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x75,0x28,0x5f,0x75,0x28,0x65, 0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x75,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x29,0x26, 0x26,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x4f,0x65,0x2c,0x6f,0x6e, 0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x65,0x74,0x2c,0x22,0x22,0x29, 0x7d,0x76,0x61,0x72,0x20,0x47,0x75,0x3d,0x4d,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2b,0x28,0x6e,0x3f,0x22,0x2d,0x22,0x3a,0x22,0x22,0x29,0x2b, 0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d, 0x29,0x29,0x2c,0x71,0x75,0x3d,0x4d,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2b,0x28,0x6e,0x3f,0x22,0x20,0x22,0x3a,0x22,0x22,0x29,0x2b,0x74,0x2e, 0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x29,0x29, 0x2c,0x4b,0x75,0x3d,0x46,0x6f,0x28,0x22,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43, 0x61,0x73,0x65,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x59,0x75,0x3d,0x4d,0x6f,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2b,0x28,0x6e,0x3f,0x22,0x5f,0x22, 0x3a,0x22,0x22,0x29,0x2b,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61, 0x73,0x65,0x28,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x51,0x75,0x3d,0x4d, 0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2b,0x28,0x6e,0x3f,0x22, 0x20,0x22,0x3a,0x22,0x22,0x29,0x2b,0x4a,0x75,0x28,0x74,0x29,0x7d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x58,0x75,0x3d,0x4d,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2b,0x28,0x6e,0x3f,0x22,0x20,0x22,0x3a,0x22,0x22,0x29,0x2b,0x74, 0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x29, 0x29,0x2c,0x4a,0x75,0x3d,0x46,0x6f,0x28,0x22,0x74,0x6f,0x55,0x70,0x70,0x65,0x72, 0x43,0x61,0x73,0x65,0x22,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x5a,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x2c,0x28,0x74,0x3d,0x6e,0x3f,0x69,0x3a, 0x74,0x29,0x3d,0x3d,0x3d,0x69,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x74,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x29,0x7d,0x28,0x65,0x29,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61, 0x74,0x63,0x68,0x28,0x6e,0x74,0x29,0x7c,0x7c,0x5b,0x5d,0x7d,0x28,0x65,0x29,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x64,0x65,0x29,0x7c,0x7c, 0x5b,0x5d,0x7d,0x28,0x65,0x29,0x3a,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x74, 0x29,0x7c,0x7c,0x5b,0x5d,0x7d,0x76,0x61,0x72,0x20,0x65,0x63,0x3d,0x58,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74, 0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x65,0x2c,0x69, 0x2c,0x74,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4a,0x61,0x28,0x6e,0x29,0x3f,0x6e,0x3a,0x6e,0x65,0x77,0x20, 0x6f,0x28,0x6e,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x74,0x63,0x3d,0x6f,0x69,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x43,0x74,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x74,0x3d,0x42,0x69,0x28,0x74,0x29,0x2c,0x61, 0x72,0x28,0x65,0x2c,0x74,0x2c,0x50,0x61,0x28,0x65,0x5b,0x74,0x5d,0x2c,0x65,0x29, 0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6e,0x63,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x7d,0x76,0x61,0x72,0x20,0x72,0x63,0x3d,0x55,0x6f,0x28,0x29, 0x2c,0x6f,0x63,0x3d,0x55,0x6f,0x28,0x21,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x69,0x63,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x63,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x72,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x3f,0x65,0x3a,0x6c,0x72,0x28,0x65,0x2c,0x31,0x29,0x29,0x7d,0x76,0x61,0x72,0x20, 0x75,0x63,0x3d,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50, 0x72,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x63,0x63,0x3d, 0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x72,0x28,0x65, 0x2c,0x6e,0x2c,0x74,0x29,0x7d,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6c,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x4e,0x75,0x28,0x74,0x29,0x2c,0x6f,0x3d,0x78,0x72,0x28,0x74,0x2c, 0x72,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x7c,0x7c,0x6e,0x75,0x28,0x74, 0x29,0x26,0x26,0x28,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7c,0x7c,0x21,0x72, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7c,0x7c,0x28,0x6e,0x3d,0x74,0x2c,0x74, 0x3d,0x65,0x2c,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6f,0x3d,0x78,0x72,0x28,0x74, 0x2c,0x4e,0x75,0x28,0x74,0x29,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x21, 0x28,0x6e,0x75,0x28,0x6e,0x29,0x26,0x26,0x22,0x63,0x68,0x61,0x69,0x6e,0x22,0x69, 0x6e,0x20,0x6e,0x29,0x7c,0x7c,0x21,0x21,0x6e,0x2e,0x63,0x68,0x61,0x69,0x6e,0x2c, 0x61,0x3d,0x5a,0x61,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x43, 0x74,0x28,0x6f,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x65,0x5b,0x6e,0x5d, 0x3d,0x72,0x2c,0x61,0x26,0x26,0x28,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x5b,0x6e,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x63,0x68, 0x61,0x69,0x6e,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x69,0x7c,0x7c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72, 0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x29,0x2c,0x6f,0x3d,0x6e,0x2e,0x5f,0x5f,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x3d,0x50,0x6f,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x66,0x75,0x6e, 0x63,0x3a,0x72,0x2c,0x61,0x72,0x67,0x73,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2c,0x74,0x68,0x69,0x73,0x41,0x72,0x67,0x3a,0x65,0x7d,0x29,0x2c,0x6e, 0x2e,0x5f,0x5f,0x63,0x68,0x61,0x69,0x6e,0x5f,0x5f,0x3d,0x74,0x2c,0x6e,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x65,0x2c, 0x52,0x74,0x28,0x5b,0x74,0x68,0x69,0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29, 0x5d,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x29,0x7d,0x29,0x7d, 0x29,0x29,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x63, 0x28,0x29,0x7b,0x7d,0x76,0x61,0x72,0x20,0x66,0x63,0x3d,0x56,0x6f,0x28,0x49,0x74, 0x29,0x2c,0x64,0x63,0x3d,0x56,0x6f,0x28,0x54,0x74,0x29,0x2c,0x70,0x63,0x3d,0x56, 0x6f,0x28,0x4d,0x74,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68, 0x63,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x69,0x28,0x65, 0x29,0x3f,0x47,0x74,0x28,0x42,0x69,0x28,0x65,0x29,0x29,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x45,0x72,0x28,0x74,0x2c,0x65,0x29,0x7d,0x7d,0x28,0x65,0x29,0x7d,0x76, 0x61,0x72,0x20,0x76,0x63,0x3d,0x71,0x6f,0x28,0x29,0x2c,0x67,0x63,0x3d,0x71,0x6f, 0x28,0x21,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x63, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x62,0x63,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x7d,0x76,0x61,0x72,0x20,0x79,0x63,0x3d,0x48,0x6f,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2b,0x74,0x7d,0x29,0x2c,0x30,0x29,0x2c,0x5f,0x63,0x3d,0x51, 0x6f,0x28,0x22,0x63,0x65,0x69,0x6c,0x22,0x29,0x2c,0x77,0x63,0x3d,0x48,0x6f,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2f,0x74,0x7d,0x29,0x2c,0x31,0x29,0x2c,0x4f, 0x63,0x3d,0x51,0x6f,0x28,0x22,0x66,0x6c,0x6f,0x6f,0x72,0x22,0x29,0x3b,0x76,0x61, 0x72,0x20,0x78,0x63,0x3d,0x48,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2a, 0x74,0x7d,0x29,0x2c,0x31,0x29,0x2c,0x45,0x63,0x3d,0x51,0x6f,0x28,0x22,0x72,0x6f, 0x75,0x6e,0x64,0x22,0x29,0x2c,0x6a,0x63,0x3d,0x48,0x6f,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2d,0x74,0x7d,0x29,0x2c,0x30,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x55,0x6e,0x2e,0x61,0x66,0x74,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x41,0x65,0x28,0x61,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x67,0x75,0x28,0x65,0x29,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x2d,0x2d, 0x65,0x3c,0x31,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x29,0x7d,0x7d,0x2c,0x55,0x6e,0x2e,0x61,0x72,0x79,0x3d,0x41,0x61,0x2c,0x55, 0x6e,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x3d,0x77,0x75,0x2c,0x55,0x6e,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x49,0x6e,0x3d,0x4f,0x75,0x2c,0x55,0x6e,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x49,0x6e,0x57,0x69,0x74,0x68,0x3d,0x78,0x75,0x2c,0x55,0x6e, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x57,0x69,0x74,0x68,0x3d,0x45,0x75,0x2c,0x55, 0x6e,0x2e,0x61,0x74,0x3d,0x6a,0x75,0x2c,0x55,0x6e,0x2e,0x62,0x65,0x66,0x6f,0x72, 0x65,0x3d,0x54,0x61,0x2c,0x55,0x6e,0x2e,0x62,0x69,0x6e,0x64,0x3d,0x50,0x61,0x2c, 0x55,0x6e,0x2e,0x62,0x69,0x6e,0x64,0x41,0x6c,0x6c,0x3d,0x74,0x63,0x2c,0x55,0x6e, 0x2e,0x62,0x69,0x6e,0x64,0x4b,0x65,0x79,0x3d,0x44,0x61,0x2c,0x55,0x6e,0x2e,0x63, 0x61,0x73,0x74,0x41,0x72,0x72,0x61,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b, 0x5d,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x30,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x61,0x28,0x65, 0x29,0x3f,0x65,0x3a,0x5b,0x65,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x68,0x61,0x69, 0x6e,0x3d,0x68,0x61,0x2c,0x55,0x6e,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x7b,0x74,0x3d, 0x28,0x72,0x3f,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x72,0x29,0x3a,0x74,0x3d,0x3d, 0x3d,0x69,0x29,0x3f,0x31,0x3a,0x79,0x6e,0x28,0x67,0x75,0x28,0x74,0x29,0x2c,0x30, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x21,0x6f, 0x7c,0x7c,0x74,0x3c,0x31,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x61,0x3d,0x30,0x2c,0x75,0x3d,0x30,0x2c,0x63, 0x3d,0x6e,0x28,0x70,0x74,0x28,0x6f,0x2f,0x74,0x29,0x29,0x3b,0x61,0x3c,0x6f,0x3b, 0x29,0x63,0x5b,0x75,0x2b,0x2b,0x5d,0x3d,0x6f,0x6f,0x28,0x65,0x2c,0x61,0x2c,0x61, 0x2b,0x3d,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x7d,0x2c,0x55, 0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x61,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d, 0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x5b,0x5d, 0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65, 0x5b,0x74,0x5d,0x3b,0x69,0x26,0x26,0x28,0x6f,0x5b,0x72,0x2b,0x2b,0x5d,0x3d,0x69, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x2c,0x55,0x6e,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x21,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x3d,0x6e,0x28,0x65,0x2d,0x31,0x29,0x2c,0x72,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x30,0x5d,0x2c,0x6f,0x3d,0x65,0x3b,0x6f,0x2d,0x2d,0x3b,0x29, 0x74,0x5b,0x6f,0x2d,0x31,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x6f,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x74,0x28,0x47,0x61, 0x28,0x72,0x29,0x3f,0x50,0x6f,0x28,0x72,0x29,0x3a,0x5b,0x72,0x5d,0x2c,0x62,0x72, 0x28,0x74,0x2c,0x31,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x6f,0x6e,0x64,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x73,0x69,0x28,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3d,0x74,0x3f,0x49,0x74,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x5b,0x31,0x5d,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x41,0x65, 0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x6e,0x28,0x65,0x5b,0x30, 0x5d,0x29,0x2c,0x65,0x5b,0x31,0x5d,0x5d,0x7d,0x29,0x29,0x3a,0x5b,0x5d,0x2c,0x58, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x3b,0x2b,0x2b,0x72,0x3c, 0x74,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x5b,0x72,0x5d,0x3b,0x69, 0x66,0x28,0x6b,0x74,0x28,0x6f,0x5b,0x30,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2c,0x6e, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x6f,0x5b,0x31,0x5d, 0x2c,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x63,0x6f,0x6e,0x66,0x6f,0x72,0x6d,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4e, 0x75,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73, 0x72,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x28,0x6c,0x72,0x28,0x65,0x2c, 0x31,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x61,0x6e,0x74, 0x3d,0x6e,0x63,0x2c,0x55,0x6e,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x42,0x79,0x3d,0x6d, 0x61,0x2c,0x55,0x6e,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x57,0x6e,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x74,0x3f,0x6e,0x3a,0x69,0x72,0x28,0x6e,0x2c,0x74,0x29,0x7d,0x2c, 0x55,0x6e,0x2e,0x63,0x75,0x72,0x72,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x5a,0x6f,0x28,0x74,0x2c,0x38,0x2c,0x69,0x2c,0x69,0x2c,0x69,0x2c,0x69,0x2c, 0x69,0x2c,0x6e,0x3d,0x72,0x3f,0x69,0x3a,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d, 0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x6f,0x7d, 0x2c,0x55,0x6e,0x2e,0x63,0x75,0x72,0x72,0x79,0x52,0x69,0x67,0x68,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x5a,0x6f,0x28,0x74,0x2c,0x6c,0x2c,0x69,0x2c, 0x69,0x2c,0x69,0x2c,0x69,0x2c,0x69,0x2c,0x6e,0x3d,0x72,0x3f,0x69,0x3a,0x6e,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68, 0x6f,0x6c,0x64,0x65,0x72,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c, 0x64,0x65,0x72,0x2c,0x6f,0x7d,0x2c,0x55,0x6e,0x2e,0x64,0x65,0x62,0x6f,0x75,0x6e, 0x63,0x65,0x3d,0x4e,0x61,0x2c,0x55,0x6e,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x73,0x3d,0x6b,0x75,0x2c,0x55,0x6e,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73, 0x44,0x65,0x65,0x70,0x3d,0x53,0x75,0x2c,0x55,0x6e,0x2e,0x64,0x65,0x66,0x65,0x72, 0x3d,0x49,0x61,0x2c,0x55,0x6e,0x2e,0x64,0x65,0x6c,0x61,0x79,0x3d,0x52,0x61,0x2c, 0x55,0x6e,0x2e,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3d,0x57,0x69, 0x2c,0x55,0x6e,0x2e,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x42,0x79, 0x3d,0x24,0x69,0x2c,0x55,0x6e,0x2e,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63, 0x65,0x57,0x69,0x74,0x68,0x3d,0x48,0x69,0x2c,0x55,0x6e,0x2e,0x64,0x72,0x6f,0x70, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30, 0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x72,0x3f,0x6f,0x6f,0x28,0x65,0x2c,0x28,0x74,0x3d,0x6e,0x7c,0x7c,0x74,0x3d, 0x3d,0x3d,0x69,0x3f,0x31,0x3a,0x67,0x75,0x28,0x74,0x29,0x29,0x3c,0x30,0x3f,0x30, 0x3a,0x74,0x2c,0x72,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x64,0x72,0x6f, 0x70,0x52,0x69,0x67,0x68,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3f,0x6f,0x6f,0x28,0x65,0x2c,0x30,0x2c, 0x28,0x74,0x3d,0x72,0x2d,0x28,0x74,0x3d,0x6e,0x7c,0x7c,0x74,0x3d,0x3d,0x3d,0x69, 0x3f,0x31,0x3a,0x67,0x75,0x28,0x74,0x29,0x29,0x29,0x3c,0x30,0x3f,0x30,0x3a,0x74, 0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x52,0x69,0x67, 0x68,0x74,0x57,0x68,0x69,0x6c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x76,0x6f,0x28,0x65,0x2c,0x73,0x69, 0x28,0x74,0x2c,0x33,0x29,0x2c,0x21,0x30,0x2c,0x21,0x30,0x29,0x3a,0x5b,0x5d,0x7d, 0x2c,0x55,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x57,0x68,0x69,0x6c,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x76, 0x6f,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x21,0x30,0x29,0x3a, 0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x69,0x6c,0x6c,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3f, 0x28,0x6e,0x26,0x26,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x26,0x26,0x28,0x6e,0x3d,0x30,0x2c,0x72,0x3d,0x6f,0x29,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f, 0x72,0x28,0x28,0x6e,0x3d,0x67,0x75,0x28,0x6e,0x29,0x29,0x3c,0x30,0x26,0x26,0x28, 0x6e,0x3d,0x2d,0x6e,0x3e,0x6f,0x3f,0x30,0x3a,0x6f,0x2b,0x6e,0x29,0x2c,0x28,0x72, 0x3d,0x72,0x3d,0x3d,0x3d,0x69,0x7c,0x7c,0x72,0x3e,0x6f,0x3f,0x6f,0x3a,0x67,0x75, 0x28,0x72,0x29,0x29,0x3c,0x30,0x26,0x26,0x28,0x72,0x2b,0x3d,0x6f,0x29,0x2c,0x72, 0x3d,0x6e,0x3e,0x72,0x3f,0x30,0x3a,0x6d,0x75,0x28,0x72,0x29,0x3b,0x6e,0x3c,0x72, 0x3b,0x29,0x65,0x5b,0x6e,0x2b,0x2b,0x5d,0x3d,0x74,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x29,0x3a,0x5b, 0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x47,0x61,0x28,0x65,0x29,0x3f,0x50,0x74,0x3a,0x6d,0x72,0x29,0x28,0x65, 0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x6c, 0x61,0x74,0x4d,0x61,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x72,0x28,0x6a,0x61, 0x28,0x65,0x2c,0x74,0x29,0x2c,0x31,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x61, 0x74,0x4d,0x61,0x70,0x44,0x65,0x65,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x72, 0x28,0x6a,0x61,0x28,0x65,0x2c,0x74,0x29,0x2c,0x68,0x29,0x7d,0x2c,0x55,0x6e,0x2e, 0x66,0x6c,0x61,0x74,0x4d,0x61,0x70,0x44,0x65,0x70,0x74,0x68,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3d,0x6e,0x3d,0x3d,0x3d,0x69,0x3f,0x31,0x3a,0x67,0x75, 0x28,0x6e,0x29,0x2c,0x62,0x72,0x28,0x6a,0x61,0x28,0x65,0x2c,0x74,0x29,0x2c,0x6e, 0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x61,0x74,0x74,0x65,0x6e,0x3d,0x71,0x69, 0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x61,0x74,0x74,0x65,0x6e,0x44,0x65,0x65,0x70,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x3f,0x62,0x72,0x28,0x65,0x2c,0x68,0x29,0x3a,0x5b, 0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x61,0x74,0x74,0x65,0x6e,0x44,0x65,0x70, 0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3f,0x62,0x72,0x28,0x65, 0x2c,0x74,0x3d,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x31,0x3a,0x67,0x75,0x28,0x74,0x29, 0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x69,0x70,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x5a,0x6f,0x28,0x65,0x2c,0x35,0x31,0x32,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x66, 0x6c,0x6f,0x77,0x3d,0x72,0x63,0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x6f,0x77,0x52,0x69, 0x67,0x68,0x74,0x3d,0x6f,0x63,0x2c,0x55,0x6e,0x2e,0x66,0x72,0x6f,0x6d,0x50,0x61, 0x69,0x72,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x72,0x3d,0x7b,0x7d,0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x72,0x5b,0x6f,0x5b,0x30,0x5d, 0x5d,0x3d,0x6f,0x5b,0x31,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d, 0x2c,0x55,0x6e,0x2e,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x5b,0x5d,0x3a,0x78,0x72,0x28,0x65, 0x2c,0x4e,0x75,0x28,0x65,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x73,0x49,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x5b,0x5d,0x3a,0x78,0x72,0x28,0x65,0x2c,0x49,0x75,0x28,0x65,0x29, 0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x67,0x72,0x6f,0x75,0x70,0x42,0x79,0x3d,0x4f,0x61, 0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x29,0x3f,0x6f,0x6f,0x28,0x65,0x2c,0x30,0x2c,0x2d,0x31,0x29,0x3a,0x5b,0x5d, 0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x74,0x65,0x72,0x73,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x3d,0x59,0x69,0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x74,0x65,0x72,0x73,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x42,0x79,0x3d,0x51,0x69,0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x74, 0x65,0x72,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x57,0x69,0x74,0x68,0x3d,0x58,0x69, 0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x76,0x65,0x72,0x74,0x3d,0x54,0x75,0x2c,0x55,0x6e, 0x2e,0x69,0x6e,0x76,0x65,0x72,0x74,0x42,0x79,0x3d,0x50,0x75,0x2c,0x55,0x6e,0x2e, 0x69,0x6e,0x76,0x6f,0x6b,0x65,0x4d,0x61,0x70,0x3d,0x78,0x61,0x2c,0x55,0x6e,0x2e, 0x69,0x74,0x65,0x72,0x61,0x74,0x65,0x65,0x3d,0x61,0x63,0x2c,0x55,0x6e,0x2e,0x6b, 0x65,0x79,0x42,0x79,0x3d,0x45,0x61,0x2c,0x55,0x6e,0x2e,0x6b,0x65,0x79,0x73,0x3d, 0x4e,0x75,0x2c,0x55,0x6e,0x2e,0x6b,0x65,0x79,0x73,0x49,0x6e,0x3d,0x49,0x75,0x2c, 0x55,0x6e,0x2e,0x6d,0x61,0x70,0x3d,0x6a,0x61,0x2c,0x55,0x6e,0x2e,0x6d,0x61,0x70, 0x4b,0x65,0x79,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x3d,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x77,0x72,0x28, 0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c, 0x6f,0x29,0x7b,0x61,0x72,0x28,0x6e,0x2c,0x74,0x28,0x65,0x2c,0x72,0x2c,0x6f,0x29, 0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x2c,0x55,0x6e,0x2e,0x6d,0x61,0x70, 0x56,0x61,0x6c,0x75,0x65,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x77, 0x72,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x72,0x2c,0x6f,0x29,0x7b,0x61,0x72,0x28,0x6e,0x2c,0x72,0x2c,0x74,0x28,0x65,0x2c, 0x72,0x2c,0x6f,0x29,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x2c,0x55,0x6e,0x2e,0x6d, 0x61,0x74,0x63,0x68,0x65,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x72,0x28,0x6c,0x72,0x28, 0x65,0x2c,0x31,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65, 0x73,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57, 0x72,0x28,0x65,0x2c,0x6c,0x72,0x28,0x74,0x2c,0x31,0x29,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x3d,0x4c,0x61,0x2c,0x55,0x6e,0x2e,0x6d, 0x65,0x72,0x67,0x65,0x3d,0x52,0x75,0x2c,0x55,0x6e,0x2e,0x6d,0x65,0x72,0x67,0x65, 0x57,0x69,0x74,0x68,0x3d,0x4c,0x75,0x2c,0x55,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f, 0x64,0x3d,0x75,0x63,0x2c,0x55,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x4f,0x66, 0x3d,0x63,0x63,0x2c,0x55,0x6e,0x2e,0x6d,0x69,0x78,0x69,0x6e,0x3d,0x6c,0x63,0x2c, 0x55,0x6e,0x2e,0x6e,0x65,0x67,0x61,0x74,0x65,0x3d,0x46,0x61,0x2c,0x55,0x6e,0x2e, 0x6e,0x74,0x68,0x41,0x72,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x67,0x75,0x28,0x65, 0x29,0x2c,0x58,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x72,0x28,0x74,0x2c,0x65,0x29, 0x7d,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x6f,0x6d,0x69,0x74,0x3d,0x46,0x75,0x2c, 0x55,0x6e,0x2e,0x6f,0x6d,0x69,0x74,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42, 0x75,0x28,0x65,0x2c,0x46,0x61,0x28,0x73,0x69,0x28,0x74,0x29,0x29,0x29,0x7d,0x2c, 0x55,0x6e,0x2e,0x6f,0x6e,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x54,0x61,0x28,0x32,0x2c, 0x65,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x6f,0x72,0x64,0x65,0x72,0x42,0x79,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x5b,0x5d,0x3a,0x28,0x47,0x61,0x28,0x74,0x29,0x7c,0x7c,0x28,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x5b,0x5d,0x3a,0x5b,0x74,0x5d,0x29,0x2c,0x47,0x61, 0x28,0x6e,0x3d,0x72,0x3f,0x69,0x3a,0x6e,0x29,0x7c,0x7c,0x28,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x6e,0x3f,0x5b,0x5d,0x3a,0x5b,0x6e,0x5d,0x29,0x2c,0x56,0x72, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x6f,0x76,0x65, 0x72,0x3d,0x66,0x63,0x2c,0x55,0x6e,0x2e,0x6f,0x76,0x65,0x72,0x41,0x72,0x67,0x73, 0x3d,0x4d,0x61,0x2c,0x55,0x6e,0x2e,0x6f,0x76,0x65,0x72,0x45,0x76,0x65,0x72,0x79, 0x3d,0x64,0x63,0x2c,0x55,0x6e,0x2e,0x6f,0x76,0x65,0x72,0x53,0x6f,0x6d,0x65,0x3d, 0x70,0x63,0x2c,0x55,0x6e,0x2e,0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x3d,0x42,0x61, 0x2c,0x55,0x6e,0x2e,0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x52,0x69,0x67,0x68,0x74, 0x3d,0x7a,0x61,0x2c,0x55,0x6e,0x2e,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e, 0x3d,0x6b,0x61,0x2c,0x55,0x6e,0x2e,0x70,0x69,0x63,0x6b,0x3d,0x4d,0x75,0x2c,0x55, 0x6e,0x2e,0x70,0x69,0x63,0x6b,0x42,0x79,0x3d,0x42,0x75,0x2c,0x55,0x6e,0x2e,0x70, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3d,0x68,0x63,0x2c,0x55,0x6e,0x2e,0x70,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x4f,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x69,0x3a,0x45,0x72,0x28,0x65,0x2c,0x74,0x29, 0x7d,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x75,0x6c,0x6c,0x3d,0x5a,0x69,0x2c,0x55,0x6e, 0x2e,0x70,0x75,0x6c,0x6c,0x41,0x6c,0x6c,0x3d,0x65,0x61,0x2c,0x55,0x6e,0x2e,0x70, 0x75,0x6c,0x6c,0x41,0x6c,0x6c,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x74,0x26,0x26, 0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x71,0x72,0x28,0x65,0x2c,0x74,0x2c, 0x73,0x69,0x28,0x6e,0x2c,0x32,0x29,0x29,0x3a,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x70, 0x75,0x6c,0x6c,0x41,0x6c,0x6c,0x57,0x69,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x74, 0x26,0x26,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x71,0x72,0x28,0x65,0x2c, 0x74,0x2c,0x69,0x2c,0x6e,0x29,0x3a,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x75,0x6c, 0x6c,0x41,0x74,0x3d,0x74,0x61,0x2c,0x55,0x6e,0x2e,0x72,0x61,0x6e,0x67,0x65,0x3d, 0x76,0x63,0x2c,0x55,0x6e,0x2e,0x72,0x61,0x6e,0x67,0x65,0x52,0x69,0x67,0x68,0x74, 0x3d,0x67,0x63,0x2c,0x55,0x6e,0x2e,0x72,0x65,0x61,0x72,0x67,0x3d,0x55,0x61,0x2c, 0x55,0x6e,0x2e,0x72,0x65,0x6a,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x47, 0x61,0x28,0x65,0x29,0x3f,0x50,0x74,0x3a,0x6d,0x72,0x29,0x28,0x65,0x2c,0x46,0x61, 0x28,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x72, 0x65,0x6d,0x6f,0x76,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28, 0x21,0x65,0x7c,0x7c,0x21,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c, 0x6f,0x3d,0x5b,0x5d,0x2c,0x69,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x66,0x6f,0x72,0x28,0x74,0x3d,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x3b,0x2b,0x2b, 0x72,0x3c,0x69,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x72,0x5d, 0x3b,0x74,0x28,0x61,0x2c,0x72,0x2c,0x65,0x29,0x26,0x26,0x28,0x6e,0x2e,0x70,0x75, 0x73,0x68,0x28,0x61,0x29,0x2c,0x6f,0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x29,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4b,0x72,0x28,0x65,0x2c,0x6f,0x29,0x2c, 0x6e,0x7d,0x2c,0x55,0x6e,0x2e,0x72,0x65,0x73,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x41,0x65,0x28,0x61,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x58,0x72,0x28,0x65,0x2c,0x74,0x3d,0x74, 0x3d,0x3d,0x3d,0x69,0x3f,0x74,0x3a,0x67,0x75,0x28,0x74,0x29,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x3d,0x6e,0x61,0x2c,0x55,0x6e,0x2e, 0x73,0x61,0x6d,0x70,0x6c,0x65,0x53,0x69,0x7a,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3d,0x28,0x6e,0x3f,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x3a,0x74,0x3d,0x3d,0x3d,0x69,0x29,0x3f,0x31,0x3a,0x67,0x75,0x28,0x74,0x29,0x2c, 0x28,0x47,0x61,0x28,0x65,0x29,0x3f,0x5a,0x6e,0x3a,0x5a,0x72,0x29,0x28,0x65,0x2c, 0x74,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x65,0x6f,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x65,0x74,0x57,0x69,0x74, 0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x72,0x3f,0x72,0x3a,0x69,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65,0x3a, 0x65,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7d,0x2c,0x55,0x6e,0x2e, 0x73,0x68,0x75,0x66,0x66,0x6c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x47,0x61,0x28,0x65,0x29, 0x3f,0x65,0x72,0x3a,0x72,0x6f,0x29,0x28,0x65,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x73, 0x6c,0x69,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x3f,0x28,0x6e,0x26,0x26,0x22,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x77, 0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3f,0x28,0x74,0x3d,0x30,0x2c,0x6e,0x3d, 0x72,0x29,0x3a,0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x30,0x3a, 0x67,0x75,0x28,0x74,0x29,0x2c,0x6e,0x3d,0x6e,0x3d,0x3d,0x3d,0x69,0x3f,0x72,0x3a, 0x67,0x75,0x28,0x6e,0x29,0x29,0x2c,0x6f,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x6f,0x72,0x74,0x42,0x79,0x3d, 0x53,0x61,0x2c,0x55,0x6e,0x2e,0x73,0x6f,0x72,0x74,0x65,0x64,0x55,0x6e,0x69,0x71, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f, 0x63,0x6f,0x28,0x65,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x6f,0x72, 0x74,0x65,0x64,0x55,0x6e,0x69,0x71,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x63,0x6f,0x28,0x65,0x2c, 0x73,0x69,0x28,0x74,0x2c,0x32,0x29,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e, 0x73,0x70,0x6c,0x69,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x6e,0x26,0x26,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x26,0x26,0x28, 0x74,0x3d,0x6e,0x3d,0x69,0x29,0x2c,0x28,0x6e,0x3d,0x6e,0x3d,0x3d,0x3d,0x69,0x3f, 0x6d,0x3a,0x6e,0x3e,0x3e,0x3e,0x30,0x29,0x3f,0x28,0x65,0x3d,0x5f,0x75,0x28,0x65, 0x29,0x29,0x26,0x26,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74, 0x26,0x26,0x21,0x75,0x75,0x28,0x74,0x29,0x29,0x26,0x26,0x21,0x28,0x74,0x3d,0x73, 0x6f,0x28,0x74,0x29,0x29,0x26,0x26,0x63,0x6e,0x28,0x65,0x29,0x3f,0x78,0x6f,0x28, 0x76,0x6e,0x28,0x65,0x29,0x2c,0x30,0x2c,0x6e,0x29,0x3a,0x65,0x2e,0x73,0x70,0x6c, 0x69,0x74,0x28,0x74,0x2c,0x6e,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x73, 0x70,0x72,0x65,0x61,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x41,0x65,0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x30,0x3a,0x79, 0x6e,0x28,0x67,0x75,0x28,0x74,0x29,0x2c,0x30,0x29,0x2c,0x58,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x5b,0x74,0x5d,0x2c,0x6f,0x3d,0x78,0x6f,0x28,0x6e,0x2c,0x30,0x2c,0x74, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x26,0x26,0x52,0x74,0x28,0x6f, 0x2c,0x72,0x29,0x2c,0x6b,0x74,0x28,0x65,0x2c,0x74,0x68,0x69,0x73,0x2c,0x6f,0x29, 0x7d,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x61,0x69,0x6c,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3f,0x6f,0x6f,0x28,0x65,0x2c, 0x31,0x2c,0x74,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x61,0x6b,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3f,0x6f,0x6f,0x28,0x65,0x2c,0x30,0x2c,0x28,0x74,0x3d,0x6e,0x7c, 0x7c,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x31,0x3a,0x67,0x75,0x28,0x74,0x29,0x29,0x3c, 0x30,0x3f,0x30,0x3a,0x74,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x61, 0x6b,0x65,0x52,0x69,0x67,0x68,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3f,0x6f,0x6f,0x28,0x65,0x2c,0x28, 0x74,0x3d,0x72,0x2d,0x28,0x74,0x3d,0x6e,0x7c,0x7c,0x74,0x3d,0x3d,0x3d,0x69,0x3f, 0x31,0x3a,0x67,0x75,0x28,0x74,0x29,0x29,0x29,0x3c,0x30,0x3f,0x30,0x3a,0x74,0x2c, 0x72,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x61,0x6b,0x65,0x52,0x69, 0x67,0x68,0x74,0x57,0x68,0x69,0x6c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26, 0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x76,0x6f,0x28,0x65,0x2c,0x73, 0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x21,0x31,0x2c,0x21,0x30,0x29,0x3a,0x5b,0x5d, 0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x61,0x6b,0x65,0x57,0x68,0x69,0x6c,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f, 0x76,0x6f,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x3a,0x5b,0x5d, 0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x61,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28, 0x65,0x29,0x2c,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x68,0x72,0x6f,0x74,0x74,0x6c, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x21,0x30,0x2c,0x6f,0x3d,0x21,0x30,0x3b, 0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x41,0x65,0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x28,0x6e,0x29,0x26,0x26,0x28,0x72,0x3d,0x22,0x6c,0x65,0x61,0x64,0x69,0x6e, 0x67,0x22,0x69,0x6e,0x20,0x6e,0x3f,0x21,0x21,0x6e,0x2e,0x6c,0x65,0x61,0x64,0x69, 0x6e,0x67,0x3a,0x72,0x2c,0x6f,0x3d,0x22,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67, 0x22,0x69,0x6e,0x20,0x6e,0x3f,0x21,0x21,0x6e,0x2e,0x74,0x72,0x61,0x69,0x6c,0x69, 0x6e,0x67,0x3a,0x6f,0x29,0x2c,0x4e,0x61,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x6c,0x65, 0x61,0x64,0x69,0x6e,0x67,0x3a,0x72,0x2c,0x6d,0x61,0x78,0x57,0x61,0x69,0x74,0x3a, 0x74,0x2c,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67,0x3a,0x6f,0x7d,0x29,0x7d,0x2c, 0x55,0x6e,0x2e,0x74,0x68,0x72,0x75,0x3d,0x76,0x61,0x2c,0x55,0x6e,0x2e,0x74,0x6f, 0x41,0x72,0x72,0x61,0x79,0x3d,0x68,0x75,0x2c,0x55,0x6e,0x2e,0x74,0x6f,0x50,0x61, 0x69,0x72,0x73,0x3d,0x7a,0x75,0x2c,0x55,0x6e,0x2e,0x74,0x6f,0x50,0x61,0x69,0x72, 0x73,0x49,0x6e,0x3d,0x55,0x75,0x2c,0x55,0x6e,0x2e,0x74,0x6f,0x50,0x61,0x74,0x68, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x47,0x61,0x28,0x65,0x29,0x3f,0x49,0x74,0x28,0x65,0x2c,0x42, 0x69,0x29,0x3a,0x73,0x75,0x28,0x65,0x29,0x3f,0x5b,0x65,0x5d,0x3a,0x50,0x6f,0x28, 0x4d,0x69,0x28,0x5f,0x75,0x28,0x65,0x29,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x74, 0x6f,0x50,0x6c,0x61,0x69,0x6e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x79,0x75,0x2c, 0x55,0x6e,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x47,0x61,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x7c,0x7c,0x51,0x61, 0x28,0x65,0x29,0x7c,0x7c,0x66,0x75,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x74,0x3d, 0x73,0x69,0x28,0x74,0x2c,0x34,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x6e,0x3d,0x6f,0x3f,0x72,0x3f,0x6e,0x65, 0x77,0x20,0x69,0x3a,0x5b,0x5d,0x3a,0x6e,0x75,0x28,0x65,0x29,0x26,0x26,0x5a,0x61, 0x28,0x69,0x29,0x3f,0x57,0x6e,0x28,0x47,0x65,0x28,0x65,0x29,0x29,0x3a,0x7b,0x7d, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6f,0x3f,0x43,0x74,0x3a,0x77,0x72,0x29, 0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72, 0x2c,0x6f,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x6e,0x2c,0x65, 0x2c,0x72,0x2c,0x6f,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x2c,0x55,0x6e,0x2e,0x75, 0x6e,0x61,0x72,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x61,0x28,0x65,0x2c,0x31,0x29,0x7d, 0x2c,0x55,0x6e,0x2e,0x75,0x6e,0x69,0x6f,0x6e,0x3d,0x72,0x61,0x2c,0x55,0x6e,0x2e, 0x75,0x6e,0x69,0x6f,0x6e,0x42,0x79,0x3d,0x6f,0x61,0x2c,0x55,0x6e,0x2e,0x75,0x6e, 0x69,0x6f,0x6e,0x57,0x69,0x74,0x68,0x3d,0x69,0x61,0x2c,0x55,0x6e,0x2e,0x75,0x6e, 0x69,0x71,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3f,0x66,0x6f,0x28,0x65,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x75, 0x6e,0x69,0x71,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x66,0x6f,0x28,0x65,0x2c,0x73,0x69,0x28,0x74, 0x2c,0x32,0x29,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55,0x6e,0x2e,0x75,0x6e,0x69,0x71, 0x57,0x69,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74, 0x3f,0x74,0x3a,0x69,0x2c,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3f,0x66,0x6f,0x28,0x65,0x2c,0x69,0x2c,0x74,0x29,0x3a,0x5b,0x5d,0x7d,0x2c,0x55, 0x6e,0x2e,0x75,0x6e,0x73,0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x65,0x7c,0x7c,0x70,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x75,0x6e,0x7a,0x69,0x70,0x3d,0x61,0x61,0x2c,0x55,0x6e,0x2e,0x75,0x6e, 0x7a,0x69,0x70,0x57,0x69,0x74,0x68,0x3d,0x75,0x61,0x2c,0x55,0x6e,0x2e,0x75,0x70, 0x64,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x68,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x5f,0x6f,0x28, 0x6e,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x69, 0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x72,0x3f,0x72,0x3a,0x69,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65, 0x3a,0x68,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x5f,0x6f,0x28,0x6e,0x29,0x2c,0x72,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x3d,0x57,0x75,0x2c,0x55, 0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x49,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x5b,0x5d,0x3a,0x5a,0x74,0x28,0x65,0x2c,0x49,0x75, 0x28,0x65,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x77,0x69,0x74,0x68,0x6f,0x75,0x74, 0x3d,0x63,0x61,0x2c,0x55,0x6e,0x2e,0x77,0x6f,0x72,0x64,0x73,0x3d,0x5a,0x75,0x2c, 0x55,0x6e,0x2e,0x77,0x72,0x61,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x61,0x28, 0x5f,0x6f,0x28,0x74,0x29,0x2c,0x65,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x78,0x6f,0x72, 0x3d,0x6c,0x61,0x2c,0x55,0x6e,0x2e,0x78,0x6f,0x72,0x42,0x79,0x3d,0x73,0x61,0x2c, 0x55,0x6e,0x2e,0x78,0x6f,0x72,0x57,0x69,0x74,0x68,0x3d,0x66,0x61,0x2c,0x55,0x6e, 0x2e,0x7a,0x69,0x70,0x3d,0x64,0x61,0x2c,0x55,0x6e,0x2e,0x7a,0x69,0x70,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x6f,0x28,0x65,0x7c,0x7c, 0x5b,0x5d,0x2c,0x74,0x7c,0x7c,0x5b,0x5d,0x2c,0x6e,0x72,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x7a,0x69,0x70,0x4f,0x62,0x6a,0x65,0x63,0x74,0x44,0x65,0x65,0x70,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x62,0x6f,0x28,0x65,0x7c,0x7c,0x5b,0x5d,0x2c,0x74,0x7c,0x7c, 0x5b,0x5d,0x2c,0x65,0x6f,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x7a,0x69,0x70,0x57,0x69, 0x74,0x68,0x3d,0x70,0x61,0x2c,0x55,0x6e,0x2e,0x65,0x6e,0x74,0x72,0x69,0x65,0x73, 0x3d,0x7a,0x75,0x2c,0x55,0x6e,0x2e,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x49,0x6e, 0x3d,0x55,0x75,0x2c,0x55,0x6e,0x2e,0x65,0x78,0x74,0x65,0x6e,0x64,0x3d,0x4f,0x75, 0x2c,0x55,0x6e,0x2e,0x65,0x78,0x74,0x65,0x6e,0x64,0x57,0x69,0x74,0x68,0x3d,0x78, 0x75,0x2c,0x6c,0x63,0x28,0x55,0x6e,0x2c,0x55,0x6e,0x29,0x2c,0x55,0x6e,0x2e,0x61, 0x64,0x64,0x3d,0x79,0x63,0x2c,0x55,0x6e,0x2e,0x61,0x74,0x74,0x65,0x6d,0x70,0x74, 0x3d,0x65,0x63,0x2c,0x55,0x6e,0x2e,0x63,0x61,0x6d,0x65,0x6c,0x43,0x61,0x73,0x65, 0x3d,0x24,0x75,0x2c,0x55,0x6e,0x2e,0x63,0x61,0x70,0x69,0x74,0x61,0x6c,0x69,0x7a, 0x65,0x3d,0x48,0x75,0x2c,0x55,0x6e,0x2e,0x63,0x65,0x69,0x6c,0x3d,0x5f,0x63,0x2c, 0x55,0x6e,0x2e,0x63,0x6c,0x61,0x6d,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x6e,0x3d,0x74,0x2c,0x74,0x3d,0x69,0x29, 0x2c,0x6e,0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x6e,0x3d,0x28,0x6e,0x3d,0x62,0x75, 0x28,0x6e,0x29,0x29,0x3d,0x3d,0x3d,0x6e,0x3f,0x6e,0x3a,0x30,0x29,0x2c,0x74,0x21, 0x3d,0x3d,0x69,0x26,0x26,0x28,0x74,0x3d,0x28,0x74,0x3d,0x62,0x75,0x28,0x74,0x29, 0x29,0x3d,0x3d,0x3d,0x74,0x3f,0x74,0x3a,0x30,0x29,0x2c,0x63,0x72,0x28,0x62,0x75, 0x28,0x65,0x29,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x6c,0x6f, 0x6e,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x72,0x28,0x65,0x2c,0x34,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x44,0x65,0x65,0x70,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c, 0x72,0x28,0x65,0x2c,0x35,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x6c,0x6f,0x6e,0x65, 0x44,0x65,0x65,0x70,0x57,0x69,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x72, 0x28,0x65,0x2c,0x35,0x2c,0x74,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x74,0x3a,0x69,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x57,0x69,0x74,0x68,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6c,0x72,0x28,0x65,0x2c,0x34,0x2c,0x74,0x3d,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x3f,0x74,0x3a,0x69,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x63,0x6f,0x6e,0x66,0x6f, 0x72,0x6d,0x73,0x54,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x74,0x7c,0x7c,0x73,0x72,0x28,0x65,0x2c,0x74,0x2c,0x4e,0x75,0x28,0x74,0x29, 0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x64,0x65,0x62,0x75,0x72,0x72,0x3d,0x56,0x75,0x2c, 0x55,0x6e,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x6f,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x7c,0x7c,0x65,0x21,0x3d,0x3d,0x65, 0x3f,0x74,0x3a,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x64,0x69,0x76,0x69,0x64,0x65,0x3d, 0x77,0x63,0x2c,0x55,0x6e,0x2e,0x65,0x6e,0x64,0x73,0x57,0x69,0x74,0x68,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x65, 0x3d,0x5f,0x75,0x28,0x65,0x29,0x2c,0x74,0x3d,0x73,0x6f,0x28,0x74,0x29,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d, 0x6e,0x3d,0x6e,0x3d,0x3d,0x3d,0x69,0x3f,0x72,0x3a,0x63,0x72,0x28,0x67,0x75,0x28, 0x6e,0x29,0x2c,0x30,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e, 0x2d,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3e,0x3d,0x30,0x26,0x26, 0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x6e,0x2c,0x6f,0x29,0x3d,0x3d,0x74,0x7d, 0x2c,0x55,0x6e,0x2e,0x65,0x71,0x3d,0x57,0x61,0x2c,0x55,0x6e,0x2e,0x65,0x73,0x63, 0x61,0x70,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x29,0x26, 0x26,0x4a,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x3f,0x65,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x51,0x2c,0x61,0x6e,0x29,0x3a,0x65,0x7d,0x2c,0x55,0x6e, 0x2e,0x65,0x73,0x63,0x61,0x70,0x65,0x52,0x65,0x67,0x45,0x78,0x70,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x29,0x26,0x26,0x61,0x65,0x2e,0x74,0x65, 0x73,0x74,0x28,0x65,0x29,0x3f,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x69,0x65,0x2c,0x22,0x5c,0x5c,0x24,0x26,0x22,0x29,0x3a,0x65,0x7d,0x2c,0x55,0x6e, 0x2e,0x65,0x76,0x65,0x72,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x47,0x61,0x28, 0x65,0x29,0x3f,0x54,0x74,0x3a,0x76,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x26,0x26,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x26,0x26,0x28,0x74, 0x3d,0x69,0x29,0x2c,0x72,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x69,0x6e,0x64,0x3d,0x62,0x61,0x2c,0x55,0x6e,0x2e, 0x66,0x69,0x6e,0x64,0x49,0x6e,0x64,0x65,0x78,0x3d,0x56,0x69,0x2c,0x55,0x6e,0x2e, 0x66,0x69,0x6e,0x64,0x4b,0x65,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x74,0x28, 0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x77,0x72,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x66,0x69,0x6e,0x64,0x4c,0x61,0x73,0x74,0x3d,0x79,0x61,0x2c,0x55,0x6e, 0x2e,0x66,0x69,0x6e,0x64,0x4c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x3d,0x47, 0x69,0x2c,0x55,0x6e,0x2e,0x66,0x69,0x6e,0x64,0x4c,0x61,0x73,0x74,0x4b,0x65,0x79, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x74,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c, 0x33,0x29,0x2c,0x4f,0x72,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x66,0x6c,0x6f,0x6f,0x72, 0x3d,0x4f,0x63,0x2c,0x55,0x6e,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x3d,0x5f, 0x61,0x2c,0x55,0x6e,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x52,0x69,0x67,0x68, 0x74,0x3d,0x77,0x61,0x2c,0x55,0x6e,0x2e,0x66,0x6f,0x72,0x49,0x6e,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x79,0x72,0x28, 0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x49,0x75,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x66,0x6f,0x72,0x49,0x6e,0x52,0x69,0x67,0x68,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x5f,0x72,0x28,0x65, 0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x49,0x75,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x66,0x6f,0x72,0x4f,0x77,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26, 0x77,0x72,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x66,0x6f,0x72,0x4f,0x77,0x6e,0x52,0x69,0x67,0x68,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x26,0x26,0x4f,0x72,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c, 0x33,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x67,0x65,0x74,0x3d,0x43,0x75,0x2c,0x55, 0x6e,0x2e,0x67,0x74,0x3d,0x24,0x61,0x2c,0x55,0x6e,0x2e,0x67,0x74,0x65,0x3d,0x48, 0x61,0x2c,0x55,0x6e,0x2e,0x68,0x61,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x6d,0x69,0x28,0x65,0x2c,0x74,0x2c,0x43,0x72, 0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x68,0x61,0x73,0x49,0x6e,0x3d,0x41,0x75,0x2c,0x55, 0x6e,0x2e,0x68,0x65,0x61,0x64,0x3d,0x4b,0x69,0x2c,0x55,0x6e,0x2e,0x69,0x64,0x65, 0x6e,0x74,0x69,0x74,0x79,0x3d,0x69,0x63,0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x63,0x6c, 0x75,0x64,0x65,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x65,0x3d,0x4b,0x61,0x28,0x65,0x29,0x3f,0x65, 0x3a,0x57,0x75,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x6e,0x26,0x26,0x21,0x72,0x3f,0x67, 0x75,0x28,0x6e,0x29,0x3a,0x30,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3c,0x30, 0x26,0x26,0x28,0x6e,0x3d,0x79,0x6e,0x28,0x6f,0x2b,0x6e,0x2c,0x30,0x29,0x29,0x2c, 0x6c,0x75,0x28,0x65,0x29,0x3f,0x6e,0x3c,0x3d,0x6f,0x26,0x26,0x65,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x74,0x2c,0x6e,0x29,0x3e,0x2d,0x31,0x3a,0x21,0x21, 0x6f,0x26,0x26,0x57,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3e,0x2d,0x31,0x7d, 0x2c,0x55,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x21,0x72,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x2d,0x31,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x6e,0x3f,0x30,0x3a,0x67,0x75,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x3c,0x30,0x26,0x26,0x28,0x6f,0x3d,0x79,0x6e,0x28,0x72,0x2b,0x6f,0x2c, 0x30,0x29,0x29,0x2c,0x57,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6f,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x69,0x6e,0x52,0x61,0x6e,0x67,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3d,0x76,0x75,0x28,0x74,0x29,0x2c,0x6e,0x3d,0x3d,0x3d,0x69,0x3f,0x28, 0x6e,0x3d,0x74,0x2c,0x74,0x3d,0x30,0x29,0x3a,0x6e,0x3d,0x76,0x75,0x28,0x6e,0x29, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3e,0x3d,0x5f,0x6e,0x28,0x74,0x2c, 0x6e,0x29,0x26,0x26,0x65,0x3c,0x79,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7d,0x28,0x65, 0x3d,0x62,0x75,0x28,0x65,0x29,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x2c,0x55,0x6e,0x2e, 0x69,0x6e,0x76,0x6f,0x6b,0x65,0x3d,0x44,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x41, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x3d,0x56,0x61,0x2c,0x55,0x6e,0x2e,0x69, 0x73,0x41,0x72,0x72,0x61,0x79,0x3d,0x47,0x61,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x41, 0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x3d,0x71,0x61,0x2c,0x55,0x6e, 0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x4c,0x69,0x6b,0x65,0x3d,0x4b,0x61,0x2c, 0x55,0x6e,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x4c,0x69,0x6b,0x65,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x3d,0x59,0x61,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x42,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x21, 0x31,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x6b,0x72, 0x28,0x65,0x29,0x3d,0x3d,0x77,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x42,0x75,0x66, 0x66,0x65,0x72,0x3d,0x51,0x61,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x44,0x61,0x74,0x65, 0x3d,0x58,0x61,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x31,0x3d,0x3d,0x3d,0x65, 0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x21,0x61,0x75,0x28,0x65, 0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x45,0x6d,0x70,0x74,0x79,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x69,0x66, 0x28,0x4b,0x61,0x28,0x65,0x29,0x26,0x26,0x28,0x47,0x61,0x28,0x65,0x29,0x7c,0x7c, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x7c, 0x7c,0x51,0x61,0x28,0x65,0x29,0x7c,0x7c,0x66,0x75,0x28,0x65,0x29,0x7c,0x7c,0x56, 0x61,0x28,0x65,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x67,0x69,0x28,0x65, 0x29,0x3b,0x69,0x66,0x28,0x74,0x3d,0x3d,0x6b,0x7c,0x7c,0x74,0x3d,0x3d,0x50,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x2e,0x73,0x69,0x7a,0x65,0x3b,0x69,0x66, 0x28,0x6a,0x69,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x46,0x72, 0x28,0x65,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x65,0x29,0x69,0x66,0x28,0x52,0x65,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x2c,0x55,0x6e,0x2e, 0x69,0x73,0x45,0x71,0x75,0x61,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4e,0x72,0x28, 0x65,0x2c,0x74,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x45,0x71,0x75,0x61,0x6c, 0x57,0x69,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x28,0x6e,0x3d,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x6e,0x3f,0x6e,0x3a,0x69,0x29,0x3f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x3a,0x69, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x3d,0x3d,0x69,0x3f,0x4e,0x72, 0x28,0x65,0x2c,0x74,0x2c,0x69,0x2c,0x6e,0x29,0x3a,0x21,0x21,0x72,0x7d,0x2c,0x55, 0x6e,0x2e,0x69,0x73,0x45,0x72,0x72,0x6f,0x72,0x3d,0x4a,0x61,0x2c,0x55,0x6e,0x2e, 0x69,0x73,0x46,0x69,0x6e,0x69,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x79, 0x74,0x28,0x65,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x46,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x3d,0x5a,0x61,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x49,0x6e,0x74,0x65, 0x67,0x65,0x72,0x3d,0x65,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4c,0x65,0x6e,0x67, 0x74,0x68,0x3d,0x74,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4d,0x61,0x70,0x3d,0x6f, 0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4d,0x61,0x74,0x63,0x68,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x49,0x72,0x28,0x65,0x2c,0x74,0x2c, 0x64,0x69,0x28,0x74,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4d,0x61,0x74, 0x63,0x68,0x57,0x69,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x6e,0x3f,0x6e,0x3a,0x69,0x2c,0x49,0x72,0x28,0x65,0x2c,0x74,0x2c, 0x64,0x69,0x28,0x74,0x29,0x2c,0x6e,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4e, 0x61,0x4e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x75,0x28,0x65,0x29,0x26,0x26,0x65,0x21,0x3d, 0x2b,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4e,0x61,0x74,0x69,0x76,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x45, 0x69,0x28,0x65,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x6f, 0x28,0x22,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, 0x72,0x65,0x2d,0x6a,0x73,0x20,0x75,0x73,0x65,0x2e,0x20,0x54,0x72,0x79,0x20,0x68, 0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x70,0x6d,0x73,0x2e,0x69,0x6f,0x2f,0x73, 0x65,0x61,0x72,0x63,0x68,0x3f,0x71,0x3d,0x70,0x6f,0x6e,0x79,0x66,0x69,0x6c,0x6c, 0x2e,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x72,0x28,0x65,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4e,0x69,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x4e,0x75,0x6c,0x6c, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7d,0x2c,0x55,0x6e, 0x2e,0x69,0x73,0x4e,0x75,0x6d,0x62,0x65,0x72,0x3d,0x69,0x75,0x2c,0x55,0x6e,0x2e, 0x69,0x73,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x6e,0x75,0x2c,0x55,0x6e,0x2e,0x69, 0x73,0x4f,0x62,0x6a,0x65,0x63,0x74,0x4c,0x69,0x6b,0x65,0x3d,0x72,0x75,0x2c,0x55, 0x6e,0x2e,0x69,0x73,0x50,0x6c,0x61,0x69,0x6e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d, 0x61,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x52,0x65,0x67,0x45,0x78,0x70,0x3d,0x75, 0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x53,0x61,0x66,0x65,0x49,0x6e,0x74,0x65,0x67, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x75,0x28,0x65,0x29,0x26,0x26,0x65,0x3e,0x3d, 0x2d,0x39,0x30,0x30,0x37,0x31,0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39,0x39, 0x31,0x26,0x26,0x65,0x3c,0x3d,0x76,0x7d,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x53,0x65, 0x74,0x3d,0x63,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x53,0x74,0x72,0x69,0x6e,0x67, 0x3d,0x6c,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x3d, 0x73,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x64,0x41,0x72,0x72, 0x61,0x79,0x3d,0x66,0x75,0x2c,0x55,0x6e,0x2e,0x69,0x73,0x55,0x6e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x69,0x7d,0x2c,0x55, 0x6e,0x2e,0x69,0x73,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x75,0x28,0x65,0x29,0x26,0x26,0x67,0x69,0x28,0x65,0x29,0x3d,0x3d,0x49,0x7d,0x2c, 0x55,0x6e,0x2e,0x69,0x73,0x57,0x65,0x61,0x6b,0x53,0x65,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x75,0x28,0x65,0x29,0x26,0x26,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x57,0x65,0x61,0x6b,0x53,0x65,0x74,0x5d,0x22,0x3d,0x3d,0x6b,0x72,0x28,0x65,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x6a,0x6f,0x69,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x22,0x22,0x3a,0x42,0x74,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x6b,0x65,0x62,0x61,0x62, 0x43,0x61,0x73,0x65,0x3d,0x47,0x75,0x2c,0x55,0x6e,0x2e,0x6c,0x61,0x73,0x74,0x3d, 0x4a,0x69,0x2c,0x55,0x6e,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x4f, 0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x21,0x72, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x21,0x3d,0x3d,0x69,0x26,0x26, 0x28,0x6f,0x3d,0x28,0x6f,0x3d,0x67,0x75,0x28,0x6e,0x29,0x29,0x3c,0x30,0x3f,0x79, 0x6e,0x28,0x72,0x2b,0x6f,0x2c,0x30,0x29,0x3a,0x5f,0x6e,0x28,0x6f,0x2c,0x72,0x2d, 0x31,0x29,0x29,0x2c,0x74,0x3d,0x3d,0x3d,0x74,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x2b,0x31,0x3b,0x72,0x2d,0x2d,0x3b,0x29,0x69,0x66,0x28, 0x65,0x5b,0x72,0x5d,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x28,0x65,0x2c,0x74,0x2c, 0x6f,0x29,0x3a,0x55,0x74,0x28,0x65,0x2c,0x48,0x74,0x2c,0x6f,0x2c,0x21,0x30,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x6c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x3d,0x71, 0x75,0x2c,0x55,0x6e,0x2e,0x6c,0x6f,0x77,0x65,0x72,0x46,0x69,0x72,0x73,0x74,0x3d, 0x4b,0x75,0x2c,0x55,0x6e,0x2e,0x6c,0x74,0x3d,0x64,0x75,0x2c,0x55,0x6e,0x2e,0x6c, 0x74,0x65,0x3d,0x70,0x75,0x2c,0x55,0x6e,0x2e,0x6d,0x61,0x78,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x67,0x72,0x28,0x65, 0x2c,0x69,0x63,0x2c,0x53,0x72,0x29,0x3a,0x69,0x7d,0x2c,0x55,0x6e,0x2e,0x6d,0x61, 0x78,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3f,0x67,0x72,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x32, 0x29,0x2c,0x53,0x72,0x29,0x3a,0x69,0x7d,0x2c,0x55,0x6e,0x2e,0x6d,0x65,0x61,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x56,0x74,0x28,0x65,0x2c,0x69,0x63,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x6d,0x65,0x61,0x6e,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x56,0x74,0x28, 0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x32,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x6d, 0x69,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3f,0x67,0x72,0x28,0x65,0x2c,0x69,0x63,0x2c,0x42,0x72,0x29,0x3a,0x69,0x7d, 0x2c,0x55,0x6e,0x2e,0x6d,0x69,0x6e,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x67,0x72,0x28,0x65,0x2c, 0x73,0x69,0x28,0x74,0x2c,0x32,0x29,0x2c,0x42,0x72,0x29,0x3a,0x69,0x7d,0x2c,0x55, 0x6e,0x2e,0x73,0x74,0x75,0x62,0x41,0x72,0x72,0x61,0x79,0x3d,0x6d,0x63,0x2c,0x55, 0x6e,0x2e,0x73,0x74,0x75,0x62,0x46,0x61,0x6c,0x73,0x65,0x3d,0x62,0x63,0x2c,0x55, 0x6e,0x2e,0x73,0x74,0x75,0x62,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d, 0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x74,0x75,0x62,0x53,0x74,0x72,0x69,0x6e,0x67,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x22,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x74,0x75,0x62,0x54,0x72,0x75,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x30,0x7d,0x2c,0x55,0x6e,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c, 0x79,0x3d,0x78,0x63,0x2c,0x55,0x6e,0x2e,0x6e,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x48,0x72,0x28, 0x65,0x2c,0x67,0x75,0x28,0x74,0x29,0x29,0x3a,0x69,0x7d,0x2c,0x55,0x6e,0x2e,0x6e, 0x6f,0x43,0x6f,0x6e,0x66,0x6c,0x69,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x74,0x2e,0x5f, 0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x26,0x26,0x28,0x68,0x74,0x2e,0x5f,0x3d,0x7a, 0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x7d,0x2c,0x55,0x6e,0x2e,0x6e,0x6f,0x6f,0x70, 0x3d,0x73,0x63,0x2c,0x55,0x6e,0x2e,0x6e,0x6f,0x77,0x3d,0x43,0x61,0x2c,0x55,0x6e, 0x2e,0x70,0x61,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x28,0x74,0x3d,0x67,0x75,0x28,0x74,0x29,0x29,0x3f,0x68,0x6e,0x28, 0x65,0x29,0x3a,0x30,0x3b,0x69,0x66,0x28,0x21,0x74,0x7c,0x7c,0x72,0x3e,0x3d,0x74, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x28,0x74,0x2d,0x72,0x29,0x2f,0x32,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47, 0x6f,0x28,0x76,0x74,0x28,0x6f,0x29,0x2c,0x6e,0x29,0x2b,0x65,0x2b,0x47,0x6f,0x28, 0x70,0x74,0x28,0x6f,0x29,0x2c,0x6e,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x61,0x64, 0x45,0x6e,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x28,0x74,0x3d,0x67,0x75,0x28,0x74,0x29,0x29,0x3f,0x68,0x6e,0x28,0x65, 0x29,0x3a,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x72,0x3c, 0x74,0x3f,0x65,0x2b,0x47,0x6f,0x28,0x74,0x2d,0x72,0x2c,0x6e,0x29,0x3a,0x65,0x7d, 0x2c,0x55,0x6e,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x65,0x3d,0x5f, 0x75,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x28,0x74,0x3d,0x67,0x75, 0x28,0x74,0x29,0x29,0x3f,0x68,0x6e,0x28,0x65,0x29,0x3a,0x30,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x72,0x3c,0x74,0x3f,0x47,0x6f,0x28,0x74,0x2d, 0x72,0x2c,0x6e,0x29,0x2b,0x65,0x3a,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x61,0x72, 0x73,0x65,0x49,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7c,0x7c, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x74,0x3d,0x30,0x3a,0x74,0x26,0x26,0x28, 0x74,0x3d,0x2b,0x74,0x29,0x2c,0x4f,0x6e,0x28,0x5f,0x75,0x28,0x65,0x29,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x75,0x65,0x2c,0x22,0x22,0x29,0x2c,0x74,0x7c, 0x7c,0x30,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x26,0x26,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x21,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x77,0x69,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x26,0x26,0x28,0x74,0x3d,0x6e,0x3d,0x69,0x29,0x2c,0x6e,0x3d,0x3d, 0x3d,0x69,0x26,0x26,0x28,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x28,0x6e,0x3d,0x74,0x2c,0x74,0x3d, 0x69,0x29,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x28,0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x69, 0x29,0x29,0x2c,0x65,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x74,0x3d,0x3d,0x3d,0x69,0x3f, 0x28,0x65,0x3d,0x30,0x2c,0x74,0x3d,0x31,0x29,0x3a,0x28,0x65,0x3d,0x76,0x75,0x28, 0x65,0x29,0x2c,0x74,0x3d,0x3d,0x3d,0x69,0x3f,0x28,0x74,0x3d,0x65,0x2c,0x65,0x3d, 0x30,0x29,0x3a,0x74,0x3d,0x76,0x75,0x28,0x74,0x29,0x29,0x2c,0x65,0x3e,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x3b,0x65,0x3d,0x74,0x2c,0x74,0x3d,0x72, 0x7d,0x69,0x66,0x28,0x6e,0x7c,0x7c,0x65,0x25,0x31,0x7c,0x7c,0x74,0x25,0x31,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x78,0x6e,0x28,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x5f,0x6e,0x28,0x65,0x2b,0x6f,0x2a,0x28,0x74,0x2d,0x65,0x2b,0x73, 0x74,0x28,0x22,0x31,0x65,0x2d,0x22,0x2b,0x28,0x28,0x6f,0x2b,0x22,0x22,0x29,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x29,0x29,0x29,0x2c,0x74,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x72,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x47, 0x61,0x28,0x65,0x29,0x3f,0x4c,0x74,0x3a,0x4b,0x74,0x2c,0x6f,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x33,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c, 0x34,0x29,0x2c,0x6e,0x2c,0x6f,0x2c,0x70,0x72,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x72, 0x65,0x64,0x75,0x63,0x65,0x52,0x69,0x67,0x68,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x47,0x61,0x28,0x65,0x29,0x3f,0x46,0x74,0x3a,0x4b,0x74,0x2c,0x6f,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c, 0x33,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x65,0x2c,0x73,0x69,0x28, 0x74,0x2c,0x34,0x29,0x2c,0x6e,0x2c,0x6f,0x2c,0x68,0x72,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x72,0x65,0x70,0x65,0x61,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x3d,0x28,0x6e,0x3f,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x74,0x3d, 0x3d,0x3d,0x69,0x29,0x3f,0x31,0x3a,0x67,0x75,0x28,0x74,0x29,0x2c,0x51,0x72,0x28, 0x5f,0x75,0x28,0x65,0x29,0x2c,0x74,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2c, 0x74,0x3d,0x5f,0x75,0x28,0x65,0x5b,0x30,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x33,0x3f,0x74,0x3a,0x74, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x65,0x5b,0x31,0x5d,0x2c,0x65,0x5b, 0x32,0x5d,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x28,0x74,0x3d,0x77,0x6f,0x28, 0x74,0x2c,0x65,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72, 0x28,0x6f,0x7c,0x7c,0x28,0x6f,0x3d,0x31,0x2c,0x65,0x3d,0x69,0x29,0x3b,0x2b,0x2b, 0x72,0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x3f,0x69,0x3a,0x65,0x5b,0x42,0x69,0x28,0x74,0x5b,0x72,0x5d,0x29, 0x5d,0x3b,0x61,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x72,0x3d,0x6f,0x2c,0x61,0x3d, 0x6e,0x29,0x2c,0x65,0x3d,0x5a,0x61,0x28,0x61,0x29,0x3f,0x61,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x29,0x3a,0x61,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d, 0x2c,0x55,0x6e,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x3d,0x45,0x63,0x2c,0x55,0x6e,0x2e, 0x72,0x75,0x6e,0x49,0x6e,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x65,0x2c,0x55, 0x6e,0x2e,0x73,0x61,0x6d,0x70,0x6c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x47,0x61,0x28,0x65, 0x29,0x3f,0x4a,0x6e,0x3a,0x4a,0x72,0x29,0x28,0x65,0x29,0x7d,0x2c,0x55,0x6e,0x2e, 0x73,0x69,0x7a,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x30,0x3b,0x69,0x66,0x28,0x4b,0x61,0x28,0x65,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6c,0x75,0x28,0x65,0x29,0x3f,0x68,0x6e,0x28,0x65,0x29, 0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x67,0x69,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d, 0x6b,0x7c,0x7c,0x74,0x3d,0x3d,0x50,0x3f,0x65,0x2e,0x73,0x69,0x7a,0x65,0x3a,0x46, 0x72,0x28,0x65,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x2c,0x55,0x6e,0x2e, 0x73,0x6e,0x61,0x6b,0x65,0x43,0x61,0x73,0x65,0x3d,0x59,0x75,0x2c,0x55,0x6e,0x2e, 0x73,0x6f,0x6d,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x47,0x61,0x28,0x65,0x29, 0x3f,0x4d,0x74,0x3a,0x69,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26, 0x26,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x26,0x26,0x28,0x74,0x3d,0x69, 0x29,0x2c,0x72,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x33,0x29,0x29,0x7d,0x2c, 0x55,0x6e,0x2e,0x73,0x6f,0x72,0x74,0x65,0x64,0x49,0x6e,0x64,0x65,0x78,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x61,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x55,0x6e,0x2e, 0x73,0x6f,0x72,0x74,0x65,0x64,0x49,0x6e,0x64,0x65,0x78,0x42,0x79,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x75,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x73,0x69,0x28,0x6e, 0x2c,0x32,0x29,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x6f,0x72,0x74,0x65,0x64,0x49, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66, 0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x61,0x6f,0x28,0x65,0x2c,0x74, 0x29,0x3b,0x69,0x66,0x28,0x72,0x3c,0x6e,0x26,0x26,0x57,0x61,0x28,0x65,0x5b,0x72, 0x5d,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x6f,0x72,0x74,0x65, 0x64,0x4c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x61,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x21,0x30,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x73, 0x6f,0x72,0x74,0x65,0x64,0x4c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x42,0x79, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x73, 0x69,0x28,0x6e,0x2c,0x32,0x29,0x2c,0x21,0x30,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x73, 0x6f,0x72,0x74,0x65,0x64,0x4c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x4f,0x66, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x6f,0x28,0x65, 0x2c,0x74,0x2c,0x21,0x30,0x29,0x2d,0x31,0x3b,0x69,0x66,0x28,0x57,0x61,0x28,0x65, 0x5b,0x6e,0x5d,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x74,0x61, 0x72,0x74,0x43,0x61,0x73,0x65,0x3d,0x51,0x75,0x2c,0x55,0x6e,0x2e,0x73,0x74,0x61, 0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x5f,0x75,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e, 0x3f,0x30,0x3a,0x63,0x72,0x28,0x67,0x75,0x28,0x6e,0x29,0x2c,0x30,0x2c,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x2c,0x74,0x3d,0x73,0x6f,0x28,0x74,0x29,0x2c, 0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x6e,0x2c,0x6e,0x2b,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x29,0x3d,0x3d,0x74,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x75,0x62, 0x74,0x72,0x61,0x63,0x74,0x3d,0x6a,0x63,0x2c,0x55,0x6e,0x2e,0x73,0x75,0x6d,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x59, 0x74,0x28,0x65,0x2c,0x69,0x63,0x29,0x3a,0x30,0x7d,0x2c,0x55,0x6e,0x2e,0x73,0x75, 0x6d,0x42,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3f,0x59,0x74,0x28,0x65,0x2c,0x73,0x69,0x28,0x74,0x2c,0x32, 0x29,0x29,0x3a,0x30,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x55,0x6e,0x2e,0x74,0x65,0x6d,0x70,0x6c, 0x61,0x74,0x65,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3b,0x6e,0x26,0x26,0x77, 0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x26,0x26,0x28,0x74,0x3d,0x69,0x29,0x2c, 0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x2c,0x74,0x3d,0x78,0x75,0x28,0x7b,0x7d,0x2c, 0x74,0x2c,0x72,0x2c,0x65,0x69,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x2c,0x75,0x2c, 0x63,0x3d,0x78,0x75,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x69,0x6d,0x70,0x6f,0x72,0x74, 0x73,0x2c,0x72,0x2e,0x69,0x6d,0x70,0x6f,0x72,0x74,0x73,0x2c,0x65,0x69,0x29,0x2c, 0x6c,0x3d,0x4e,0x75,0x28,0x63,0x29,0x2c,0x73,0x3d,0x5a,0x74,0x28,0x63,0x2c,0x6c, 0x29,0x2c,0x66,0x3d,0x30,0x2c,0x64,0x3d,0x74,0x2e,0x69,0x6e,0x74,0x65,0x72,0x70, 0x6f,0x6c,0x61,0x74,0x65,0x7c,0x7c,0x78,0x65,0x2c,0x70,0x3d,0x22,0x5f,0x5f,0x70, 0x20,0x2b,0x3d,0x20,0x27,0x22,0x2c,0x68,0x3d,0x53,0x65,0x28,0x28,0x74,0x2e,0x65, 0x73,0x63,0x61,0x70,0x65,0x7c,0x7c,0x78,0x65,0x29,0x2e,0x73,0x6f,0x75,0x72,0x63, 0x65,0x2b,0x22,0x7c,0x22,0x2b,0x64,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2b,0x22, 0x7c,0x22,0x2b,0x28,0x64,0x3d,0x3d,0x3d,0x74,0x65,0x3f,0x76,0x65,0x3a,0x78,0x65, 0x29,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2b,0x22,0x7c,0x22,0x2b,0x28,0x74,0x2e, 0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x65,0x7c,0x7c,0x78,0x65,0x29,0x2e,0x73,0x6f, 0x75,0x72,0x63,0x65,0x2b,0x22,0x7c,0x24,0x22,0x2c,0x22,0x67,0x22,0x29,0x2c,0x76, 0x3d,0x22,0x2f,0x2f,0x23,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x55,0x52,0x4c,0x3d, 0x22,0x2b,0x28,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x22,0x73,0x6f, 0x75,0x72,0x63,0x65,0x55,0x52,0x4c,0x22,0x29,0x3f,0x28,0x74,0x2e,0x73,0x6f,0x75, 0x72,0x63,0x65,0x55,0x52,0x4c,0x2b,0x22,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61, 0x63,0x65,0x28,0x2f,0x5c,0x73,0x2f,0x67,0x2c,0x22,0x20,0x22,0x29,0x3a,0x22,0x6c, 0x6f,0x64,0x61,0x73,0x68,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x53,0x6f, 0x75,0x72,0x63,0x65,0x73,0x5b,0x22,0x2b,0x20,0x2b,0x2b,0x61,0x74,0x2b,0x22,0x5d, 0x22,0x29,0x2b,0x22,0x5c,0x6e,0x22,0x3b,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63, 0x65,0x28,0x68,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x63,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x7c,0x7c,0x28,0x72,0x3d,0x6f,0x29,0x2c,0x70,0x2b,0x3d,0x65,0x2e, 0x73,0x6c,0x69,0x63,0x65,0x28,0x66,0x2c,0x63,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61, 0x63,0x65,0x28,0x45,0x65,0x2c,0x75,0x6e,0x29,0x2c,0x6e,0x26,0x26,0x28,0x61,0x3d, 0x21,0x30,0x2c,0x70,0x2b,0x3d,0x22,0x27,0x20,0x2b,0x5c,0x6e,0x5f,0x5f,0x65,0x28, 0x22,0x2b,0x6e,0x2b,0x22,0x29,0x20,0x2b,0x5c,0x6e,0x27,0x22,0x29,0x2c,0x69,0x26, 0x26,0x28,0x75,0x3d,0x21,0x30,0x2c,0x70,0x2b,0x3d,0x22,0x27,0x3b,0x5c,0x6e,0x22, 0x2b,0x69,0x2b,0x22,0x3b,0x5c,0x6e,0x5f,0x5f,0x70,0x20,0x2b,0x3d,0x20,0x27,0x22, 0x29,0x2c,0x72,0x26,0x26,0x28,0x70,0x2b,0x3d,0x22,0x27,0x20,0x2b,0x5c,0x6e,0x28, 0x28,0x5f,0x5f,0x74,0x20,0x3d,0x20,0x28,0x22,0x2b,0x72,0x2b,0x22,0x29,0x29,0x20, 0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x3f,0x20,0x27,0x27,0x20,0x3a,0x20,0x5f, 0x5f,0x74,0x29,0x20,0x2b,0x5c,0x6e,0x27,0x22,0x29,0x2c,0x66,0x3d,0x63,0x2b,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x7d,0x29,0x29,0x2c,0x70,0x2b,0x3d, 0x22,0x27,0x3b,0x5c,0x6e,0x22,0x3b,0x76,0x61,0x72,0x20,0x67,0x3d,0x52,0x65,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x22,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65, 0x22,0x29,0x26,0x26,0x74,0x2e,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x3b,0x69, 0x66,0x28,0x67,0x29,0x7b,0x69,0x66,0x28,0x70,0x65,0x2e,0x74,0x65,0x73,0x74,0x28, 0x67,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x6f,0x28,0x22, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x60,0x76,0x61,0x72,0x69,0x61,0x62,0x6c, 0x65,0x60,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x73,0x73,0x65,0x64, 0x20,0x69,0x6e,0x74,0x6f,0x20,0x60,0x5f,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74, 0x65,0x60,0x22,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x70,0x3d,0x22,0x77,0x69,0x74, 0x68,0x20,0x28,0x6f,0x62,0x6a,0x29,0x20,0x7b,0x5c,0x6e,0x22,0x2b,0x70,0x2b,0x22, 0x5c,0x6e,0x7d,0x5c,0x6e,0x22,0x3b,0x70,0x3d,0x28,0x75,0x3f,0x70,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x47,0x2c,0x22,0x22,0x29,0x3a,0x70,0x29,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x71,0x2c,0x22,0x24,0x31,0x22,0x29,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x4b,0x2c,0x22,0x24,0x31,0x3b,0x22,0x29,0x2c, 0x70,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x22,0x2b,0x28,0x67, 0x7c,0x7c,0x22,0x6f,0x62,0x6a,0x22,0x29,0x2b,0x22,0x29,0x20,0x7b,0x5c,0x6e,0x22, 0x2b,0x28,0x67,0x3f,0x22,0x22,0x3a,0x22,0x6f,0x62,0x6a,0x20,0x7c,0x7c,0x20,0x28, 0x6f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x7d,0x29,0x3b,0x5c,0x6e,0x22,0x29,0x2b,0x22, 0x76,0x61,0x72,0x20,0x5f,0x5f,0x74,0x2c,0x20,0x5f,0x5f,0x70,0x20,0x3d,0x20,0x27, 0x27,0x22,0x2b,0x28,0x61,0x3f,0x22,0x2c,0x20,0x5f,0x5f,0x65,0x20,0x3d,0x20,0x5f, 0x2e,0x65,0x73,0x63,0x61,0x70,0x65,0x22,0x3a,0x22,0x22,0x29,0x2b,0x28,0x75,0x3f, 0x22,0x2c,0x20,0x5f,0x5f,0x6a,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x6a,0x6f,0x69,0x6e,0x3b,0x5c,0x6e, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x69,0x6e,0x74,0x28,0x29, 0x20,0x7b,0x20,0x5f,0x5f,0x70,0x20,0x2b,0x3d,0x20,0x5f,0x5f,0x6a,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x20,0x27,0x27, 0x29,0x20,0x7d,0x5c,0x6e,0x22,0x3a,0x22,0x3b,0x5c,0x6e,0x22,0x29,0x2b,0x70,0x2b, 0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x5f,0x70,0x5c,0x6e,0x7d,0x22,0x3b, 0x76,0x61,0x72,0x20,0x6d,0x3d,0x65,0x63,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x65,0x28,0x6c, 0x2c,0x76,0x2b,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x2b,0x70,0x29,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x69,0x2c,0x73,0x29,0x7d,0x29,0x29,0x3b,0x69,0x66, 0x28,0x6d,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x3d,0x70,0x2c,0x4a,0x61,0x28,0x6d, 0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6d,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x69,0x6d,0x65,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x28,0x65, 0x3d,0x67,0x75,0x28,0x65,0x29,0x29,0x3c,0x31,0x7c,0x7c,0x65,0x3e,0x76,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6d,0x2c, 0x72,0x3d,0x5f,0x6e,0x28,0x65,0x2c,0x6d,0x29,0x3b,0x74,0x3d,0x73,0x69,0x28,0x74, 0x29,0x2c,0x65,0x2d,0x3d,0x6d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x51,0x74,0x28,0x72,0x2c,0x74,0x29,0x3b,0x2b,0x2b,0x6e,0x3c,0x65,0x3b,0x29, 0x74,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x2c,0x55, 0x6e,0x2e,0x74,0x6f,0x46,0x69,0x6e,0x69,0x74,0x65,0x3d,0x76,0x75,0x2c,0x55,0x6e, 0x2e,0x74,0x6f,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x3d,0x67,0x75,0x2c,0x55,0x6e, 0x2e,0x74,0x6f,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x6d,0x75,0x2c,0x55,0x6e,0x2e, 0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x75,0x28,0x65,0x29, 0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x2c, 0x55,0x6e,0x2e,0x74,0x6f,0x4e,0x75,0x6d,0x62,0x65,0x72,0x3d,0x62,0x75,0x2c,0x55, 0x6e,0x2e,0x74,0x6f,0x53,0x61,0x66,0x65,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3f,0x63,0x72,0x28,0x67,0x75,0x28,0x65,0x29,0x2c,0x2d,0x39, 0x30,0x30,0x37,0x31,0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39,0x39,0x31,0x2c, 0x76,0x29,0x3a,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x30,0x7d,0x2c,0x55,0x6e, 0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x3d,0x5f,0x75,0x2c,0x55,0x6e,0x2e, 0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x75,0x28,0x65,0x29, 0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x2c, 0x55,0x6e,0x2e,0x74,0x72,0x69,0x6d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x28,0x65,0x3d,0x5f,0x75, 0x28,0x65,0x29,0x29,0x26,0x26,0x28,0x6e,0x7c,0x7c,0x74,0x3d,0x3d,0x3d,0x69,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x58,0x74,0x28,0x65,0x29,0x3b,0x69,0x66, 0x28,0x21,0x65,0x7c,0x7c,0x21,0x28,0x74,0x3d,0x73,0x6f,0x28,0x74,0x29,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x76, 0x6e,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x76,0x6e,0x28,0x74,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x78,0x6f,0x28,0x72,0x2c,0x74,0x6e,0x28,0x72,0x2c,0x6f,0x29, 0x2c,0x6e,0x6e,0x28,0x72,0x2c,0x6f,0x29,0x2b,0x31,0x29,0x2e,0x6a,0x6f,0x69,0x6e, 0x28,0x22,0x22,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x72,0x69,0x6d,0x45,0x6e,0x64, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x69,0x66,0x28,0x28,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x29,0x26,0x26,0x28, 0x6e,0x7c,0x7c,0x74,0x3d,0x3d,0x3d,0x69,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x67,0x6e,0x28,0x65,0x29, 0x2b,0x31,0x29,0x3b,0x69,0x66,0x28,0x21,0x65,0x7c,0x7c,0x21,0x28,0x74,0x3d,0x73, 0x6f,0x28,0x74,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x76,0x6e,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x78,0x6f,0x28,0x72,0x2c,0x30,0x2c,0x6e,0x6e,0x28,0x72,0x2c,0x76,0x6e, 0x28,0x74,0x29,0x29,0x2b,0x31,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x22,0x29, 0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x72,0x69,0x6d,0x53,0x74,0x61,0x72,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69, 0x66,0x28,0x28,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x29,0x26,0x26,0x28,0x6e,0x7c, 0x7c,0x74,0x3d,0x3d,0x3d,0x69,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x75,0x65,0x2c,0x22,0x22,0x29,0x3b, 0x69,0x66,0x28,0x21,0x65,0x7c,0x7c,0x21,0x28,0x74,0x3d,0x73,0x6f,0x28,0x74,0x29, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x76,0x6e,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x78,0x6f, 0x28,0x72,0x2c,0x74,0x6e,0x28,0x72,0x2c,0x76,0x6e,0x28,0x74,0x29,0x29,0x29,0x2e, 0x6a,0x6f,0x69,0x6e,0x28,0x22,0x22,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x74,0x72,0x75, 0x6e,0x63,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x33,0x30,0x2c,0x72,0x3d,0x22, 0x2e,0x2e,0x2e,0x22,0x3b,0x69,0x66,0x28,0x6e,0x75,0x28,0x74,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x22,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x6f,0x72,0x22, 0x69,0x6e,0x20,0x74,0x3f,0x74,0x2e,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x6f,0x72, 0x3a,0x6f,0x3b,0x6e,0x3d,0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x69,0x6e,0x20, 0x74,0x3f,0x67,0x75,0x28,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3a,0x6e, 0x2c,0x72,0x3d,0x22,0x6f,0x6d,0x69,0x73,0x73,0x69,0x6f,0x6e,0x22,0x69,0x6e,0x20, 0x74,0x3f,0x73,0x6f,0x28,0x74,0x2e,0x6f,0x6d,0x69,0x73,0x73,0x69,0x6f,0x6e,0x29, 0x3a,0x72,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x28,0x65,0x3d,0x5f,0x75,0x28,0x65, 0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x63,0x6e,0x28, 0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x76,0x6e,0x28,0x65,0x29,0x3b, 0x61,0x3d,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x69,0x66,0x28,0x6e,0x3e, 0x3d,0x61,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20, 0x63,0x3d,0x6e,0x2d,0x68,0x6e,0x28,0x72,0x29,0x3b,0x69,0x66,0x28,0x63,0x3c,0x31, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d, 0x75,0x3f,0x78,0x6f,0x28,0x75,0x2c,0x30,0x2c,0x63,0x29,0x2e,0x6a,0x6f,0x69,0x6e, 0x28,0x22,0x22,0x29,0x3a,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x63, 0x29,0x3b,0x69,0x66,0x28,0x6f,0x3d,0x3d,0x3d,0x69,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6c,0x2b,0x72,0x3b,0x69,0x66,0x28,0x75,0x26,0x26,0x28,0x63,0x2b,0x3d, 0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x63,0x29,0x2c,0x75,0x75,0x28,0x6f, 0x29,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x63,0x29, 0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x28,0x6f,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x73,0x2c,0x66,0x3d,0x6c,0x3b,0x66,0x6f,0x72,0x28,0x6f,0x2e,0x67,0x6c,0x6f,0x62, 0x61,0x6c,0x7c,0x7c,0x28,0x6f,0x3d,0x53,0x65,0x28,0x6f,0x2e,0x73,0x6f,0x75,0x72, 0x63,0x65,0x2c,0x5f,0x75,0x28,0x67,0x65,0x2e,0x65,0x78,0x65,0x63,0x28,0x6f,0x29, 0x29,0x2b,0x22,0x67,0x22,0x29,0x29,0x2c,0x6f,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6e, 0x64,0x65,0x78,0x3d,0x30,0x3b,0x73,0x3d,0x6f,0x2e,0x65,0x78,0x65,0x63,0x28,0x66, 0x29,0x3b,0x29,0x76,0x61,0x72,0x20,0x64,0x3d,0x73,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x3b,0x6c,0x3d,0x6c,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x64,0x3d,0x3d, 0x3d,0x69,0x3f,0x63,0x3a,0x64,0x29,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66, 0x28,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x73,0x6f,0x28,0x6f,0x29, 0x2c,0x63,0x29,0x21,0x3d,0x63,0x29,0x7b,0x76,0x61,0x72,0x20,0x70,0x3d,0x6c,0x2e, 0x6c,0x61,0x73,0x74,0x49,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6f,0x29,0x3b,0x70, 0x3e,0x2d,0x31,0x26,0x26,0x28,0x6c,0x3d,0x6c,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28, 0x30,0x2c,0x70,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x2b,0x72, 0x7d,0x2c,0x55,0x6e,0x2e,0x75,0x6e,0x65,0x73,0x63,0x61,0x70,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x65,0x3d,0x5f,0x75,0x28,0x65,0x29,0x29,0x26,0x26,0x58,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x29,0x3f,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x59, 0x2c,0x6d,0x6e,0x29,0x3a,0x65,0x7d,0x2c,0x55,0x6e,0x2e,0x75,0x6e,0x69,0x71,0x75, 0x65,0x49,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x2b,0x2b,0x4c,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x5f,0x75,0x28,0x65,0x29,0x2b,0x74,0x7d,0x2c,0x55,0x6e,0x2e,0x75,0x70, 0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x3d,0x58,0x75,0x2c,0x55,0x6e,0x2e,0x75,0x70, 0x70,0x65,0x72,0x46,0x69,0x72,0x73,0x74,0x3d,0x4a,0x75,0x2c,0x55,0x6e,0x2e,0x65, 0x61,0x63,0x68,0x3d,0x5f,0x61,0x2c,0x55,0x6e,0x2e,0x65,0x61,0x63,0x68,0x52,0x69, 0x67,0x68,0x74,0x3d,0x77,0x61,0x2c,0x55,0x6e,0x2e,0x66,0x69,0x72,0x73,0x74,0x3d, 0x4b,0x69,0x2c,0x6c,0x63,0x28,0x55,0x6e,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x7b,0x7d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x77,0x72,0x28,0x55,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x6e,0x29, 0x7c,0x7c,0x28,0x65,0x5b,0x6e,0x5d,0x3d,0x74,0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d, 0x28,0x29,0x2c,0x7b,0x63,0x68,0x61,0x69,0x6e,0x3a,0x21,0x31,0x7d,0x29,0x2c,0x55, 0x6e,0x2e,0x56,0x45,0x52,0x53,0x49,0x4f,0x4e,0x3d,0x22,0x34,0x2e,0x31,0x37,0x2e, 0x32,0x31,0x22,0x2c,0x43,0x74,0x28,0x5b,0x22,0x62,0x69,0x6e,0x64,0x22,0x2c,0x22, 0x62,0x69,0x6e,0x64,0x4b,0x65,0x79,0x22,0x2c,0x22,0x63,0x75,0x72,0x72,0x79,0x22, 0x2c,0x22,0x63,0x75,0x72,0x72,0x79,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x22,0x70, 0x61,0x72,0x74,0x69,0x61,0x6c,0x22,0x2c,0x22,0x70,0x61,0x72,0x74,0x69,0x61,0x6c, 0x52,0x69,0x67,0x68,0x74,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x55,0x6e,0x5b,0x65,0x5d,0x2e,0x70,0x6c,0x61,0x63,0x65, 0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x55,0x6e,0x7d,0x29,0x29,0x2c,0x43,0x74,0x28, 0x5b,0x22,0x64,0x72,0x6f,0x70,0x22,0x2c,0x22,0x74,0x61,0x6b,0x65,0x22,0x5d,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x56, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x5b,0x65,0x5d,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x6e,0x3d,0x6e,0x3d,0x3d, 0x3d,0x69,0x3f,0x31,0x3a,0x79,0x6e,0x28,0x67,0x75,0x28,0x6e,0x29,0x2c,0x30,0x29, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x66,0x69, 0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x26,0x26,0x21,0x74,0x3f,0x6e,0x65,0x77, 0x20,0x56,0x6e,0x28,0x74,0x68,0x69,0x73,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x63, 0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e, 0x5f,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x3f,0x72,0x2e,0x5f, 0x5f,0x74,0x61,0x6b,0x65,0x43,0x6f,0x75,0x6e,0x74,0x5f,0x5f,0x3d,0x5f,0x6e,0x28, 0x6e,0x2c,0x72,0x2e,0x5f,0x5f,0x74,0x61,0x6b,0x65,0x43,0x6f,0x75,0x6e,0x74,0x5f, 0x5f,0x29,0x3a,0x72,0x2e,0x5f,0x5f,0x76,0x69,0x65,0x77,0x73,0x5f,0x5f,0x2e,0x70, 0x75,0x73,0x68,0x28,0x7b,0x73,0x69,0x7a,0x65,0x3a,0x5f,0x6e,0x28,0x6e,0x2c,0x6d, 0x29,0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2b,0x28,0x72,0x2e,0x5f,0x5f,0x64,0x69, 0x72,0x5f,0x5f,0x3c,0x30,0x3f,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x22, 0x29,0x7d,0x29,0x2c,0x72,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x5b,0x65,0x2b,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x5d,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29, 0x5b,0x65,0x5d,0x28,0x74,0x29,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29, 0x7d,0x7d,0x29,0x29,0x2c,0x43,0x74,0x28,0x5b,0x22,0x66,0x69,0x6c,0x74,0x65,0x72, 0x22,0x2c,0x22,0x6d,0x61,0x70,0x22,0x2c,0x22,0x74,0x61,0x6b,0x65,0x57,0x68,0x69, 0x6c,0x65,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2b,0x31,0x2c,0x72,0x3d, 0x31,0x3d,0x3d,0x6e,0x7c,0x7c,0x33,0x3d,0x3d,0x6e,0x3b,0x56,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x5b,0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x2e,0x5f,0x5f,0x69,0x74,0x65,0x72,0x61,0x74,0x65,0x65,0x73,0x5f,0x5f, 0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x69,0x74,0x65,0x72,0x61,0x74,0x65,0x65,0x3a, 0x73,0x69,0x28,0x65,0x2c,0x33,0x29,0x2c,0x74,0x79,0x70,0x65,0x3a,0x6e,0x7d,0x29, 0x2c,0x74,0x2e,0x5f,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x3d, 0x74,0x2e,0x5f,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x7c,0x7c, 0x72,0x2c,0x74,0x7d,0x7d,0x29,0x29,0x2c,0x43,0x74,0x28,0x5b,0x22,0x68,0x65,0x61, 0x64,0x22,0x2c,0x22,0x6c,0x61,0x73,0x74,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x22,0x74,0x61,0x6b,0x65,0x22,0x2b,0x28,0x74,0x3f,0x22,0x52,0x69,0x67,0x68,0x74, 0x22,0x3a,0x22,0x22,0x29,0x3b,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x5b,0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x5b,0x6e,0x5d,0x28, 0x31,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x5b,0x30,0x5d,0x7d,0x7d,0x29, 0x29,0x2c,0x43,0x74,0x28,0x5b,0x22,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x22,0x2c, 0x22,0x74,0x61,0x69,0x6c,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22,0x64,0x72, 0x6f,0x70,0x22,0x2b,0x28,0x74,0x3f,0x22,0x22,0x3a,0x22,0x52,0x69,0x67,0x68,0x74, 0x22,0x29,0x3b,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x5b, 0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x66,0x69,0x6c,0x74, 0x65,0x72,0x65,0x64,0x5f,0x5f,0x3f,0x6e,0x65,0x77,0x20,0x56,0x6e,0x28,0x74,0x68, 0x69,0x73,0x29,0x3a,0x74,0x68,0x69,0x73,0x5b,0x6e,0x5d,0x28,0x31,0x29,0x7d,0x7d, 0x29,0x29,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x63,0x6f,0x6d,0x70,0x61,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x66, 0x69,0x6c,0x74,0x65,0x72,0x28,0x69,0x63,0x29,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x66,0x69,0x6e,0x64,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x65,0x29,0x2e,0x68, 0x65,0x61,0x64,0x28,0x29,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4c,0x61,0x73,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29,0x2e,0x66, 0x69,0x6e,0x64,0x28,0x65,0x29,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x76,0x6f,0x6b,0x65,0x4d,0x61,0x70,0x3d,0x58, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x6e,0x65,0x77,0x20, 0x56,0x6e,0x28,0x74,0x68,0x69,0x73,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61, 0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x72,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d, 0x29,0x29,0x7d,0x29,0x29,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x72,0x65,0x6a,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x46,0x61,0x28,0x73,0x69,0x28,0x65, 0x29,0x29,0x29,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x3d,0x67,0x75,0x28,0x65,0x29,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x2e,0x5f,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x26,0x26, 0x28,0x65,0x3e,0x30,0x7c,0x7c,0x74,0x3c,0x30,0x29,0x3f,0x6e,0x65,0x77,0x20,0x56, 0x6e,0x28,0x6e,0x29,0x3a,0x28,0x65,0x3c,0x30,0x3f,0x6e,0x3d,0x6e,0x2e,0x74,0x61, 0x6b,0x65,0x52,0x69,0x67,0x68,0x74,0x28,0x2d,0x65,0x29,0x3a,0x65,0x26,0x26,0x28, 0x6e,0x3d,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x28,0x65,0x29,0x29,0x2c,0x74,0x21,0x3d, 0x3d,0x69,0x26,0x26,0x28,0x6e,0x3d,0x28,0x74,0x3d,0x67,0x75,0x28,0x74,0x29,0x29, 0x3c,0x30,0x3f,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x52,0x69,0x67,0x68,0x74,0x28,0x2d, 0x74,0x29,0x3a,0x6e,0x2e,0x74,0x61,0x6b,0x65,0x28,0x74,0x2d,0x65,0x29,0x29,0x2c, 0x6e,0x29,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x74,0x61,0x6b,0x65,0x52,0x69,0x67,0x68,0x74,0x57,0x68,0x69,0x6c,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28, 0x29,0x2e,0x74,0x61,0x6b,0x65,0x57,0x68,0x69,0x6c,0x65,0x28,0x65,0x29,0x2e,0x72, 0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x41,0x72,0x72,0x61,0x79,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x6b,0x65,0x28,0x6d,0x29,0x7d,0x2c,0x77, 0x72,0x28,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x2f,0x5e,0x28,0x3f,0x3a,0x66,0x69,0x6c,0x74,0x65,0x72,0x7c, 0x66,0x69,0x6e,0x64,0x7c,0x6d,0x61,0x70,0x7c,0x72,0x65,0x6a,0x65,0x63,0x74,0x29, 0x7c,0x57,0x68,0x69,0x6c,0x65,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x29, 0x2c,0x72,0x3d,0x2f,0x5e,0x28,0x3f,0x3a,0x68,0x65,0x61,0x64,0x7c,0x6c,0x61,0x73, 0x74,0x29,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x29,0x2c,0x6f,0x3d,0x55, 0x6e,0x5b,0x72,0x3f,0x22,0x74,0x61,0x6b,0x65,0x22,0x2b,0x28,0x22,0x6c,0x61,0x73, 0x74,0x22,0x3d,0x3d,0x74,0x3f,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x22, 0x29,0x3a,0x74,0x5d,0x2c,0x61,0x3d,0x72,0x7c,0x7c,0x2f,0x5e,0x66,0x69,0x6e,0x64, 0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x29,0x3b,0x6f,0x26,0x26,0x28,0x55,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x5b,0x74,0x5d,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x2c, 0x75,0x3d,0x72,0x3f,0x5b,0x31,0x5d,0x3a,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2c,0x63,0x3d,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66, 0x20,0x56,0x6e,0x2c,0x6c,0x3d,0x75,0x5b,0x30,0x5d,0x2c,0x73,0x3d,0x63,0x7c,0x7c, 0x47,0x61,0x28,0x74,0x29,0x2c,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6f,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x55,0x6e,0x2c,0x52,0x74,0x28,0x5b,0x65,0x5d,0x2c,0x75,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x26,0x26,0x64,0x3f,0x74,0x5b,0x30,0x5d, 0x3a,0x74,0x7d,0x3b,0x73,0x26,0x26,0x6e,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x26,0x26, 0x31,0x21,0x3d,0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x63,0x3d, 0x73,0x3d,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x5f,0x63,0x68,0x61,0x69,0x6e,0x5f,0x5f,0x2c,0x70,0x3d,0x21,0x21,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x68,0x3d,0x61,0x26,0x26,0x21,0x64,0x2c,0x76, 0x3d,0x63,0x26,0x26,0x21,0x70,0x3b,0x69,0x66,0x28,0x21,0x61,0x26,0x26,0x73,0x29, 0x7b,0x74,0x3d,0x76,0x3f,0x74,0x3a,0x6e,0x65,0x77,0x20,0x56,0x6e,0x28,0x74,0x68, 0x69,0x73,0x29,0x3b,0x76,0x61,0x72,0x20,0x67,0x3d,0x65,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x74,0x2c,0x75,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x2e, 0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x2e,0x70,0x75,0x73,0x68, 0x28,0x7b,0x66,0x75,0x6e,0x63,0x3a,0x76,0x61,0x2c,0x61,0x72,0x67,0x73,0x3a,0x5b, 0x66,0x5d,0x2c,0x74,0x68,0x69,0x73,0x41,0x72,0x67,0x3a,0x69,0x7d,0x29,0x2c,0x6e, 0x65,0x77,0x20,0x48,0x6e,0x28,0x67,0x2c,0x64,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x68,0x26,0x26,0x76,0x3f,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74, 0x68,0x69,0x73,0x2c,0x75,0x29,0x3a,0x28,0x67,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74, 0x68,0x72,0x75,0x28,0x66,0x29,0x2c,0x68,0x3f,0x72,0x3f,0x67,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x28,0x29,0x5b,0x30,0x5d,0x3a,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28, 0x29,0x3a,0x67,0x29,0x7d,0x29,0x7d,0x29,0x29,0x2c,0x43,0x74,0x28,0x5b,0x22,0x70, 0x6f,0x70,0x22,0x2c,0x22,0x70,0x75,0x73,0x68,0x22,0x2c,0x22,0x73,0x68,0x69,0x66, 0x74,0x22,0x2c,0x22,0x73,0x6f,0x72,0x74,0x22,0x2c,0x22,0x73,0x70,0x6c,0x69,0x63, 0x65,0x22,0x2c,0x22,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x22,0x5d,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x54,0x65,0x5b,0x65,0x5d,0x2c,0x6e,0x3d,0x2f,0x5e,0x28,0x3f,0x3a,0x70,0x75, 0x73,0x68,0x7c,0x73,0x6f,0x72,0x74,0x7c,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x29, 0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x3f,0x22,0x74,0x61,0x70,0x22, 0x3a,0x22,0x74,0x68,0x72,0x75,0x22,0x2c,0x72,0x3d,0x2f,0x5e,0x28,0x3f,0x3a,0x70, 0x6f,0x70,0x7c,0x73,0x68,0x69,0x66,0x74,0x29,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74, 0x28,0x65,0x29,0x3b,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x5b,0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x3b,0x69, 0x66,0x28,0x72,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x63,0x68,0x61, 0x69,0x6e,0x5f,0x5f,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x47,0x61,0x28,0x6f,0x29,0x3f,0x6f,0x3a, 0x5b,0x5d,0x2c,0x65,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x5b,0x6e,0x5d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79, 0x28,0x47,0x61,0x28,0x6e,0x29,0x3f,0x6e,0x3a,0x5b,0x5d,0x2c,0x65,0x29,0x7d,0x29, 0x29,0x7d,0x7d,0x29,0x29,0x2c,0x77,0x72,0x28,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x55,0x6e,0x5b,0x74,0x5d, 0x3b,0x69,0x66,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x6e, 0x61,0x6d,0x65,0x2b,0x22,0x22,0x3b,0x52,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x44, 0x6e,0x2c,0x72,0x29,0x7c,0x7c,0x28,0x44,0x6e,0x5b,0x72,0x5d,0x3d,0x5b,0x5d,0x29, 0x2c,0x44,0x6e,0x5b,0x72,0x5d,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x6e,0x61,0x6d, 0x65,0x3a,0x74,0x2c,0x66,0x75,0x6e,0x63,0x3a,0x6e,0x7d,0x29,0x7d,0x7d,0x29,0x29, 0x2c,0x44,0x6e,0x5b,0x57,0x6f,0x28,0x69,0x2c,0x32,0x29,0x2e,0x6e,0x61,0x6d,0x65, 0x5d,0x3d,0x5b,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x77,0x72,0x61,0x70,0x70,0x65, 0x72,0x22,0x2c,0x66,0x75,0x6e,0x63,0x3a,0x69,0x7d,0x5d,0x2c,0x56,0x6e,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x6e,0x65,0x77,0x20,0x56,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72, 0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x3d,0x50,0x6f, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f, 0x5f,0x29,0x2c,0x65,0x2e,0x5f,0x5f,0x64,0x69,0x72,0x5f,0x5f,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x5f,0x64,0x69,0x72,0x5f,0x5f,0x2c,0x65,0x2e,0x5f,0x5f,0x66,0x69, 0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x2c,0x65,0x2e,0x5f,0x5f,0x69, 0x74,0x65,0x72,0x61,0x74,0x65,0x65,0x73,0x5f,0x5f,0x3d,0x50,0x6f,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x69,0x74,0x65,0x72,0x61,0x74,0x65,0x65,0x73,0x5f,0x5f, 0x29,0x2c,0x65,0x2e,0x5f,0x5f,0x74,0x61,0x6b,0x65,0x43,0x6f,0x75,0x6e,0x74,0x5f, 0x5f,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x74,0x61,0x6b,0x65,0x43,0x6f,0x75, 0x6e,0x74,0x5f,0x5f,0x2c,0x65,0x2e,0x5f,0x5f,0x76,0x69,0x65,0x77,0x73,0x5f,0x5f, 0x3d,0x50,0x6f,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x76,0x69,0x65,0x77,0x73, 0x5f,0x5f,0x29,0x2c,0x65,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x6e,0x65,0x77,0x20,0x56,0x6e,0x28,0x74,0x68,0x69,0x73,0x29,0x3b, 0x65,0x2e,0x5f,0x5f,0x64,0x69,0x72,0x5f,0x5f,0x3d,0x2d,0x31,0x2c,0x65,0x2e,0x5f, 0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x5f,0x5f,0x3d,0x21,0x30,0x7d,0x65, 0x6c,0x73,0x65,0x28,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x6f,0x6e,0x65, 0x28,0x29,0x29,0x2e,0x5f,0x5f,0x64,0x69,0x72,0x5f,0x5f,0x2a,0x3d,0x2d,0x31,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c,0x56,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x28,0x29,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x64,0x69,0x72,0x5f,0x5f,0x2c,0x6e,0x3d,0x47,0x61,0x28,0x65,0x29,0x2c,0x72,0x3d, 0x74,0x3c,0x30,0x2c,0x6f,0x3d,0x6e,0x3f,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3a,0x30,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d, 0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x2b,0x2b, 0x72,0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6e,0x5b,0x72,0x5d, 0x2c,0x61,0x3d,0x69,0x2e,0x73,0x69,0x7a,0x65,0x3b,0x73,0x77,0x69,0x74,0x63,0x68, 0x28,0x69,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x64,0x72, 0x6f,0x70,0x22,0x3a,0x65,0x2b,0x3d,0x61,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63, 0x61,0x73,0x65,0x22,0x64,0x72,0x6f,0x70,0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x74, 0x2d,0x3d,0x61,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74, 0x61,0x6b,0x65,0x22,0x3a,0x74,0x3d,0x5f,0x6e,0x28,0x74,0x2c,0x65,0x2b,0x61,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x61,0x6b,0x65, 0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x65,0x3d,0x79,0x6e,0x28,0x65,0x2c,0x74,0x2d, 0x61,0x29,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x74,0x61,0x72,0x74, 0x3a,0x65,0x2c,0x65,0x6e,0x64,0x3a,0x74,0x7d,0x7d,0x28,0x30,0x2c,0x6f,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x5f,0x76,0x69,0x65,0x77,0x73,0x5f,0x5f,0x29,0x2c,0x61, 0x3d,0x69,0x2e,0x73,0x74,0x61,0x72,0x74,0x2c,0x75,0x3d,0x69,0x2e,0x65,0x6e,0x64, 0x2c,0x63,0x3d,0x75,0x2d,0x61,0x2c,0x6c,0x3d,0x72,0x3f,0x75,0x3a,0x61,0x2d,0x31, 0x2c,0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x69,0x74,0x65,0x72,0x61,0x74, 0x65,0x65,0x73,0x5f,0x5f,0x2c,0x66,0x3d,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2c,0x64,0x3d,0x30,0x2c,0x70,0x3d,0x5f,0x6e,0x28,0x63,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x5f,0x74,0x61,0x6b,0x65,0x43,0x6f,0x75,0x6e,0x74,0x5f,0x5f,0x29,0x3b, 0x69,0x66,0x28,0x21,0x6e,0x7c,0x7c,0x21,0x72,0x26,0x26,0x6f,0x3d,0x3d,0x63,0x26, 0x26,0x70,0x3d,0x3d,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x6f,0x28, 0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73, 0x5f,0x5f,0x29,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d,0x5b,0x5d,0x3b,0x65,0x3a,0x66, 0x6f,0x72,0x28,0x3b,0x63,0x2d,0x2d,0x26,0x26,0x64,0x3c,0x70,0x3b,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x76,0x3d,0x2d,0x31,0x2c,0x67,0x3d,0x65,0x5b, 0x6c,0x2b,0x3d,0x74,0x5d,0x3b,0x2b,0x2b,0x76,0x3c,0x66,0x3b,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6d,0x3d,0x73,0x5b,0x76,0x5d,0x2c,0x62,0x3d,0x6d,0x2e,0x69,0x74,0x65, 0x72,0x61,0x74,0x65,0x65,0x2c,0x79,0x3d,0x6d,0x2e,0x74,0x79,0x70,0x65,0x2c,0x5f, 0x3d,0x62,0x28,0x67,0x29,0x3b,0x69,0x66,0x28,0x32,0x3d,0x3d,0x79,0x29,0x67,0x3d, 0x5f,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x21,0x5f,0x29,0x7b,0x69,0x66, 0x28,0x31,0x3d,0x3d,0x79,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x20,0x65, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x7d,0x68,0x5b,0x64,0x2b,0x2b,0x5d, 0x3d,0x67,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x7d,0x2c,0x55,0x6e,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x61,0x74,0x3d,0x67,0x61,0x2c, 0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x68,0x61, 0x69,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x68,0x61,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x2c,0x55, 0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6f,0x6d,0x6d, 0x69,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x48,0x6e,0x28,0x74,0x68,0x69,0x73, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x63,0x68,0x61,0x69,0x6e,0x5f,0x5f,0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x76,0x61, 0x6c,0x75,0x65,0x73,0x5f,0x5f,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x5f,0x5f,0x3d,0x68,0x75,0x28, 0x74,0x68,0x69,0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x29,0x29,0x3b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x69,0x6e,0x64,0x65, 0x78,0x5f,0x5f,0x3e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x75, 0x65,0x73,0x5f,0x5f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x64,0x6f,0x6e,0x65,0x3a,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x65,0x3f,0x69,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x75,0x65, 0x73,0x5f,0x5f,0x5b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x69,0x6e,0x64,0x65,0x78, 0x5f,0x5f,0x2b,0x2b,0x5d,0x7d,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x70,0x6c,0x61,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x3b,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x6f,0x66,0x20,0x24,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x55,0x69,0x28,0x6e,0x29,0x3b,0x72,0x2e,0x5f,0x5f,0x69,0x6e,0x64,0x65,0x78,0x5f, 0x5f,0x3d,0x30,0x2c,0x72,0x2e,0x5f,0x5f,0x76,0x61,0x6c,0x75,0x65,0x73,0x5f,0x5f, 0x3d,0x69,0x2c,0x74,0x3f,0x6f,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64, 0x5f,0x5f,0x3d,0x72,0x3a,0x74,0x3d,0x72,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72, 0x3b,0x6e,0x3d,0x6e,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70, 0x70,0x65,0x64,0x5f,0x5f,0x3d,0x65,0x2c,0x74,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f, 0x5f,0x3b,0x69,0x66,0x28,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f, 0x66,0x20,0x56,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x73,0x5f,0x5f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x74, 0x3d,0x6e,0x65,0x77,0x20,0x56,0x6e,0x28,0x74,0x68,0x69,0x73,0x29,0x29,0x2c,0x28, 0x74,0x3d,0x74,0x2e,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x28,0x29,0x29,0x2e,0x5f, 0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f,0x2e,0x70,0x75,0x73,0x68,0x28, 0x7b,0x66,0x75,0x6e,0x63,0x3a,0x76,0x61,0x2c,0x61,0x72,0x67,0x73,0x3a,0x5b,0x6e, 0x61,0x5d,0x2c,0x74,0x68,0x69,0x73,0x41,0x72,0x67,0x3a,0x69,0x7d,0x29,0x2c,0x6e, 0x65,0x77,0x20,0x48,0x6e,0x28,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x63, 0x68,0x61,0x69,0x6e,0x5f,0x5f,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x74,0x68,0x72,0x75,0x28,0x6e,0x61,0x29,0x7d,0x2c,0x55,0x6e, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x4a,0x53,0x4f, 0x4e,0x3d,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x4f,0x66,0x3d,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x6f,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x5f, 0x29,0x7d,0x2c,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x66,0x69,0x72,0x73,0x74,0x3d,0x55,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x68,0x65,0x61,0x64,0x2c,0x58,0x65,0x26,0x26,0x28,0x55,0x6e,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x5b,0x58,0x65,0x5d,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x7d,0x29,0x2c,0x55,0x6e,0x7d,0x28,0x29,0x3b,0x68,0x74,0x2e, 0x5f,0x3d,0x62,0x6e,0x2c,0x28,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x6e,0x7d,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x2c,0x74,0x2c,0x72,0x29,0x29,0x3d,0x3d,0x3d,0x69, 0x7c,0x7c,0x28,0x72,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6f,0x29,0x7d, 0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x29,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x35,0x36,0x29,0x2c,0x6e, 0x28,0x39,0x35,0x29,0x28,0x65,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26, 0x26,0x65,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x26,0x26,0x65,0x3b,0x74,0x2e,0x61,0x3d,0x6e,0x7d,0x29,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x35,0x36,0x29,0x29,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x31,0x38,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x34,0x33,0x29,0x2c,0x69, 0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x26,0x26,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x26,0x26,0x21,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x61, 0x3d,0x69,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x21,0x65,0x2e,0x6e,0x6f, 0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x2c,0x75,0x3d,0x61,0x26,0x26,0x61, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x3d,0x3d,0x69,0x3f,0x72,0x2e,0x61, 0x2e,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x63, 0x3d,0x28,0x75,0x3f,0x75,0x2e,0x69,0x73,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x29,0x7c,0x7c,0x6f,0x2e,0x61,0x3b,0x74,0x2e,0x61,0x3d, 0x63,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x28, 0x39,0x36,0x29,0x28,0x65,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x31,0x32,0x33,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x32,0x34,0x29,0x2c,0x69, 0x3d,0x6e,0x28,0x31,0x32,0x37,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3d,0x69,0x28,0x74,0x2c,0x33,0x29,0x2c,0x6f,0x28,0x65,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x72,0x28, 0x6e,0x2c,0x6f,0x2c,0x74,0x28,0x65,0x2c,0x6f,0x2c,0x69,0x29,0x29,0x7d,0x29,0x29, 0x2c,0x6e,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x30,0x29,0x2c,0x69,0x3d,0x28,0x6e,0x28,0x37,0x38,0x29,0x2c,0x6e,0x28,0x33, 0x38,0x29,0x2c,0x6e,0x28,0x31,0x36,0x29,0x29,0x3b,0x6e,0x28,0x37,0x39,0x29,0x2c, 0x6e,0x28,0x38,0x30,0x29,0x3b,0x6e,0x28,0x35,0x37,0x29,0x2c,0x6e,0x28,0x35,0x38, 0x29,0x3b,0x6e,0x28,0x31,0x33,0x39,0x29,0x2c,0x6e,0x65,0x77,0x20,0x57,0x65,0x61, 0x6b,0x4d,0x61,0x70,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x28,0x34,0x38,0x29, 0x2c,0x75,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x63,0x3d,0x5b,0x22,0x6f,0x6e,0x4b,0x65, 0x79,0x44,0x6f,0x77,0x6e,0x22,0x5d,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x6f,0x2e, 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c, 0x6f,0x3d,0x65,0x2e,0x6f,0x6e,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x2c,0x6c,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28, 0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x7d,0x28,0x65,0x2c,0x63,0x29,0x2c,0x73,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x62,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x61,0x22,0x7d,0x2c,0x6c,0x29,0x29,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x61,0x29,0x28,0x73,0x2c,0x31,0x29,0x5b,0x30,0x5d,0x2c,0x64,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x2e,0x6f,0x6e,0x4b,0x65,0x79, 0x44,0x6f,0x77,0x6e,0x28,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6f,0x7c, 0x7c,0x6f,0x28,0x65,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28, 0x28,0x6e,0x3d,0x6c,0x2e,0x68,0x72,0x65,0x66,0x29,0x26,0x26,0x22,0x23,0x22,0x21, 0x3d,0x3d,0x6e,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x7c,0x7c,0x6c,0x2e,0x72,0x6f, 0x6c,0x65,0x29,0x26,0x26,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x21,0x3d,0x3d, 0x6c,0x2e,0x72,0x6f,0x6c,0x65,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x22,0x61,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c,0x6c, 0x2c,0x7b,0x6f,0x6e,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x3a,0x6f,0x7d,0x29,0x29, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x61,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c,0x6c,0x2c,0x66,0x2c,0x7b,0x6f,0x6e, 0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x3a,0x64,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x6c,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x41, 0x6e,0x63,0x68,0x6f,0x72,0x22,0x3b,0x74,0x2e,0x61,0x3d,0x6c,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x64,0x28,0x74, 0x2c,0x22,0x61,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x6f,0x7d,0x29,0x29,0x2c,0x6e,0x2e, 0x64,0x28,0x74,0x2c,0x22,0x62,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x69,0x7d,0x29,0x29, 0x2c,0x6e,0x2e,0x64,0x28,0x74,0x2c,0x22,0x63,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x69, 0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f, 0x3d,0x6e,0x2e,0x6e,0x28,0x72,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x33,0x39,0x29,0x2c, 0x61,0x3d,0x6e,0x28,0x36,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x32,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x4d,0x69,0x6e,0x69,0x66,0x69,0x65,0x64,0x20,0x52,0x65,0x64,0x75, 0x78,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x23,0x22,0x2b,0x65,0x2b,0x22,0x3b,0x20, 0x76,0x69,0x73,0x69,0x74,0x20,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x72,0x65, 0x64,0x75,0x78,0x2e,0x6a,0x73,0x2e,0x6f,0x72,0x67,0x2f,0x45,0x72,0x72,0x6f,0x72, 0x73,0x3f,0x63,0x6f,0x64,0x65,0x3d,0x22,0x2b,0x65,0x2b,0x22,0x20,0x66,0x6f,0x72, 0x20,0x74,0x68,0x65,0x20,0x66,0x75,0x6c,0x6c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, 0x65,0x20,0x6f,0x72,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x6f,0x6e, 0x2d,0x6d,0x69,0x6e,0x69,0x66,0x69,0x65,0x64,0x20,0x64,0x65,0x76,0x20,0x65,0x6e, 0x76,0x69,0x72,0x6f,0x6e,0x6d,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x66,0x75, 0x6c,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x73,0x2e,0x20,0x22,0x7d,0x76,0x61,0x72, 0x20,0x6c,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x6f,0x62,0x73,0x65,0x72,0x76,0x61,0x62,0x6c,0x65, 0x7c,0x7c,0x22,0x40,0x40,0x6f,0x62,0x73,0x65,0x72,0x76,0x61,0x62,0x6c,0x65,0x22, 0x2c,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d, 0x28,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x36,0x29,0x2e, 0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x37,0x29,0x2e,0x73,0x70,0x6c, 0x69,0x74,0x28,0x22,0x22,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2e,0x22,0x29, 0x7d,0x2c,0x66,0x3d,0x7b,0x49,0x4e,0x49,0x54,0x3a,0x22,0x40,0x40,0x72,0x65,0x64, 0x75,0x78,0x2f,0x49,0x4e,0x49,0x54,0x22,0x2b,0x73,0x28,0x29,0x2c,0x52,0x45,0x50, 0x4c,0x41,0x43,0x45,0x3a,0x22,0x40,0x40,0x72,0x65,0x64,0x75,0x78,0x2f,0x52,0x45, 0x50,0x4c,0x41,0x43,0x45,0x22,0x2b,0x73,0x28,0x29,0x2c,0x50,0x52,0x4f,0x42,0x45, 0x5f,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,0x5f,0x41,0x43,0x54,0x49,0x4f,0x4e,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x40,0x40,0x72,0x65,0x64,0x75,0x78,0x2f,0x50,0x52,0x4f,0x42,0x45,0x5f, 0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,0x5f,0x41,0x43,0x54,0x49,0x4f,0x4e,0x22,0x2b, 0x73,0x28,0x29,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x4f,0x66,0x28,0x74,0x29,0x3b,0x29,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x4f,0x66,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x4f,0x66,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x70,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x6e,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x33,0x5d,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x30,0x29,0x29, 0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x6e,0x26,0x26,0x28,0x6e,0x3d,0x74,0x2c,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x29,0x2c,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x6e,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x63,0x28,0x31,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x28,0x70,0x29,0x28,0x65,0x2c,0x74,0x29,0x7d,0x69,0x66,0x28,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x63,0x28,0x32,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65, 0x2c,0x69,0x3d,0x74,0x2c,0x61,0x3d,0x5b,0x5d,0x2c,0x75,0x3d,0x61,0x2c,0x73,0x3d, 0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x28,0x29,0x7b, 0x75,0x3d,0x3d,0x3d,0x61,0x26,0x26,0x28,0x75,0x3d,0x61,0x2e,0x73,0x6c,0x69,0x63, 0x65,0x28,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x28, 0x29,0x7b,0x69,0x66,0x28,0x73,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x33,0x29,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x34, 0x29,0x29,0x3b,0x69,0x66,0x28,0x73,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x35,0x29,0x29,0x3b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x21,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x28, 0x29,0x2c,0x75,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x74,0x29,0x7b,0x69,0x66,0x28, 0x73,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x63,0x28,0x36,0x29,0x29,0x3b,0x74,0x3d,0x21,0x31,0x2c,0x68,0x28,0x29, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x75,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66, 0x28,0x65,0x29,0x3b,0x75,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x6e,0x2c,0x31, 0x29,0x2c,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6d,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x64,0x28,0x65, 0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x63,0x28,0x37,0x29,0x29,0x3b,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x38,0x29,0x29,0x3b,0x69,0x66,0x28, 0x73,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x63,0x28,0x39,0x29,0x29,0x3b,0x74,0x72,0x79,0x7b,0x73,0x3d,0x21,0x30, 0x2c,0x69,0x3d,0x6f,0x28,0x69,0x2c,0x65,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c, 0x79,0x7b,0x73,0x3d,0x21,0x31,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x3d,0x61,0x3d,0x75,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x74,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x7b,0x28,0x30,0x2c,0x74,0x5b,0x6e,0x5d, 0x29,0x28,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x63,0x28,0x31,0x30,0x29,0x29,0x3b,0x6f,0x3d,0x65,0x2c,0x6d, 0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x66,0x2e,0x52,0x45,0x50,0x4c,0x41,0x43,0x45, 0x7d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x2c,0x74,0x3d,0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x65,0x3d,0x7b,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x31,0x31,0x29, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x65, 0x2e,0x6e,0x65,0x78,0x74,0x26,0x26,0x65,0x2e,0x6e,0x65,0x78,0x74,0x28,0x76,0x28, 0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x29,0x2c,0x7b,0x75, 0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x74,0x28,0x6e,0x29,0x7d, 0x7d,0x7d,0x29,0x5b,0x6c,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x7d,0x2c,0x65, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a, 0x66,0x2e,0x49,0x4e,0x49,0x54,0x7d,0x29,0x2c,0x28,0x72,0x3d,0x7b,0x64,0x69,0x73, 0x70,0x61,0x74,0x63,0x68,0x3a,0x6d,0x2c,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62, 0x65,0x3a,0x67,0x2c,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x3a,0x76,0x2c,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3a,0x62,0x7d, 0x29,0x5b,0x6c,0x5d,0x3d,0x79,0x2c,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x68,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x28,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73, 0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x29,0x7d,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x28, 0x65,0x2c,0x74,0x29,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28,0x31,0x36,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x7b,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20, 0x69,0x6e,0x20,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x5b,0x72,0x5d, 0x3b,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6f,0x26,0x26,0x28,0x6e,0x5b,0x72,0x5d,0x3d,0x68,0x28, 0x6f,0x2c,0x74,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72, 0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b, 0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x3a,0x31,0x3d, 0x3d,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x74,0x5b,0x30,0x5d,0x3a, 0x74,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x28,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x29,0x7d,0x7d,0x29, 0x29,0x7d,0x6e,0x28,0x32,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x6f,0x2e, 0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28, 0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x76,0x61,0x72,0x20,0x62,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x28,0x29,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x62,0x2c,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x6c,0x65,0x61,0x72,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e, 0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6e,0x6f,0x74,0x69,0x66,0x79,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65, 0x3d,0x74,0x3b,0x65,0x3b,0x29,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x28,0x29,0x2c,0x65,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x7d,0x29,0x29,0x7d,0x2c, 0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x5b,0x5d,0x2c,0x6e,0x3d,0x74,0x3b, 0x6e,0x3b,0x29,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x29,0x2c,0x6e,0x3d,0x6e, 0x2e,0x6e,0x65,0x78,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x2c, 0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x21,0x30,0x2c,0x6f, 0x3d,0x6e,0x3d,0x7b,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x65,0x2c,0x6e, 0x65,0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x70,0x72,0x65,0x76,0x3a,0x6e,0x7d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x70,0x72,0x65,0x76,0x3f,0x6f, 0x2e,0x70,0x72,0x65,0x76,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x6f,0x3a,0x74,0x3d,0x6f, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x28,0x72,0x3d,0x21,0x31,0x2c,0x6f, 0x2e,0x6e,0x65,0x78,0x74,0x3f,0x6f,0x2e,0x6e,0x65,0x78,0x74,0x2e,0x70,0x72,0x65, 0x76,0x3d,0x6f,0x2e,0x70,0x72,0x65,0x76,0x3a,0x6e,0x3d,0x6f,0x2e,0x70,0x72,0x65, 0x76,0x2c,0x6f,0x2e,0x70,0x72,0x65,0x76,0x3f,0x6f,0x2e,0x70,0x72,0x65,0x76,0x2e, 0x6e,0x65,0x78,0x74,0x3d,0x6f,0x2e,0x6e,0x65,0x78,0x74,0x3a,0x74,0x3d,0x6f,0x2e, 0x6e,0x65,0x78,0x74,0x29,0x7d,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x5f,0x3d,0x7b, 0x6e,0x6f,0x74,0x69,0x66,0x79,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x7d,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x2c,0x72,0x3d,0x5f,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6f,0x28,0x29,0x7b,0x61,0x2e,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x43,0x68, 0x61,0x6e,0x67,0x65,0x26,0x26,0x61,0x2e,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x43, 0x68,0x61,0x6e,0x67,0x65,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x69,0x28,0x29,0x7b,0x6e,0x7c,0x7c,0x28,0x6e,0x3d,0x74,0x3f,0x74,0x2e,0x61, 0x64,0x64,0x4e,0x65,0x73,0x74,0x65,0x64,0x53,0x75,0x62,0x28,0x6f,0x29,0x3a,0x65, 0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x6f,0x29,0x2c,0x72,0x3d, 0x79,0x28,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x7b,0x61,0x64,0x64,0x4e, 0x65,0x73,0x74,0x65,0x64,0x53,0x75,0x62,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x29,0x2c, 0x72,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x65,0x29,0x7d,0x2c, 0x6e,0x6f,0x74,0x69,0x66,0x79,0x4e,0x65,0x73,0x74,0x65,0x64,0x53,0x75,0x62,0x73, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x2e,0x6e,0x6f, 0x74,0x69,0x66,0x79,0x28,0x29,0x7d,0x2c,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x68, 0x61,0x6e,0x67,0x65,0x57,0x72,0x61,0x70,0x70,0x65,0x72,0x3a,0x6f,0x2c,0x69,0x73, 0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x28,0x6e,0x29,0x7d,0x2c,0x74,0x72,0x79,0x53,0x75,0x62,0x73, 0x63,0x72,0x69,0x62,0x65,0x3a,0x69,0x2c,0x74,0x72,0x79,0x55,0x6e,0x73,0x75,0x62, 0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x6e,0x26,0x26,0x28,0x6e,0x28,0x29,0x2c,0x6e,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x2c,0x72,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28,0x29,0x2c,0x72,0x3d,0x5f, 0x29,0x7d,0x2c,0x67,0x65,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x7d,0x76, 0x61,0x72,0x20,0x4f,0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e, 0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3f,0x72,0x2e,0x75,0x73,0x65, 0x4c,0x61,0x79,0x6f,0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x72,0x2e,0x75, 0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x3b,0x76,0x61,0x72,0x20,0x78,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x73,0x74,0x6f,0x72,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x77,0x28,0x74,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61, 0x6e,0x67,0x65,0x3d,0x65,0x2e,0x6e,0x6f,0x74,0x69,0x66,0x79,0x4e,0x65,0x73,0x74, 0x65,0x64,0x53,0x75,0x62,0x73,0x2c,0x7b,0x73,0x74,0x6f,0x72,0x65,0x3a,0x74,0x2c, 0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x65,0x7d,0x7d, 0x29,0x2c,0x5b,0x74,0x5d,0x29,0x2c,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x5d, 0x29,0x3b,0x4f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70, 0x74,0x69,0x6f,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x74,0x72, 0x79,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x29,0x2c,0x75,0x21,0x3d, 0x3d,0x74,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x26,0x26,0x65, 0x2e,0x6e,0x6f,0x74,0x69,0x66,0x79,0x4e,0x65,0x73,0x74,0x65,0x64,0x53,0x75,0x62, 0x73,0x28,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65, 0x2e,0x74,0x72,0x79,0x55,0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28, 0x29,0x2c,0x65,0x2e,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61,0x6e,0x67, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x75,0x5d,0x29, 0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x6e,0x7c,0x7c,0x6d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x28,0x63,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c, 0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x61,0x7d,0x2c,0x69,0x29,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x45,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67, 0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b, 0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x74,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x20, 0x69,0x6e,0x20,0x6e,0x29,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x72,0x29,0x26,0x26, 0x28,0x65,0x5b,0x72,0x5d,0x3d,0x6e,0x5b,0x72,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x7d,0x2c,0x45,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28, 0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x7d,0x76,0x61,0x72,0x20,0x6b,0x3d,0x6e,0x28,0x35,0x32,0x29,0x2c, 0x53,0x3d,0x6e,0x2e,0x6e,0x28,0x6b,0x29,0x2c,0x43,0x3d,0x6e,0x28,0x31,0x34,0x38, 0x29,0x2c,0x41,0x3d,0x5b,0x22,0x67,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, 0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x6d,0x65,0x74,0x68,0x6f,0x64,0x4e,0x61,0x6d, 0x65,0x22,0x2c,0x22,0x72,0x65,0x6e,0x64,0x65,0x72,0x43,0x6f,0x75,0x6e,0x74,0x50, 0x72,0x6f,0x70,0x22,0x2c,0x22,0x73,0x68,0x6f,0x75,0x6c,0x64,0x48,0x61,0x6e,0x64, 0x6c,0x65,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x73,0x22,0x2c, 0x22,0x73,0x74,0x6f,0x72,0x65,0x4b,0x65,0x79,0x22,0x2c,0x22,0x77,0x69,0x74,0x68, 0x52,0x65,0x66,0x22,0x2c,0x22,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66, 0x22,0x2c,0x22,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x22,0x5d,0x2c,0x54,0x3d,0x5b, 0x22,0x72,0x65,0x61,0x63,0x74,0x52,0x65,0x64,0x75,0x78,0x46,0x6f,0x72,0x77,0x61, 0x72,0x64,0x65,0x64,0x52,0x65,0x66,0x22,0x5d,0x2c,0x50,0x3d,0x5b,0x5d,0x2c,0x44, 0x3d,0x5b,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x5d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x74, 0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x6e,0x2b,0x31,0x5d,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x4f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x74,0x29,0x7d,0x29,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x52,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f, 0x2c,0x69,0x2c,0x61,0x29,0x7b,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d, 0x72,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6f,0x2c,0x6e,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x31,0x2c,0x69,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x28,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x4c,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c, 0x69,0x2c,0x61,0x2c,0x75,0x2c,0x63,0x2c,0x6c,0x29,0x7b,0x69,0x66,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x21,0x31,0x2c,0x66,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66, 0x28,0x21,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x2c,0x6e,0x2c,0x64,0x3d,0x74, 0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x74,0x72,0x79,0x7b, 0x65,0x3d,0x72,0x28,0x64,0x2c,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29, 0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x70,0x29,0x7b,0x6e,0x3d,0x70,0x2c,0x66,0x3d, 0x70,0x7d,0x6e,0x7c,0x7c,0x28,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x65,0x3d, 0x3d,0x3d,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3f,0x61,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x63,0x28,0x29,0x3a,0x28,0x69,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x65,0x2c,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x65,0x2c,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x30, 0x2c,0x6c,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x54,0x4f,0x52,0x45,0x5f, 0x55,0x50,0x44,0x41,0x54,0x45,0x44,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64, 0x3a,0x7b,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x7d,0x7d,0x29,0x29,0x7d,0x7d,0x3b, 0x6e,0x2e,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x3d, 0x64,0x2c,0x6e,0x2e,0x74,0x72,0x79,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65, 0x28,0x29,0x2c,0x64,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x73,0x3d,0x21,0x30, 0x2c,0x6e,0x2e,0x74,0x72,0x79,0x55,0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62, 0x65,0x28,0x29,0x2c,0x6e,0x2e,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61, 0x6e,0x67,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x66,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x46,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x6e,0x75,0x6c, 0x6c,0x2c,0x30,0x5d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x26,0x26,0x28,0x74,0x3d,0x7b,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74, 0x2c,0x69,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e, 0x61,0x6d,0x65,0x2c,0x61,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69, 0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x41,0x64,0x76,0x61,0x6e, 0x63,0x65,0x64,0x28,0x22,0x2b,0x65,0x2b,0x22,0x29,0x22,0x7d,0x3a,0x69,0x2c,0x75, 0x3d,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x3f,0x22,0x63,0x6f,0x6e,0x6e, 0x65,0x63,0x74,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x22,0x3a,0x75,0x2c,0x6c, 0x3d,0x6e,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x43,0x6f,0x75,0x6e,0x74,0x50,0x72, 0x6f,0x70,0x2c,0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6c,0x3f, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6c,0x2c,0x66,0x3d,0x6e,0x2e,0x73,0x68,0x6f, 0x75,0x6c,0x64,0x48,0x61,0x6e,0x64,0x6c,0x65,0x53,0x74,0x61,0x74,0x65,0x43,0x68, 0x61,0x6e,0x67,0x65,0x73,0x2c,0x64,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x66,0x7c,0x7c,0x66,0x2c,0x70,0x3d,0x6e,0x2e,0x73,0x74,0x6f,0x72,0x65,0x4b, 0x65,0x79,0x2c,0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x70,0x3f, 0x22,0x73,0x74,0x6f,0x72,0x65,0x22,0x3a,0x70,0x2c,0x76,0x3d,0x28,0x6e,0x2e,0x77, 0x69,0x74,0x68,0x52,0x65,0x66,0x2c,0x6e,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64, 0x52,0x65,0x66,0x29,0x2c,0x67,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x76,0x26,0x26,0x76,0x2c,0x62,0x3d,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x2c,0x79,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x62,0x3f,0x6d,0x3a, 0x62,0x2c,0x5f,0x3d,0x6a,0x28,0x6e,0x2c,0x41,0x29,0x2c,0x4f,0x3d,0x79,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x74,0x2e,0x6e,0x61,0x6d,0x65,0x7c,0x7c,0x22, 0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x22,0x2c,0x69,0x3d,0x61,0x28,0x6e, 0x29,0x2c,0x75,0x3d,0x45,0x28,0x7b,0x7d,0x2c,0x5f,0x2c,0x7b,0x67,0x65,0x74,0x44, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x2c,0x6d,0x65,0x74, 0x68,0x6f,0x64,0x4e,0x61,0x6d,0x65,0x3a,0x63,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72, 0x43,0x6f,0x75,0x6e,0x74,0x50,0x72,0x6f,0x70,0x3a,0x73,0x2c,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x48,0x61,0x6e,0x64,0x6c,0x65,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61, 0x6e,0x67,0x65,0x73,0x3a,0x64,0x2c,0x73,0x74,0x6f,0x72,0x65,0x4b,0x65,0x79,0x3a, 0x68,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3a,0x69,0x2c, 0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74, 0x4e,0x61,0x6d,0x65,0x3a,0x6e,0x2c,0x57,0x72,0x61,0x70,0x70,0x65,0x64,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3a,0x74,0x7d,0x29,0x2c,0x6c,0x3d,0x5f,0x2e, 0x70,0x75,0x72,0x65,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x6c,0x3f,0x72,0x2e,0x75, 0x73,0x65,0x4d,0x65,0x6d,0x6f,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x29,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x4d, 0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e,0x2e,0x72,0x65,0x61,0x63,0x74,0x52,0x65, 0x64,0x75,0x78,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x65,0x64,0x52,0x65,0x66,0x2c, 0x74,0x3d,0x6a,0x28,0x6e,0x2c,0x54,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b, 0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2c,0x65,0x2c,0x74,0x5d,0x7d,0x29, 0x2c,0x5b,0x6e,0x5d,0x29,0x2c,0x61,0x3d,0x69,0x5b,0x30,0x5d,0x2c,0x63,0x3d,0x69, 0x5b,0x31,0x5d,0x2c,0x6c,0x3d,0x69,0x5b,0x32,0x5d,0x2c,0x73,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x61,0x26,0x26,0x61,0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x26, 0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x43,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x29,0x28,0x6f,0x2e,0x61, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x61, 0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x29, 0x3f,0x61,0x3a,0x4f,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x4f,0x5d,0x29,0x2c,0x70,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x29,0x28,0x73,0x29,0x2c,0x68,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61, 0x6e,0x28,0x6e,0x2e,0x73,0x74,0x6f,0x72,0x65,0x29,0x26,0x26,0x42,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x28,0x6e,0x2e,0x73,0x74,0x6f,0x72,0x65,0x2e,0x67,0x65,0x74,0x53, 0x74,0x61,0x74,0x65,0x29,0x26,0x26,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x6e, 0x2e,0x73,0x74,0x6f,0x72,0x65,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x29, 0x3b,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x70,0x29,0x26,0x26,0x42,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x28,0x70,0x2e,0x73,0x74,0x6f,0x72,0x65,0x29,0x3b,0x76,0x61, 0x72,0x20,0x76,0x3d,0x68,0x3f,0x6e,0x2e,0x73,0x74,0x6f,0x72,0x65,0x3a,0x70,0x2e, 0x73,0x74,0x6f,0x72,0x65,0x2c,0x67,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x28,0x74,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x2c,0x75,0x29,0x7d, 0x28,0x76,0x29,0x7d,0x29,0x2c,0x5b,0x76,0x5d,0x29,0x2c,0x6d,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x64, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x77,0x28,0x76,0x2c,0x68,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x70,0x2e,0x73,0x75,0x62, 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x74,0x3d,0x65,0x2e,0x6e, 0x6f,0x74,0x69,0x66,0x79,0x4e,0x65,0x73,0x74,0x65,0x64,0x53,0x75,0x62,0x73,0x2e, 0x62,0x69,0x6e,0x64,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x65, 0x2c,0x74,0x5d,0x7d,0x29,0x2c,0x5b,0x76,0x2c,0x68,0x2c,0x70,0x5d,0x29,0x2c,0x62, 0x3d,0x6d,0x5b,0x30,0x5d,0x2c,0x79,0x3d,0x6d,0x5b,0x31,0x5d,0x2c,0x5f,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x3f,0x70,0x3a,0x45,0x28,0x7b,0x7d,0x2c,0x70,0x2c,0x7b, 0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x7d,0x29, 0x7d,0x29,0x2c,0x5b,0x68,0x2c,0x70,0x2c,0x62,0x5d,0x29,0x2c,0x78,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x64,0x75,0x63,0x65, 0x72,0x29,0x28,0x4e,0x2c,0x50,0x2c,0x46,0x29,0x2c,0x6b,0x3d,0x78,0x5b,0x30,0x5d, 0x5b,0x30,0x5d,0x2c,0x53,0x3d,0x78,0x5b,0x31,0x5d,0x3b,0x69,0x66,0x28,0x6b,0x26, 0x26,0x6b,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6b, 0x2e,0x65,0x72,0x72,0x6f,0x72,0x3b,0x76,0x61,0x72,0x20,0x41,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x29,0x2c, 0x4d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65, 0x66,0x29,0x28,0x6c,0x29,0x2c,0x42,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x29,0x2c,0x7a,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21,0x31, 0x29,0x2c,0x55,0x3d,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x26,0x26,0x6c,0x3d,0x3d,0x3d,0x4d,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3f,0x42,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x67,0x28,0x76,0x2e, 0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x2c,0x6c,0x29,0x7d,0x29,0x2c, 0x5b,0x76,0x2c,0x6b,0x2c,0x6c,0x5d,0x29,0x3b,0x49,0x28,0x52,0x2c,0x5b,0x4d,0x2c, 0x41,0x2c,0x7a,0x2c,0x6c,0x2c,0x55,0x2c,0x42,0x2c,0x79,0x5d,0x29,0x2c,0x49,0x28, 0x4c,0x2c,0x5b,0x64,0x2c,0x76,0x2c,0x62,0x2c,0x67,0x2c,0x4d,0x2c,0x41,0x2c,0x7a, 0x2c,0x42,0x2c,0x79,0x2c,0x53,0x5d,0x2c,0x5b,0x76,0x2c,0x62,0x2c,0x67,0x5d,0x29, 0x3b,0x76,0x61,0x72,0x20,0x57,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e, 0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x74,0x2c, 0x45,0x28,0x7b,0x7d,0x2c,0x55,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x63,0x7d,0x29,0x29, 0x7d,0x29,0x2c,0x5b,0x63,0x2c,0x74,0x2c,0x55,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x4d, 0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x3f,0x6f,0x2e,0x61,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x73,0x2e,0x50,0x72, 0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x5f,0x7d, 0x2c,0x57,0x29,0x3a,0x57,0x7d,0x29,0x2c,0x5b,0x73,0x2c,0x57,0x2c,0x5f,0x5d,0x29, 0x7d,0x76,0x61,0x72,0x20,0x76,0x3d,0x6c,0x3f,0x6f,0x2e,0x61,0x2e,0x6d,0x65,0x6d, 0x6f,0x28,0x70,0x29,0x3a,0x70,0x3b,0x69,0x66,0x28,0x76,0x2e,0x57,0x72,0x61,0x70, 0x70,0x65,0x64,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3d,0x74,0x2c,0x76, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x70,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x69,0x2c,0x67,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6d,0x3d,0x6f,0x2e,0x61,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72, 0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e,0x63, 0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x76,0x2c,0x45, 0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x72,0x65,0x61,0x63,0x74,0x52,0x65,0x64,0x75, 0x78,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x65,0x64,0x52,0x65,0x66,0x3a,0x74,0x7d, 0x29,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x69,0x2c,0x6d,0x2e,0x57, 0x72,0x61,0x70,0x70,0x65,0x64,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3d, 0x74,0x2c,0x53,0x28,0x29,0x28,0x6d,0x2c,0x74,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x53,0x28,0x29,0x28,0x76,0x2c,0x74,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x42,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x3f,0x30,0x21,0x3d,0x3d,0x65,0x7c,0x7c, 0x30,0x21,0x3d,0x3d,0x74,0x7c,0x7c,0x31,0x2f,0x65,0x3d,0x3d,0x3d,0x31,0x2f,0x74, 0x3a,0x65,0x21,0x3d,0x3d,0x65,0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x42,0x28,0x65,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30, 0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x65,0x7c,0x7c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2c,0x72, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29,0x3b, 0x69,0x66,0x28,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d,0x3d,0x72,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x6e,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x2b,0x29,0x69,0x66,0x28,0x21,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x5b,0x6f,0x5d,0x29,0x7c,0x7c,0x21,0x42,0x28, 0x65,0x5b,0x6e,0x5b,0x6f,0x5d,0x5d,0x2c,0x74,0x5b,0x6e,0x5b,0x6f,0x5d,0x5d,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x28,0x74,0x2c, 0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x73,0x3d,0x21,0x31,0x2c,0x6f,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x57,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f, 0x6e,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x73,0x26,0x26,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x65,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x73,0x3f,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28, 0x65,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x73,0x29,0x3a,0x31,0x21,0x3d,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x4e,0x61,0x6d,0x65,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x73,0x3f,0x72,0x2e,0x6d,0x61,0x70,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73, 0x28,0x65,0x2c,0x74,0x29,0x3a,0x72,0x2e,0x6d,0x61,0x70,0x54,0x6f,0x50,0x72,0x6f, 0x70,0x73,0x28,0x65,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e, 0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x73,0x3d,0x21,0x30,0x2c,0x72,0x2e,0x6d,0x61,0x70,0x54,0x6f,0x50,0x72,0x6f,0x70, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x2e,0x6d,0x61,0x70,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x3d,0x65,0x2c,0x72, 0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x73,0x3d,0x57,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x28, 0x74,0x2c,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f, 0x26,0x26,0x28,0x72,0x2e,0x6d,0x61,0x70,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x3d, 0x6f,0x2c,0x72,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e, 0x50,0x72,0x6f,0x70,0x73,0x3d,0x57,0x28,0x6f,0x29,0x2c,0x6f,0x3d,0x72,0x28,0x74, 0x2c,0x6e,0x29,0x29,0x2c,0x6f,0x7d,0x2c,0x72,0x7d,0x7d,0x76,0x61,0x72,0x20,0x48, 0x3d,0x5b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x24,0x28,0x65,0x29,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3a,0x55,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x69,0x73,0x70,0x61,0x74,0x63, 0x68,0x3a,0x65,0x7d,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x3f,0x55,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x2c, 0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x65,0x5b,0x72,0x5d,0x3b,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x26,0x26, 0x28,0x6e,0x5b,0x72,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x6f,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x29,0x7d,0x29,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6f,0x20,0x69,0x6e,0x20,0x65,0x29,0x72,0x28,0x6f,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x7d,0x28,0x65,0x2c,0x74,0x29,0x7d,0x29,0x29,0x3a,0x76,0x6f, 0x69,0x64,0x20,0x30,0x7d,0x5d,0x3b,0x76,0x61,0x72,0x20,0x56,0x3d,0x5b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x3f,0x24,0x28,0x65,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20, 0x30,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x55, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x7d,0x7d,0x29,0x29,0x7d,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x47,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x45,0x28,0x7b,0x7d,0x2c,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d, 0x76,0x61,0x72,0x20,0x71,0x3d,0x5b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b, 0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3b,0x76,0x61, 0x72,0x20,0x72,0x2c,0x6f,0x3d,0x6e,0x2e,0x70,0x75,0x72,0x65,0x2c,0x69,0x3d,0x6e, 0x2e,0x61,0x72,0x65,0x4d,0x65,0x72,0x67,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x45, 0x71,0x75,0x61,0x6c,0x2c,0x61,0x3d,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x2c,0x75,0x29, 0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x65,0x28,0x74,0x2c,0x6e,0x2c,0x75,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3f,0x6f,0x26,0x26,0x69,0x28,0x63,0x2c, 0x72,0x29,0x7c,0x7c,0x28,0x72,0x3d,0x63,0x29,0x3a,0x28,0x61,0x3d,0x21,0x30,0x2c, 0x72,0x3d,0x63,0x29,0x2c,0x72,0x7d,0x7d,0x7d,0x28,0x65,0x29,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x47,0x7d,0x7d,0x5d,0x3b,0x76,0x61,0x72,0x20,0x4b,0x3d,0x5b,0x22, 0x69,0x6e,0x69,0x74,0x4d,0x61,0x70,0x53,0x74,0x61,0x74,0x65,0x54,0x6f,0x50,0x72, 0x6f,0x70,0x73,0x22,0x2c,0x22,0x69,0x6e,0x69,0x74,0x4d,0x61,0x70,0x44,0x69,0x73, 0x70,0x61,0x74,0x63,0x68,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x22,0x2c,0x22,0x69, 0x6e,0x69,0x74,0x4d,0x65,0x72,0x67,0x65,0x50,0x72,0x6f,0x70,0x73,0x22,0x5d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x6f,0x2c,0x69,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x28,0x65,0x28,0x6f,0x2c,0x69,0x29,0x2c,0x74,0x28,0x72,0x2c,0x69,0x29,0x2c, 0x69,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x2c, 0x61,0x2c,0x75,0x2c,0x63,0x2c,0x6c,0x2c,0x73,0x3d,0x6f,0x2e,0x61,0x72,0x65,0x53, 0x74,0x61,0x74,0x65,0x73,0x45,0x71,0x75,0x61,0x6c,0x2c,0x66,0x3d,0x6f,0x2e,0x61, 0x72,0x65,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x2c, 0x64,0x3d,0x6f,0x2e,0x61,0x72,0x65,0x53,0x74,0x61,0x74,0x65,0x50,0x72,0x6f,0x70, 0x73,0x45,0x71,0x75,0x61,0x6c,0x2c,0x70,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x68,0x28,0x6f,0x2c,0x70,0x29,0x7b,0x76,0x61,0x72,0x20, 0x68,0x3d,0x21,0x66,0x28,0x70,0x2c,0x61,0x29,0x2c,0x76,0x3d,0x21,0x73,0x28,0x6f, 0x2c,0x69,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3d,0x6f,0x2c,0x61, 0x3d,0x70,0x2c,0x68,0x26,0x26,0x76,0x3f,0x28,0x75,0x3d,0x65,0x28,0x69,0x2c,0x61, 0x29,0x2c,0x74,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e, 0x50,0x72,0x6f,0x70,0x73,0x26,0x26,0x28,0x63,0x3d,0x74,0x28,0x72,0x2c,0x61,0x29, 0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x75,0x2c,0x63,0x2c,0x61,0x29,0x29,0x3a,0x68,0x3f, 0x28,0x65,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x73,0x26,0x26,0x28,0x75,0x3d,0x65,0x28,0x69,0x2c,0x61,0x29,0x29, 0x2c,0x74,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x73,0x4f,0x6e,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x73,0x26,0x26,0x28,0x63,0x3d,0x74,0x28,0x72,0x2c,0x61,0x29,0x29, 0x2c,0x6c,0x3d,0x6e,0x28,0x75,0x2c,0x63,0x2c,0x61,0x29,0x29,0x3a,0x76,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x28,0x69,0x2c,0x61,0x29,0x2c,0x72,0x3d,0x21,0x64,0x28,0x74,0x2c,0x75,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x3d,0x74,0x2c,0x72,0x26,0x26,0x28, 0x6c,0x3d,0x6e,0x28,0x75,0x2c,0x63,0x2c,0x61,0x29,0x29,0x2c,0x6c,0x7d,0x28,0x29, 0x3a,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x6f,0x2c,0x73,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70, 0x3f,0x68,0x28,0x6f,0x2c,0x73,0x29,0x3a,0x28,0x75,0x3d,0x65,0x28,0x69,0x3d,0x6f, 0x2c,0x61,0x3d,0x73,0x29,0x2c,0x63,0x3d,0x74,0x28,0x72,0x2c,0x61,0x29,0x2c,0x6c, 0x3d,0x6e,0x28,0x75,0x2c,0x63,0x2c,0x61,0x29,0x2c,0x70,0x3d,0x21,0x30,0x2c,0x6c, 0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x69,0x6e,0x69,0x74,0x4d, 0x61,0x70,0x53,0x74,0x61,0x74,0x65,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x2c,0x72, 0x3d,0x74,0x2e,0x69,0x6e,0x69,0x74,0x4d,0x61,0x70,0x44,0x69,0x73,0x70,0x61,0x74, 0x63,0x68,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x2c,0x6f,0x3d,0x74,0x2e,0x69,0x6e, 0x69,0x74,0x4d,0x65,0x72,0x67,0x65,0x50,0x72,0x6f,0x70,0x73,0x2c,0x69,0x3d,0x6a, 0x28,0x74,0x2c,0x4b,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x65,0x2c,0x69,0x29,0x2c,0x75, 0x3d,0x72,0x28,0x65,0x2c,0x69,0x29,0x2c,0x63,0x3d,0x6f,0x28,0x65,0x2c,0x69,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x69,0x2e,0x70,0x75,0x72,0x65,0x3f,0x51, 0x3a,0x59,0x29,0x28,0x61,0x2c,0x75,0x2c,0x63,0x2c,0x65,0x2c,0x69,0x29,0x7d,0x76, 0x61,0x72,0x20,0x4a,0x3d,0x5b,0x22,0x70,0x75,0x72,0x65,0x22,0x2c,0x22,0x61,0x72, 0x65,0x53,0x74,0x61,0x74,0x65,0x73,0x45,0x71,0x75,0x61,0x6c,0x22,0x2c,0x22,0x61, 0x72,0x65,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x22, 0x2c,0x22,0x61,0x72,0x65,0x53,0x74,0x61,0x74,0x65,0x50,0x72,0x6f,0x70,0x73,0x45, 0x71,0x75,0x61,0x6c,0x22,0x2c,0x22,0x61,0x72,0x65,0x4d,0x65,0x72,0x67,0x65,0x64, 0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x22,0x5d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2d,0x31,0x3b,0x72,0x3e,0x3d,0x30,0x3b,0x72,0x2d,0x2d,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x74,0x5b,0x72,0x5d,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x6f, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x72,0x29,0x7b,0x74, 0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6f,0x66, 0x20,0x74,0x79,0x70,0x65,0x20,0x22,0x2b,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x2b,0x22,0x20,0x66,0x6f,0x72,0x20,0x22,0x2b,0x6e,0x2b,0x22,0x20,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x6f,0x6e,0x6e,0x65, 0x63,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x20, 0x22,0x2b,0x72,0x2e,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x43,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x2b,0x22,0x2e,0x22,0x29,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x7b,0x7d,0x3a, 0x65,0x2c,0x6e,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x48,0x4f,0x43, 0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x4d,0x3a, 0x6e,0x2c,0x6f,0x3d,0x74,0x2e,0x6d,0x61,0x70,0x53,0x74,0x61,0x74,0x65,0x54,0x6f, 0x50,0x72,0x6f,0x70,0x73,0x46,0x61,0x63,0x74,0x6f,0x72,0x69,0x65,0x73,0x2c,0x69, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x56,0x3a,0x6f,0x2c, 0x61,0x3d,0x74,0x2e,0x6d,0x61,0x70,0x44,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x54, 0x6f,0x50,0x72,0x6f,0x70,0x73,0x46,0x61,0x63,0x74,0x6f,0x72,0x69,0x65,0x73,0x2c, 0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f,0x48,0x3a,0x61, 0x2c,0x63,0x3d,0x74,0x2e,0x6d,0x65,0x72,0x67,0x65,0x50,0x72,0x6f,0x70,0x73,0x46, 0x61,0x63,0x74,0x6f,0x72,0x69,0x65,0x73,0x2c,0x6c,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x71,0x3a,0x63,0x2c,0x73,0x3d,0x74,0x2e,0x73,0x65, 0x6c,0x65,0x63,0x74,0x6f,0x72,0x46,0x61,0x63,0x74,0x6f,0x72,0x79,0x2c,0x66,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x73,0x3f,0x58,0x3a,0x73,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6f,0x26,0x26,0x28,0x6f,0x3d,0x7b,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x61, 0x3d,0x6f,0x2c,0x63,0x3d,0x61,0x2e,0x70,0x75,0x72,0x65,0x2c,0x73,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x7c,0x7c,0x63,0x2c,0x64,0x3d,0x61,0x2e, 0x61,0x72,0x65,0x53,0x74,0x61,0x74,0x65,0x73,0x45,0x71,0x75,0x61,0x6c,0x2c,0x70, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x65,0x65,0x3a,0x64, 0x2c,0x68,0x3d,0x61,0x2e,0x61,0x72,0x65,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x73, 0x45,0x71,0x75,0x61,0x6c,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x68,0x3f,0x7a,0x3a,0x68,0x2c,0x67,0x3d,0x61,0x2e,0x61,0x72,0x65,0x53,0x74, 0x61,0x74,0x65,0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x2c,0x6d,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x67,0x3f,0x7a,0x3a,0x67,0x2c,0x62, 0x3d,0x61,0x2e,0x61,0x72,0x65,0x4d,0x65,0x72,0x67,0x65,0x64,0x50,0x72,0x6f,0x70, 0x73,0x45,0x71,0x75,0x61,0x6c,0x2c,0x79,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x62,0x3f,0x7a,0x3a,0x62,0x2c,0x5f,0x3d,0x6a,0x28,0x61,0x2c,0x4a,0x29, 0x2c,0x77,0x3d,0x5a,0x28,0x65,0x2c,0x69,0x2c,0x22,0x6d,0x61,0x70,0x53,0x74,0x61, 0x74,0x65,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x22,0x29,0x2c,0x4f,0x3d,0x5a,0x28, 0x74,0x2c,0x75,0x2c,0x22,0x6d,0x61,0x70,0x44,0x69,0x73,0x70,0x61,0x74,0x63,0x68, 0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x22,0x29,0x2c,0x78,0x3d,0x5a,0x28,0x6e,0x2c, 0x6c,0x2c,0x22,0x6d,0x65,0x72,0x67,0x65,0x50,0x72,0x6f,0x70,0x73,0x22,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x66,0x2c,0x45,0x28,0x7b,0x6d,0x65, 0x74,0x68,0x6f,0x64,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6e,0x6e,0x65,0x63, 0x74,0x22,0x2c,0x67,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x28,0x22,0x2b,0x65, 0x2b,0x22,0x29,0x22,0x7d,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x48,0x61,0x6e,0x64, 0x6c,0x65,0x53,0x74,0x61,0x74,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x73,0x3a,0x42, 0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x65,0x29,0x2c,0x69,0x6e,0x69,0x74,0x4d,0x61, 0x70,0x53,0x74,0x61,0x74,0x65,0x54,0x6f,0x50,0x72,0x6f,0x70,0x73,0x3a,0x77,0x2c, 0x69,0x6e,0x69,0x74,0x4d,0x61,0x70,0x44,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x54, 0x6f,0x50,0x72,0x6f,0x70,0x73,0x3a,0x4f,0x2c,0x69,0x6e,0x69,0x74,0x4d,0x65,0x72, 0x67,0x65,0x50,0x72,0x6f,0x70,0x73,0x3a,0x78,0x2c,0x70,0x75,0x72,0x65,0x3a,0x73, 0x2c,0x61,0x72,0x65,0x53,0x74,0x61,0x74,0x65,0x73,0x45,0x71,0x75,0x61,0x6c,0x3a, 0x70,0x2c,0x61,0x72,0x65,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75, 0x61,0x6c,0x3a,0x76,0x2c,0x61,0x72,0x65,0x53,0x74,0x61,0x74,0x65,0x50,0x72,0x6f, 0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x3a,0x6d,0x2c,0x61,0x72,0x65,0x4d,0x65,0x72, 0x67,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x3a,0x79,0x7d, 0x2c,0x5f,0x29,0x29,0x7d,0x7d,0x76,0x61,0x72,0x20,0x6e,0x65,0x3d,0x74,0x65,0x28, 0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x65,0x2c,0x6f,0x65,0x3d,0x6e,0x28,0x32,0x36, 0x29,0x2c,0x69,0x65,0x3d,0x6e,0x2e,0x6e,0x28,0x6f,0x65,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69,0x6e,0x70,0x75,0x74,0x73, 0x3a,0x74,0x2c,0x72,0x65,0x73,0x75,0x6c,0x74,0x3a,0x65,0x28,0x29,0x7d,0x7d,0x29, 0x29,0x5b,0x30,0x5d,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21,0x30,0x29,0x2c,0x69,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e, 0x29,0x2c,0x61,0x3d,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x42, 0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x26,0x26,0x69,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2e,0x69,0x6e,0x70,0x75,0x74,0x73,0x26,0x26,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x21,0x3d,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x6e,0x2b,0x2b,0x29,0x69,0x66,0x28,0x65,0x5b,0x6e,0x5d,0x21,0x3d,0x3d,0x74, 0x5b,0x6e,0x5d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x30,0x7d,0x28,0x74,0x2c,0x69,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x2e,0x69,0x6e,0x70,0x75,0x74,0x73,0x29,0x29,0x3f,0x69,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3a,0x7b,0x69,0x6e,0x70,0x75,0x74,0x73,0x3a,0x74,0x2c, 0x72,0x65,0x73,0x75,0x6c,0x74,0x3a,0x65,0x28,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45, 0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x31,0x2c, 0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x61,0x7d,0x29,0x2c,0x5b,0x61, 0x5d,0x29,0x2c,0x61,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x7d,0x72,0x65,0x3d,0x6f, 0x65,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x62,0x61,0x74,0x63,0x68, 0x65,0x64,0x55,0x70,0x64,0x61,0x74,0x65,0x73,0x2c,0x62,0x3d,0x72,0x65,0x3b,0x76, 0x61,0x72,0x20,0x75,0x65,0x3d,0x61,0x65,0x2c,0x63,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x61,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x2c,0x74,0x29,0x7d,0x2c,0x6c, 0x65,0x3d,0x6e,0x28,0x32,0x34,0x29,0x2c,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x74, 0x6f,0x70,0x2c,0x6e,0x3d,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x2c,0x72,0x3d,0x65, 0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x66,0x74, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x6f,0x70,0x3a,0x74,0x2c,0x72,0x69, 0x67,0x68,0x74,0x3a,0x6e,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x72,0x2c,0x6c, 0x65,0x66,0x74,0x3a,0x6f,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x2d,0x6f,0x2c, 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x72,0x2d,0x74,0x2c,0x78,0x3a,0x6f,0x2c,0x79, 0x3a,0x74,0x2c,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x7b,0x78,0x3a,0x28,0x6e,0x2b, 0x6f,0x29,0x2f,0x32,0x2c,0x79,0x3a,0x28,0x72,0x2b,0x74,0x29,0x2f,0x32,0x7d,0x7d, 0x7d,0x2c,0x66,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x6f,0x70,0x3a,0x65,0x2e, 0x74,0x6f,0x70,0x2d,0x74,0x2e,0x74,0x6f,0x70,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x65, 0x2e,0x6c,0x65,0x66,0x74,0x2d,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2b,0x74,0x2e,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x72,0x69, 0x67,0x68,0x74,0x2b,0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x7d,0x7d,0x2c,0x64,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x6f,0x70,0x3a,0x65,0x2e,0x74,0x6f,0x70,0x2b, 0x74,0x2e,0x74,0x6f,0x70,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x65,0x2e,0x6c,0x65,0x66, 0x74,0x2b,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x74,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d, 0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x7d,0x7d,0x2c,0x70,0x65,0x3d,0x7b,0x74,0x6f, 0x70,0x3a,0x30,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x3a,0x30,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2c,0x68,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2c,0x6e,0x3d, 0x65,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x70,0x65,0x3a,0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6f,0x3f,0x70,0x65,0x3a,0x6f,0x2c,0x61,0x3d,0x65,0x2e,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x2c,0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61, 0x3f,0x70,0x65,0x3a,0x61,0x2c,0x63,0x3d,0x73,0x65,0x28,0x66,0x65,0x28,0x74,0x2c, 0x72,0x29,0x29,0x2c,0x6c,0x3d,0x73,0x65,0x28,0x64,0x65,0x28,0x74,0x2c,0x69,0x29, 0x29,0x2c,0x73,0x3d,0x73,0x65,0x28,0x64,0x65,0x28,0x6c,0x2c,0x75,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78, 0x3a,0x63,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x3a,0x73,0x65,0x28, 0x74,0x29,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x42,0x6f,0x78,0x3a,0x6c,0x2c, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x42,0x6f,0x78,0x3a,0x73,0x2c,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x3a,0x72,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x69,0x2c,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x75,0x7d,0x7d,0x2c,0x76,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x2d,0x32,0x29,0x3b,0x69,0x66, 0x28,0x22,0x70,0x78,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28, 0x2d,0x32,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x74,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x69,0x73,0x4e,0x61,0x4e,0x28,0x6e,0x29,0x26,0x26,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6c,0x65,0x2e,0x61,0x29,0x28,0x21,0x31,0x29,0x2c,0x6e, 0x7d,0x2c,0x67,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x62,0x6f,0x72, 0x64,0x65,0x72,0x2c,0x61,0x3d,0x65,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2c,0x75, 0x3d,0x65,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x63,0x3d,0x28,0x72,0x3d, 0x74,0x2c,0x7b,0x74,0x6f,0x70,0x3a,0x28,0x6e,0x3d,0x6f,0x29,0x2e,0x74,0x6f,0x70, 0x2b,0x72,0x2e,0x79,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x6e,0x2e,0x6c,0x65,0x66,0x74, 0x2b,0x72,0x2e,0x78,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x6e,0x2e,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2b,0x72,0x2e,0x79,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x6e, 0x2e,0x72,0x69,0x67,0x68,0x74,0x2b,0x72,0x2e,0x78,0x7d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f, 0x78,0x3a,0x63,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x69,0x2c,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x3a,0x61,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x75,0x7d, 0x29,0x7d,0x2c,0x6d,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x7b,0x78,0x3a,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x70,0x61,0x67,0x65,0x58,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c, 0x79,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x70,0x61,0x67,0x65,0x59,0x4f,0x66, 0x66,0x73,0x65,0x74,0x7d,0x29,0x2c,0x67,0x65,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c, 0x62,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x74,0x6f,0x70,0x3a,0x76,0x65,0x28,0x74, 0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x54,0x6f,0x70,0x29,0x2c,0x72,0x69,0x67,0x68, 0x74,0x3a,0x76,0x65,0x28,0x74,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x52,0x69,0x67, 0x68,0x74,0x29,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x76,0x65,0x28,0x74,0x2e, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x6c,0x65, 0x66,0x74,0x3a,0x76,0x65,0x28,0x74,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4c,0x65, 0x66,0x74,0x29,0x7d,0x2c,0x72,0x3d,0x7b,0x74,0x6f,0x70,0x3a,0x76,0x65,0x28,0x74, 0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x54,0x6f,0x70,0x29,0x2c,0x72,0x69,0x67, 0x68,0x74,0x3a,0x76,0x65,0x28,0x74,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52, 0x69,0x67,0x68,0x74,0x29,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x76,0x65,0x28, 0x74,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x42,0x6f,0x74,0x74,0x6f,0x6d,0x29, 0x2c,0x6c,0x65,0x66,0x74,0x3a,0x76,0x65,0x28,0x74,0x2e,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x4c,0x65,0x66,0x74,0x29,0x7d,0x2c,0x6f,0x3d,0x7b,0x74,0x6f,0x70,0x3a, 0x76,0x65,0x28,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x54,0x6f,0x70,0x57,0x69, 0x64,0x74,0x68,0x29,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x76,0x65,0x28,0x74,0x2e, 0x62,0x6f,0x72,0x64,0x65,0x72,0x52,0x69,0x67,0x68,0x74,0x57,0x69,0x64,0x74,0x68, 0x29,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x76,0x65,0x28,0x74,0x2e,0x62,0x6f, 0x72,0x64,0x65,0x72,0x42,0x6f,0x74,0x74,0x6f,0x6d,0x57,0x69,0x64,0x74,0x68,0x29, 0x2c,0x6c,0x65,0x66,0x74,0x3a,0x76,0x65,0x28,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65, 0x72,0x4c,0x65,0x66,0x74,0x57,0x69,0x64,0x74,0x68,0x29,0x7d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x7b,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f, 0x78,0x3a,0x65,0x2c,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x6e,0x2c,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x3a,0x72,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x6f,0x7d, 0x29,0x7d,0x2c,0x79,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x67,0x65,0x74,0x42,0x6f,0x75, 0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x28, 0x29,0x2c,0x6e,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x67,0x65,0x74,0x43,0x6f, 0x6d,0x70,0x75,0x74,0x65,0x64,0x53,0x74,0x79,0x6c,0x65,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x65,0x28,0x74,0x2c,0x6e,0x29,0x7d,0x2c,0x5f, 0x65,0x3d,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x69,0x73,0x4e,0x61,0x4e,0x7c,0x7c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x21,0x3d,0x3d,0x65,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d,0x3d,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x69,0x66,0x28,0x72,0x3d,0x65, 0x5b,0x6e,0x5d,0x2c,0x6f,0x3d,0x74,0x5b,0x6e,0x5d,0x2c,0x21,0x28,0x72,0x3d,0x3d, 0x3d,0x6f,0x7c,0x7c,0x5f,0x65,0x28,0x72,0x29,0x26,0x26,0x5f,0x65,0x28,0x6f,0x29, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x72, 0x2c,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x76,0x61,0x72,0x20, 0x4f,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x74,0x26,0x26,0x28,0x74,0x3d,0x77,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x2c, 0x6f,0x3d,0x5b,0x5d,0x2c,0x69,0x3d,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x61,0x3d,0x5b,0x5d,0x2c,0x75,0x3d,0x30,0x3b,0x75,0x3c,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x75,0x2b,0x2b,0x29,0x61,0x5b,0x75,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x75,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x26,0x26, 0x6e,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x26,0x26,0x74,0x28,0x61,0x2c,0x6f,0x29, 0x7c,0x7c,0x28,0x72,0x3d,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69, 0x73,0x2c,0x61,0x29,0x2c,0x69,0x3d,0x21,0x30,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73, 0x2c,0x6f,0x3d,0x61,0x29,0x2c,0x72,0x7d,0x7d,0x2c,0x78,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b, 0x5d,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2c,0x6f,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x29,0x2c, 0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x3b,0x69,0x2b,0x2b,0x29,0x6f,0x5b,0x69,0x5d, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x3b,0x74,0x3d, 0x6f,0x2c,0x6e,0x7c,0x7c,0x28,0x6e,0x3d,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c, 0x74,0x29,0x7d,0x29,0x29,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x6e,0x26,0x26,0x28,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x6e,0x29,0x2c,0x6e, 0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c,0x72,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x45,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x7d,0x45,0x65,0x2e, 0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x22,0x77,0x61,0x72,0x6e,0x22, 0x29,0x2c,0x45,0x65,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x22, 0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6a,0x65,0x28,0x29,0x7b,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6b,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x74,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x2c,0x69,0x3d,0x28,0x72,0x3d, 0x6e,0x2c,0x6f,0x3d,0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x72,0x2c,0x7b, 0x7d,0x2c,0x6f,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61, 0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28, 0x74,0x2e,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x2c,0x74,0x2e,0x66,0x6e, 0x2c,0x69,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74, 0x65,0x6e,0x65,0x72,0x28,0x74,0x2e,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65, 0x2c,0x74,0x2e,0x66,0x6e,0x2c,0x69,0x29,0x7d,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x28,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x76,0x61, 0x72,0x20,0x53,0x65,0x3d,0x22,0x49,0x6e,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x20, 0x66,0x61,0x69,0x6c,0x65,0x64,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x43,0x65,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x73,0x73, 0x61,0x67,0x65,0x3d,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41, 0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x43,0x65,0x28,0x53,0x65,0x29,0x7d,0x43,0x65, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x73,0x73,0x61, 0x67,0x65,0x7d,0x3b,0x76,0x61,0x72,0x20,0x54,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x74,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x6e,0x29,0x2c, 0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x6e,0x3b,0x6f,0x2b,0x2b,0x29,0x72,0x5b,0x6f,0x5d, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6f,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x65,0x2c,0x5b,0x74,0x68,0x69,0x73,0x5d,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x72,0x29,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e, 0x75,0x6e,0x62,0x69,0x6e,0x64,0x3d,0x6a,0x65,0x2c,0x74,0x2e,0x6f,0x6e,0x57,0x69, 0x6e,0x64,0x6f,0x77,0x45,0x72,0x72,0x6f,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67,0x65, 0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x28,0x29,0x3b,0x6e,0x2e,0x69, 0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x28,0x29,0x26,0x26,0x6e,0x2e,0x74, 0x72,0x79,0x41,0x62,0x6f,0x72,0x74,0x28,0x29,0x2c,0x65,0x2e,0x65,0x72,0x72,0x6f, 0x72,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x43,0x65,0x26, 0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c, 0x74,0x28,0x29,0x7d,0x2c,0x74,0x2e,0x67,0x65,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61, 0x63,0x6b,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69, 0x66,0x28,0x21,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22, 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x66,0x69,0x6e,0x64,0x20,0x41, 0x70,0x70,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x20,0x69,0x6e,0x20,0x3c, 0x45,0x72,0x72,0x6f,0x72,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2f,0x3e,0x22, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x73,0x7d,0x2c,0x74,0x2e,0x73,0x65,0x74,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x3d,0x65,0x7d,0x2c, 0x74,0x7d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x2c, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x4d,0x6f,0x75,0x6e,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e, 0x75,0x6e,0x62,0x69,0x6e,0x64,0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2c,0x5b,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x65,0x72, 0x72,0x6f,0x72,0x22,0x2c,0x66,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6f,0x6e,0x57, 0x69,0x6e,0x64,0x6f,0x77,0x45,0x72,0x72,0x6f,0x72,0x7d,0x5d,0x29,0x7d,0x2c,0x6e, 0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61,0x74, 0x63,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x21,0x28,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66, 0x20,0x43,0x65,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x3b,0x74,0x68,0x69, 0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x7d,0x29,0x7d,0x2c, 0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55, 0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x75,0x6e,0x62,0x69,0x6e,0x64,0x28,0x29,0x7d, 0x2c,0x6e,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x28, 0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x73,0x29,0x7d,0x2c,0x74,0x7d,0x28,0x6f,0x2e,0x61,0x2e,0x43,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x29,0x2c,0x50,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2b,0x31,0x7d, 0x2c,0x44,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x2c,0x72,0x3d,0x50,0x65,0x28,0x65,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x29,0x2c,0x6f,0x3d,0x50,0x65,0x28,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x22,0x5c,0x6e,0x20,0x20, 0x20,0x20,0x20,0x20,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x6d,0x6f,0x76, 0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x69,0x74,0x65,0x6d,0x20,0x66,0x72,0x6f,0x6d, 0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x22,0x2b,0x72,0x2b,0x22,0x5c, 0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x20,0x22,0x2b,0x6f,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x22,0x3a, 0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20, 0x6d,0x6f,0x76,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x69,0x74,0x65,0x6d,0x20,0x66, 0x72,0x6f,0x6d,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x22,0x2b,0x72, 0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x69,0x6e,0x20,0x6c,0x69,0x73,0x74,0x20, 0x22,0x2b,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2b, 0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x74,0x6f,0x20,0x6c,0x69,0x73,0x74,0x20,0x22, 0x2b,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2b,0x22, 0x5c,0x6e,0x20,0x20,0x20,0x20,0x69,0x6e,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x20,0x22,0x2b,0x6f,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x22,0x7d,0x2c,0x4e,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x3f,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x54, 0x68,0x65,0x20,0x69,0x74,0x65,0x6d,0x20,0x22,0x2b,0x65,0x2b,0x22,0x5c,0x6e,0x20, 0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x63,0x6f, 0x6d,0x62,0x69,0x6e,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x22,0x2b,0x6e,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x22,0x5c,0x6e,0x20, 0x20,0x20,0x20,0x20,0x20,0x54,0x68,0x65,0x20,0x69,0x74,0x65,0x6d,0x20,0x22,0x2b, 0x65,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x20,0x6c,0x69, 0x73,0x74,0x20,0x22,0x2b,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65, 0x49,0x64,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x20, 0x62,0x65,0x65,0x6e,0x20,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x64,0x20,0x77,0x69, 0x74,0x68,0x20,0x22,0x2b,0x6e,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x49,0x64,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x20,0x6c, 0x69,0x73,0x74,0x20,0x22,0x2b,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x49,0x64,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x22,0x7d,0x2c,0x49,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x5c,0x6e,0x20,0x20,0x54,0x68,0x65,0x20,0x69,0x74,0x65,0x6d, 0x20,0x68,0x61,0x73,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x74,0x6f, 0x20,0x69,0x74,0x73,0x20,0x73,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x5c,0x6e,0x20,0x20,0x6f,0x66,0x20,0x22,0x2b,0x50, 0x65,0x28,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x29,0x2b,0x22,0x5c,0x6e,0x22,0x7d, 0x2c,0x52,0x65,0x3d,0x22,0x5c,0x6e,0x20,0x20,0x50,0x72,0x65,0x73,0x73,0x20,0x73, 0x70,0x61,0x63,0x65,0x20,0x62,0x61,0x72,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72, 0x74,0x20,0x61,0x20,0x64,0x72,0x61,0x67,0x2e,0x5c,0x6e,0x20,0x20,0x57,0x68,0x65, 0x6e,0x20,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x20,0x79,0x6f,0x75,0x20,0x63, 0x61,0x6e,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x61,0x72,0x72,0x6f,0x77, 0x20,0x6b,0x65,0x79,0x73,0x20,0x74,0x6f,0x20,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68, 0x65,0x20,0x69,0x74,0x65,0x6d,0x20,0x61,0x72,0x6f,0x75,0x6e,0x64,0x20,0x61,0x6e, 0x64,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x20,0x74,0x6f,0x20,0x63,0x61,0x6e,0x63, 0x65,0x6c,0x2e,0x5c,0x6e,0x20,0x20,0x53,0x6f,0x6d,0x65,0x20,0x73,0x63,0x72,0x65, 0x65,0x6e,0x20,0x72,0x65,0x61,0x64,0x65,0x72,0x73,0x20,0x6d,0x61,0x79,0x20,0x72, 0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x62,0x65, 0x20,0x69,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6d,0x6f,0x64,0x65,0x20,0x6f, 0x72,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x70,0x61, 0x73,0x73,0x20,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x20,0x6b,0x65,0x79,0x5c,0x6e, 0x22,0x2c,0x4c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5c,0x6e,0x20,0x20,0x59,0x6f,0x75,0x20, 0x68,0x61,0x76,0x65,0x20,0x6c,0x69,0x66,0x74,0x65,0x64,0x20,0x61,0x6e,0x20,0x69, 0x74,0x65,0x6d,0x20,0x69,0x6e,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20, 0x22,0x2b,0x50,0x65,0x28,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x29,0x2b,0x22,0x5c,0x6e,0x22,0x7d,0x2c,0x46,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3b,0x69,0x66, 0x28,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x65,0x28,0x65,0x2e,0x73, 0x6f,0x75,0x72,0x63,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x3f,0x4e,0x65,0x28,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x49,0x64,0x2c,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x6e,0x29,0x3a,0x22, 0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x76,0x65,0x72,0x20,0x61,0x6e,0x20, 0x61,0x72,0x65,0x61,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, 0x20,0x62,0x65,0x20,0x64,0x72,0x6f,0x70,0x70,0x65,0x64,0x20,0x6f,0x6e,0x22,0x7d, 0x2c,0x4d,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x22,0x43,0x41,0x4e,0x43,0x45,0x4c,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5c,0x6e, 0x20,0x20,0x20,0x20,0x20,0x20,0x4d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x20,0x63, 0x61,0x6e,0x63,0x65,0x6c,0x6c,0x65,0x64,0x2e,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20, 0x20,0x22,0x2b,0x49,0x65,0x28,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x2b, 0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x22,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6e,0x3d,0x65, 0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3f,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x59,0x6f,0x75,0x20,0x68, 0x61,0x76,0x65,0x20,0x64,0x72,0x6f,0x70,0x70,0x65,0x64,0x20,0x74,0x68,0x65,0x20, 0x69,0x74,0x65,0x6d,0x2e,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x2b,0x44, 0x65,0x28,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x74,0x29,0x2b,0x22,0x5c, 0x6e,0x20,0x20,0x20,0x20,0x22,0x3a,0x6e,0x3f,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20, 0x20,0x20,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x64,0x72,0x6f,0x70,0x70, 0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x69,0x74,0x65,0x6d,0x2e,0x5c,0x6e,0x20,0x20, 0x20,0x20,0x20,0x20,0x22,0x2b,0x4e,0x65,0x28,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c, 0x6e,0x29,0x2b,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x22,0x3a,0x22,0x5c,0x6e,0x20, 0x20,0x20,0x20,0x54,0x68,0x65,0x20,0x69,0x74,0x65,0x6d,0x20,0x68,0x61,0x73,0x20, 0x62,0x65,0x65,0x6e,0x20,0x64,0x72,0x6f,0x70,0x70,0x65,0x64,0x20,0x77,0x68,0x69, 0x6c,0x65,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x76,0x65,0x72,0x20,0x61,0x20,0x64,0x72, 0x6f,0x70,0x20,0x61,0x72,0x65,0x61,0x2e,0x5c,0x6e,0x20,0x20,0x20,0x20,0x22,0x2b, 0x49,0x65,0x28,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x2b,0x22,0x5c,0x6e, 0x20,0x20,0x22,0x7d,0x2c,0x42,0x65,0x3d,0x7b,0x78,0x3a,0x30,0x2c,0x79,0x3a,0x30, 0x7d,0x2c,0x7a,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x78,0x3a,0x65,0x2e,0x78,0x2b, 0x74,0x2e,0x78,0x2c,0x79,0x3a,0x65,0x2e,0x79,0x2b,0x74,0x2e,0x79,0x7d,0x7d,0x2c, 0x55,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x78,0x3a,0x65,0x2e,0x78,0x2d,0x74,0x2e, 0x78,0x2c,0x79,0x3a,0x65,0x2e,0x79,0x2d,0x74,0x2e,0x79,0x7d,0x7d,0x2c,0x57,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x78,0x3d,0x3d,0x3d,0x74,0x2e,0x78,0x26, 0x26,0x65,0x2e,0x79,0x3d,0x3d,0x3d,0x74,0x2e,0x79,0x7d,0x2c,0x24,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x78,0x3a,0x30,0x21,0x3d,0x3d,0x65,0x2e,0x78,0x3f,0x2d,0x65,0x2e,0x78, 0x3a,0x30,0x2c,0x79,0x3a,0x30,0x21,0x3d,0x3d,0x65,0x2e,0x79,0x3f,0x2d,0x65,0x2e, 0x79,0x3a,0x30,0x7d,0x7d,0x2c,0x48,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e, 0x26,0x26,0x28,0x6e,0x3d,0x30,0x29,0x2c,0x28,0x72,0x3d,0x7b,0x7d,0x29,0x5b,0x65, 0x5d,0x3d,0x74,0x2c,0x72,0x5b,0x22,0x78,0x22,0x3d,0x3d,0x3d,0x65,0x3f,0x22,0x79, 0x22,0x3a,0x22,0x78,0x22,0x5d,0x3d,0x6e,0x2c,0x72,0x7d,0x2c,0x56,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x73,0x71,0x72,0x74,0x28,0x4d,0x61, 0x74,0x68,0x2e,0x70,0x6f,0x77,0x28,0x74,0x2e,0x78,0x2d,0x65,0x2e,0x78,0x2c,0x32, 0x29,0x2b,0x4d,0x61,0x74,0x68,0x2e,0x70,0x6f,0x77,0x28,0x74,0x2e,0x79,0x2d,0x65, 0x2e,0x79,0x2c,0x32,0x29,0x29,0x7d,0x2c,0x47,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x4d, 0x61,0x74,0x68,0x2c,0x74,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x56,0x65, 0x28,0x65,0x2c,0x74,0x29,0x7d,0x29,0x29,0x29,0x7d,0x2c,0x71,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x78,0x3a,0x65,0x28,0x74,0x2e,0x78,0x29,0x2c,0x79,0x3a,0x65, 0x28,0x74,0x2e,0x79,0x29,0x7d,0x7d,0x7d,0x2c,0x4b,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x74,0x6f,0x70,0x3a,0x65,0x2e,0x74,0x6f,0x70,0x2b,0x74,0x2e,0x79,0x2c,0x6c, 0x65,0x66,0x74,0x3a,0x65,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x74,0x2e,0x78,0x2c,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2b,0x74, 0x2e,0x79,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x72,0x69,0x67,0x68,0x74, 0x2b,0x74,0x2e,0x78,0x7d,0x7d,0x2c,0x59,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x7b,0x78,0x3a, 0x65,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x79,0x3a,0x65,0x2e,0x74,0x6f,0x70,0x7d,0x2c, 0x7b,0x78,0x3a,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x2c,0x79,0x3a,0x65,0x2e,0x74, 0x6f,0x70,0x7d,0x2c,0x7b,0x78,0x3a,0x65,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x79,0x3a, 0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7d,0x2c,0x7b,0x78,0x3a,0x65,0x2e,0x72, 0x69,0x67,0x68,0x74,0x2c,0x79,0x3a,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7d, 0x5d,0x7d,0x2c,0x51,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x74,0x2e, 0x73,0x68,0x6f,0x75,0x6c,0x64,0x43,0x6c,0x69,0x70,0x53,0x75,0x62,0x6a,0x65,0x63, 0x74,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x73,0x65,0x28,0x7b,0x74,0x6f,0x70,0x3a,0x4d,0x61, 0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x74,0x2e,0x74,0x6f,0x70,0x2c,0x65,0x2e,0x74, 0x6f,0x70,0x29,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x4d,0x61,0x74,0x68,0x2e,0x6d, 0x69,0x6e,0x28,0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x2c,0x65,0x2e,0x72,0x69,0x67, 0x68,0x74,0x29,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x4d,0x61,0x74,0x68,0x2e, 0x6d,0x69,0x6e,0x28,0x74,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x65,0x2e,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x4d,0x61,0x74,0x68, 0x2e,0x6d,0x61,0x78,0x28,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x65,0x2e,0x6c,0x65, 0x66,0x74,0x29,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x77, 0x69,0x64,0x74,0x68,0x3c,0x3d,0x30,0x7c,0x7c,0x6e,0x2e,0x68,0x65,0x69,0x67,0x68, 0x74,0x3c,0x3d,0x30,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x6e,0x7d,0x28,0x74,0x2e,0x70, 0x61,0x67,0x65,0x4d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x2c,0x65,0x29,0x3a, 0x73,0x65,0x28,0x65,0x29,0x7d,0x2c,0x58,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x70,0x61, 0x67,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x77,0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65, 0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x72,0x3d,0x65,0x2e,0x61,0x78,0x69,0x73,0x2c, 0x6f,0x3d,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3f,0x4b,0x65,0x28,0x65,0x2c,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x2e,0x64,0x69,0x66,0x66,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x29,0x3a,0x65,0x7d,0x28,0x74,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42, 0x6f,0x78,0x2c,0x6f,0x29,0x2c,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x6e,0x2e,0x69,0x6e,0x63,0x72,0x65,0x61, 0x73,0x65,0x64,0x42,0x79,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x28,0x28,0x72,0x3d,0x7b,0x7d,0x29,0x5b,0x74, 0x2e,0x65,0x6e,0x64,0x5d,0x3d,0x65,0x5b,0x74,0x2e,0x65,0x6e,0x64,0x5d,0x2b,0x6e, 0x2e,0x69,0x6e,0x63,0x72,0x65,0x61,0x73,0x65,0x64,0x42,0x79,0x5b,0x74,0x2e,0x6c, 0x69,0x6e,0x65,0x5d,0x2c,0x72,0x29,0x29,0x3a,0x65,0x7d,0x28,0x69,0x2c,0x72,0x2c, 0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x70,0x61,0x67,0x65,0x3a,0x74, 0x2c,0x77,0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72, 0x3a,0x6e,0x2c,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x51,0x65,0x28,0x75,0x2c,0x6f, 0x29,0x7d,0x7d,0x2c,0x4a,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x7c,0x7c,0x41,0x65, 0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x66,0x72,0x61, 0x6d,0x65,0x2c,0x72,0x3d,0x55,0x65,0x28,0x74,0x2c,0x6e,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x29,0x2c,0x6f,0x3d,0x24,0x65, 0x28,0x72,0x29,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x6e,0x2c,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x7b, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x3a,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2c,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3a,0x74,0x2c,0x64,0x69,0x66,0x66,0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72, 0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6f,0x7d, 0x2c,0x6d,0x61,0x78,0x3a,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61, 0x78,0x7d,0x7d,0x29,0x2c,0x75,0x3d,0x58,0x65,0x28,0x7b,0x70,0x61,0x67,0x65,0x3a, 0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x61,0x67,0x65,0x2c,0x77, 0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x65, 0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x77,0x69,0x74,0x68,0x50,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x61,0x78,0x69,0x73,0x3a,0x65,0x2e, 0x61,0x78,0x69,0x73,0x2c,0x66,0x72,0x61,0x6d,0x65,0x3a,0x69,0x7d,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x66,0x72,0x61,0x6d,0x65,0x3a,0x69,0x2c, 0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x75,0x7d,0x29,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73, 0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x28,0x65, 0x29,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29, 0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d,0x7d,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x74,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x66,0x69,0x6e,0x64,0x49,0x6e,0x64,0x65,0x78, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x69,0x6e,0x64,0x49,0x6e, 0x64,0x65,0x78,0x28,0x74,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b, 0x2b,0x29,0x69,0x66,0x28,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x69,0x66,0x28,0x65,0x2e,0x66,0x69,0x6e,0x64,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d, 0x31,0x21,0x3d,0x3d,0x6e,0x3f,0x65,0x5b,0x6e,0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20, 0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x74,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x65,0x29,0x7d,0x76,0x61,0x72,0x20,0x72,0x74,0x3d,0x4f,0x65,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x5b,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x2e,0x69,0x64,0x5d,0x3d,0x74,0x2c,0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x7d, 0x29,0x29,0x2c,0x6f,0x74,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72, 0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x2e, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d,0x3d,0x74, 0x2c,0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x29,0x2c,0x69,0x74,0x3d,0x4f, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x61, 0x74,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x65,0x28,0x65,0x29,0x7d,0x29, 0x29,0x2c,0x75,0x74,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x74, 0x28,0x74,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x7d,0x29,0x29,0x2e,0x73, 0x6f,0x72,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2d,0x74,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x7d, 0x29,0x29,0x7d,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63, 0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x74, 0x26,0x26,0x22,0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x61,0x74,0x2e,0x74,0x79,0x70,0x65,0x3f,0x65,0x2e,0x61,0x74,0x2e,0x64,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x74,0x26,0x26,0x22,0x43,0x4f,0x4d,0x42,0x49, 0x4e,0x45,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x61,0x74,0x2e,0x74,0x79,0x70,0x65,0x3f, 0x65,0x2e,0x61,0x74,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x76,0x61,0x72,0x20,0x73,0x74,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x21,0x3d, 0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64, 0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x66,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x7d,0x2c,0x64,0x74,0x3d,0x7b,0x70, 0x6f,0x69,0x6e,0x74,0x3a,0x42,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d, 0x2c,0x70,0x74,0x3d,0x7b,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x7b, 0x7d,0x2c,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x7b,0x7d,0x2c,0x61,0x6c,0x6c, 0x3a,0x5b,0x5d,0x7d,0x2c,0x68,0x74,0x3d,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x3a,0x70,0x74,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42, 0x79,0x3a,0x64,0x74,0x2c,0x61,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x76,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3c,0x3d,0x6e,0x26,0x26,0x6e, 0x3c,0x3d,0x74,0x7d,0x7d,0x2c,0x67,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x76,0x74,0x28,0x65,0x2e, 0x74,0x6f,0x70,0x2c,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x6e,0x3d, 0x76,0x74,0x28,0x65,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x65,0x2e,0x72,0x69,0x67,0x68, 0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x72,0x29,0x7b,0x69,0x66,0x28,0x74,0x28,0x72,0x2e,0x74,0x6f,0x70, 0x29,0x26,0x26,0x74,0x28,0x72,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x26,0x26, 0x6e,0x28,0x72,0x2e,0x6c,0x65,0x66,0x74,0x29,0x26,0x26,0x6e,0x28,0x72,0x2e,0x72, 0x69,0x67,0x68,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x74,0x28,0x72,0x2e,0x74,0x6f,0x70,0x29,0x7c,0x7c,0x74, 0x28,0x72,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x72, 0x2e,0x6c,0x65,0x66,0x74,0x29,0x7c,0x7c,0x6e,0x28,0x72,0x2e,0x72,0x69,0x67,0x68, 0x74,0x29,0x3b,0x69,0x66,0x28,0x6f,0x26,0x26,0x69,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x72,0x2e,0x74,0x6f,0x70,0x3c, 0x65,0x2e,0x74,0x6f,0x70,0x26,0x26,0x72,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3e, 0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x75,0x3d,0x72,0x2e,0x6c,0x65,0x66, 0x74,0x3c,0x65,0x2e,0x6c,0x65,0x66,0x74,0x26,0x26,0x72,0x2e,0x72,0x69,0x67,0x68, 0x74,0x3e,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x28,0x21,0x61,0x7c,0x7c,0x21,0x75,0x29,0x7c,0x7c,0x28,0x61,0x26,0x26,0x69, 0x7c,0x7c,0x75,0x26,0x26,0x6f,0x29,0x7d,0x7d,0x2c,0x6d,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x76, 0x74,0x28,0x65,0x2e,0x74,0x6f,0x70,0x2c,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x29,0x2c,0x6e,0x3d,0x76,0x74,0x28,0x65,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x65,0x2e, 0x72,0x69,0x67,0x68,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x28,0x65,0x2e,0x74,0x6f,0x70,0x29,0x26,0x26,0x74,0x28,0x65,0x2e,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x29,0x26,0x26,0x6e,0x28,0x65,0x2e,0x6c,0x65,0x66,0x74, 0x29,0x26,0x26,0x6e,0x28,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x29,0x7d,0x7d,0x2c, 0x62,0x74,0x3d,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x22,0x2c,0x6c,0x69,0x6e,0x65,0x3a,0x22,0x79, 0x22,0x2c,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x4c,0x69,0x6e,0x65,0x3a, 0x22,0x78,0x22,0x2c,0x73,0x74,0x61,0x72,0x74,0x3a,0x22,0x74,0x6f,0x70,0x22,0x2c, 0x65,0x6e,0x64,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x2c,0x73,0x69,0x7a, 0x65,0x3a,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x22,0x2c,0x63,0x72,0x6f,0x73,0x73, 0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x3a,0x22,0x6c,0x65,0x66,0x74,0x22, 0x2c,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x45,0x6e,0x64,0x3a,0x22,0x72, 0x69,0x67,0x68,0x74,0x22,0x2c,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x53, 0x69,0x7a,0x65,0x3a,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x7d,0x2c,0x79,0x74,0x3d, 0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x68,0x6f,0x72,0x69, 0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x22,0x2c,0x6c,0x69,0x6e,0x65,0x3a,0x22,0x78,0x22, 0x2c,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x4c,0x69,0x6e,0x65,0x3a,0x22, 0x79,0x22,0x2c,0x73,0x74,0x61,0x72,0x74,0x3a,0x22,0x6c,0x65,0x66,0x74,0x22,0x2c, 0x65,0x6e,0x64,0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x2c,0x73,0x69,0x7a,0x65, 0x3a,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x2c,0x63,0x72,0x6f,0x73,0x73,0x41,0x78, 0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x3a,0x22,0x74,0x6f,0x70,0x22,0x2c,0x63,0x72, 0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x45,0x6e,0x64,0x3a,0x22,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x22,0x2c,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x53,0x69,0x7a, 0x65,0x3a,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x22,0x7d,0x2c,0x5f,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x65, 0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x76,0x69, 0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x77,0x69,0x74,0x68,0x44, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x69,0x3d,0x65,0x2e,0x69,0x73,0x56,0x69,0x73,0x69,0x62, 0x6c,0x65,0x54,0x68,0x72,0x6f,0x75,0x67,0x68,0x46,0x72,0x61,0x6d,0x65,0x46,0x6e, 0x2c,0x61,0x3d,0x6f,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x66,0x72,0x61,0x6d,0x65, 0x3f,0x74,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e, 0x64,0x69,0x66,0x66,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x3a,0x42,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4b,0x65,0x28,0x65, 0x2c,0x6e,0x29,0x7d,0x28,0x74,0x2c,0x6e,0x29,0x3a,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x74,0x2e,0x73,0x75,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x26,0x26,0x6e,0x28,0x74, 0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x29, 0x28,0x65,0x29,0x7d,0x28,0x61,0x2c,0x6e,0x2c,0x69,0x29,0x26,0x26,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x28,0x74,0x29,0x28,0x65,0x29,0x7d,0x28,0x61,0x2c,0x72, 0x2c,0x69,0x29,0x7d,0x2c,0x77,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x74,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b, 0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x54,0x68,0x72,0x6f,0x75,0x67,0x68, 0x46,0x72,0x61,0x6d,0x65,0x46,0x6e,0x3a,0x67,0x74,0x7d,0x29,0x29,0x7d,0x2c,0x4f, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x5f,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x69,0x73,0x56,0x69,0x73,0x69, 0x62,0x6c,0x65,0x54,0x68,0x72,0x6f,0x75,0x67,0x68,0x46,0x72,0x61,0x6d,0x65,0x46, 0x6e,0x3a,0x6d,0x74,0x7d,0x29,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x78,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x61,0x66,0x74,0x65,0x72,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x2c,0x6e,0x3d, 0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d, 0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x6f,0x3d, 0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x69,0x3d,0x65,0x2e,0x66, 0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74, 0x65,0x2c,0x61,0x3d,0x65,0x2e,0x6c,0x61,0x73,0x74,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x2e,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x42,0x6f,0x78,0x2c,0x72,0x3d,0x7b,0x74,0x6f,0x70,0x3a,0x74,0x2e,0x70,0x6f, 0x69,0x6e,0x74,0x2e,0x79,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x30,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x74,0x2e,0x70,0x6f, 0x69,0x6e,0x74,0x2e,0x78,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x65, 0x28,0x66,0x65,0x28,0x6e,0x2c,0x72,0x29,0x29,0x7d,0x28,0x74,0x2c,0x72,0x29,0x2c, 0x63,0x3d,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69, 0x64,0x3b,0x69,0x66,0x28,0x65,0x2e,0x61,0x6c,0x6c,0x2e,0x70,0x75,0x73,0x68,0x28, 0x63,0x29,0x2c,0x21,0x77,0x74,0x28,0x7b,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x75, 0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x76, 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x6f,0x2c,0x77,0x69,0x74,0x68,0x44,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x21,0x30,0x7d,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x5b,0x74,0x2e,0x64,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d,0x3d,0x21,0x30,0x2c, 0x65,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x22,0x62,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x69,0x66,0x28,0x21,0x74,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e, 0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x2c,0x6f,0x3d,0x74,0x2e,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x3b,0x69,0x66,0x28,0x72,0x5b,0x65,0x5d,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x5b,0x65, 0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x69,0x7c,0x7c,0x69,0x2e,0x73,0x68, 0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x7d,0x28,0x63,0x2c,0x61, 0x2c,0x69,0x29,0x2c,0x73,0x3d,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x49,0x64,0x3a,0x63,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61, 0x74,0x65,0x3a,0x6c,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76, 0x69,0x73,0x69,0x62,0x6c,0x65,0x5b,0x63,0x5d,0x3d,0x73,0x2c,0x65,0x7d,0x29,0x2c, 0x7b,0x61,0x6c,0x6c,0x3a,0x5b,0x5d,0x2c,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a, 0x7b,0x7d,0x2c,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x7b,0x7d,0x7d, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x74,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6e,0x3d,0x65,0x2e,0x69, 0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x69, 0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x65, 0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2d,0x31,0x5d,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x69,0x6e, 0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x3f,0x6e,0x3a,0x6e,0x2b,0x31,0x7d,0x28, 0x74,0x2c,0x7b,0x69,0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x3a,0x6e,0x7d, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x3a,0x70,0x74,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42, 0x79,0x3a,0x72,0x2c,0x61,0x74,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x52,0x45, 0x4f,0x52,0x44,0x45,0x52,0x22,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69, 0x6f,0x6e,0x3a,0x7b,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a, 0x6f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c, 0x69,0x6e,0x64,0x65,0x78,0x3a,0x69,0x7d,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6a,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e, 0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f, 0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f, 0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x69, 0x3d,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x61, 0x3d,0x65,0x2e,0x6c,0x61,0x73,0x74,0x2c,0x75,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x2c,0x63,0x3d,0x65,0x2e,0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c, 0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x2c,0x6c,0x3d,0x66,0x74,0x28,0x74,0x2c, 0x72,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x75,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x45,0x74,0x28,0x7b,0x69,0x6e,0x73,0x69,0x64,0x65,0x44, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x69,0x6e,0x48, 0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x3a,0x6c,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61, 0x63,0x65,0x64,0x42,0x79,0x3a,0x69,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x74,0x74, 0x28,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70, 0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3d,0x3d,0x3d,0x75,0x7d,0x29,0x29, 0x3b,0x69,0x66,0x28,0x21,0x73,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x74, 0x28,0x7b,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x69,0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74, 0x3a,0x6c,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x69, 0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x7d,0x29, 0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x73,0x74,0x28,0x74,0x2c,0x6e,0x29,0x2c,0x64, 0x3d,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x73,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a,0x78, 0x74,0x28,0x7b,0x61,0x66,0x74,0x65,0x72,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67, 0x3a,0x66,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x64,0x29,0x2c,0x64,0x65,0x73,0x74, 0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61, 0x63,0x65,0x64,0x42,0x79,0x3a,0x69,0x2c,0x6c,0x61,0x73,0x74,0x3a,0x61,0x2c,0x76, 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x6f,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c, 0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61, 0x74,0x65,0x3a,0x63,0x7d,0x29,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x42,0x79,0x3a,0x69,0x2c,0x61,0x74,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x52, 0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x7b,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3a,0x72,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64, 0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x75,0x7d,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6b,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x2e,0x65,0x66, 0x66,0x65,0x63,0x74,0x65,0x64,0x5b,0x65,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x53, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f, 0x72,0x77,0x61,0x72,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x69,0x73,0x49,0x6e,0x48,0x6f, 0x6d,0x65,0x4c,0x69,0x73,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x2c,0x69,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x2c,0x61,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65, 0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x75,0x3d,0x65,0x2e,0x70,0x72, 0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x2c,0x63,0x3d,0x65, 0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x6c,0x3d,0x65,0x2e,0x61,0x66, 0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x73,0x3d,0x75,0x2e, 0x61,0x74,0x3b,0x69,0x66,0x28,0x73,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c, 0x22,0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x3d,0x3d,0x3d,0x73,0x2e,0x74,0x79, 0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73, 0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x2c,0x6e,0x3d, 0x65,0x2e,0x69,0x73,0x49,0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2c,0x72, 0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61, 0x74,0x69,0x6f,0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f, 0x6e,0x3b,0x69,0x66,0x28,0x21,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x6f,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x61,0x3d,0x74,0x3f,0x69,0x2b,0x31, 0x3a,0x69,0x2d,0x31,0x2c,0x75,0x3d,0x72,0x5b,0x30,0x5d,0x2e,0x64,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x63,0x3d,0x72, 0x5b,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x5d,0x2e,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x61,0x3c,0x75,0x7c,0x7c,0x61,0x3e,0x28,0x6e,0x3f,0x63, 0x3a,0x63,0x2b,0x31,0x29,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x61,0x7d,0x28,0x7b,0x69, 0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x74, 0x2c,0x69,0x73,0x49,0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x3a,0x6e,0x2c, 0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x2e,0x64,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x7d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x66,0x3f,0x6e,0x75,0x6c,0x6c, 0x3a,0x6a,0x74,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x72, 0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69, 0x6f,0x6e,0x3a,0x61,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x69,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x63,0x2c,0x6c,0x61, 0x73,0x74,0x3a,0x75,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x64, 0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x75,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x66, 0x7d,0x29,0x7d,0x76,0x61,0x72,0x20,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73,0x4d, 0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x2c,0x6e,0x3d,0x65, 0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x65, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f,0x3d,0x65,0x2e, 0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65, 0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3b,0x69,0x66,0x28,0x21,0x6e,0x2e, 0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x2c,0x75,0x3d,0x72,0x5b,0x61,0x5d,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6b,0x74,0x28,0x61,0x2c,0x69,0x29,0x3f,0x74,0x3f,0x75,0x3a,0x75,0x2d,0x31,0x3a, 0x74,0x3f,0x75,0x2b,0x31,0x3a,0x75,0x7d,0x28,0x7b,0x69,0x73,0x4d,0x6f,0x76,0x69, 0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x74,0x2c,0x64,0x65,0x73,0x74, 0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61, 0x63,0x65,0x64,0x3a,0x75,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2c,0x63,0x6f,0x6d, 0x62,0x69,0x6e,0x65,0x3a,0x73,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2c,0x61, 0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x6c,0x7d,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x64,0x3f, 0x6e,0x75,0x6c,0x6c,0x3a,0x6a,0x74,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x3a,0x72,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x69,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a, 0x63,0x2c,0x6c,0x61,0x73,0x74,0x3a,0x75,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x75, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x69,0x6e,0x64, 0x65,0x78,0x3a,0x64,0x7d,0x29,0x7d,0x2c,0x43,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x61, 0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x6e,0x3d,0x65, 0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f,0x3d,0x6c,0x74,0x28,0x6e,0x29,0x3b,0x6f, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x61,0x3d,0x72, 0x5b,0x69,0x5d,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42, 0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c,0x75,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x61,0x66, 0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x72,0x3d,0x65,0x2e, 0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x57,0x69,0x74,0x68,0x2c,0x6f,0x3d,0x65,0x2e, 0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x69,0x3d,0x42,0x6f, 0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x2e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x5b, 0x72,0x5d,0x7c,0x7c,0x74,0x2e,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x5b, 0x72,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x72,0x2c, 0x6e,0x29,0x3f,0x69,0x3f,0x42,0x65,0x3a,0x24,0x65,0x28,0x6f,0x2e,0x70,0x6f,0x69, 0x6e,0x74,0x29,0x3a,0x69,0x3f,0x6f,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x3a,0x42,0x65, 0x7d,0x28,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a,0x6e,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x74,0x2c,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65, 0x57,0x69,0x74,0x68,0x3a,0x69,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x42,0x79,0x3a,0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79, 0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x65,0x28,0x61,0x2c,0x75, 0x29,0x7d,0x2c,0x41,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x5b,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2b,0x74,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x5b,0x65,0x2e,0x73,0x69,0x7a,0x65,0x5d, 0x2f,0x32,0x7d,0x2c,0x54,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b, 0x65,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72,0x74, 0x5d,0x2b,0x6e,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x5b,0x65,0x2e,0x63,0x72,0x6f, 0x73,0x73,0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x2b,0x6e,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x5b,0x65,0x2e,0x63,0x72,0x6f,0x73,0x73, 0x41,0x78,0x69,0x73,0x53,0x69,0x7a,0x65,0x5d,0x2f,0x32,0x7d,0x2c,0x50,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x61,0x78,0x69,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x6d,0x6f,0x76, 0x65,0x52,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x54,0x6f,0x2c,0x72,0x3d,0x65,0x2e, 0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x48,0x65,0x28,0x74,0x2e,0x6c,0x69,0x6e,0x65,0x2c,0x6e,0x2e,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x42,0x6f,0x78,0x5b,0x74,0x2e,0x65,0x6e,0x64,0x5d,0x2b,0x41,0x74,0x28, 0x74,0x2c,0x72,0x29,0x2c,0x54,0x74,0x28,0x74,0x2c,0x6e,0x2e,0x6d,0x61,0x72,0x67, 0x69,0x6e,0x42,0x6f,0x78,0x2c,0x72,0x29,0x29,0x7d,0x2c,0x44,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x61,0x78,0x69,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x52, 0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x54,0x6f,0x2c,0x72,0x3d,0x65,0x2e,0x69,0x73, 0x4d,0x6f,0x76,0x69,0x6e,0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x65, 0x28,0x74,0x2e,0x6c,0x69,0x6e,0x65,0x2c,0x6e,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x42,0x6f,0x78,0x5b,0x74,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x5b,0x65,0x2e,0x65,0x6e,0x64, 0x5d,0x2b,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x5b,0x65,0x2e, 0x73,0x69,0x7a,0x65,0x5d,0x2f,0x32,0x7d,0x28,0x74,0x2c,0x72,0x29,0x2c,0x54,0x74, 0x28,0x74,0x2c,0x6e,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x2c,0x72, 0x29,0x29,0x7d,0x2c,0x4e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63, 0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c, 0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f, 0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c,0x69,0x3d,0x65, 0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x61, 0x3d,0x75,0x74,0x28,0x6f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x2c,0x72,0x29,0x2c,0x75,0x3d,0x6e,0x2e,0x70,0x61,0x67,0x65,0x2c, 0x63,0x3d,0x6f,0x2e,0x61,0x78,0x69,0x73,0x3b,0x69,0x66,0x28,0x21,0x61,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x61,0x78,0x69,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x49,0x6e, 0x74,0x6f,0x2c,0x72,0x3d,0x65,0x2e,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x65,0x28,0x74,0x2e,0x6c,0x69,0x6e,0x65, 0x2c,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x42,0x6f,0x78,0x5b,0x74,0x2e, 0x73,0x74,0x61,0x72,0x74,0x5d,0x2b,0x41,0x74,0x28,0x74,0x2c,0x72,0x29,0x2c,0x54, 0x74,0x28,0x74,0x2c,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x42,0x6f,0x78, 0x2c,0x72,0x29,0x29,0x7d,0x28,0x7b,0x61,0x78,0x69,0x73,0x3a,0x63,0x2c,0x6d,0x6f, 0x76,0x65,0x49,0x6e,0x74,0x6f,0x3a,0x6f,0x2e,0x70,0x61,0x67,0x65,0x2c,0x69,0x73, 0x4d,0x6f,0x76,0x69,0x6e,0x67,0x3a,0x75,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x6c, 0x3d,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x73,0x3d,0x74, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x66,0x3d,0x6c, 0x2e,0x61,0x6c,0x6c,0x5b,0x30,0x5d,0x3b,0x69,0x66,0x28,0x66,0x29,0x7b,0x76,0x61, 0x72,0x20,0x64,0x3d,0x72,0x5b,0x66,0x5d,0x3b,0x69,0x66,0x28,0x6b,0x74,0x28,0x66, 0x2c,0x69,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x74,0x28,0x7b,0x61, 0x78,0x69,0x73,0x3a,0x63,0x2c,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x74,0x69, 0x76,0x65,0x54,0x6f,0x3a,0x64,0x2e,0x70,0x61,0x67,0x65,0x2c,0x69,0x73,0x4d,0x6f, 0x76,0x69,0x6e,0x67,0x3a,0x75,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x67, 0x65,0x28,0x64,0x2e,0x70,0x61,0x67,0x65,0x2c,0x73,0x2e,0x70,0x6f,0x69,0x6e,0x74, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x74,0x28,0x7b,0x61,0x78,0x69, 0x73,0x3a,0x63,0x2c,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x74,0x69,0x76,0x65, 0x54,0x6f,0x3a,0x70,0x2c,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x3a,0x75,0x7d, 0x29,0x7d,0x76,0x61,0x72,0x20,0x68,0x3d,0x61,0x5b,0x61,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2d,0x31,0x5d,0x3b,0x69,0x66,0x28,0x68,0x2e,0x64,0x65,0x73,0x63,0x72, 0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x3d,0x3d,0x3d,0x6e,0x2e,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x75,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x63,0x65, 0x6e,0x74,0x65,0x72,0x3b,0x69,0x66,0x28,0x6b,0x74,0x28,0x68,0x2e,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x69,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x76,0x3d,0x67,0x65,0x28,0x68,0x2e,0x70,0x61,0x67,0x65,0x2c,0x24, 0x65,0x28,0x69,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2e, 0x70,0x6f,0x69,0x6e,0x74,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50, 0x74,0x28,0x7b,0x61,0x78,0x69,0x73,0x3a,0x63,0x2c,0x6d,0x6f,0x76,0x65,0x52,0x65, 0x6c,0x61,0x74,0x69,0x76,0x65,0x54,0x6f,0x3a,0x76,0x2c,0x69,0x73,0x4d,0x6f,0x76, 0x69,0x6e,0x67,0x3a,0x75,0x7d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50, 0x74,0x28,0x7b,0x61,0x78,0x69,0x73,0x3a,0x63,0x2c,0x6d,0x6f,0x76,0x65,0x52,0x65, 0x6c,0x61,0x74,0x69,0x76,0x65,0x54,0x6f,0x3a,0x68,0x2e,0x70,0x61,0x67,0x65,0x2c, 0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x3a,0x75,0x7d,0x29,0x7d,0x2c,0x49,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3f,0x7a,0x65,0x28,0x74,0x2c,0x6e,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2e,0x64,0x69,0x66,0x66,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x29,0x3a,0x74,0x7d,0x2c,0x52,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x73,0x2c,0x69,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x61,0x3d,0x6e,0x2e,0x70,0x61,0x67,0x65,0x2e, 0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72, 0x2c,0x75,0x3d,0x74,0x2e,0x61,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x26,0x26,0x75,0x3f,0x22,0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x3d,0x3d,0x3d, 0x75,0x2e,0x74,0x79,0x70,0x65,0x3f,0x4e,0x74,0x28,0x7b,0x69,0x6d,0x70,0x61,0x63, 0x74,0x3a,0x74,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2c,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x72,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x69,0x7d,0x29,0x3a,0x43,0x74,0x28,0x7b,0x69, 0x6d,0x70,0x61,0x63,0x74,0x3a,0x74,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x73,0x3a,0x6f,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63, 0x61,0x6c,0x3a,0x69,0x7d,0x29,0x3a,0x61,0x7d,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x65, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x3f,0x49,0x74,0x28,0x6e,0x2c,0x74,0x29,0x3a,0x74,0x7d,0x2c,0x4c, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x55,0x65,0x28,0x74,0x2c,0x65,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x29,0x2c,0x72,0x3d,0x24, 0x65,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x66,0x72,0x61,0x6d, 0x65,0x3a,0x73,0x65,0x28,0x7b,0x74,0x6f,0x70,0x3a,0x74,0x2e,0x79,0x2c,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x74,0x2e,0x79,0x2b,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65, 0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x74,0x2e,0x78, 0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x74,0x2e,0x78,0x2b,0x65,0x2e,0x66,0x72,0x61, 0x6d,0x65,0x2e,0x77,0x69,0x64,0x74,0x68,0x7d,0x29,0x2c,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x3a,0x7b,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x3a,0x65,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2c,0x6d,0x61,0x78,0x3a, 0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x2c,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3a,0x74,0x2c,0x64,0x69,0x66,0x66,0x3a,0x7b,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x6e,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x3a,0x72,0x7d,0x7d,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x46,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x65,0x5d,0x7d,0x29, 0x29,0x7d,0x76,0x61,0x72,0x20,0x4d,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x70,0x61,0x67, 0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72, 0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x65,0x28,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x2e,0x64,0x69,0x66,0x66,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x74,0x29,0x7d,0x28,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x2c,0x74,0x29,0x2c,0x6f,0x3d,0x55,0x65,0x28,0x72,0x2c,0x6e,0x2e,0x70, 0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x63,0x65, 0x6e,0x74,0x65,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x65,0x28, 0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42, 0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c,0x6f,0x29,0x7d,0x2c,0x42,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x6e, 0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x72, 0x3d,0x65,0x2e,0x6e,0x65,0x77,0x50,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72, 0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x76,0x69, 0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x69,0x3d,0x65,0x2e,0x77,0x69,0x74,0x68,0x44, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x75,0x3d,0x65,0x2e,0x6f,0x6e,0x6c,0x79,0x4f,0x6e,0x4d, 0x61,0x69,0x6e,0x41,0x78,0x69,0x73,0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x75,0x26,0x26,0x75,0x2c,0x6c,0x3d,0x55,0x65,0x28,0x72,0x2c,0x74, 0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e, 0x63,0x65,0x6e,0x74,0x65,0x72,0x29,0x2c,0x73,0x3d,0x7b,0x74,0x61,0x72,0x67,0x65, 0x74,0x3a,0x4b,0x65,0x28,0x74,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64, 0x65,0x72,0x42,0x6f,0x78,0x2c,0x6c,0x29,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x77,0x69,0x74,0x68,0x44,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x3a,0x69,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x6f,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x74,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b, 0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x54,0x68,0x72,0x6f,0x75,0x67,0x68, 0x46,0x72,0x61,0x6d,0x65,0x46,0x6e,0x3a,0x28,0x74,0x3d,0x65,0x2e,0x64,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x78,0x69,0x73,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x76,0x74,0x28,0x65,0x2e,0x74,0x6f,0x70,0x2c,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x29,0x2c,0x72,0x3d,0x76,0x74,0x28,0x65,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x65, 0x2e,0x72,0x69,0x67,0x68,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x62,0x74,0x3f,0x6e,0x28,0x65,0x2e,0x74,0x6f,0x70, 0x29,0x26,0x26,0x6e,0x28,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x3a,0x72, 0x28,0x65,0x2e,0x6c,0x65,0x66,0x74,0x29,0x26,0x26,0x72,0x28,0x65,0x2e,0x72,0x69, 0x67,0x68,0x74,0x29,0x7d,0x7d,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x74, 0x7d,0x28,0x73,0x29,0x3a,0x4f,0x74,0x28,0x73,0x29,0x7d,0x2c,0x7a,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61, 0x72,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x2c,0x72,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e, 0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c, 0x69,0x3d,0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61, 0x63,0x74,0x2c,0x75,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c, 0x63,0x3d,0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x50,0x61,0x67,0x65, 0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x2c, 0x6c,0x3d,0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x43,0x6c,0x69,0x65, 0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x73,0x3d,0x65,0x2e, 0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3b,0x69,0x66, 0x28,0x21,0x72,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d, 0x75,0x74,0x28,0x72,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x69,0x64,0x2c,0x6f,0x29,0x2c,0x64,0x3d,0x66,0x74,0x28,0x6e,0x2c,0x72,0x29,0x2c, 0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f, 0x72,0x77,0x61,0x72,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65, 0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x65,0x2e,0x70,0x72, 0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x3b,0x69,0x66,0x28, 0x21,0x72,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b, 0x69,0x66,0x28,0x21,0x63,0x74,0x28,0x69,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x74,0x79,0x70,0x65,0x3a, 0x22,0x43,0x4f,0x4d,0x42,0x49,0x4e,0x45,0x22,0x2c,0x63,0x6f,0x6d,0x62,0x69,0x6e, 0x65,0x3a,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65, 0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x72,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x7d,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x69,0x2c,0x7b,0x61,0x74,0x3a,0x74,0x7d,0x29,0x7d,0x76, 0x61,0x72,0x20,0x63,0x3d,0x69,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x2e,0x61,0x6c,0x6c,0x2c,0x6c,0x3d,0x63,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f, 0x63,0x5b,0x30,0x5d,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x74,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x3f,0x75,0x28,0x6c,0x29,0x3a,0x6e,0x75,0x6c, 0x6c,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x73,0x74,0x28,0x6e,0x2c,0x6f,0x29,0x3b, 0x69,0x66,0x28,0x21,0x6c,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3f,0x75,0x28,0x73,0x5b,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2d,0x31,0x5d,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d, 0x65,0x74,0x28,0x73,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63,0x72, 0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x3d,0x3d,0x3d,0x6c,0x7d,0x29,0x29,0x3b, 0x2d,0x31,0x3d,0x3d,0x3d,0x66,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x64,0x3d,0x66,0x2d,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x64,0x3c,0x30,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x75,0x28,0x73,0x5b,0x64,0x5d,0x2e, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x29,0x7d,0x28, 0x7b,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64, 0x3a,0x74,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x69,0x6e,0x73, 0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x66, 0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x3a, 0x69,0x7d,0x29,0x7c,0x7c,0x53,0x74,0x28,0x7b,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e, 0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x74,0x2c,0x69,0x73,0x49,0x6e,0x48, 0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x3a,0x64,0x2c,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73, 0x3a,0x6f,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69, 0x6f,0x6e,0x3a,0x66,0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70, 0x61,0x63,0x74,0x3a,0x69,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x75, 0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x73, 0x7d,0x29,0x3b,0x69,0x66,0x28,0x21,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d,0x52,0x74,0x28,0x7b,0x69, 0x6d,0x70,0x61,0x63,0x74,0x3a,0x70,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x3a,0x6e,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x72,0x2c, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2c,0x61,0x66,0x74, 0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x73,0x7d,0x29,0x3b,0x69, 0x66,0x28,0x42,0x74,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a, 0x6e,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c, 0x6e,0x65,0x77,0x50,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78, 0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x68,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x3a,0x75,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x77,0x69,0x74,0x68,0x44,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x21,0x31,0x2c,0x6f,0x6e,0x6c,0x79,0x4f,0x6e,0x4d,0x61,0x69, 0x6e,0x41,0x78,0x69,0x73,0x3a,0x21,0x30,0x7d,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x3a,0x4d,0x74,0x28,0x7b,0x70,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72, 0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x68,0x2c,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x75,0x7d,0x29,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x70,0x2c,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x76,0x61,0x72,0x20,0x76,0x3d,0x55,0x65,0x28,0x68, 0x2c,0x63,0x29,0x2c,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74, 0x2c,0x6e,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x72,0x3d, 0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6f,0x3d, 0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x69,0x3d,0x65, 0x2e,0x6d,0x61,0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65, 0x2c,0x75,0x3d,0x4c,0x74,0x28,0x6e,0x2c,0x7a,0x65,0x28,0x6e,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x69,0x29,0x29,0x2c, 0x63,0x3d,0x72,0x2e,0x66,0x72,0x61,0x6d,0x65,0x3f,0x4a,0x65,0x28,0x72,0x2c,0x7a, 0x65,0x28,0x72,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x69,0x29,0x29,0x3a,0x72,0x2c,0x6c, 0x3d,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x73,0x3d,0x78, 0x74,0x28,0x7b,0x61,0x66,0x74,0x65,0x72,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67, 0x3a,0x46,0x74,0x28,0x6c,0x2e,0x61,0x6c,0x6c,0x2c,0x6f,0x29,0x2c,0x64,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x64,0x69,0x73,0x70,0x6c, 0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x42,0x79,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x75,0x2e, 0x66,0x72,0x61,0x6d,0x65,0x2c,0x6c,0x61,0x73,0x74,0x3a,0x6c,0x2c,0x66,0x6f,0x72, 0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a, 0x21,0x31,0x7d,0x29,0x2c,0x66,0x3d,0x78,0x74,0x28,0x7b,0x61,0x66,0x74,0x65,0x72, 0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x46,0x74,0x28,0x6c,0x2e,0x61,0x6c, 0x6c,0x2c,0x6f,0x29,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x63,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x74, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x76,0x69,0x65, 0x77,0x70,0x6f,0x72,0x74,0x3a,0x6e,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x6c,0x61, 0x73,0x74,0x3a,0x6c,0x2c,0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x21,0x31,0x7d,0x29,0x2c,0x64,0x3d,0x7b, 0x7d,0x2c,0x70,0x3d,0x7b,0x7d,0x2c,0x68,0x3d,0x5b,0x6c,0x2c,0x73,0x2c,0x66,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x2e,0x61,0x6c,0x6c,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x30,0x3b,0x6e,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b, 0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x5b,0x6e,0x5d,0x2e,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x5b,0x65,0x5d,0x3b,0x69,0x66,0x28,0x72,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x7d,0x28,0x65,0x2c,0x68,0x29,0x3b,0x74,0x3f,0x70,0x5b,0x65,0x5d,0x3d, 0x74,0x3a,0x64,0x5b,0x65,0x5d,0x3d,0x21,0x30,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x64, 0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a,0x7b,0x61,0x6c,0x6c,0x3a,0x6c,0x2e, 0x61,0x6c,0x6c,0x2c,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x64,0x2c, 0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x70,0x7d,0x7d,0x29,0x7d,0x28,0x7b,0x69, 0x6d,0x70,0x61,0x63,0x74,0x3a,0x70,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x75,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72, 0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2c,0x6d,0x61, 0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x76,0x7d, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53, 0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x2c,0x69,0x6d,0x70,0x61,0x63, 0x74,0x3a,0x67,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65, 0x71,0x75,0x65,0x73,0x74,0x3a,0x76,0x7d,0x7d,0x2c,0x55,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29, 0x2c,0x74,0x7d,0x2c,0x57,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x70,0x61,0x67, 0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74, 0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x65,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x74,0x29,0x3f, 0x55,0x65,0x28,0x6e,0x2c,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x42,0x79,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x29,0x3a,0x6e,0x7d,0x2c,0x24,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65, 0x72,0x42,0x6f,0x78,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x28,0x65, 0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x74, 0x29,0x3f,0x4b,0x65,0x28,0x6e,0x2c,0x24,0x65,0x28,0x74,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x29,0x29,0x3a, 0x6e,0x7d,0x2c,0x48,0x74,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x5b, 0x65,0x2e,0x6c,0x69,0x6e,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x6e,0x2c,0x70,0x6f,0x69,0x6e,0x74,0x3a,0x48,0x65,0x28, 0x65,0x2e,0x6c,0x69,0x6e,0x65,0x2c,0x6e,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x56,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x7b,0x6d,0x61,0x78,0x3a,0x74,0x7d,0x29,0x7d, 0x29,0x7d,0x2c,0x47,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x66,0x72, 0x61,0x6d,0x65,0x3b,0x66,0x74,0x28,0x74,0x2c,0x65,0x29,0x26,0x26,0x41,0x65,0x28, 0x21,0x31,0x29,0x2c,0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x77,0x69, 0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x26,0x26,0x41, 0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x48,0x74,0x28,0x65, 0x2e,0x61,0x78,0x69,0x73,0x2c,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65, 0x42,0x79,0x29,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x65,0x2e,0x61,0x78,0x69,0x73,0x3b,0x69,0x66,0x28,0x22,0x76,0x69,0x72, 0x74,0x75,0x61,0x6c,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2e,0x6d,0x6f,0x64,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x48,0x65,0x28,0x72,0x2e,0x6c,0x69,0x6e,0x65,0x2c,0x74,0x5b,0x72,0x2e,0x6c, 0x69,0x6e,0x65,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x73,0x75, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x61,0x67,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x42,0x6f,0x78,0x5b,0x72,0x2e,0x73,0x69,0x7a,0x65,0x5d,0x2c,0x69,0x3d, 0x75,0x74,0x28,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x69,0x64,0x2c,0x6e,0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2b,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x5b,0x72,0x2e,0x73,0x69,0x7a,0x65,0x5d,0x7d, 0x29,0x2c,0x30,0x29,0x2b,0x74,0x5b,0x72,0x2e,0x6c,0x69,0x6e,0x65,0x5d,0x2d,0x6f, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3c,0x3d,0x30,0x3f,0x6e,0x75,0x6c, 0x6c,0x3a,0x48,0x65,0x28,0x72,0x2e,0x6c,0x69,0x6e,0x65,0x2c,0x69,0x29,0x7d,0x28, 0x65,0x2c,0x6f,0x2c,0x6e,0x29,0x2c,0x75,0x3d,0x7b,0x70,0x6c,0x61,0x63,0x65,0x68, 0x6f,0x6c,0x64,0x65,0x72,0x53,0x69,0x7a,0x65,0x3a,0x6f,0x2c,0x69,0x6e,0x63,0x72, 0x65,0x61,0x73,0x65,0x64,0x42,0x79,0x3a,0x69,0x2c,0x6f,0x6c,0x64,0x46,0x72,0x61, 0x6d,0x65,0x4d,0x61,0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x65,0x2e,0x66,0x72, 0x61,0x6d,0x65,0x3f,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x69,0x66,0x28, 0x21,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x58,0x65,0x28,0x7b,0x70,0x61, 0x67,0x65,0x3a,0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x61,0x67, 0x65,0x2c,0x77,0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65, 0x72,0x3a,0x75,0x2c,0x61,0x78,0x69,0x73,0x3a,0x65,0x2e,0x61,0x78,0x69,0x73,0x2c, 0x66,0x72,0x61,0x6d,0x65,0x3a,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x7d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x73,0x75,0x62,0x6a,0x65,0x63,0x74, 0x3a,0x63,0x7d,0x29,0x7d,0x76,0x61,0x72,0x20,0x6c,0x3d,0x69,0x3f,0x7a,0x65,0x28, 0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x2c,0x69,0x29,0x3a, 0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x2c,0x73,0x3d,0x56, 0x74,0x28,0x72,0x2c,0x6c,0x29,0x2c,0x66,0x3d,0x58,0x65,0x28,0x7b,0x70,0x61,0x67, 0x65,0x3a,0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x61,0x67,0x65, 0x2c,0x77,0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72, 0x3a,0x75,0x2c,0x61,0x78,0x69,0x73,0x3a,0x65,0x2e,0x61,0x78,0x69,0x73,0x2c,0x66, 0x72,0x61,0x6d,0x65,0x3a,0x73,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65, 0x2c,0x7b,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x66,0x2c,0x66,0x72,0x61,0x6d, 0x65,0x3a,0x73,0x7d,0x29,0x7d,0x2c,0x71,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73, 0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x2c,0x6e,0x3d, 0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x50,0x61,0x67,0x65,0x42,0x6f, 0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x2c,0x72,0x3d, 0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x6f,0x3d,0x65,0x2e, 0x69,0x73,0x4f,0x76,0x65,0x72,0x2c,0x69,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x73,0x2c,0x61,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x2c,0x63,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69, 0x63,0x61,0x6c,0x2c,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73,0x4d,0x6f,0x76,0x69, 0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x61, 0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65, 0x72,0x2c,0x72,0x3d,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x6f,0x3d,0x65, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x69,0x3d,0x65,0x2e, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x61,0x3d,0x72,0x2e,0x73,0x75,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3b,0x69,0x66,0x28,0x21, 0x61,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x72,0x2e,0x61,0x78,0x69,0x73,0x2c,0x63,0x3d,0x76,0x74,0x28, 0x61,0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2c,0x61,0x5b,0x75,0x2e,0x65, 0x6e,0x64,0x5d,0x29,0x2c,0x6c,0x3d,0x69,0x74,0x28,0x6f,0x29,0x2e,0x66,0x69,0x6c, 0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x21,0x3d,0x3d,0x72,0x7d,0x29,0x29, 0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x69,0x73, 0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x7d,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x65,0x2e, 0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x29,0x7d, 0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x74, 0x28,0x69,0x2e,0x66,0x72,0x61,0x6d,0x65,0x29,0x28,0x55,0x74,0x28,0x65,0x29,0x29, 0x7d,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x55,0x74, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3f,0x61,0x5b,0x75, 0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x45,0x6e,0x64,0x5d,0x3c,0x6e, 0x5b,0x75,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x45,0x6e,0x64,0x5d, 0x3a,0x6e,0x5b,0x75,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x53,0x74, 0x61,0x72,0x74,0x5d,0x3c,0x61,0x5b,0x75,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78, 0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x7d,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74, 0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x55,0x74,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x76,0x74, 0x28,0x74,0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2c,0x74,0x5b,0x75,0x2e, 0x65,0x6e,0x64,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x28,0x74, 0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x29,0x7c,0x7c,0x63,0x28,0x74,0x5b, 0x75,0x2e,0x65,0x6e,0x64,0x5d,0x29,0x7c,0x7c,0x6e,0x28,0x61,0x5b,0x75,0x2e,0x73, 0x74,0x61,0x72,0x74,0x5d,0x29,0x7c,0x7c,0x6e,0x28,0x61,0x5b,0x75,0x2e,0x65,0x6e, 0x64,0x5d,0x29,0x7d,0x29,0x29,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x55,0x74,0x28,0x65,0x29,0x5b,0x75,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78, 0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x2c,0x6f,0x3d,0x55,0x74,0x28,0x6e,0x29, 0x5b,0x75,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72, 0x74,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3f,0x72,0x2d,0x6f,0x3a, 0x6f,0x2d,0x72,0x7d,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x74,0x28,0x65,0x29,0x5b,0x75,0x2e,0x63,0x72, 0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x3d,0x3d,0x3d, 0x55,0x74,0x28,0x6e,0x5b,0x30,0x5d,0x29,0x5b,0x75,0x2e,0x63,0x72,0x6f,0x73,0x73, 0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x7d,0x29,0x29,0x3b,0x69,0x66, 0x28,0x21,0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x6c,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x5b, 0x30,0x5d,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x6c,0x2e,0x66,0x69,0x6c,0x74,0x65, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x74,0x28,0x55,0x74,0x28,0x65,0x29,0x5b,0x75, 0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2c,0x55,0x74,0x28,0x65,0x29,0x5b,0x75,0x2e, 0x65,0x6e,0x64,0x5d,0x29,0x28,0x6e,0x5b,0x75,0x2e,0x6c,0x69,0x6e,0x65,0x5d,0x29, 0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3d,0x3d,0x3d,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x73,0x5b,0x30,0x5d,0x3a,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x3f,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x55,0x74,0x28,0x65,0x29,0x5b,0x75,0x2e,0x73,0x74,0x61, 0x72,0x74,0x5d,0x2d,0x55,0x74,0x28,0x74,0x29,0x5b,0x75,0x2e,0x73,0x74,0x61,0x72, 0x74,0x5d,0x7d,0x29,0x29,0x5b,0x30,0x5d,0x3a,0x6c,0x2e,0x73,0x6f,0x72,0x74,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x47,0x65,0x28,0x6e,0x2c,0x59,0x65,0x28,0x55,0x74,0x28, 0x65,0x29,0x29,0x29,0x2c,0x6f,0x3d,0x47,0x65,0x28,0x6e,0x2c,0x59,0x65,0x28,0x55, 0x74,0x28,0x74,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x21, 0x3d,0x3d,0x6f,0x3f,0x72,0x2d,0x6f,0x3a,0x55,0x74,0x28,0x65,0x29,0x5b,0x75,0x2e, 0x73,0x74,0x61,0x72,0x74,0x5d,0x2d,0x55,0x74,0x28,0x74,0x29,0x5b,0x75,0x2e,0x73, 0x74,0x61,0x72,0x74,0x5d,0x7d,0x29,0x29,0x5b,0x30,0x5d,0x7d,0x28,0x7b,0x69,0x73, 0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x74,0x2c, 0x70,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e, 0x74,0x65,0x72,0x3a,0x6e,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x6f,0x2c,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x61,0x2c,0x76,0x69,0x65,0x77, 0x70,0x6f,0x72,0x74,0x3a,0x75,0x7d,0x29,0x3b,0x69,0x66,0x28,0x21,0x6c,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x73, 0x3d,0x75,0x74,0x28,0x6c,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x2c,0x69,0x29,0x2c,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x70,0x61,0x67, 0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72, 0x2c,0x6e,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x72,0x3d, 0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6f,0x3d, 0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x66, 0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x74,0x28,0x7b,0x74,0x61, 0x72,0x67,0x65,0x74,0x3a,0x24,0x74,0x28,0x65,0x2c,0x69,0x29,0x2c,0x64,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x3a,0x6e,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x77,0x69,0x74,0x68, 0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x3a,0x21,0x30,0x7d,0x29,0x7d,0x29,0x29,0x2e,0x73,0x6f, 0x72,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x56,0x65,0x28,0x74,0x2c,0x49,0x74,0x28, 0x72,0x2c,0x57,0x74,0x28,0x65,0x2c,0x69,0x29,0x29,0x29,0x2c,0x61,0x3d,0x56,0x65, 0x28,0x74,0x2c,0x49,0x74,0x28,0x72,0x2c,0x57,0x74,0x28,0x6e,0x2c,0x69,0x29,0x29, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3c,0x61,0x3f,0x2d,0x31,0x3a, 0x61,0x3c,0x6f,0x3f,0x31,0x3a,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2d,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72, 0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x7d,0x29,0x29,0x5b,0x30, 0x5d,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x7b,0x70,0x61,0x67,0x65,0x42,0x6f, 0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x6e,0x2c, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x75,0x2c,0x64,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x2c,0x61,0x66,0x74, 0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x63,0x7d,0x29,0x2c,0x64, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x50,0x61,0x67, 0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72, 0x2c,0x6e,0x3d,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x74,0x69,0x76, 0x65,0x54,0x6f,0x2c,0x72,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65, 0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x61,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x75,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x2c,0x63,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x3b,0x69,0x66,0x28,0x21,0x6e,0x29,0x7b,0x69,0x66,0x28, 0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x7b,0x64,0x69,0x73,0x70, 0x6c,0x61,0x63,0x65,0x64,0x3a,0x70,0x74,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x42,0x79,0x3a,0x64,0x74,0x2c,0x61,0x74,0x3a,0x7b,0x74,0x79,0x70,0x65, 0x3a,0x22,0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x2c,0x64,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x7b,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x49,0x64,0x3a,0x61,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x30,0x7d,0x7d,0x7d,0x2c,0x73, 0x3d,0x52,0x74,0x28,0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x6c,0x2c,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6f,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x3a,0x61,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73, 0x3a,0x69,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x3a,0x63,0x7d,0x29,0x2c,0x66,0x3d,0x66,0x74,0x28,0x6f,0x2c,0x61,0x29,0x3f,0x61, 0x3a,0x47,0x74,0x28,0x61,0x2c,0x6f,0x2c,0x69,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x42,0x74,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a, 0x6f,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x2c, 0x6e,0x65,0x77,0x50,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78, 0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x73,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x3a,0x75,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x77,0x69,0x74,0x68,0x44,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x21,0x31,0x2c,0x6f,0x6e,0x6c,0x79,0x4f,0x6e,0x4d,0x61,0x69, 0x6e,0x41,0x78,0x69,0x73,0x3a,0x21,0x30,0x7d,0x29,0x3f,0x6c,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x76,0x61,0x72,0x20,0x64,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28, 0x74,0x5b,0x61,0x2e,0x61,0x78,0x69,0x73,0x2e,0x6c,0x69,0x6e,0x65,0x5d,0x3c,0x3d, 0x6e,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78, 0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x5b,0x61,0x2e,0x61,0x78,0x69,0x73,0x2e,0x6c, 0x69,0x6e,0x65,0x5d,0x29,0x2c,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72, 0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x69,0x64,0x3d,0x3d,0x3d,0x6f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x2e,0x69,0x64,0x7c,0x7c,0x64,0x3f,0x65,0x3a,0x65,0x2b,0x31,0x7d,0x28,0x29, 0x2c,0x68,0x3d,0x48,0x74,0x28,0x61,0x2e,0x61,0x78,0x69,0x73,0x2c,0x6f,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x42,0x79,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6a,0x74,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a, 0x6f,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f, 0x6e,0x3a,0x61,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x75,0x2c,0x64, 0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x68,0x2c,0x6c,0x61,0x73, 0x74,0x3a,0x70,0x74,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x70,0x7d,0x29,0x7d,0x28, 0x7b,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x50,0x61,0x67,0x65,0x42,0x6f,0x72, 0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x6e,0x2c,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x2c,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x72,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x3a,0x69,0x2c,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x74,0x69, 0x76,0x65,0x54,0x6f,0x3a,0x66,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x2c,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x3a,0x75,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69, 0x63,0x61,0x6c,0x3a,0x63,0x7d,0x29,0x3b,0x69,0x66,0x28,0x21,0x64,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d, 0x52,0x74,0x28,0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x64,0x2c,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x72,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x3a,0x6c,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a, 0x69,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a, 0x63,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x6c,0x69,0x65,0x6e, 0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x4d,0x74,0x28,0x7b,0x70, 0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74, 0x65,0x72,0x3a,0x70,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x72, 0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x75,0x7d,0x29,0x2c,0x69,0x6d, 0x70,0x61,0x63,0x74,0x3a,0x64,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d, 0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x2c, 0x4b,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x61,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3f,0x22,0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x3d,0x3d,0x3d,0x74, 0x2e,0x74,0x79,0x70,0x65,0x3f,0x74,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a, 0x74,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x59,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x74,0x79,0x70, 0x65,0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4b,0x74,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x74,0x5b,0x6e,0x5d,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x28,0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x74,0x2e,0x64,0x69,0x6d, 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x73,0x29,0x2c,0x6f,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x72,0x29, 0x2c,0x69,0x3d,0x74,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e,0x63,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e, 0x69,0x64,0x5d,0x2c,0x61,0x3d,0x72,0x7c,0x7c,0x69,0x2c,0x75,0x3d,0x61,0x2e,0x61, 0x78,0x69,0x73,0x2e,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x63,0x3d, 0x22,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x22,0x3d,0x3d,0x3d,0x75,0x26,0x26, 0x28,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x55,0x50,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c, 0x22,0x4d,0x4f,0x56,0x45,0x5f,0x44,0x4f,0x57,0x4e,0x22,0x3d,0x3d,0x3d,0x6e,0x29, 0x7c,0x7c,0x22,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x22,0x3d,0x3d, 0x3d,0x75,0x26,0x26,0x28,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x4c,0x45,0x46,0x54,0x22, 0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x52,0x49,0x47,0x48, 0x54,0x22,0x3d,0x3d,0x3d,0x6e,0x29,0x3b,0x69,0x66,0x28,0x63,0x26,0x26,0x21,0x6f, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x6c,0x3d,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x44,0x4f,0x57,0x4e,0x22,0x3d,0x3d, 0x3d,0x6e,0x7c,0x7c,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x52,0x49,0x47,0x48,0x54,0x22, 0x3d,0x3d,0x3d,0x6e,0x2c,0x73,0x3d,0x74,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, 0x6f,0x6e,0x73,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74, 0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x66,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42, 0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x2c,0x64,0x3d,0x74,0x2e,0x64,0x69,0x6d, 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2c,0x70,0x3d,0x64,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x68,0x3d,0x64,0x2e,0x64,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x3f,0x7a, 0x74,0x28,0x7b,0x69,0x73,0x4d,0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61, 0x72,0x64,0x3a,0x6c,0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x50,0x61,0x67, 0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72, 0x3a,0x66,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x73,0x2c,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x61,0x2c,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x70,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x3a,0x74,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x70,0x72, 0x65,0x76,0x69,0x6f,0x75,0x73,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65, 0x63,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e, 0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x3a, 0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x74,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x7d,0x29,0x3a,0x71,0x74,0x28,0x7b,0x69,0x73,0x4d, 0x6f,0x76,0x69,0x6e,0x67,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x3a,0x6c,0x2c,0x70, 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x50,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65, 0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x66,0x2c,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x73,0x2c,0x69,0x73,0x4f,0x76,0x65,0x72,0x3a, 0x61,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x70,0x2c,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x68,0x2c,0x76,0x69,0x65,0x77, 0x70,0x6f,0x72,0x74,0x3a,0x74,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c, 0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x74,0x2e, 0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x7d,0x29,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x74,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22, 0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x7c,0x7c,0x22,0x43,0x4f,0x4c, 0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61, 0x73,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x74,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x76,0x74,0x28,0x65,0x2e,0x74,0x6f,0x70, 0x2c,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x6e,0x3d,0x76,0x74,0x28, 0x65,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x2e,0x79,0x29, 0x26,0x26,0x6e,0x28,0x65,0x2e,0x78,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x4a,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x70,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2c,0x6e, 0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x72,0x3d,0x65, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f,0x3d,0x69,0x74, 0x28,0x72,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x2e,0x69,0x73, 0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x73,0x75,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x3b,0x69,0x66,0x28,0x21, 0x6f,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x72,0x3d, 0x6f,0x2c,0x21,0x28,0x28,0x6e,0x3d,0x74,0x29,0x2e,0x6c,0x65,0x66,0x74,0x3c,0x72, 0x2e,0x72,0x69,0x67,0x68,0x74,0x26,0x26,0x6e,0x2e,0x72,0x69,0x67,0x68,0x74,0x3e, 0x72,0x2e,0x6c,0x65,0x66,0x74,0x26,0x26,0x6e,0x2e,0x74,0x6f,0x70,0x3c,0x72,0x2e, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x26,0x26,0x6e,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3e,0x72,0x2e,0x74,0x6f,0x70,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31, 0x3b,0x69,0x66,0x28,0x58,0x74,0x28,0x6f,0x29,0x28,0x74,0x2e,0x63,0x65,0x6e,0x74, 0x65,0x72,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x65,0x2e,0x61,0x78,0x69,0x73,0x2c,0x61,0x3d,0x6f,0x2e,0x63,0x65, 0x6e,0x74,0x65,0x72,0x5b,0x69,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73, 0x4c,0x69,0x6e,0x65,0x5d,0x2c,0x75,0x3d,0x74,0x5b,0x69,0x2e,0x63,0x72,0x6f,0x73, 0x73,0x41,0x78,0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x2c,0x63,0x3d,0x74,0x5b, 0x69,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x45,0x6e,0x64,0x5d,0x2c, 0x6c,0x3d,0x76,0x74,0x28,0x6f,0x5b,0x69,0x2e,0x63,0x72,0x6f,0x73,0x73,0x41,0x78, 0x69,0x73,0x53,0x74,0x61,0x72,0x74,0x5d,0x2c,0x6f,0x5b,0x69,0x2e,0x63,0x72,0x6f, 0x73,0x73,0x41,0x78,0x69,0x73,0x45,0x6e,0x64,0x5d,0x29,0x2c,0x73,0x3d,0x6c,0x28, 0x75,0x29,0x2c,0x66,0x3d,0x6c,0x28,0x63,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x73,0x26,0x26,0x21,0x66,0x7c,0x7c,0x28,0x73,0x3f,0x75,0x3c,0x61,0x3a,0x63, 0x3e,0x61,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x31,0x3d,0x3d,0x3d,0x6f,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3f,0x6f,0x5b,0x30,0x5d,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70, 0x74,0x6f,0x72,0x2e,0x69,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x42, 0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x63,0x61,0x6e,0x64,0x69, 0x64,0x61,0x74,0x65,0x73,0x2c,0x6f,0x3d,0x6e,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62, 0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c, 0x69,0x3d,0x72,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x78,0x69, 0x73,0x2c,0x72,0x3d,0x48,0x65,0x28,0x65,0x2e,0x61,0x78,0x69,0x73,0x2e,0x6c,0x69, 0x6e,0x65,0x2c,0x74,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x5b,0x6e,0x2e,0x6c,0x69, 0x6e,0x65,0x5d,0x2c,0x65,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65, 0x72,0x42,0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x5b,0x6e,0x2e,0x63,0x72, 0x6f,0x73,0x73,0x41,0x78,0x69,0x73,0x4c,0x69,0x6e,0x65,0x5d,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x69,0x64,0x3a,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65, 0x3a,0x56,0x65,0x28,0x6f,0x2c,0x72,0x29,0x7d,0x7d,0x29,0x29,0x2e,0x73,0x6f,0x72, 0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x64,0x69,0x73,0x74,0x61,0x6e, 0x63,0x65,0x2d,0x65,0x2e,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x7d,0x29,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x5b,0x30,0x5d,0x3f,0x69,0x5b,0x30, 0x5d,0x2e,0x69,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x7b,0x70,0x61,0x67,0x65, 0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x3a,0x74,0x2c,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x63,0x61,0x6e,0x64,0x69,0x64,0x61,0x74, 0x65,0x73,0x3a,0x6f,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x76,0x61,0x72,0x20, 0x5a,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x65,0x28,0x4b,0x65,0x28,0x65,0x2c, 0x74,0x29,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x63,0x65,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x69,0x64,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x2e,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x5b,0x6e,0x5d,0x7c,0x7c,0x74,0x2e,0x69,0x6e,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x5b,0x6e,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x74,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c, 0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x72,0x3d, 0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f,0x3d,0x65, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x69,0x3d,0x65,0x2e, 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x2c,0x61, 0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x75,0x3d,0x65,0x2e, 0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x63,0x3d, 0x5a,0x74,0x28,0x6e,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72, 0x42,0x6f,0x78,0x2c,0x74,0x29,0x2c,0x6c,0x3d,0x4a,0x74,0x28,0x7b,0x70,0x61,0x67, 0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x3a,0x63,0x2c,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x73,0x3a,0x6f,0x7d,0x29,0x3b,0x69,0x66,0x28,0x21,0x6c,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x68,0x74,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x6f,0x5b, 0x6c,0x5d,0x2c,0x66,0x3d,0x75,0x74,0x28,0x73,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x72,0x29,0x2c,0x64,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x3f,0x5a,0x74,0x28,0x74,0x2c,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e, 0x64,0x69,0x66,0x66,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3a,0x74,0x7d,0x28,0x73, 0x2c,0x63,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x61,0x67, 0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x57,0x69,0x74,0x68,0x44,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x72,0x3d, 0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74, 0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e, 0x2c,0x69,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x61,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3b,0x69,0x66,0x28,0x21,0x6f,0x2e,0x69, 0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20, 0x75,0x3d,0x6f,0x2e,0x61,0x78,0x69,0x73,0x2c,0x63,0x3d,0x48,0x74,0x28,0x6f,0x2e, 0x61,0x78,0x69,0x73,0x2c,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x42, 0x79,0x29,0x2c,0x6c,0x3d,0x63,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x73,0x3d,0x6e, 0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2c,0x66,0x3d,0x6e,0x5b,0x75,0x2e, 0x65,0x6e,0x64,0x5d,0x2c,0x64,0x3d,0x74,0x74,0x28,0x73,0x74,0x28,0x74,0x2c,0x69, 0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x2e,0x69,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f, 0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2c,0x6f,0x3d,0x6e,0x5b,0x75,0x2e,0x73,0x69, 0x7a,0x65,0x5d,0x2f,0x34,0x2c,0x69,0x3d,0x6b,0x74,0x28,0x74,0x2c,0x61,0x29,0x2c, 0x63,0x3d,0x65,0x6e,0x28,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a, 0x72,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x69,0x64,0x3a,0x74, 0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3f,0x63,0x3f,0x66,0x3e, 0x6e,0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2b,0x6f,0x26,0x26,0x66,0x3c, 0x6e,0x5b,0x75,0x2e,0x65,0x6e,0x64,0x5d,0x2d,0x6f,0x3a,0x73,0x3e,0x6e,0x5b,0x75, 0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2d,0x6c,0x2b,0x6f,0x26,0x26,0x73,0x3c,0x6e, 0x5b,0x75,0x2e,0x65,0x6e,0x64,0x5d,0x2d,0x6c,0x2d,0x6f,0x3a,0x63,0x3f,0x66,0x3e, 0x6e,0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2b,0x6c,0x2b,0x6f,0x26,0x26, 0x66,0x3c,0x6e,0x5b,0x75,0x2e,0x65,0x6e,0x64,0x5d,0x2b,0x6c,0x2d,0x6f,0x3a,0x73, 0x3e,0x6e,0x5b,0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2b,0x6f,0x26,0x26,0x73, 0x3c,0x6e,0x5b,0x75,0x2e,0x65,0x6e,0x64,0x5d,0x2d,0x6f,0x7d,0x29,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x3f,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x42,0x79,0x3a,0x63,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x3a,0x72,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x61,0x74,0x3a, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x43,0x4f,0x4d,0x42,0x49,0x4e,0x45,0x22,0x2c, 0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3a,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x49,0x64,0x3a,0x64,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x2e,0x69,0x64,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3a,0x6f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64, 0x7d,0x7d,0x7d,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x7b,0x70,0x61,0x67,0x65,0x42, 0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x57,0x69,0x74,0x68,0x44,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x64,0x2c,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x70,0x72,0x65,0x76,0x69,0x6f, 0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x3a,0x69,0x2c,0x64,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x2c,0x61,0x66,0x74, 0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x75,0x7d,0x29,0x7c,0x7c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x42,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f, 0x78,0x57,0x69,0x74,0x68,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x53,0x63, 0x72,0x6f,0x6c,0x6c,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69, 0x6f,0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x65,0x2e,0x6c,0x61,0x73, 0x74,0x2c,0x61,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x75, 0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x2c,0x63,0x3d,0x72,0x2e,0x61,0x78,0x69,0x73,0x2c,0x6c,0x3d,0x48,0x74,0x28,0x72, 0x2e,0x61,0x78,0x69,0x73,0x2c,0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65, 0x42,0x79,0x29,0x2c,0x73,0x3d,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x66,0x3d, 0x74,0x5b,0x63,0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2c,0x64,0x3d,0x74,0x5b,0x63, 0x2e,0x65,0x6e,0x64,0x5d,0x2c,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73, 0x74,0x2c,0x72,0x3d,0x65,0x2e,0x69,0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x72,0x26,0x26,0x6e,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3e, 0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x3f,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x2d,0x31,0x3a,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3a,0x6e,0x75,0x6c,0x6c,0x7d, 0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x63,0x6c, 0x6f,0x73,0x65,0x73,0x74,0x3a,0x74,0x74,0x28,0x73,0x74,0x28,0x6e,0x2c,0x6f,0x29, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72, 0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x5b,0x63,0x2e, 0x6c,0x69,0x6e,0x65,0x5d,0x2c,0x72,0x3d,0x6b,0x74,0x28,0x74,0x2c,0x75,0x29,0x2c, 0x6f,0x3d,0x65,0x6e,0x28,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a, 0x69,0x2c,0x69,0x64,0x3a,0x74,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x3f,0x6f,0x3f,0x64,0x3c,0x3d,0x6e,0x3a,0x66,0x3c,0x6e,0x2d,0x73,0x3a,0x6f, 0x3f,0x64,0x3c,0x3d,0x6e,0x2b,0x73,0x3a,0x66,0x3c,0x6e,0x7d,0x29,0x29,0x2c,0x69, 0x6e,0x48,0x6f,0x6d,0x65,0x4c,0x69,0x73,0x74,0x3a,0x66,0x74,0x28,0x6e,0x2c,0x72, 0x29,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x74,0x28,0x7b,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x69,0x6e,0x73,0x69,0x64, 0x65,0x44,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x76,0x69,0x65, 0x77,0x70,0x6f,0x72,0x74,0x3a,0x61,0x2c,0x6c,0x61,0x73,0x74,0x3a,0x69,0x2c,0x64, 0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x6c,0x2c,0x69,0x6e,0x64, 0x65,0x78,0x3a,0x70,0x7d,0x29,0x7d,0x28,0x7b,0x70,0x61,0x67,0x65,0x42,0x6f,0x72, 0x64,0x65,0x72,0x42,0x6f,0x78,0x57,0x69,0x74,0x68,0x44,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x64,0x2c,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x73,0x2c,0x69,0x6e,0x73,0x69,0x64,0x65,0x44,0x65,0x73,0x74, 0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x2c,0x6c,0x61,0x73,0x74,0x3a,0x69, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x3a,0x61,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69, 0x63,0x61,0x6c,0x3a,0x75,0x7d,0x29,0x7d,0x2c,0x6e,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x28,0x28,0x6e,0x3d,0x7b,0x7d,0x29,0x5b, 0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d, 0x3d,0x74,0x2c,0x6e,0x29,0x29,0x7d,0x2c,0x72,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x70, 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x2c,0x6e,0x3d, 0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f,0x3d,0x4b,0x74,0x28,0x74,0x29,0x2c, 0x69,0x3d,0x4b,0x74,0x28,0x6e,0x29,0x3b,0x69,0x66,0x28,0x21,0x6f,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x3b,0x69,0x66,0x28,0x6f,0x3d,0x3d,0x3d,0x69,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x72, 0x5b,0x6f,0x5d,0x3b,0x69,0x66,0x28,0x21,0x75,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x77,0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65, 0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3b,0x76,0x61,0x72,0x20,0x63, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x77,0x69,0x74, 0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3b,0x74,0x7c,0x7c, 0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x66, 0x72,0x61,0x6d,0x65,0x3b,0x69,0x66,0x28,0x21,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x58,0x65,0x28,0x7b,0x70,0x61,0x67,0x65,0x3a,0x65,0x2e,0x73,0x75,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x61,0x67,0x65,0x2c,0x61,0x78,0x69,0x73,0x3a,0x65, 0x2e,0x61,0x78,0x69,0x73,0x2c,0x66,0x72,0x61,0x6d,0x65,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x77,0x69,0x74,0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c, 0x7b,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x72,0x7d,0x29,0x7d,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x74,0x2e,0x6f,0x6c,0x64,0x46,0x72,0x61,0x6d,0x65,0x4d,0x61,0x78, 0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3b,0x6f,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29, 0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x56,0x74,0x28,0x6e,0x2c,0x6f,0x29,0x2c,0x75, 0x3d,0x58,0x65,0x28,0x7b,0x70,0x61,0x67,0x65,0x3a,0x65,0x2e,0x73,0x75,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x70,0x61,0x67,0x65,0x2c,0x61,0x78,0x69,0x73,0x3a,0x65,0x2e, 0x61,0x78,0x69,0x73,0x2c,0x66,0x72,0x61,0x6d,0x65,0x3a,0x69,0x2c,0x77,0x69,0x74, 0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x73,0x75,0x62, 0x6a,0x65,0x63,0x74,0x3a,0x75,0x2c,0x66,0x72,0x61,0x6d,0x65,0x3a,0x69,0x7d,0x29, 0x7d,0x28,0x75,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x6e,0x28,0x72, 0x2c,0x63,0x29,0x7d,0x2c,0x6f,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74, 0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65, 0x63,0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73, 0x69,0x6f,0x6e,0x73,0x2c,0x6f,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x2c,0x69,0x3d,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x75,0x3d,0x65, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65,0x71,0x75,0x65, 0x73,0x74,0x2c,0x63,0x3d,0x6f,0x7c,0x7c,0x74,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x2c,0x6c,0x3d,0x72,0x7c,0x7c,0x74,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73, 0x69,0x6f,0x6e,0x73,0x2c,0x73,0x3d,0x6e,0x7c,0x7c,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x73,0x65,0x6c,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x2c,0x66,0x3d,0x55,0x65,0x28,0x73,0x2c,0x74,0x2e,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x73,0x65,0x6c, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x64,0x3d,0x7b,0x6f,0x66,0x66,0x73,0x65, 0x74,0x3a,0x66,0x2c,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x73,0x2c, 0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a, 0x7a,0x65,0x28,0x74,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e, 0x74,0x65,0x72,0x2c,0x66,0x29,0x7d,0x2c,0x70,0x3d,0x7b,0x73,0x65,0x6c,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x3a,0x7a,0x65,0x28,0x64,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x2c,0x63,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x29,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43, 0x65,0x6e,0x74,0x65,0x72,0x3a,0x7a,0x65,0x28,0x64,0x2e,0x62,0x6f,0x72,0x64,0x65, 0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x2c,0x63,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x6f,0x66,0x66, 0x73,0x65,0x74,0x3a,0x7a,0x65,0x28,0x64,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c, 0x63,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x64,0x69,0x66,0x66,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x29,0x7d,0x2c,0x68,0x3d,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3a, 0x64,0x2c,0x70,0x61,0x67,0x65,0x3a,0x70,0x7d,0x3b,0x69,0x66,0x28,0x22,0x43,0x4f, 0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x70,0x68, 0x61,0x73,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x43, 0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x74,0x2c,0x7b,0x64, 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x6c,0x2c,0x76,0x69,0x65,0x77, 0x70,0x6f,0x72,0x74,0x3a,0x63,0x2c,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x68, 0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x76,0x3d,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x67, 0x3d,0x69,0x7c,0x7c,0x74,0x6e,0x28,0x7b,0x70,0x61,0x67,0x65,0x4f,0x66,0x66,0x73, 0x65,0x74,0x3a,0x70,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x3a,0x76,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x73,0x3a,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6c,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, 0x49,0x6d,0x70,0x61,0x63,0x74,0x3a,0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x63,0x2c,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x74,0x2e,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x7d,0x29,0x2c,0x6d,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6f,0x3d,0x65,0x2e,0x70,0x72,0x65, 0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x2c,0x69,0x3d,0x65,0x2e, 0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x61,0x3d,0x72,0x6e,0x28,0x7b,0x70,0x72,0x65, 0x76,0x69,0x6f,0x75,0x73,0x49,0x6d,0x70,0x61,0x63,0x74,0x3a,0x6f,0x2c,0x69,0x6d, 0x70,0x61,0x63,0x74,0x3a,0x69,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65, 0x73,0x3a,0x72,0x7d,0x29,0x2c,0x75,0x3d,0x4b,0x74,0x28,0x69,0x29,0x3b,0x69,0x66, 0x28,0x21,0x75,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3b,0x76,0x61,0x72, 0x20,0x63,0x3d,0x72,0x5b,0x75,0x5d,0x3b,0x69,0x66,0x28,0x66,0x74,0x28,0x74,0x2c, 0x63,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3b,0x69,0x66,0x28,0x63, 0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2e,0x77,0x69,0x74,0x68,0x50,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x61,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x47,0x74,0x28,0x63,0x2c,0x74,0x2c,0x6e, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x6e,0x28,0x61,0x2c,0x6c,0x29, 0x7d,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x76,0x2c,0x69, 0x6d,0x70,0x61,0x63,0x74,0x3a,0x67,0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, 0x49,0x6d,0x70,0x61,0x63,0x74,0x3a,0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6c,0x2e,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x73,0x3a,0x6c,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x7d, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3a,0x68,0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a, 0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6c,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x73,0x3a,0x6d,0x7d,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x67,0x2c, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x63,0x2c,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a,0x75,0x7c,0x7c, 0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x21,0x75,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x7d,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x61,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69, 0x6d,0x70,0x61,0x63,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x73,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f, 0x6e,0x2c,0x69,0x3d,0x65,0x2e,0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c, 0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x2c,0x75,0x3d,0x74,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x63,0x65,0x64,0x2c,0x63,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x7d, 0x28,0x75,0x2e,0x61,0x6c,0x6c,0x2c,0x72,0x29,0x2c,0x6c,0x3d,0x78,0x74,0x28,0x7b, 0x61,0x66,0x74,0x65,0x72,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x63,0x2c, 0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c,0x64,0x69, 0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x74,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x6e,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x66,0x6f,0x72,0x63,0x65,0x53,0x68, 0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x69,0x2c,0x6c,0x61, 0x73,0x74,0x3a,0x75,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b, 0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a,0x6c,0x7d,0x29,0x7d,0x2c,0x75, 0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x6e,0x3d,0x65, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x69,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77, 0x70,0x6f,0x72,0x74,0x2c,0x61,0x3d,0x65,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x75,0x3d,0x52,0x74,0x28,0x7b,0x69,0x6d,0x70, 0x61,0x63,0x74,0x3a,0x74,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a, 0x6e,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2c,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x72,0x2c,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x61,0x7d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4d,0x74,0x28,0x7b,0x70,0x61,0x67,0x65,0x42,0x6f,0x72,0x64, 0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a,0x75,0x2c,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x3a,0x69,0x7d,0x29,0x7d,0x2c,0x63,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73, 0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, 0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3b,0x22,0x53,0x4e,0x41,0x50,0x22,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x6f,0x76,0x65, 0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29, 0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c, 0x69,0x3d,0x72,0x7c,0x7c,0x74,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c, 0x61,0x3d,0x6e,0x7c,0x7c,0x74,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, 0x73,0x2c,0x75,0x3d,0x61,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73, 0x2c,0x63,0x3d,0x61,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c, 0x6c,0x3d,0x75,0x5b,0x74,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x73,0x3d,0x4b, 0x74,0x28,0x6f,0x29,0x3b,0x73,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x66,0x3d,0x63,0x5b,0x73,0x5d,0x2c,0x64,0x3d,0x61,0x6e,0x28,0x7b, 0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x6f,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x3a,0x69,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a, 0x66,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x75,0x7d,0x29, 0x2c,0x70,0x3d,0x75,0x6e,0x28,0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x64,0x2c, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6c,0x2c,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x3a,0x66,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x73,0x3a,0x75,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x69,0x2c, 0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x74,0x2e, 0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x7d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x6e,0x28,0x7b,0x69,0x6d,0x70,0x61,0x63, 0x74,0x3a,0x64,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x3a,0x70,0x2c,0x73,0x74,0x61,0x74,0x65,0x3a,0x74,0x2c,0x64,0x69, 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x61,0x2c,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x3a,0x69,0x7d,0x29,0x7d,0x2c,0x6c,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x68,0x6f, 0x6d,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x73,0x2c,0x6f,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x69, 0x3d,0x48,0x74,0x28,0x6e,0x2e,0x61,0x78,0x69,0x73,0x2c,0x74,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x63,0x65,0x42,0x79,0x29,0x2c,0x61,0x3d,0x75,0x74,0x28,0x6e,0x2e, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x72,0x29, 0x2c,0x75,0x3d,0x61,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x74,0x29,0x3b, 0x2d,0x31,0x3d,0x3d,0x3d,0x75,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x63,0x2c,0x6c,0x3d,0x61,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x75, 0x2b,0x31,0x29,0x2c,0x73,0x3d,0x6c,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70, 0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d,0x3d,0x21,0x30,0x2c,0x65,0x7d,0x29,0x2c,0x7b, 0x7d,0x29,0x2c,0x66,0x3d,0x7b,0x69,0x6e,0x56,0x69,0x72,0x74,0x75,0x61,0x6c,0x4c, 0x69,0x73,0x74,0x3a,0x22,0x76,0x69,0x72,0x74,0x75,0x61,0x6c,0x22,0x3d,0x3d,0x3d, 0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x6d,0x6f,0x64, 0x65,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x3a,0x69,0x2c, 0x65,0x66,0x66,0x65,0x63,0x74,0x65,0x64,0x3a,0x73,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x7b,0x64,0x69,0x73,0x70,0x6c, 0x61,0x63,0x65,0x64,0x3a,0x78,0x74,0x28,0x7b,0x61,0x66,0x74,0x65,0x72,0x44,0x72, 0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x6c,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x42,0x79,0x3a,0x69,0x2c,0x6c,0x61,0x73,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x76, 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x6f,0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c, 0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61, 0x74,0x65,0x3a,0x21,0x31,0x7d,0x29,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65, 0x64,0x42,0x79,0x3a,0x69,0x2c,0x61,0x74,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61, 0x74,0x69,0x6f,0x6e,0x3a,0x28,0x63,0x3d,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2c,0x7b,0x69,0x6e,0x64,0x65,0x78,0x3a,0x63,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a, 0x63,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x7d,0x29,0x7d, 0x7d,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a, 0x66,0x7d,0x7d,0x2c,0x73,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x30,0x7d,0x2c,0x66,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x30,0x7d,0x2c,0x64,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x61, 0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x75,0x70,0x64, 0x61,0x74,0x65,0x64,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x72, 0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x6f,0x3d,0x72,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x64,0x69,0x66,0x66,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x6d,0x61,0x70,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x69,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x66,0x72,0x61,0x6d,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c, 0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x74,0x7d,0x28,0x6e,0x5b,0x74,0x5d,0x29, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x64,0x69,0x66,0x66,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x2c,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x72,0x3d, 0x65,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x53, 0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x6f,0x3d,0x67,0x65,0x28,0x74,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2c,0x6e,0x29,0x2c,0x69,0x3d,0x6d,0x65,0x28,0x6f,0x2c,0x72,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x68, 0x6f,0x6c,0x64,0x65,0x72,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x2c,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3a,0x6f,0x7d,0x29,0x2c,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x3a,0x6f,0x2c,0x70,0x61,0x67,0x65,0x3a,0x69,0x7d,0x29, 0x7d,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x65,0x2c,0x6f, 0x66,0x66,0x73,0x65,0x74,0x3a,0x7a,0x65,0x28,0x6f,0x2c,0x69,0x29,0x2c,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c, 0x6c,0x3a,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x7d,0x29,0x29, 0x7d,0x2c,0x70,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x53,0x4e,0x41,0x50,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x7d,0x2c, 0x68,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x73,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73, 0x3a,0x6e,0x6e,0x28,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73, 0x2c,0x74,0x29,0x7d,0x7d,0x28,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, 0x6e,0x73,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x70,0x6e,0x28, 0x65,0x29,0x7c,0x7c,0x6e,0x3f,0x6f,0x6e,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a, 0x65,0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x72,0x7d,0x29, 0x3a,0x63,0x6e,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x65,0x2c,0x64,0x69,0x6d, 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x72,0x7d,0x29,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x26, 0x26,0x22,0x53,0x4e,0x41,0x50,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x6f,0x76,0x65, 0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x44,0x52,0x41, 0x47,0x47,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x65,0x2c,0x7b,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x29,0x3a,0x65,0x7d,0x76,0x61,0x72,0x20,0x67,0x6e,0x3d,0x7b,0x70,0x68, 0x61,0x73,0x65,0x3a,0x22,0x49,0x44,0x4c,0x45,0x22,0x2c,0x63,0x6f,0x6d,0x70,0x6c, 0x65,0x74,0x65,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x46,0x6c,0x75,0x73,0x68,0x3a,0x21,0x31,0x7d,0x2c,0x6d,0x6e,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x67,0x6e,0x29, 0x2c,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x67,0x6e,0x2c,0x7b,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x46,0x6c,0x75,0x73,0x68,0x3a,0x21,0x30,0x7d,0x29,0x3b,0x69,0x66,0x28, 0x22,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x5f,0x50,0x55,0x42,0x4c,0x49,0x53,0x48, 0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x22,0x49,0x44,0x4c, 0x45,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x41,0x65, 0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x2c,0x72,0x3d,0x6e,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61, 0x6c,0x2c,0x6f,0x3d,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65, 0x63,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x3d,0x6e,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x2c,0x75,0x3d,0x6e,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, 0x73,0x2c,0x63,0x3d,0x6e,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f, 0x64,0x65,0x2c,0x6c,0x3d,0x75,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x73,0x5b,0x72,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64, 0x5d,0x2c,0x73,0x3d,0x75,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73, 0x5b,0x72,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d, 0x2c,0x66,0x3d,0x7b,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c, 0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x3a, 0x6c,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42, 0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74, 0x3a,0x42,0x65,0x7d,0x2c,0x64,0x3d,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3a,0x66, 0x2c,0x70,0x61,0x67,0x65,0x3a,0x7b,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x3a,0x7a,0x65,0x28,0x66,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c, 0x69,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x29,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65, 0x72,0x3a,0x7a,0x65,0x28,0x66,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x2c,0x69,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61, 0x6c,0x29,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x7a,0x65,0x28,0x66,0x2e,0x73, 0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x69,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x2e,0x64,0x69,0x66,0x66,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x7d,0x7d,0x2c, 0x70,0x3d,0x69,0x74,0x28,0x75,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65, 0x73,0x29,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x65,0x2e,0x69, 0x73,0x46,0x69,0x78,0x65,0x64,0x4f,0x6e,0x50,0x61,0x67,0x65,0x7d,0x29,0x29,0x2c, 0x68,0x3d,0x6c,0x6e,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a, 0x6c,0x2c,0x68,0x6f,0x6d,0x65,0x3a,0x73,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x3a,0x75,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73, 0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x69,0x7d,0x29,0x2c,0x76,0x3d, 0x68,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22, 0x2c,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x21,0x30,0x2c,0x63, 0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x72,0x2c,0x6d,0x6f,0x76,0x65,0x6d,0x65, 0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3a,0x63,0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, 0x6f,0x6e,0x73,0x3a,0x75,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x3a,0x64,0x2c, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x64,0x2c,0x69,0x73,0x57,0x69,0x6e,0x64, 0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x3a, 0x70,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x76,0x2c,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x68,0x2e,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x6f,0x6e,0x4c,0x69,0x66,0x74,0x49, 0x6d,0x70,0x61,0x63,0x74,0x3a,0x76,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x69,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65,0x71, 0x75,0x65,0x73,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x6f,0x72,0x63,0x65,0x53, 0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x7d,0x69,0x66,0x28,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4f, 0x4e,0x5f,0x53,0x54,0x41,0x52,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x74,0x2e, 0x74,0x79,0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x43,0x4f,0x4c,0x4c, 0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73, 0x65,0x7c,0x7c,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47, 0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x3f,0x65,0x3a,0x28,0x22, 0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x70,0x68, 0x61,0x73,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22, 0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x65,0x2c,0x7b, 0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e, 0x47,0x22,0x7d,0x29,0x29,0x3b,0x69,0x66,0x28,0x22,0x50,0x55,0x42,0x4c,0x49,0x53, 0x48,0x5f,0x57,0x48,0x49,0x4c,0x45,0x5f,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47, 0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d, 0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50, 0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73, 0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74, 0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65, 0x64,0x3b,0x73,0x6e,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74, 0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x49,0x64,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x65,0x28, 0x6e,0x2c,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x29,0x7d,0x29,0x29,0x2c,0x6f, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c, 0x74,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x7b,0x7d,0x2c,0x72,0x74,0x28,0x72,0x29, 0x29,0x2c,0x69,0x3d,0x6f,0x74,0x28,0x64,0x6e,0x28,0x7b,0x61,0x64,0x64,0x69,0x74, 0x69,0x6f,0x6e,0x73,0x3a,0x6e,0x2e,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73, 0x2c,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x73,0x3a,0x6f,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x74,0x2e, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x7d,0x29,0x29,0x2c,0x75,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x64, 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x73,0x2c,0x7b,0x7d,0x2c,0x69,0x29,0x3b,0x6e,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x61,0x6c,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x64,0x65,0x6c,0x65,0x74, 0x65,0x20,0x75,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d, 0x7b,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2c,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x75,0x7d,0x2c,0x6c,0x3d,0x4b,0x74, 0x28,0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x29,0x2c,0x73,0x3d,0x6c,0x3f,0x63, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x6c,0x5d,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x66,0x3d,0x63,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x73,0x5b,0x74,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x64,0x3d,0x63,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e,0x63,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e, 0x69,0x64,0x5d,0x2c,0x70,0x3d,0x6c,0x6e,0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x3a,0x66,0x2c,0x68,0x6f,0x6d,0x65,0x3a,0x64,0x2c,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x75,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x3a,0x74,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x7d,0x29,0x2c, 0x68,0x3d,0x70,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x76,0x3d,0x70,0x2e,0x61, 0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x67,0x3d,0x73, 0x26,0x26,0x73,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61, 0x62,0x6c,0x65,0x64,0x3f,0x74,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x68,0x2c, 0x6d,0x3d,0x74,0x6e,0x28,0x7b,0x70,0x61,0x67,0x65,0x4f,0x66,0x66,0x73,0x65,0x74, 0x3a,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x70,0x61,0x67,0x65,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x3a,0x63,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e, 0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x73,0x3a,0x63,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x63,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x49, 0x6d,0x70,0x61,0x63,0x74,0x3a,0x67,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x74,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x61,0x66,0x74,0x65, 0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x76,0x7d,0x29,0x3b,0x66,0x6e, 0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x44,0x52,0x41, 0x47,0x47,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x74,0x2c,0x7b,0x70,0x68,0x61,0x73,0x65, 0x3a,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x2c,0x69,0x6d,0x70,0x61, 0x63,0x74,0x3a,0x6d,0x2c,0x6f,0x6e,0x4c,0x69,0x66,0x74,0x49,0x6d,0x70,0x61,0x63, 0x74,0x3a,0x68,0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x63, 0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x76, 0x2c,0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d, 0x61,0x74,0x65,0x3a,0x21,0x31,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x74,0x2e, 0x70,0x68,0x61,0x73,0x65,0x3f,0x62,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x61,0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50, 0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x62,0x2c,0x7b,0x70,0x68, 0x61,0x73,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e, 0x47,0x22,0x2c,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x74,0x2e,0x72,0x65,0x61,0x73, 0x6f,0x6e,0x2c,0x69,0x73,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x3a,0x21,0x31,0x7d, 0x29,0x7d,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x65,0x2c,0x70,0x75,0x62,0x6c, 0x69,0x73,0x68,0x65,0x64,0x3a,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x7d, 0x29,0x3b,0x69,0x66,0x28,0x22,0x4d,0x4f,0x56,0x45,0x22,0x3d,0x3d,0x3d,0x74,0x2e, 0x74,0x79,0x70,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50, 0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x51,0x74,0x28,0x65,0x29, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x67,0x3d,0x74, 0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x65,0x28,0x67,0x2c,0x65,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x73,0x65,0x6c, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x3f,0x65,0x3a,0x6f,0x6e,0x28,0x7b,0x73,0x74, 0x61,0x74,0x65,0x3a,0x65,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65, 0x63,0x74,0x69,0x6f,0x6e,0x3a,0x67,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x70, 0x6e,0x28,0x65,0x29,0x3f,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x6e,0x75, 0x6c,0x6c,0x7d,0x29,0x7d,0x69,0x66,0x28,0x22,0x55,0x50,0x44,0x41,0x54,0x45,0x5f, 0x44,0x52,0x4f,0x50,0x50,0x41,0x42,0x4c,0x45,0x5f,0x53,0x43,0x52,0x4f,0x4c,0x4c, 0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x69,0x66,0x28,0x22, 0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x6e,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54, 0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6e,0x28,0x65,0x29,0x3b,0x51,0x74,0x28,0x65, 0x29,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6d,0x3d, 0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x62,0x3d,0x6d,0x2e,0x69,0x64, 0x2c,0x79,0x3d,0x6d,0x2e,0x6e,0x65,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x5f, 0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x62,0x5d,0x3b,0x69,0x66,0x28,0x21, 0x5f,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x77, 0x3d,0x4a,0x65,0x28,0x5f,0x2c,0x79,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x68,0x6e,0x28,0x65,0x2c,0x77,0x2c,0x21,0x31,0x29,0x7d,0x69,0x66,0x28,0x22,0x55, 0x50,0x44,0x41,0x54,0x45,0x5f,0x44,0x52,0x4f,0x50,0x50,0x41,0x42,0x4c,0x45,0x5f, 0x49,0x53,0x5f,0x45,0x4e,0x41,0x42,0x4c,0x45,0x44,0x22,0x3d,0x3d,0x3d,0x74,0x2e, 0x74,0x79,0x70,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50, 0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x51,0x74,0x28,0x65,0x29, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x4f,0x3d,0x74, 0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x78,0x3d,0x4f,0x2e,0x69,0x64,0x2c, 0x45,0x3d,0x4f,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x6a,0x3d, 0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x78,0x5d,0x3b,0x6a,0x7c,0x7c,0x41,0x65, 0x28,0x21,0x31,0x29,0x2c,0x6a,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x3d,0x3d,0x3d,0x45,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72, 0x20,0x6b,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b, 0x7d,0x2c,0x6a,0x2c,0x7b,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x45, 0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x6e,0x28,0x65,0x2c,0x6b, 0x2c,0x21,0x30,0x29,0x7d,0x69,0x66,0x28,0x22,0x55,0x50,0x44,0x41,0x54,0x45,0x5f, 0x44,0x52,0x4f,0x50,0x50,0x41,0x42,0x4c,0x45,0x5f,0x49,0x53,0x5f,0x43,0x4f,0x4d, 0x42,0x49,0x4e,0x45,0x5f,0x45,0x4e,0x41,0x42,0x4c,0x45,0x44,0x22,0x3d,0x3d,0x3d, 0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50, 0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68, 0x61,0x73,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x51,0x74,0x28, 0x65,0x29,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x53, 0x3d,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x43,0x3d,0x53,0x2e,0x69, 0x64,0x2c,0x41,0x3d,0x53,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45, 0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x54,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e, 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73, 0x5b,0x43,0x5d,0x3b,0x54,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x54,0x2e, 0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x3d,0x3d,0x3d,0x41,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72, 0x20,0x50,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b, 0x7d,0x2c,0x54,0x2c,0x7b,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e, 0x61,0x62,0x6c,0x65,0x64,0x3a,0x41,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x68,0x6e,0x28,0x65,0x2c,0x50,0x2c,0x21,0x30,0x29,0x7d,0x69,0x66,0x28,0x22, 0x4d,0x4f,0x56,0x45,0x5f,0x42,0x59,0x5f,0x57,0x49,0x4e,0x44,0x4f,0x57,0x5f,0x53, 0x43,0x52,0x4f,0x4c,0x4c,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x29, 0x7b,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e, 0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x7c,0x7c,0x22,0x44, 0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d, 0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x3b,0x51,0x74,0x28,0x65,0x29,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c, 0x65,0x2e,0x69,0x73,0x57,0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c, 0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b, 0x76,0x61,0x72,0x20,0x44,0x3d,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e, 0x6e,0x65,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x57,0x65,0x28, 0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x44,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x76,0x6e,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x4e,0x3d, 0x4c,0x74,0x28,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x44,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x6e,0x28,0x65,0x29,0x3f,0x63,0x6e, 0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x65,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f, 0x72,0x74,0x3a,0x4e,0x7d,0x29,0x3a,0x6f,0x6e,0x28,0x7b,0x73,0x74,0x61,0x74,0x65, 0x3a,0x65,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x4e,0x7d,0x29,0x7d, 0x69,0x66,0x28,0x22,0x55,0x50,0x44,0x41,0x54,0x45,0x5f,0x56,0x49,0x45,0x57,0x50, 0x4f,0x52,0x54,0x5f,0x4d,0x41,0x58,0x5f,0x53,0x43,0x52,0x4f,0x4c,0x4c,0x22,0x3d, 0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x51,0x74, 0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72, 0x20,0x49,0x3d,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x6d,0x61,0x78, 0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x57,0x65,0x28,0x49,0x2c,0x65, 0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x2e,0x6d,0x61,0x78,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76, 0x61,0x72,0x20,0x52,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29, 0x28,0x7b,0x7d,0x2c,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x7b, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x7b,0x6d,0x61,0x78,0x3a,0x49,0x7d,0x29, 0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x44,0x52, 0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x65,0x2c,0x7b,0x76,0x69,0x65,0x77, 0x70,0x6f,0x72,0x74,0x3a,0x52,0x7d,0x29,0x7d,0x69,0x66,0x28,0x22,0x4d,0x4f,0x56, 0x45,0x5f,0x55,0x50,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c, 0x22,0x4d,0x4f,0x56,0x45,0x5f,0x44,0x4f,0x57,0x4e,0x22,0x3d,0x3d,0x3d,0x74,0x2e, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x4c,0x45,0x46,0x54, 0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x4d,0x4f,0x56, 0x45,0x5f,0x52,0x49,0x47,0x48,0x54,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70, 0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e, 0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x7c,0x7c,0x22,0x44, 0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65, 0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b, 0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x70, 0x68,0x61,0x73,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72, 0x20,0x4c,0x3d,0x59,0x74,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x65,0x2c,0x74, 0x79,0x70,0x65,0x3a,0x74,0x2e,0x74,0x79,0x70,0x65,0x7d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4c,0x3f,0x6f,0x6e,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a, 0x65,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x4c,0x2e,0x69,0x6d,0x70,0x61,0x63, 0x74,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x3a,0x4c,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65, 0x71,0x75,0x65,0x73,0x74,0x3a,0x4c,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75, 0x6d,0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x7d,0x29,0x3a,0x65,0x7d,0x69,0x66, 0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d, 0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x46,0x3d, 0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49, 0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x41, 0x65,0x28,0x21,0x31,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61, 0x29,0x28,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50, 0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x7d,0x2c,0x65,0x2c,0x7b,0x70,0x68,0x61,0x73, 0x65,0x3a,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22, 0x2c,0x69,0x73,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x3a,0x21,0x30,0x2c,0x72,0x65, 0x61,0x73,0x6f,0x6e,0x3a,0x46,0x7d,0x29,0x7d,0x69,0x66,0x28,0x22,0x44,0x52,0x4f, 0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x45,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74, 0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x4d,0x3d,0x74,0x2e,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x2c,0x42,0x3d,0x4d,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74, 0x65,0x64,0x2c,0x7a,0x3d,0x4d,0x2e,0x64,0x72,0x6f,0x70,0x44,0x75,0x72,0x61,0x74, 0x69,0x6f,0x6e,0x2c,0x55,0x3d,0x4d,0x2e,0x6e,0x65,0x77,0x48,0x6f,0x6d,0x65,0x43, 0x6c,0x69,0x65,0x6e,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65, 0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45, 0x4e,0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65, 0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x7b,0x70,0x68,0x61,0x73,0x65,0x3a, 0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47,0x22, 0x2c,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3a,0x42,0x2c,0x64,0x72,0x6f, 0x70,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x7a,0x2c,0x6e,0x65,0x77,0x48, 0x6f,0x6d,0x65,0x43,0x6c,0x69,0x65,0x6e,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x3a, 0x55,0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x65,0x2e,0x64, 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x44,0x52,0x4f,0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c,0x45,0x54,0x45,0x22, 0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3f,0x7b,0x70,0x68,0x61,0x73,0x65, 0x3a,0x22,0x49,0x44,0x4c,0x45,0x22,0x2c,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65, 0x64,0x3a,0x74,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x63,0x6f,0x6d,0x70, 0x6c,0x65,0x74,0x65,0x64,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x46,0x6c,0x75,0x73, 0x68,0x3a,0x21,0x31,0x7d,0x3a,0x65,0x7d,0x2c,0x62,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x22,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x5f,0x57,0x48,0x49, 0x4c,0x45,0x5f,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x2c,0x79,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79, 0x70,0x65,0x3a,0x22,0x43,0x4f,0x4c,0x4c,0x45,0x43,0x54,0x49,0x4f,0x4e,0x5f,0x53, 0x54,0x41,0x52,0x54,0x49,0x4e,0x47,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x2c,0x5f,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79, 0x70,0x65,0x3a,0x22,0x55,0x50,0x44,0x41,0x54,0x45,0x5f,0x44,0x52,0x4f,0x50,0x50, 0x41,0x42,0x4c,0x45,0x5f,0x53,0x43,0x52,0x4f,0x4c,0x4c,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x2c,0x77,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x22,0x55,0x50,0x44,0x41,0x54,0x45,0x5f,0x44,0x52,0x4f,0x50, 0x50,0x41,0x42,0x4c,0x45,0x5f,0x49,0x53,0x5f,0x45,0x4e,0x41,0x42,0x4c,0x45,0x44, 0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x2c,0x4f,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x55,0x50,0x44,0x41,0x54,0x45, 0x5f,0x44,0x52,0x4f,0x50,0x50,0x41,0x42,0x4c,0x45,0x5f,0x49,0x53,0x5f,0x43,0x4f, 0x4d,0x42,0x49,0x4e,0x45,0x5f,0x45,0x4e,0x41,0x42,0x4c,0x45,0x44,0x22,0x2c,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x2c,0x78,0x6e,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x4d,0x4f,0x56,0x45,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x2c,0x45,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79, 0x70,0x65,0x3a,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x55,0x50,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x2c,0x6a,0x6e,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x44,0x4f,0x57,0x4e, 0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d, 0x2c,0x6b,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x4d,0x4f,0x56,0x45, 0x5f,0x52,0x49,0x47,0x48,0x54,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x2c,0x53,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65, 0x3a,0x22,0x4d,0x4f,0x56,0x45,0x5f,0x4c,0x45,0x46,0x54,0x22,0x2c,0x70,0x61,0x79, 0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x2c,0x43,0x6e,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50,0x5f,0x43,0x4f,0x4d, 0x50,0x4c,0x45,0x54,0x45,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65, 0x7d,0x7d,0x2c,0x41,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44, 0x52,0x4f,0x50,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d, 0x2c,0x54,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50, 0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4f,0x4e,0x5f,0x46,0x49,0x4e,0x49,0x53, 0x48,0x45,0x44,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x50,0x6e,0x3d,0x22,0x63,0x75,0x62,0x69, 0x63,0x2d,0x62,0x65,0x7a,0x69,0x65,0x72,0x28,0x2e,0x32,0x2c,0x31,0x2c,0x2e,0x31, 0x2c,0x31,0x29,0x22,0x2c,0x44,0x6e,0x3d,0x7b,0x64,0x72,0x6f,0x70,0x3a,0x30,0x2c, 0x63,0x6f,0x6d,0x62,0x69,0x6e,0x69,0x6e,0x67,0x3a,0x2e,0x37,0x7d,0x2c,0x4e,0x6e, 0x3d,0x7b,0x64,0x72,0x6f,0x70,0x3a,0x2e,0x37,0x35,0x7d,0x2c,0x49,0x6e,0x3d,0x2e, 0x32,0x2b,0x22,0x73,0x20,0x22,0x2b,0x22,0x63,0x75,0x62,0x69,0x63,0x2d,0x62,0x65, 0x7a,0x69,0x65,0x72,0x28,0x30,0x2e,0x32,0x2c,0x20,0x30,0x2c,0x20,0x30,0x2c,0x20, 0x31,0x29,0x22,0x2c,0x52,0x6e,0x3d,0x7b,0x66,0x6c,0x75,0x69,0x64,0x3a,0x22,0x6f, 0x70,0x61,0x63,0x69,0x74,0x79,0x20,0x22,0x2b,0x49,0x6e,0x2c,0x73,0x6e,0x61,0x70, 0x3a,0x22,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x22,0x2b,0x49,0x6e, 0x2b,0x22,0x2c,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x20,0x22,0x2b,0x49,0x6e, 0x2c,0x64,0x72,0x6f,0x70,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2b,0x22,0x73,0x20,0x22,0x2b,0x50, 0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f, 0x72,0x6d,0x20,0x22,0x2b,0x74,0x2b,0x22,0x2c,0x20,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x20,0x22,0x2b,0x74,0x7d,0x2c,0x6f,0x75,0x74,0x4f,0x66,0x54,0x68,0x65,0x57, 0x61,0x79,0x3a,0x22,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x22,0x2b, 0x49,0x6e,0x2c,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x22, 0x68,0x65,0x69,0x67,0x68,0x74,0x20,0x22,0x2b,0x49,0x6e,0x2b,0x22,0x2c,0x20,0x77, 0x69,0x64,0x74,0x68,0x20,0x22,0x2b,0x49,0x6e,0x2b,0x22,0x2c,0x20,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x20,0x22,0x2b,0x49,0x6e,0x7d,0x2c,0x4c,0x6e,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x57,0x65,0x28,0x65,0x2c,0x42,0x65,0x29,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x22,0x74, 0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x22,0x2b,0x65,0x2e,0x78,0x2b,0x22, 0x70,0x78,0x2c,0x20,0x22,0x2b,0x65,0x2e,0x79,0x2b,0x22,0x70,0x78,0x29,0x22,0x7d, 0x2c,0x46,0x6e,0x3d,0x4c,0x6e,0x2c,0x4d,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4c,0x6e, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x74,0x3f,0x6e, 0x2b,0x22,0x20,0x73,0x63,0x61,0x6c,0x65,0x28,0x22,0x2b,0x4e,0x6e,0x2e,0x64,0x72, 0x6f,0x70,0x2b,0x22,0x29,0x22,0x3a,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x42, 0x6e,0x3d,0x2e,0x33,0x33,0x2c,0x7a,0x6e,0x3d,0x2e,0x35,0x35,0x2c,0x55,0x6e,0x3d, 0x7a,0x6e,0x2d,0x42,0x6e,0x2c,0x57,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x67,0x65,0x74, 0x53,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x69,0x73,0x70,0x61,0x74, 0x63,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x69,0x66,0x28,0x22,0x44,0x52,0x4f, 0x50,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x74,0x28,0x29,0x2c,0x69,0x3d,0x72,0x2e,0x70,0x61,0x79,0x6c,0x6f, 0x61,0x64,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3b,0x69,0x66,0x28,0x22,0x43,0x4f, 0x4c,0x4c,0x45,0x43,0x54,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x6f,0x2e,0x70,0x68, 0x61,0x73,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x49,0x44,0x4c,0x45,0x22,0x21,0x3d, 0x3d,0x6f,0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x7b,0x22,0x44,0x52,0x4f,0x50,0x5f, 0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x70,0x68,0x61, 0x73,0x65,0x26,0x26,0x6f,0x2e,0x69,0x73,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x26, 0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e, 0x47,0x22,0x21,0x3d,0x3d,0x6f,0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x22,0x44, 0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x6f, 0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x75,0x3d,0x6f,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c, 0x63,0x3d,0x6f,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2c,0x6c, 0x3d,0x63,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x6f,0x2e, 0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x72,0x65,0x61,0x73, 0x6f,0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x61,0x73,0x74,0x49,0x6d,0x70,0x61,0x63, 0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x68,0x6f,0x6d,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x76, 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x75,0x3d,0x65,0x2e,0x6f,0x6e,0x4c,0x69, 0x66,0x74,0x49,0x6d,0x70,0x61,0x63,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x2e,0x61,0x74,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x22,0x3d,0x3d,0x3d,0x6e, 0x3f,0x22,0x52,0x45,0x4f,0x52,0x44,0x45,0x52,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x61, 0x74,0x2e,0x74,0x79,0x70,0x65,0x3f,0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x72, 0x2c,0x64,0x69,0x64,0x44,0x72,0x6f,0x70,0x49,0x6e,0x73,0x69,0x64,0x65,0x44,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x3a,0x7b,0x69,0x6d,0x70, 0x61,0x63,0x74,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x72,0x2c,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x3a, 0x70,0x74,0x7d,0x29,0x2c,0x64,0x69,0x64,0x44,0x72,0x6f,0x70,0x49,0x6e,0x73,0x69, 0x64,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x3a, 0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x61,0x6e,0x28,0x7b,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x74,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a, 0x75,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x69,0x2c,0x66,0x6f,0x72,0x63,0x65, 0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x21,0x30, 0x7d,0x29,0x2c,0x64,0x69,0x64,0x44,0x72,0x6f,0x70,0x49,0x6e,0x73,0x69,0x64,0x65, 0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x21,0x31,0x7d,0x7d,0x28,0x7b, 0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x69,0x2c,0x6c,0x61,0x73,0x74,0x49,0x6d,0x70, 0x61,0x63,0x74,0x3a,0x6f,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x61,0x66,0x74, 0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x6f,0x2e,0x61,0x66,0x74, 0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x6f,0x6e,0x4c,0x69,0x66, 0x74,0x49,0x6d,0x70,0x61,0x63,0x74,0x3a,0x6f,0x2e,0x6f,0x6e,0x4c,0x69,0x66,0x74, 0x49,0x6d,0x70,0x61,0x63,0x74,0x2c,0x68,0x6f,0x6d,0x65,0x3a,0x6f,0x2e,0x64,0x69, 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x73,0x5b,0x6f,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2c,0x76,0x69,0x65, 0x77,0x70,0x6f,0x72,0x74,0x3a,0x6f,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x2e,0x64,0x69, 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x7d,0x29,0x2c,0x66,0x3d,0x73,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74, 0x2c,0x64,0x3d,0x73,0x2e,0x64,0x69,0x64,0x44,0x72,0x6f,0x70,0x49,0x6e,0x73,0x69, 0x64,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c,0x70,0x3d,0x64,0x3f, 0x63,0x74,0x28,0x66,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x68,0x3d,0x64,0x3f,0x6c, 0x74,0x28,0x66,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x76,0x3d,0x7b,0x69,0x6e,0x64, 0x65,0x78,0x3a,0x75,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3a,0x75,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x7d, 0x2c,0x67,0x3d,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a, 0x6c,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c, 0x74,0x79,0x70,0x65,0x3a,0x6c,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x2e,0x74,0x79,0x70,0x65,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x76,0x2c, 0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x69,0x2c,0x6d,0x6f,0x64,0x65,0x3a,0x6f,0x2e, 0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x2c,0x64,0x65,0x73, 0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x70,0x2c,0x63,0x6f,0x6d,0x62,0x69, 0x6e,0x65,0x3a,0x68,0x7d,0x2c,0x6d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x6d,0x70,0x61, 0x63,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x2c,0x72,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2c, 0x6f,0x3d,0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x69,0x3d,0x65, 0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x61, 0x3d,0x72,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x2c,0x75,0x3d, 0x72,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x2c,0x63,0x3d,0x4b, 0x74,0x28,0x74,0x29,0x2c,0x6c,0x3d,0x63,0x3f,0x75,0x5b,0x63,0x5d,0x3a,0x6e,0x75, 0x6c,0x6c,0x2c,0x73,0x3d,0x75,0x5b,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70, 0x74,0x6f,0x72,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d, 0x2c,0x66,0x3d,0x75,0x6e,0x28,0x7b,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x74,0x2c, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2c,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x61,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x69,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x3a,0x6c,0x7c,0x7c,0x73,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x6f,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x65,0x28,0x66, 0x2c,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72, 0x42,0x6f,0x78,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x29,0x7d,0x28,0x7b,0x69,0x6d, 0x70,0x61,0x63,0x74,0x3a,0x66,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x3a,0x6c,0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x63,0x2c, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x6f,0x2e,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x2c,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61, 0x6c,0x3a,0x6f,0x2e,0x61,0x66,0x74,0x65,0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61, 0x6c,0x7d,0x29,0x2c,0x62,0x3d,0x7b,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a, 0x6f,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x6f,0x2e,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x72,0x65,0x73,0x75,0x6c,0x74,0x3a, 0x67,0x2c,0x69,0x6d,0x70,0x61,0x63,0x74,0x3a,0x66,0x7d,0x3b,0x69,0x66,0x28,0x21, 0x57,0x65,0x28,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x6d,0x29,0x7c,0x7c,0x42, 0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x67,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65, 0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61, 0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c, 0x6f,0x3d,0x56,0x65,0x28,0x74,0x2c,0x6e,0x29,0x3b,0x69,0x66,0x28,0x6f,0x3c,0x3d, 0x30,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6e,0x3b,0x69,0x66,0x28,0x6f, 0x3e,0x3d,0x31,0x35,0x30,0x30,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x6e, 0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x42,0x6e,0x2b,0x55,0x6e,0x2a,0x28,0x6f,0x2f, 0x31,0x35,0x30,0x30,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4e,0x75,0x6d, 0x62,0x65,0x72,0x28,0x28,0x22,0x43,0x41,0x4e,0x43,0x45,0x4c,0x22,0x3d,0x3d,0x3d, 0x72,0x3f,0x2e,0x36,0x2a,0x69,0x3a,0x69,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65, 0x64,0x28,0x32,0x29,0x29,0x7d,0x28,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a, 0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x6d,0x2c,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x69,0x7d,0x29, 0x3b,0x6e,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50, 0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x45,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61, 0x64,0x3a,0x65,0x7d,0x7d,0x28,0x7b,0x6e,0x65,0x77,0x48,0x6f,0x6d,0x65,0x43,0x6c, 0x69,0x65,0x6e,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x3a,0x6d,0x2c,0x64,0x72,0x6f, 0x70,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x79,0x2c,0x63,0x6f,0x6d,0x70, 0x6c,0x65,0x74,0x65,0x64,0x3a,0x62,0x7d,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20, 0x6e,0x28,0x43,0x6e,0x28,0x7b,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3a, 0x62,0x7d,0x29,0x29,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50,0x5f,0x50,0x45,0x4e,0x44,0x49, 0x4e,0x47,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x28, 0x7b,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x69,0x7d,0x29,0x29,0x7d,0x65,0x6c,0x73, 0x65,0x20,0x65,0x28,0x72,0x29,0x7d,0x7d,0x7d,0x2c,0x24,0x6e,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x78, 0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x70,0x61,0x67,0x65,0x58,0x4f,0x66,0x66, 0x73,0x65,0x74,0x2c,0x79,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x70,0x61,0x67, 0x65,0x59,0x4f,0x66,0x66,0x73,0x65,0x74,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x48,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x6f,0x6e,0x57,0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x3d,0x78,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x28,0x24,0x6e,0x28,0x29,0x29,0x7d, 0x29,0x29,0x2c,0x6f,0x3d,0x28,0x6e,0x3d,0x72,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74, 0x4e,0x61,0x6d,0x65,0x3a,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x6f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21, 0x30,0x2c,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x31,0x7d,0x2c,0x66,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x74, 0x61,0x72,0x67,0x65,0x74,0x21,0x3d,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x26,0x26, 0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x21,0x3d,0x3d,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x6e,0x28,0x29,0x7d, 0x7d,0x29,0x2c,0x69,0x3d,0x6a,0x65,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x61,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x21,0x3d,0x3d, 0x6a,0x65,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x74,0x61,0x72,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x61,0x28,0x29,0x26,0x26, 0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x69,0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2c,0x5b,0x6f,0x5d,0x29,0x7d,0x2c,0x73,0x74,0x6f,0x70,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x61,0x28,0x29,0x7c,0x7c,0x41,0x65, 0x28,0x21,0x31,0x29,0x2c,0x72,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x29,0x2c, 0x69,0x28,0x29,0x2c,0x69,0x3d,0x6a,0x65,0x7d,0x2c,0x69,0x73,0x41,0x63,0x74,0x69, 0x76,0x65,0x3a,0x61,0x7d,0x7d,0x76,0x61,0x72,0x20,0x56,0x6e,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x48, 0x6e,0x28,0x7b,0x6f,0x6e,0x57,0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c, 0x6c,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e, 0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x4d,0x4f,0x56,0x45,0x5f,0x42,0x59,0x5f,0x57,0x49,0x4e,0x44,0x4f,0x57,0x5f,0x53, 0x43,0x52,0x4f,0x4c,0x4c,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x7b, 0x6e,0x65,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x74,0x7d,0x7d,0x29,0x7d,0x7d, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x74,0x2e,0x69,0x73,0x41,0x63,0x74,0x69, 0x76,0x65,0x28,0x29,0x7c,0x7c,0x22,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x5f,0x50, 0x55,0x42,0x4c,0x49,0x53,0x48,0x22,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65, 0x7c,0x7c,0x74,0x2e,0x73,0x74,0x61,0x72,0x74,0x28,0x29,0x2c,0x74,0x2e,0x69,0x73, 0x41,0x63,0x74,0x69,0x76,0x65,0x28,0x29,0x26,0x26,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x44,0x52,0x4f, 0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c,0x45,0x54,0x45,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d, 0x41,0x54,0x45,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x22, 0x46,0x4c,0x55,0x53,0x48,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x7d, 0x28,0x6e,0x29,0x26,0x26,0x74,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x2c,0x65,0x28, 0x6e,0x29,0x7d,0x7d,0x7d,0x2c,0x47,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x5b,0x5d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x61,0x64,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d, 0x65,0x6f,0x75,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x74,0x28,0x65,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x74,0x69,0x6d,0x65,0x72,0x49,0x64,0x3d,0x3d,0x3d,0x74, 0x7d,0x29,0x29,0x3b,0x2d,0x31,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x41,0x65,0x28,0x21, 0x31,0x29,0x2c,0x65,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x6e,0x2c,0x31,0x29, 0x5b,0x30,0x5d,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x29,0x7d,0x28, 0x6e,0x29,0x7d,0x29,0x29,0x2c,0x72,0x3d,0x7b,0x74,0x69,0x6d,0x65,0x72,0x49,0x64, 0x3a,0x6e,0x2c,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x74,0x7d,0x3b,0x65, 0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x29,0x7d,0x2c,0x66,0x6c,0x75,0x73,0x68,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x29,0x3b,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3d,0x30,0x2c,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x63,0x6c,0x65, 0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x2e,0x74,0x69,0x6d,0x65, 0x72,0x49,0x64,0x29,0x2c,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28, 0x29,0x7d,0x29,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x71,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x6e,0x28,0x29,0x2c,0x74, 0x28,0x29,0x2c,0x66,0x6e,0x28,0x29,0x7d,0x2c,0x4b,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x2c,0x74,0x79,0x70,0x65, 0x3a,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x74,0x79,0x70, 0x65,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x7b,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x2e,0x69,0x64,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x65,0x2e,0x64,0x72,0x61, 0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x7d,0x2c,0x6d,0x6f, 0x64,0x65,0x3a,0x74,0x7d,0x7d,0x2c,0x59,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x69,0x66,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x21,0x31,0x2c,0x6e,0x3d,0x21, 0x31,0x2c,0x72,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x21,0x30,0x7d, 0x29,0x29,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x29, 0x7b,0x74,0x7c,0x7c,0x6e,0x7c,0x7c,0x28,0x74,0x3d,0x21,0x30,0x2c,0x65,0x28,0x6f, 0x29,0x2c,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72, 0x29,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x77,0x61,0x73, 0x43,0x61,0x6c,0x6c,0x65,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x2c,0x6f,0x7d,0x28,0x6e, 0x29,0x3b,0x65,0x28,0x74,0x2c,0x7b,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x3a, 0x6f,0x7d,0x29,0x2c,0x6f,0x2e,0x77,0x61,0x73,0x43,0x61,0x6c,0x6c,0x65,0x64,0x28, 0x29,0x7c,0x7c,0x6e,0x28,0x72,0x28,0x74,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20, 0x6e,0x28,0x72,0x28,0x74,0x29,0x29,0x7d,0x2c,0x51,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x47,0x6e,0x28,0x29,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x7c, 0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x71, 0x6e,0x28,0x30,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x6e,0x28,0x65,0x28,0x29,0x2e,0x6f,0x6e, 0x44,0x72,0x61,0x67,0x45,0x6e,0x64,0x2c,0x6e,0x2c,0x74,0x2c,0x4d,0x65,0x29,0x7d, 0x29,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x62,0x65,0x66,0x6f,0x72, 0x65,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29, 0x2c,0x71,0x6e,0x28,0x30,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x28,0x29,0x2e,0x6f,0x6e,0x42,0x65, 0x66,0x6f,0x72,0x65,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x3b,0x72,0x26,0x26,0x72, 0x28,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x74,0x2c, 0x6d,0x6f,0x64,0x65,0x3a,0x6e,0x7d,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x62,0x65,0x66, 0x6f,0x72,0x65,0x53,0x74,0x61,0x72,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29, 0x2c,0x71,0x6e,0x28,0x30,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x28,0x29,0x2e,0x6f,0x6e,0x42,0x65, 0x66,0x6f,0x72,0x65,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x3b,0x72,0x26, 0x26,0x72,0x28,0x4b,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x29,0x7d,0x29,0x29,0x7d,0x2c, 0x73,0x74,0x61,0x72,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f, 0x2c,0x69,0x29,0x7b,0x72,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61, 0x72,0x20,0x61,0x3d,0x4b,0x6e,0x28,0x6f,0x2c,0x69,0x29,0x3b,0x72,0x3d,0x7b,0x6d, 0x6f,0x64,0x65,0x3a,0x69,0x2c,0x6c,0x61,0x73,0x74,0x43,0x72,0x69,0x74,0x69,0x63, 0x61,0x6c,0x3a,0x6f,0x2c,0x6c,0x61,0x73,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f, 0x6e,0x3a,0x61,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x6c,0x61,0x73,0x74,0x43, 0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6e,0x2e,0x61, 0x64,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x71, 0x6e,0x28,0x30,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x6e,0x28,0x65,0x28,0x29,0x2e,0x6f,0x6e, 0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x2c,0x61,0x2c,0x74,0x2c,0x4c,0x65, 0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x75,0x70,0x64,0x61,0x74,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x63,0x74,0x28,0x69,0x29,0x2c,0x63,0x3d,0x6c,0x74,0x28,0x69, 0x29,0x3b,0x72,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20, 0x6c,0x3d,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x26,0x26,0x65,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49, 0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x26,0x26,0x65,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d, 0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x74,0x79,0x70,0x65, 0x26,0x26,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x26,0x26,0x65,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x74,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x74,0x79,0x70,0x65,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x72,0x7d,0x28,0x6f,0x2c,0x72,0x2e, 0x6c,0x61,0x73,0x74,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x3b,0x6c,0x26, 0x26,0x28,0x72,0x2e,0x6c,0x61,0x73,0x74,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x3d,0x6f,0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x2c,0x66,0x2c,0x64,0x3d,0x28,0x66, 0x3d,0x75,0x2c,0x21,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x73,0x3d,0x72,0x2e, 0x6c,0x61,0x73,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x29,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x66,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x73,0x26, 0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x66,0x26,0x26,0x73,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x66,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x26,0x26,0x73,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x3d,0x3d,0x3d,0x66,0x2e,0x69,0x6e,0x64,0x65,0x78,0x29,0x29,0x3b,0x64,0x26,0x26, 0x28,0x72,0x2e,0x6c,0x61,0x73,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3d, 0x75,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x21,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x7c, 0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x74,0x26,0x26,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x26,0x26,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3d, 0x3d,0x3d,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x7d, 0x28,0x72,0x2e,0x6c,0x61,0x73,0x74,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2c,0x63, 0x29,0x3b,0x69,0x66,0x28,0x70,0x26,0x26,0x28,0x72,0x2e,0x6c,0x61,0x73,0x74,0x43, 0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3d,0x63,0x29,0x2c,0x6c,0x7c,0x7c,0x64,0x7c,0x7c, 0x70,0x29,0x7b,0x76,0x61,0x72,0x20,0x68,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x4b,0x6e,0x28,0x6f,0x2c,0x72,0x2e,0x6d, 0x6f,0x64,0x65,0x29,0x2c,0x7b,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3a,0x63,0x2c, 0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x75,0x7d,0x29,0x3b, 0x6e,0x2e,0x61,0x64,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x71,0x6e,0x28,0x30,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x6e,0x28,0x65,0x28,0x29, 0x2e,0x6f,0x6e,0x44,0x72,0x61,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x2c,0x68,0x2c, 0x74,0x2c,0x46,0x65,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x6c, 0x75,0x73,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x6e,0x2e,0x66,0x6c,0x75,0x73,0x68, 0x28,0x29,0x7d,0x2c,0x64,0x72,0x6f,0x70,0x3a,0x6f,0x2c,0x61,0x62,0x6f,0x72,0x74, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x72, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x4b,0x6e,0x28,0x72,0x2e,0x6c,0x61,0x73,0x74, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x72,0x2e,0x6d,0x6f,0x64,0x65,0x29, 0x2c,0x7b,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x22,0x43,0x41,0x4e,0x43,0x45,0x4c,0x22,0x7d, 0x29,0x3b,0x6f,0x28,0x65,0x29,0x7d,0x7d,0x7d,0x7d,0x28,0x65,0x2c,0x74,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x69,0x66,0x28,0x22,0x42,0x45,0x46, 0x4f,0x52,0x45,0x5f,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x5f,0x43,0x41,0x50,0x54, 0x55,0x52,0x45,0x22,0x21,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x69, 0x66,0x28,0x22,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x5f,0x50,0x55,0x42,0x4c,0x49, 0x53,0x48,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x72,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x63,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e, 0x62,0x65,0x66,0x6f,0x72,0x65,0x53,0x74,0x61,0x72,0x74,0x28,0x6f,0x2c,0x72,0x2e, 0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74, 0x4d,0x6f,0x64,0x65,0x29,0x2c,0x74,0x28,0x72,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20, 0x6e,0x2e,0x73,0x74,0x61,0x72,0x74,0x28,0x6f,0x2c,0x72,0x2e,0x70,0x61,0x79,0x6c, 0x6f,0x61,0x64,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65, 0x29,0x7d,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c, 0x45,0x54,0x45,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x72,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x63, 0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x66,0x6c,0x75,0x73,0x68,0x28,0x29, 0x2c,0x74,0x28,0x72,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x6e,0x2e,0x64,0x72,0x6f, 0x70,0x28,0x69,0x29,0x7d,0x69,0x66,0x28,0x74,0x28,0x72,0x29,0x2c,0x22,0x46,0x4c, 0x55,0x53,0x48,0x22,0x21,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x61,0x3d,0x65,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28, 0x29,0x3b,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x61, 0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65, 0x28,0x61,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x61,0x2e,0x69,0x6d, 0x70,0x61,0x63,0x74,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x2e,0x61,0x62,0x6f, 0x72,0x74,0x28,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x2e,0x62,0x65,0x66,0x6f, 0x72,0x65,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x28,0x72,0x2e,0x70,0x61,0x79,0x6c, 0x6f,0x61,0x64,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c, 0x72,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65, 0x6e,0x74,0x4d,0x6f,0x64,0x65,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x58,0x6e,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29, 0x7b,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54, 0x49,0x4f,0x4e,0x5f,0x46,0x49,0x4e,0x49,0x53,0x48,0x45,0x44,0x22,0x3d,0x3d,0x3d, 0x6e,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e, 0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x22,0x44,0x52,0x4f,0x50, 0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x72,0x2e, 0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x65,0x2e, 0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x43,0x6e,0x28,0x7b,0x63,0x6f,0x6d, 0x70,0x6c,0x65,0x74,0x65,0x64,0x3a,0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74, 0x65,0x64,0x7d,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x28,0x6e,0x29,0x7d, 0x7d,0x7d,0x2c,0x4a,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x29,0x7b,0x69,0x66,0x28,0x22,0x46,0x4c, 0x55,0x53,0x48,0x22,0x21,0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x22, 0x44,0x52,0x4f,0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c,0x45,0x54,0x45,0x22,0x21,0x3d, 0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41, 0x4e,0x49,0x4d,0x41,0x54,0x49,0x4f,0x4e,0x5f,0x46,0x49,0x4e,0x49,0x53,0x48,0x45, 0x44,0x22,0x21,0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x28,0x6e,0x26, 0x26,0x28,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x6e,0x29,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c, 0x29,0x2c,0x74,0x26,0x26,0x28,0x74,0x28,0x29,0x2c,0x74,0x3d,0x6e,0x75,0x6c,0x6c, 0x29,0x29,0x2c,0x72,0x28,0x6f,0x29,0x2c,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e, 0x49,0x4d,0x41,0x54,0x45,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x3a,0x7b,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x2c,0x70, 0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x31,0x2c,0x6f,0x6e,0x63,0x65,0x3a,0x21, 0x30,0x7d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47, 0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29, 0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x65,0x2e,0x64,0x69,0x73,0x70,0x61,0x74, 0x63,0x68,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41, 0x4e,0x49,0x4d,0x41,0x54,0x49,0x4f,0x4e,0x5f,0x46,0x49,0x4e,0x49,0x53,0x48,0x45, 0x44,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d, 0x29,0x7d,0x7d,0x3b,0x6e,0x3d,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x41,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74, 0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x5b,0x69,0x5d,0x29,0x7d, 0x29,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x5a,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x69,0x66,0x28,0x74, 0x28,0x6e,0x29,0x2c,0x22,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x5f,0x57,0x48,0x49, 0x4c,0x45,0x5f,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6e, 0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x67, 0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x22,0x44,0x52,0x4f,0x50,0x5f, 0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x70,0x68,0x61, 0x73,0x65,0x26,0x26,0x28,0x72,0x2e,0x69,0x73,0x57,0x61,0x69,0x74,0x69,0x6e,0x67, 0x7c,0x7c,0x65,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x41,0x6e,0x28, 0x7b,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e, 0x7d,0x29,0x29,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x65,0x72,0x3d,0x67,0x2c,0x74,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, 0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x2c,0x72,0x3d,0x65,0x2e,0x66,0x6f,0x63,0x75, 0x73,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x2c,0x6f,0x3d,0x65,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x2c,0x69,0x3d,0x65,0x2e,0x67,0x65, 0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,0x73,0x2c,0x61,0x3d,0x65,0x2e, 0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x2c,0x6c,0x3d,0x65,0x2e,0x61,0x75,0x74, 0x6f,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x70,0x28,0x6d,0x6e,0x2c,0x65,0x72,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74, 0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d, 0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29, 0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x63,0x28, 0x31,0x35,0x29,0x29,0x7d,0x2c,0x6f,0x3d,0x7b,0x67,0x65,0x74,0x53,0x74,0x61,0x74, 0x65,0x3a,0x6e,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x2c,0x64,0x69,0x73, 0x70,0x61,0x74,0x63,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x29,0x7d,0x7d,0x2c,0x69,0x3d,0x74,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x28,0x6f,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x3d,0x67,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c, 0x69,0x29,0x28,0x6e,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x75,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x6e,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x3a,0x72,0x7d,0x29,0x7d,0x7d,0x7d, 0x28,0x28,0x74,0x3d,0x6f,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x22,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x5f, 0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70, 0x65,0x26,0x26,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x28,0x29,0x2c, 0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x45,0x22,0x3d,0x3d, 0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70, 0x69,0x6e,0x67,0x28,0x6e,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x63,0x6f, 0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72, 0x65,0x61,0x73,0x6f,0x6e,0x29,0x2c,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x21,0x3d, 0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x5f,0x43, 0x4f,0x4d,0x50,0x4c,0x45,0x54,0x45,0x22,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70, 0x65,0x7c,0x7c,0x74,0x2e,0x72,0x65,0x73,0x74,0x69,0x6e,0x67,0x28,0x29,0x2c,0x65, 0x28,0x6e,0x29,0x7d,0x7d,0x7d,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x22,0x44,0x52,0x4f, 0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c,0x45,0x54,0x45,0x22,0x21,0x3d,0x3d,0x6e,0x2e, 0x74,0x79,0x70,0x65,0x26,0x26,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x21,0x3d,0x3d, 0x6e,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e, 0x49,0x4d,0x41,0x54,0x45,0x22,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x7c, 0x7c,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e, 0x67,0x28,0x29,0x2c,0x74,0x28,0x6e,0x29,0x7d,0x7d,0x7d,0x7d,0x28,0x6e,0x29,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x2c, 0x72,0x3d,0x74,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x6f,0x29,0x7b,0x69,0x66,0x28,0x22,0x4c,0x49,0x46,0x54,0x22,0x3d,0x3d,0x3d,0x6f, 0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x2e,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x61,0x3d,0x69,0x2e,0x69,0x64,0x2c,0x75,0x3d, 0x69,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x2c,0x63,0x3d,0x69,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f, 0x64,0x65,0x2c,0x6c,0x3d,0x6e,0x28,0x29,0x3b,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41, 0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6c,0x2e,0x70,0x68, 0x61,0x73,0x65,0x26,0x26,0x72,0x28,0x43,0x6e,0x28,0x7b,0x63,0x6f,0x6d,0x70,0x6c, 0x65,0x74,0x65,0x64,0x3a,0x6c,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64, 0x7d,0x29,0x29,0x2c,0x22,0x49,0x44,0x4c,0x45,0x22,0x21,0x3d,0x3d,0x6e,0x28,0x29, 0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x72, 0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x2c,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x2c,0x72,0x28, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x42,0x45,0x46,0x4f,0x52,0x45,0x5f,0x49,0x4e, 0x49,0x54,0x49,0x41,0x4c,0x5f,0x43,0x41,0x50,0x54,0x55,0x52,0x45,0x22,0x2c,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x49,0x64,0x3a,0x61,0x2c,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f, 0x64,0x65,0x3a,0x63,0x7d,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x7b,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x61,0x2c,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61, 0x74,0x65,0x6c,0x79,0x3a,0x22,0x53,0x4e,0x41,0x50,0x22,0x3d,0x3d,0x3d,0x63,0x7d, 0x7d,0x2c,0x66,0x3d,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x50,0x75,0x62,0x6c,0x69, 0x73,0x68,0x69,0x6e,0x67,0x28,0x73,0x29,0x2c,0x64,0x3d,0x66,0x2e,0x63,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x2c,0x70,0x3d,0x66,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73, 0x69,0x6f,0x6e,0x73,0x2c,0x68,0x3d,0x66,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x3b,0x72,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x49,0x4e,0x49,0x54,0x49, 0x41,0x4c,0x5f,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x22,0x2c,0x70,0x61,0x79,0x6c, 0x6f,0x61,0x64,0x3a,0x7b,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x64,0x2c, 0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x70,0x2c,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x75,0x2c,0x6d, 0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3a,0x63,0x2c,0x76,0x69, 0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x68,0x7d,0x7d,0x29,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x74,0x28,0x6f,0x29,0x7d,0x7d,0x7d,0x7d,0x28,0x6e,0x29,0x2c,0x57,0x6e,0x2c, 0x58,0x6e,0x2c,0x4a,0x6e,0x2c,0x5a,0x6e,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x69,0x66, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x44,0x52,0x4f,0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c,0x45,0x54, 0x45,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x44,0x52, 0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x45,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x7d,0x28,0x72,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20, 0x6e,0x28,0x72,0x29,0x3b,0x69,0x66,0x28,0x22,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c, 0x5f,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79, 0x70,0x65,0x29,0x7b,0x6e,0x28,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74, 0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x6f, 0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x28,0x6f,0x29,0x7d,0x6e, 0x28,0x72,0x29,0x2c,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x28,0x74,0x2e,0x67, 0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x29,0x7d,0x7d,0x7d,0x7d,0x28,0x6c, 0x29,0x2c,0x56,0x6e,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72, 0x29,0x7b,0x69,0x66,0x28,0x22,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x5f,0x50,0x55, 0x42,0x4c,0x49,0x53,0x48,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x21,0x30,0x2c,0x65,0x2e,0x74,0x72, 0x79,0x52,0x65,0x63,0x6f,0x72,0x64,0x46,0x6f,0x63,0x75,0x73,0x28,0x72,0x2e,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x29,0x2c,0x6e,0x28, 0x72,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x74,0x72,0x79,0x52,0x65,0x73, 0x74,0x6f,0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x52,0x65,0x63,0x6f,0x72,0x64,0x65, 0x64,0x28,0x29,0x3b,0x69,0x66,0x28,0x6e,0x28,0x72,0x29,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79, 0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x21,0x31,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x65,0x2e,0x74,0x72,0x79,0x52,0x65,0x73,0x74,0x6f,0x72,0x65, 0x46,0x6f,0x63,0x75,0x73,0x52,0x65,0x63,0x6f,0x72,0x64,0x65,0x64,0x28,0x29,0x3b, 0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x43,0x4f,0x4d,0x50,0x4c,0x45,0x54, 0x45,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x74,0x3d,0x21, 0x31,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61, 0x64,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x2e,0x72,0x65,0x73,0x75, 0x6c,0x74,0x3b,0x6f,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x26,0x26,0x65,0x2e, 0x74,0x72,0x79,0x53,0x68,0x69,0x66,0x74,0x52,0x65,0x63,0x6f,0x72,0x64,0x28,0x6f, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x6f,0x2e,0x63, 0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x49,0x64,0x29,0x2c,0x65,0x2e,0x74,0x72,0x79,0x52,0x65,0x73,0x74,0x6f,0x72,0x65, 0x46,0x6f,0x63,0x75,0x73,0x52,0x65,0x63,0x6f,0x72,0x64,0x65,0x64,0x28,0x29,0x7d, 0x7d,0x7d,0x7d,0x7d,0x7d,0x28,0x72,0x29,0x2c,0x51,0x6e,0x28,0x69,0x2c,0x61,0x29, 0x29,0x29,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x6e,0x3d,0x65, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68,0x2c,0x72,0x3d,0x65, 0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x77,0x69,0x64,0x74, 0x68,0x2c,0x69,0x3d,0x55,0x65,0x28,0x7b,0x78,0x3a,0x6e,0x2c,0x79,0x3a,0x74,0x7d, 0x2c,0x7b,0x78,0x3a,0x6f,0x2c,0x79,0x3a,0x72,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x78,0x3a,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x30,0x2c, 0x69,0x2e,0x78,0x29,0x2c,0x79,0x3a,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28, 0x30,0x2c,0x69,0x2e,0x79,0x29,0x7d,0x7d,0x2c,0x72,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c, 0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x65,0x7d,0x2c,0x6f,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x72,0x72, 0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x72,0x28,0x7b,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x57,0x69,0x64,0x74,0x68,0x3a,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69, 0x64,0x74,0x68,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x65,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x65, 0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x7d,0x29,0x7d, 0x2c,0x69,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3b, 0x73,0x6e,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x24,0x6e,0x28,0x29, 0x2c,0x74,0x3d,0x6f,0x72,0x28,0x29,0x2c,0x6e,0x3d,0x65,0x2e,0x79,0x2c,0x72,0x3d, 0x65,0x2e,0x78,0x2c,0x6f,0x3d,0x72,0x72,0x28,0x29,0x2c,0x69,0x3d,0x6f,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x61,0x3d,0x6f,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x66,0x72,0x61,0x6d,0x65,0x3a,0x73,0x65,0x28,0x7b,0x74,0x6f,0x70, 0x3a,0x6e,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x72,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a, 0x72,0x2b,0x69,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x6e,0x2b,0x61,0x7d,0x29, 0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x7b,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x3a,0x65,0x2c,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x65,0x2c,0x6d,0x61,0x78, 0x3a,0x74,0x2c,0x64,0x69,0x66,0x66,0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x42, 0x65,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x42, 0x65,0x7d,0x7d,0x7d,0x7d,0x28,0x29,0x2c,0x69,0x3d,0x6f,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x61,0x3d,0x74,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c,0x75,0x3d,0x72,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x67,0x65,0x74,0x41,0x6c,0x6c,0x42,0x79,0x54, 0x79,0x70,0x65,0x28,0x61,0x2e,0x74,0x79,0x70,0x65,0x29,0x2e,0x6d,0x61,0x70,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x2e, 0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x6e,0x64,0x57, 0x61,0x74,0x63,0x68,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x28,0x69,0x2c,0x6e,0x29,0x7d, 0x29,0x29,0x2c,0x63,0x3d,0x72,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x2e,0x67,0x65,0x74,0x41,0x6c,0x6c,0x42,0x79,0x54,0x79,0x70,0x65,0x28,0x74,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x2e, 0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x67,0x65,0x74,0x44,0x69,0x6d, 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x28,0x69,0x29,0x7d,0x29,0x29,0x2c,0x6c,0x3d,0x7b, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x6f,0x74,0x28,0x63,0x29, 0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x72,0x74,0x28,0x75, 0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x6e,0x28,0x29,0x2c,0x7b, 0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x6c,0x2c,0x63,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x3a,0x74,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74, 0x3a,0x6f,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x72, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x21,0x3d, 0x3d,0x74,0x2e,0x69,0x64,0x26,0x26,0x28,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2e,0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79, 0x70,0x65,0x26,0x26,0x22,0x76,0x69,0x72,0x74,0x75,0x61,0x6c,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x67,0x65,0x74,0x42, 0x79,0x49,0x64,0x28,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x29,0x2e,0x64,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x6d,0x6f,0x64,0x65,0x29,0x7d,0x76, 0x61,0x72,0x20,0x75,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x2c,0x6e,0x3d, 0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x2c,0x72,0x3d,0x7b,0x61, 0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x7d,0x2c,0x72,0x65,0x6d,0x6f, 0x76,0x61,0x6c,0x73,0x3a,0x7b,0x7d,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64, 0x3a,0x7b,0x7d,0x7d,0x2c,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6f,0x7c,0x7c,0x28,0x6e,0x2e,0x63, 0x6f,0x6c,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x69,0x6e, 0x67,0x28,0x29,0x2c,0x6f,0x3d,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x41,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x73, 0x6e,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x72,0x2c,0x69,0x3d,0x65,0x2e, 0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x61,0x3d,0x65,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x61,0x6c,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x64,0x2c,0x63,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79, 0x73,0x28,0x69,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x67,0x65,0x74,0x42,0x79,0x49,0x64, 0x28,0x65,0x29,0x2e,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, 0x28,0x42,0x65,0x29,0x7d,0x29,0x29,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x2d,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x7d,0x29,0x29,0x2c,0x6c,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x75,0x29,0x2e,0x6d,0x61,0x70, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3a,0x65,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x74,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x2e,0x67,0x65,0x74,0x42,0x79,0x49,0x64,0x28,0x65,0x29, 0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x2e,0x67,0x65,0x74,0x53,0x63, 0x72,0x6f,0x6c,0x6c,0x57,0x68,0x69,0x6c,0x65,0x44,0x72,0x61,0x67,0x67,0x69,0x6e, 0x67,0x28,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x73,0x3d,0x7b,0x61,0x64,0x64,0x69,0x74, 0x69,0x6f,0x6e,0x73,0x3a,0x63,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x61,0x6c,0x73,0x3a, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x61,0x29,0x2c,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x6c,0x7d,0x3b,0x72,0x3d,0x7b,0x61,0x64, 0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76, 0x61,0x6c,0x73,0x3a,0x7b,0x7d,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a, 0x7b,0x7d,0x7d,0x2c,0x66,0x6e,0x28,0x29,0x2c,0x6e,0x2e,0x70,0x75,0x62,0x6c,0x69, 0x73,0x68,0x28,0x73,0x29,0x7d,0x29,0x29,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x61,0x64,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x3b,0x72,0x2e,0x61,0x64,0x64,0x69,0x74,0x69, 0x6f,0x6e,0x73,0x5b,0x74,0x5d,0x3d,0x65,0x2c,0x72,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x64,0x5b,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d,0x3d,0x21,0x30, 0x2c,0x72,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x61,0x6c,0x73,0x5b,0x74,0x5d,0x26,0x26, 0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x72,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x61,0x6c, 0x73,0x5b,0x74,0x5d,0x2c,0x69,0x28,0x29,0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x3b, 0x72,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x61,0x6c,0x73,0x5b,0x74,0x2e,0x69,0x64,0x5d, 0x3d,0x21,0x30,0x2c,0x72,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x5b,0x74, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d,0x3d,0x21,0x30, 0x2c,0x72,0x2e,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x74,0x2e,0x69, 0x64,0x5d,0x26,0x26,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x72,0x2e,0x61,0x64,0x64, 0x69,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x74,0x2e,0x69,0x64,0x5d,0x2c,0x69,0x28,0x29, 0x7d,0x2c,0x73,0x74,0x6f,0x70,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x6f,0x26,0x26,0x28,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x6e,0x69,0x6d, 0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x6f,0x29,0x2c,0x6f,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x3d,0x7b,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e, 0x73,0x3a,0x7b,0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x61,0x6c,0x73,0x3a,0x7b,0x7d, 0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x7b,0x7d,0x7d,0x29,0x7d,0x7d, 0x7d,0x28,0x7b,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x3a,0x7b,0x70,0x75, 0x62,0x6c,0x69,0x73,0x68,0x3a,0x74,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x57, 0x68,0x69,0x6c,0x65,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x2c,0x63,0x6f,0x6c, 0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x3a, 0x74,0x2e,0x63,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72, 0x74,0x69,0x6e,0x67,0x7d,0x2c,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3a,0x65, 0x7d,0x29,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x6e,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x6e,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x3b,0x22,0x41,0x44,0x44,0x49,0x54,0x49,0x4f,0x4e,0x22, 0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x61,0x72,0x28,0x65,0x2c, 0x6f,0x2c,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x26,0x26,0x72,0x2e,0x61,0x64, 0x64,0x28,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x2c,0x22,0x52,0x45,0x4d,0x4f, 0x56,0x41,0x4c,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x61, 0x72,0x28,0x65,0x2c,0x6f,0x2c,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x26,0x26, 0x72,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x75,0x70,0x64,0x61,0x74,0x65, 0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x73,0x45,0x6e,0x61,0x62,0x6c, 0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x2c,0x6f,0x29, 0x7b,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x65,0x78,0x69, 0x73,0x74,0x73,0x28,0x72,0x29,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x6e, 0x26,0x26,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x28,0x7b,0x69,0x64, 0x3a,0x72,0x2c,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x6f,0x7d,0x29, 0x7d,0x2c,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x49,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x2c,0x6f,0x29,0x7b, 0x6e,0x26,0x26,0x28,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e, 0x65,0x78,0x69,0x73,0x74,0x73,0x28,0x72,0x29,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31, 0x29,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x28,0x7b,0x69,0x64,0x3a,0x72,0x2c,0x69,0x73,0x43,0x6f,0x6d,0x62, 0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x6f,0x7d,0x29,0x29,0x7d, 0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x72,0x29,0x7b,0x6e, 0x26,0x26,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x67,0x65, 0x74,0x42,0x79,0x49,0x64,0x28,0x74,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x73,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x28,0x72,0x29,0x7d,0x2c,0x75,0x70, 0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x53,0x63,0x72, 0x6f,0x6c,0x6c,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x2c,0x6f, 0x29,0x7b,0x6e,0x26,0x26,0x28,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x2e,0x65,0x78,0x69,0x73,0x74,0x73,0x28,0x72,0x29,0x7c,0x7c,0x41,0x65,0x28, 0x21,0x31,0x29,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x28,0x7b,0x69,0x64,0x3a, 0x72,0x2c,0x6e,0x65,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x6f,0x7d,0x29,0x29, 0x7d,0x2c,0x73,0x74,0x61,0x72,0x74,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e, 0x67,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x6e,0x26, 0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x67,0x65,0x74,0x42,0x79,0x49, 0x64,0x28,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x29, 0x2c,0x69,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x67, 0x65,0x74,0x42,0x79,0x49,0x64,0x28,0x72,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70, 0x74,0x6f,0x72,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x29, 0x2c,0x61,0x3d,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x72,0x2e, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2c,0x64,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x3a,0x69,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x7d,0x2c,0x75,0x3d,0x65,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65, 0x28,0x6f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x7b,0x63,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x3a,0x61,0x2c,0x75,0x6e,0x73,0x75,0x62,0x73,0x63, 0x72,0x69,0x62,0x65,0x3a,0x75,0x7d,0x2c,0x69,0x72,0x28,0x7b,0x63,0x72,0x69,0x74, 0x69,0x63,0x61,0x6c,0x3a,0x61,0x2c,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3a, 0x65,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a, 0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7d, 0x29,0x7d,0x2c,0x73,0x74,0x6f,0x70,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e, 0x67,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x29,0x7b,0x72,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x6e,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x3b,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x2e,0x67,0x65,0x74,0x41,0x6c,0x6c,0x42,0x79,0x54,0x79,0x70,0x65,0x28, 0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x2e, 0x64,0x72,0x61,0x67,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x28,0x29,0x7d,0x29,0x29, 0x2c,0x6e,0x2e,0x75,0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x29, 0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x7d,0x7d,0x2c,0x63,0x72,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x49,0x44,0x4c,0x45,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68, 0x61,0x73,0x65,0x7c,0x7c,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41, 0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x26, 0x26,0x28,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x2e,0x72,0x65, 0x73,0x75,0x6c,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x21,0x3d,0x3d,0x74,0x26,0x26,0x22,0x44,0x52,0x4f,0x50,0x22,0x3d,0x3d,0x3d,0x65, 0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x2e,0x72,0x65,0x73,0x75,0x6c, 0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x7d,0x2c,0x6c,0x72,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x42,0x79,0x28,0x65,0x2e,0x78,0x2c,0x65,0x2e, 0x79,0x29,0x7d,0x2c,0x73,0x72,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x74, 0x28,0x65,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21, 0x65,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x26,0x26,0x21,0x21,0x65, 0x2e,0x66,0x72,0x61,0x6d,0x65,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x66,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c,0x6e,0x3d,0x65,0x2e,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3b,0x69,0x66,0x28,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x2e,0x66,0x72,0x61,0x6d,0x65,0x3f,0x6f,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x76,0x61,0x72,0x20,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x74,0x28,0x73, 0x72,0x28,0x74,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x66,0x72,0x61,0x6d,0x65, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x58,0x74,0x28,0x74,0x2e,0x66,0x72, 0x61,0x6d,0x65,0x2e,0x70,0x61,0x67,0x65,0x4d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f, 0x78,0x29,0x28,0x65,0x29,0x7d,0x29,0x29,0x7d,0x28,0x74,0x2c,0x72,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x2c,0x64,0x72,0x3d,0x2e,0x32,0x35,0x2c, 0x70,0x72,0x3d,0x2e,0x30,0x35,0x2c,0x68,0x72,0x3d,0x32,0x38,0x2c,0x76,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x70,0x6f,0x77,0x28,0x65,0x2c,0x32,0x29, 0x7d,0x2c,0x67,0x72,0x3d,0x7b,0x73,0x74,0x6f,0x70,0x44,0x61,0x6d,0x70,0x65,0x6e, 0x69,0x6e,0x67,0x41,0x74,0x3a,0x31,0x32,0x30,0x30,0x2c,0x61,0x63,0x63,0x65,0x6c, 0x65,0x72,0x61,0x74,0x65,0x41,0x74,0x3a,0x33,0x36,0x30,0x7d,0x2c,0x6d,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x4f,0x66,0x52,0x61,0x6e,0x67,0x65, 0x2c,0x6e,0x3d,0x65,0x2e,0x65,0x6e,0x64,0x4f,0x66,0x52,0x61,0x6e,0x67,0x65,0x2c, 0x72,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x6e,0x2d, 0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x30, 0x3a,0x28,0x72,0x2d,0x74,0x29,0x2f,0x6f,0x7d,0x2c,0x62,0x72,0x3d,0x67,0x72,0x2e, 0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x65,0x41,0x74,0x2c,0x79,0x72,0x3d, 0x67,0x72,0x2e,0x73,0x74,0x6f,0x70,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67, 0x41,0x74,0x2c,0x5f,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x69,0x73,0x74,0x61,0x6e, 0x63,0x65,0x54,0x6f,0x45,0x64,0x67,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x74,0x68,0x72, 0x65,0x73,0x68,0x6f,0x6c,0x64,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67, 0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x73,0x68, 0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65, 0x6e,0x69,0x6e,0x67,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x3e,0x74,0x2e,0x73,0x74,0x61,0x72, 0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x46,0x72,0x6f,0x6d,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x69,0x66,0x28,0x65,0x3c,0x3d,0x74,0x2e, 0x6d,0x61,0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x56,0x61,0x6c,0x75,0x65,0x41,0x74, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x72,0x3b,0x69,0x66,0x28,0x65,0x3d, 0x3d,0x3d,0x74,0x2e,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x69, 0x6e,0x67,0x46,0x72,0x6f,0x6d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x6d,0x72,0x28,0x7b,0x73,0x74,0x61,0x72,0x74,0x4f, 0x66,0x52,0x61,0x6e,0x67,0x65,0x3a,0x74,0x2e,0x6d,0x61,0x78,0x53,0x63,0x72,0x6f, 0x6c,0x6c,0x56,0x61,0x6c,0x75,0x65,0x41,0x74,0x2c,0x65,0x6e,0x64,0x4f,0x66,0x52, 0x61,0x6e,0x67,0x65,0x3a,0x74,0x2e,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x72,0x6f, 0x6c,0x6c,0x69,0x6e,0x67,0x46,0x72,0x6f,0x6d,0x2c,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3a,0x65,0x7d,0x29,0x2c,0x72,0x3d,0x68,0x72,0x2a,0x76,0x72,0x28,0x31,0x2d, 0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x63, 0x65,0x69,0x6c,0x28,0x72,0x29,0x7d,0x28,0x74,0x2c,0x6e,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x3f,0x30,0x3a,0x6f,0x3f,0x4d,0x61, 0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2c,0x72,0x3d,0x79, 0x72,0x2c,0x6f,0x3d,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x2d,0x6e, 0x3b,0x69,0x66,0x28,0x6f,0x3e,0x3d,0x79,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3b,0x69,0x66,0x28,0x6f,0x3c,0x62,0x72,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x31,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6d,0x72,0x28,0x7b,0x73,0x74, 0x61,0x72,0x74,0x4f,0x66,0x52,0x61,0x6e,0x67,0x65,0x3a,0x62,0x72,0x2c,0x65,0x6e, 0x64,0x4f,0x66,0x52,0x61,0x6e,0x67,0x65,0x3a,0x72,0x2c,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3a,0x6f,0x7d,0x29,0x2c,0x61,0x3d,0x65,0x2a,0x76,0x72,0x28,0x69,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x63,0x65,0x69, 0x6c,0x28,0x61,0x29,0x7d,0x28,0x69,0x2c,0x72,0x29,0x2c,0x31,0x29,0x3a,0x69,0x7d, 0x2c,0x77,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65, 0x72,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x54,0x6f, 0x45,0x64,0x67,0x65,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x53,0x74, 0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x61,0x78,0x69,0x73, 0x2c,0x69,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69, 0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x2c,0x61,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e, 0x67,0x46,0x72,0x6f,0x6d,0x3a,0x65,0x5b,0x74,0x2e,0x73,0x69,0x7a,0x65,0x5d,0x2a, 0x64,0x72,0x2c,0x6d,0x61,0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x56,0x61,0x6c,0x75, 0x65,0x41,0x74,0x3a,0x65,0x5b,0x74,0x2e,0x73,0x69,0x7a,0x65,0x5d,0x2a,0x70,0x72, 0x7d,0x7d,0x28,0x74,0x2c,0x6f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x5b,0x6f,0x2e,0x65,0x6e,0x64,0x5d,0x3c,0x6e,0x5b,0x6f,0x2e,0x73,0x74,0x61,0x72, 0x74,0x5d,0x3f,0x5f,0x72,0x28,0x7b,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x54, 0x6f,0x45,0x64,0x67,0x65,0x3a,0x6e,0x5b,0x6f,0x2e,0x65,0x6e,0x64,0x5d,0x2c,0x74, 0x68,0x72,0x65,0x73,0x68,0x6f,0x6c,0x64,0x73,0x3a,0x61,0x2c,0x64,0x72,0x61,0x67, 0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x72,0x2c,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69, 0x6e,0x67,0x3a,0x69,0x7d,0x29,0x3a,0x2d,0x31,0x2a,0x5f,0x72,0x28,0x7b,0x64,0x69, 0x73,0x74,0x61,0x6e,0x63,0x65,0x54,0x6f,0x45,0x64,0x67,0x65,0x3a,0x6e,0x5b,0x6f, 0x2e,0x73,0x74,0x61,0x72,0x74,0x5d,0x2c,0x74,0x68,0x72,0x65,0x73,0x68,0x6f,0x6c, 0x64,0x73,0x3a,0x61,0x2c,0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69, 0x6d,0x65,0x3a,0x72,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69, 0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x3a,0x69,0x7d,0x29,0x7d, 0x2c,0x4f,0x72,0x3d,0x71,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x65, 0x3f,0x30,0x3a,0x65,0x7d,0x29,0x29,0x2c,0x78,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64, 0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x2c,0x6e,0x3d,0x65, 0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x72,0x3d,0x65,0x2e,0x73, 0x75,0x62,0x6a,0x65,0x63,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x63,0x65,0x6e,0x74,0x65, 0x72,0x2c,0x69,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54, 0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x2c,0x61,0x3d,0x7b, 0x74,0x6f,0x70,0x3a,0x6f,0x2e,0x79,0x2d,0x6e,0x2e,0x74,0x6f,0x70,0x2c,0x72,0x69, 0x67,0x68,0x74,0x3a,0x6e,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d,0x6f,0x2e,0x78,0x2c, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x6e,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d, 0x6f,0x2e,0x79,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x6f,0x2e,0x78,0x2d,0x6e,0x2e,0x6c, 0x65,0x66,0x74,0x7d,0x2c,0x75,0x3d,0x77,0x72,0x28,0x7b,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x65,0x72,0x3a,0x6e,0x2c,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x54, 0x6f,0x45,0x64,0x67,0x65,0x73,0x3a,0x61,0x2c,0x64,0x72,0x61,0x67,0x53,0x74,0x61, 0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x74,0x2c,0x61,0x78,0x69,0x73,0x3a,0x62,0x74, 0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61, 0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x3a,0x69,0x7d,0x29,0x2c,0x63,0x3d,0x77,0x72, 0x28,0x7b,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x6e,0x2c,0x64,0x69, 0x73,0x74,0x61,0x6e,0x63,0x65,0x54,0x6f,0x45,0x64,0x67,0x65,0x73,0x3a,0x61,0x2c, 0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x74,0x2c, 0x61,0x78,0x69,0x73,0x3a,0x79,0x74,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73, 0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x3a,0x69, 0x7d,0x29,0x2c,0x6c,0x3d,0x4f,0x72,0x28,0x7b,0x78,0x3a,0x63,0x2c,0x79,0x3a,0x75, 0x7d,0x29,0x3b,0x69,0x66,0x28,0x57,0x65,0x28,0x6c,0x2c,0x42,0x65,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x6e, 0x3d,0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x70, 0x72,0x6f,0x70,0x6f,0x73,0x65,0x64,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x6f,0x3d, 0x6e,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x3e,0x74,0x2e,0x68,0x65,0x69,0x67,0x68, 0x74,0x2c,0x69,0x3d,0x6e,0x2e,0x77,0x69,0x64,0x74,0x68,0x3e,0x74,0x2e,0x77,0x69, 0x64,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7c,0x7c,0x6f,0x3f, 0x69,0x26,0x26,0x6f,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x7b,0x78,0x3a,0x69,0x3f,0x30, 0x3a,0x72,0x2e,0x78,0x2c,0x79,0x3a,0x6f,0x3f,0x30,0x3a,0x72,0x2e,0x79,0x7d,0x3a, 0x72,0x7d,0x28,0x7b,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x6e,0x2c, 0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x72,0x2c,0x70,0x72,0x6f,0x70,0x6f,0x73, 0x65,0x64,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x6c,0x7d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x73,0x3f,0x57,0x65,0x28,0x73,0x2c,0x42,0x65,0x29,0x3f,0x6e, 0x75,0x6c,0x6c,0x3a,0x73,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x45,0x72,0x3d,0x71, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x3e, 0x30,0x3f,0x31,0x3a,0x2d,0x31,0x7d,0x29,0x29,0x2c,0x6a,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3c,0x30,0x3f,0x65,0x3a,0x65,0x3e,0x74,0x3f,0x65,0x2d,0x74, 0x3a,0x30,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x72,0x3d,0x74,0x2e,0x6d,0x61,0x78,0x2c,0x6f, 0x3d,0x74,0x2e,0x63,0x68,0x61,0x6e,0x67,0x65,0x2c,0x69,0x3d,0x7a,0x65,0x28,0x6e, 0x2c,0x6f,0x29,0x2c,0x61,0x3d,0x7b,0x78,0x3a,0x65,0x28,0x69,0x2e,0x78,0x2c,0x72, 0x2e,0x78,0x29,0x2c,0x79,0x3a,0x65,0x28,0x69,0x2e,0x79,0x2c,0x72,0x2e,0x79,0x29, 0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x65,0x28,0x61,0x2c,0x42,0x65, 0x29,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x61,0x7d,0x7d,0x28,0x29,0x2c,0x6b,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x6d,0x61,0x78,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x63,0x68,0x61,0x6e,0x67,0x65,0x2c,0x6f, 0x3d,0x7b,0x78,0x3a,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x6e,0x2e,0x78, 0x2c,0x74,0x2e,0x78,0x29,0x2c,0x79,0x3a,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78, 0x28,0x6e,0x2e,0x79,0x2c,0x74,0x2e,0x79,0x29,0x7d,0x2c,0x69,0x3d,0x45,0x72,0x28, 0x72,0x29,0x2c,0x61,0x3d,0x6a,0x72,0x28,0x7b,0x6d,0x61,0x78,0x3a,0x6f,0x2c,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x2c,0x63,0x68,0x61,0x6e,0x67,0x65,0x3a, 0x69,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x61,0x7c,0x7c,0x28,0x30, 0x21,0x3d,0x3d,0x69,0x2e,0x78,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x61,0x2e,0x78,0x7c, 0x7c,0x30,0x21,0x3d,0x3d,0x69,0x2e,0x79,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x61,0x2e, 0x79,0x29,0x7d,0x2c,0x53,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x72,0x28,0x7b, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6d,0x61,0x78,0x3a,0x65,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x2c,0x63,0x68,0x61,0x6e,0x67,0x65, 0x3a,0x74,0x7d,0x29,0x7d,0x2c,0x43,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x66, 0x72,0x61,0x6d,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x6e,0x26,0x26, 0x6b,0x72,0x28,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6d,0x61,0x78, 0x3a,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x2c,0x63,0x68, 0x61,0x6e,0x67,0x65,0x3a,0x74,0x7d,0x29,0x7d,0x2c,0x41,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x53, 0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x73,0x68,0x6f, 0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e, 0x69,0x6e,0x67,0x2c,0x6f,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69, 0x6e,0x64,0x6f,0x77,0x2c,0x69,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c,0x61,0x3d,0x74,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x2e,0x70,0x61,0x67,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72, 0x42,0x6f,0x78,0x43,0x65,0x6e,0x74,0x65,0x72,0x2c,0x75,0x3d,0x74,0x2e,0x64,0x69, 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x5b,0x74,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x2e,0x70,0x61,0x67, 0x65,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x3b,0x69,0x66,0x28,0x74, 0x2e,0x69,0x73,0x57,0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x41, 0x6c,0x6c,0x6f,0x77,0x65,0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x73, 0x75,0x62,0x6a,0x65,0x63,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x63,0x65,0x6e,0x74,0x65, 0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54, 0x69,0x6d,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73, 0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x2c,0x61, 0x3d,0x78,0x72,0x28,0x7b,0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69, 0x6d,0x65,0x3a,0x6f,0x2c,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x74, 0x2e,0x66,0x72,0x61,0x6d,0x65,0x2c,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x6e, 0x2c,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x72,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67, 0x3a,0x69,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x26,0x26,0x53, 0x72,0x28,0x74,0x2c,0x61,0x29,0x3f,0x61,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x7b, 0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x6e,0x2c, 0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x74,0x2e,0x76,0x69,0x65,0x77,0x70, 0x6f,0x72,0x74,0x2c,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x75,0x2c,0x63,0x65, 0x6e,0x74,0x65,0x72,0x3a,0x61,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65, 0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x3a,0x72,0x7d, 0x29,0x3b,0x69,0x66,0x28,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f, 0x69,0x64,0x20,0x6f,0x28,0x63,0x29,0x7d,0x76,0x61,0x72,0x20,0x6c,0x3d,0x66,0x72, 0x28,0x7b,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x61,0x2c,0x64,0x65,0x73,0x74,0x69, 0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x4b,0x74,0x28,0x74,0x2e,0x69,0x6d,0x70,0x61, 0x63,0x74,0x29,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x74, 0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x73,0x7d,0x29,0x3b,0x69,0x66,0x28,0x6c,0x29,0x7b,0x76, 0x61,0x72,0x20,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x2c,0x72, 0x3d,0x65,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72, 0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x2c,0x69,0x3d,0x65,0x2e, 0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d, 0x70,0x65,0x6e,0x69,0x6e,0x67,0x2c,0x61,0x3d,0x74,0x2e,0x66,0x72,0x61,0x6d,0x65, 0x3b,0x69,0x66,0x28,0x21,0x61,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x78,0x72,0x28,0x7b,0x64,0x72,0x61, 0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x6f,0x2c,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x61,0x2e,0x70,0x61,0x67,0x65,0x4d,0x61,0x72, 0x67,0x69,0x6e,0x42,0x6f,0x78,0x2c,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x6e, 0x2c,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x72,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67, 0x3a,0x69,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x26,0x26,0x43, 0x72,0x28,0x74,0x2c,0x75,0x29,0x3f,0x75,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x7b, 0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x6e,0x2c, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x6c,0x2c,0x73,0x75,0x62,0x6a, 0x65,0x63,0x74,0x3a,0x75,0x2c,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x61,0x2c,0x73, 0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70, 0x65,0x6e,0x69,0x6e,0x67,0x3a,0x72,0x7d,0x29,0x3b,0x73,0x26,0x26,0x69,0x28,0x6c, 0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c,0x73, 0x29,0x7d,0x7d,0x2c,0x54,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x2c, 0x6e,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69, 0x6e,0x64,0x6f,0x77,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x43,0x72,0x28,0x65,0x2c,0x74,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x66,0x72,0x61,0x6d,0x65,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x26,0x26,0x43,0x72,0x28,0x65,0x2c,0x74,0x29,0x3f,0x6a,0x72, 0x28,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6d,0x61,0x78,0x3a,0x6e, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78,0x2c,0x63,0x68,0x61,0x6e, 0x67,0x65,0x3a,0x74,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x65,0x2c,0x74, 0x29,0x3b,0x69,0x66,0x28,0x21,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x28,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64, 0x2c,0x74,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x55, 0x65,0x28,0x74,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28, 0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x2c, 0x6f,0x29,0x2c,0x55,0x65,0x28,0x74,0x2c,0x6f,0x29,0x7d,0x2c,0x69,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66, 0x28,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x69,0x66,0x28, 0x21,0x53,0x72,0x28,0x74,0x2c,0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x53,0x72,0x28,0x65,0x2c,0x74, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x6d,0x61,0x78, 0x2c,0x72,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x72,0x28,0x7b,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x72,0x2c,0x6d,0x61,0x78,0x3a,0x6e,0x2c,0x63, 0x68,0x61,0x6e,0x67,0x65,0x3a,0x74,0x7d,0x29,0x7d,0x28,0x74,0x2c,0x6e,0x29,0x3b, 0x69,0x66,0x28,0x21,0x6f,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x6e, 0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x55,0x65,0x28, 0x6e,0x2c,0x6f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x69,0x29, 0x2c,0x55,0x65,0x28,0x6e,0x2c,0x69,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52, 0x65,0x71,0x75,0x65,0x73,0x74,0x3b,0x69,0x66,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x4b,0x74,0x28,0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x29,0x3b, 0x72,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d, 0x6f,0x28,0x65,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x72,0x5d,0x2c,0x6e,0x29,0x3b, 0x69,0x66,0x28,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x65,0x2e,0x76,0x69, 0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x63,0x3d,0x69,0x28,0x65,0x2e,0x69,0x73,0x57, 0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x41,0x6c,0x6c,0x6f,0x77, 0x65,0x64,0x2c,0x75,0x2c,0x61,0x29,0x3b,0x63,0x26,0x26,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x7a, 0x65,0x28,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x6e,0x29,0x3b, 0x74,0x28,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3a,0x72,0x7d,0x29,0x7d,0x28,0x65, 0x2c,0x63,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x50,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c,0x6e, 0x3d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x2c, 0x72,0x3d,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x6e,0x3d,0x65,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2c, 0x72,0x3d,0x78,0x65,0x28,0x74,0x29,0x2c,0x6f,0x3d,0x78,0x65,0x28,0x6e,0x29,0x2c, 0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x69,0x2c,0x6e,0x3d,0x74,0x2e,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e, 0x67,0x2c,0x61,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54, 0x69,0x6d,0x65,0x3b,0x41,0x72,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x65,0x2c, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x3a,0x72,0x2c,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x6f, 0x2c,0x64,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x61, 0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61, 0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67,0x3a,0x6e,0x7d,0x29,0x7d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x73,0x74,0x61,0x72,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x73,0x6e,0x28,0x29,0x2c,0x69,0x26,0x26,0x41,0x65, 0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x44,0x61,0x74,0x65,0x2e, 0x6e,0x6f,0x77,0x28,0x29,0x2c,0x6e,0x3d,0x21,0x31,0x2c,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x21,0x30,0x7d,0x3b,0x41,0x72, 0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x65,0x2c,0x64,0x72,0x61,0x67,0x53,0x74, 0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x30,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67, 0x3a,0x21,0x31,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77, 0x3a,0x72,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x3a,0x72,0x7d,0x29,0x2c,0x69,0x3d,0x7b,0x64,0x72,0x61,0x67,0x53,0x74, 0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x74,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x55,0x73,0x65,0x54,0x69,0x6d,0x65,0x44,0x61,0x6d,0x70,0x65,0x6e,0x69,0x6e,0x67, 0x3a,0x6e,0x7d,0x2c,0x66,0x6e,0x28,0x29,0x2c,0x6e,0x26,0x26,0x61,0x28,0x65,0x29, 0x7d,0x2c,0x73,0x74,0x6f,0x70,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x69,0x26,0x26,0x28,0x72,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x29, 0x2c,0x6f,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x29,0x2c,0x69,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x7d,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x61,0x7d,0x7d,0x28, 0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x3a,0x6e,0x2c, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a, 0x74,0x7d,0x29,0x2c,0x69,0x3d,0x54,0x72,0x28,0x7b,0x6d,0x6f,0x76,0x65,0x3a,0x72, 0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x6e,0x64,0x6f,0x77,0x3a,0x6e,0x2c, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a, 0x74,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x44, 0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61, 0x73,0x65,0x26,0x26,0x28,0x22,0x46,0x4c,0x55,0x49,0x44,0x22,0x21,0x3d,0x3d,0x65, 0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3f,0x65,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4a,0x75,0x6d,0x70,0x52,0x65,0x71,0x75,0x65,0x73, 0x74,0x26,0x26,0x69,0x28,0x65,0x29,0x3a,0x6f,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x28,0x65,0x29,0x29,0x7d,0x2c,0x73,0x74,0x61,0x72,0x74,0x3a,0x6f,0x2e,0x73,0x74, 0x61,0x72,0x74,0x2c,0x73,0x74,0x6f,0x70,0x3a,0x6f,0x2e,0x73,0x74,0x6f,0x70,0x7d, 0x7d,0x2c,0x44,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x22,0x64,0x61,0x74,0x61,0x2d,0x72,0x62,0x64,0x2d, 0x64,0x72,0x61,0x67,0x2d,0x68,0x61,0x6e,0x64,0x6c,0x65,0x22,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x62,0x61,0x73,0x65,0x3a,0x65,0x2c,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2b,0x22,0x2d,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x2d,0x69,0x64,0x22,0x2c,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x49,0x64,0x3a,0x65,0x2b,0x22,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2d,0x69, 0x64,0x22,0x7d,0x7d,0x28,0x29,0x2c,0x4e,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x22,0x64,0x61,0x74,0x61, 0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x22,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x62,0x61,0x73,0x65,0x3a,0x65,0x2c,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x3a,0x65,0x2b,0x22,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x2d,0x69,0x64,0x22,0x2c,0x69,0x64,0x3a,0x65,0x2b,0x22,0x2d,0x69, 0x64,0x22,0x7d,0x7d,0x28,0x29,0x2c,0x49,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x22,0x64,0x61,0x74,0x61, 0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x22,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x62,0x61,0x73,0x65,0x3a,0x65,0x2c,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x3a,0x65,0x2b,0x22,0x2d,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x2d,0x69,0x64,0x22,0x2c,0x69,0x64,0x3a,0x65,0x2b,0x22,0x2d,0x69, 0x64,0x22,0x7d,0x7d,0x28,0x29,0x2c,0x52,0x72,0x3d,0x7b,0x63,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x49,0x64,0x3a,0x22,0x64,0x61,0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2d,0x69,0x64,0x22,0x7d,0x2c,0x4c,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x73,0x74,0x79,0x6c,0x65,0x73,0x5b,0x74,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x3f,0x65,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x2b,0x22,0x20, 0x7b,0x20,0x22,0x2b,0x6e,0x2b,0x22,0x20,0x7d,0x22,0x3a,0x22,0x22,0x7d,0x29,0x29, 0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x20,0x22,0x29,0x7d,0x2c,0x46,0x72,0x3d,0x22, 0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x26,0x26,0x22,0x75,0x6e,0x64, 0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x26,0x26,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x3f,0x72,0x2e,0x75,0x73,0x65,0x4c,0x61,0x79,0x6f,0x75,0x74, 0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x2c,0x4d,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x22,0x68, 0x65,0x61,0x64,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c, 0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x65,0x7d,0x2c,0x42,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x28,0x22,0x73,0x74,0x79,0x6c,0x65,0x22,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x74,0x2e,0x73,0x65,0x74,0x41,0x74, 0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x6e,0x6f,0x6e,0x63,0x65,0x22,0x2c, 0x65,0x29,0x2c,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f, 0x63,0x73,0x73,0x22,0x2c,0x74,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x7a,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x75, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x28,0x74,0x3d,0x65,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x5b,0x22,0x2b,0x65,0x2b,0x27,0x3d,0x22,0x27,0x2b,0x74,0x2b,0x27,0x22,0x5d, 0x27,0x7d,0x29,0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20, 0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d, 0x67,0x72,0x61,0x62,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72, 0x73,0x6f,0x72,0x3a,0x20,0x67,0x72,0x61,0x62,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20, 0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f, 0x72,0x3a,0x6e,0x28,0x44,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64, 0x29,0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a,0x7b,0x61,0x6c,0x77,0x61,0x79,0x73, 0x3a,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x6f,0x75,0x63,0x68,0x2d,0x63,0x61,0x6c,0x6c, 0x6f,0x75,0x74,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x61, 0x70,0x2d,0x68,0x69,0x67,0x68,0x6c,0x69,0x67,0x68,0x74,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x20,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x29, 0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x75, 0x63,0x68,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x6d,0x61,0x6e,0x69,0x70, 0x75,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x22,0x2c,0x72,0x65,0x73,0x74,0x69,0x6e,0x67,0x3a,0x65,0x2c,0x64,0x72, 0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d, 0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x2c,0x64, 0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x3a,0x65,0x7d,0x7d, 0x7d,0x28,0x29,0x2c,0x6f,0x3d,0x5b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20, 0x20,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x22,0x2b,0x52, 0x6e,0x2e,0x6f,0x75,0x74,0x4f,0x66,0x54,0x68,0x65,0x57,0x61,0x79,0x2b,0x22,0x3b, 0x5c,0x6e,0x20,0x20,0x20,0x20,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73, 0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x3a,0x6e,0x28,0x4e,0x72,0x2e,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x49,0x64,0x29,0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a,0x7b, 0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x65,0x2c,0x64,0x72,0x6f,0x70,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x3a,0x65,0x2c,0x75,0x73,0x65,0x72,0x43, 0x61,0x6e,0x63,0x65,0x6c,0x3a,0x65,0x7d,0x7d,0x7d,0x28,0x29,0x2c,0x72,0x2c,0x7b, 0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x3a,0x6e,0x28,0x49,0x72,0x2e,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x29,0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a, 0x7b,0x61,0x6c,0x77,0x61,0x79,0x73,0x3a,0x22,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f, 0x77,0x2d,0x61,0x6e,0x63,0x68,0x6f,0x72,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22, 0x7d,0x7d,0x2c,0x7b,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x3a,0x22,0x62,0x6f, 0x64,0x79,0x22,0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a,0x7b,0x64,0x72,0x61,0x67, 0x67,0x69,0x6e,0x67,0x3a,0x22,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x67,0x72,0x61,0x62,0x62,0x69,0x6e,0x67, 0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x73,0x6f, 0x72,0x3a,0x20,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x67,0x72,0x61,0x62,0x62, 0x69,0x6e,0x67,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73, 0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b, 0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2d,0x77,0x65,0x62,0x6b,0x69, 0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x20,0x6e, 0x6f,0x6e,0x65,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2d,0x6d, 0x6f,0x7a,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x20, 0x6e,0x6f,0x6e,0x65,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2d, 0x6d,0x73,0x2d,0x75,0x73,0x65,0x72,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x20, 0x6e,0x6f,0x6e,0x65,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2d,0x61,0x6e,0x63,0x68,0x6f,0x72,0x3a,0x20, 0x6e,0x6f,0x6e,0x65,0x3b,0x5c,0x6e,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x7d,0x7d, 0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x61,0x6c,0x77,0x61,0x79,0x73,0x3a, 0x4c,0x72,0x28,0x6f,0x2c,0x22,0x61,0x6c,0x77,0x61,0x79,0x73,0x22,0x29,0x2c,0x72, 0x65,0x73,0x74,0x69,0x6e,0x67,0x3a,0x4c,0x72,0x28,0x6f,0x2c,0x22,0x72,0x65,0x73, 0x74,0x69,0x6e,0x67,0x22,0x29,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a, 0x4c,0x72,0x28,0x6f,0x2c,0x22,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x22,0x29, 0x2c,0x64,0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x3a,0x4c, 0x72,0x28,0x6f,0x2c,0x22,0x64,0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69, 0x6e,0x67,0x22,0x29,0x2c,0x75,0x73,0x65,0x72,0x43,0x61,0x6e,0x63,0x65,0x6c,0x3a, 0x4c,0x72,0x28,0x6f,0x2c,0x22,0x75,0x73,0x65,0x72,0x43,0x61,0x6e,0x63,0x65,0x6c, 0x22,0x29,0x7d,0x7d,0x28,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x6f, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66, 0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x61,0x3d,0x63,0x65,0x28,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x69,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3b,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c, 0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x65,0x7d, 0x29,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x75,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6f, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21, 0x31,0x29,0x2c,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x3b,0x46,0x72,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x28,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x7c,0x7c,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x26,0x26, 0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x42,0x72,0x28, 0x74,0x29,0x2c,0x63,0x3d,0x42,0x72,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x72,0x2c,0x69,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x63,0x2c,0x72,0x2e,0x73,0x65,0x74,0x41, 0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x72, 0x62,0x64,0x2d,0x61,0x6c,0x77,0x61,0x79,0x73,0x22,0x2c,0x65,0x29,0x2c,0x63,0x2e, 0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61, 0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x64,0x79,0x6e,0x61,0x6d,0x69,0x63,0x22,0x2c, 0x65,0x29,0x2c,0x4d,0x72,0x28,0x29,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68, 0x69,0x6c,0x64,0x28,0x72,0x29,0x2c,0x4d,0x72,0x28,0x29,0x2e,0x61,0x70,0x70,0x65, 0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x63,0x29,0x2c,0x75,0x28,0x6e,0x2e,0x61, 0x6c,0x77,0x61,0x79,0x73,0x29,0x2c,0x61,0x28,0x6e,0x2e,0x72,0x65,0x73,0x74,0x69, 0x6e,0x67,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3b,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x4d,0x72,0x28,0x29,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x74,0x29,0x2c,0x65, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x65, 0x28,0x6f,0x29,0x2c,0x65,0x28,0x69,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x74,0x2c,0x75, 0x2c,0x61,0x2c,0x6e,0x2e,0x61,0x6c,0x77,0x61,0x79,0x73,0x2c,0x6e,0x2e,0x72,0x65, 0x73,0x74,0x69,0x6e,0x67,0x2c,0x65,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d, 0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x28,0x6e,0x2e,0x64,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x29,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x6e,0x2e,0x64,0x72,0x61,0x67,0x67, 0x69,0x6e,0x67,0x5d,0x29,0x2c,0x6c,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x61,0x28,0x22,0x44,0x52,0x4f,0x50,0x22, 0x21,0x3d,0x3d,0x65,0x3f,0x6e,0x2e,0x75,0x73,0x65,0x72,0x43,0x61,0x6e,0x63,0x65, 0x6c,0x3a,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e, 0x67,0x29,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x41,0x6e, 0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x2c,0x6e,0x2e,0x75,0x73,0x65,0x72,0x43,0x61, 0x6e,0x63,0x65,0x6c,0x5d,0x29,0x2c,0x73,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x26,0x26,0x61,0x28,0x6e,0x2e,0x72,0x65,0x73,0x74,0x69,0x6e,0x67,0x29,0x7d, 0x29,0x2c,0x5b,0x61,0x2c,0x6e,0x2e,0x72,0x65,0x73,0x74,0x69,0x6e,0x67,0x5d,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x72, 0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x63,0x2c,0x64,0x72,0x6f,0x70,0x70,0x69,0x6e, 0x67,0x3a,0x6c,0x2c,0x72,0x65,0x73,0x74,0x69,0x6e,0x67,0x3a,0x73,0x7d,0x7d,0x29, 0x2c,0x5b,0x63,0x2c,0x6c,0x2c,0x73,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x55,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x3f,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x69, 0x65,0x77,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x57,0x72,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x55,0x72, 0x28,0x65,0x29,0x2e,0x48,0x54,0x4d,0x4c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x72,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22,0x5b,0x22,0x2b,0x44,0x72,0x2e,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2b,0x27,0x3d,0x22,0x27,0x2b,0x65,0x2b,0x27, 0x22,0x5d,0x27,0x2c,0x72,0x3d,0x6e,0x74,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41, 0x6c,0x6c,0x28,0x6e,0x29,0x29,0x3b,0x69,0x66,0x28,0x21,0x72,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x74,0x28,0x72,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x44,0x72, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x29,0x3d,0x3d,0x3d, 0x74,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x26,0x26,0x57, 0x72,0x28,0x6f,0x29,0x3f,0x6f,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x48,0x72,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3a,0x7b,0x7d,0x2c,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3a,0x7b,0x7d,0x7d,0x2c,0x74,0x3d, 0x5b,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65,0x29, 0x7b,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x74,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x29,0x7d,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x73,0x5b,0x74,0x5d,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x5d, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x7b,0x72,0x65,0x67,0x69,0x73,0x74,0x65, 0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d,0x3d,0x74,0x2c,0x6e,0x28, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x41,0x44,0x44,0x49,0x54,0x49,0x4f,0x4e,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x74,0x7d,0x29,0x7d,0x2c,0x75,0x70,0x64,0x61, 0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x5b,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x5d,0x3b,0x72,0x26,0x26,0x72,0x2e,0x75,0x6e,0x69,0x71,0x75,0x65, 0x49,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x26, 0x26,0x28,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x73,0x5b,0x6e,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2e,0x69,0x64,0x5d,0x2c,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x73,0x5b,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x2e,0x69,0x64,0x5d,0x3d,0x74,0x29,0x7d,0x2c,0x75,0x6e,0x72,0x65,0x67,0x69,0x73, 0x74,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2e,0x69,0x64,0x2c,0x69,0x3d,0x72,0x28,0x6f,0x29,0x3b,0x69,0x26,0x26, 0x74,0x2e,0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x69,0x2e,0x75, 0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x26,0x26,0x28,0x64,0x65,0x6c,0x65,0x74,0x65, 0x20,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x6f,0x5d, 0x2c,0x6e,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x52,0x45,0x4d,0x4f,0x56,0x41, 0x4c,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x74,0x7d,0x29,0x29,0x7d,0x2c,0x67, 0x65,0x74,0x42,0x79,0x49,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x72,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x74, 0x7d,0x2c,0x66,0x69,0x6e,0x64,0x42,0x79,0x49,0x64,0x3a,0x72,0x2c,0x65,0x78,0x69, 0x73,0x74,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x72, 0x28,0x65,0x29,0x29,0x7d,0x2c,0x67,0x65,0x74,0x41,0x6c,0x6c,0x42,0x79,0x54,0x79, 0x70,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x65,0x28,0x65,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x73,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x74, 0x79,0x70,0x65,0x3d,0x3d,0x3d,0x74,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x7b,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e,0x64,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d,0x3d,0x74,0x7d,0x2c,0x75,0x6e, 0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6f,0x28,0x74,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x29,0x3b,0x6e,0x26, 0x26,0x74,0x2e,0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x6e,0x2e, 0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x26,0x26,0x64,0x65,0x6c,0x65,0x74,0x65, 0x20,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x5b,0x74,0x2e, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x5d,0x7d,0x2c, 0x67,0x65,0x74,0x42,0x79,0x49,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6f,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c, 0x74,0x7d,0x2c,0x66,0x69,0x6e,0x64,0x42,0x79,0x49,0x64,0x3a,0x6f,0x2c,0x65,0x78, 0x69,0x73,0x74,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28, 0x6f,0x28,0x65,0x29,0x29,0x7d,0x2c,0x67,0x65,0x74,0x41,0x6c,0x6c,0x42,0x79,0x54, 0x79,0x70,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5a,0x65,0x28,0x65,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x73,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x74,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x73,0x75, 0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x70,0x75,0x73, 0x68,0x28,0x65,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28, 0x65,0x29,0x3b,0x2d,0x31,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x74,0x2e,0x73,0x70,0x6c, 0x69,0x63,0x65,0x28,0x6e,0x2c,0x31,0x29,0x7d,0x7d,0x2c,0x63,0x6c,0x65,0x61,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x3d,0x7b,0x7d,0x2c,0x65,0x2e,0x64,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x73,0x3d,0x7b,0x7d,0x2c,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3d,0x30,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x56,0x72,0x3d, 0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x47,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x65,0x7d,0x2c,0x71,0x72, 0x3d,0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x61,0x62,0x73,0x6f, 0x6c,0x75,0x74,0x65,0x22,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x22,0x31,0x70,0x78, 0x22,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x22,0x31,0x70,0x78,0x22,0x2c,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x3a,0x22,0x2d,0x31,0x70,0x78,0x22,0x2c,0x62,0x6f,0x72, 0x64,0x65,0x72,0x3a,0x22,0x30,0x22,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a, 0x22,0x30,0x22,0x2c,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x22,0x68,0x69, 0x64,0x64,0x65,0x6e,0x22,0x2c,0x63,0x6c,0x69,0x70,0x3a,0x22,0x72,0x65,0x63,0x74, 0x28,0x30,0x20,0x30,0x20,0x30,0x20,0x30,0x29,0x22,0x2c,0x22,0x63,0x6c,0x69,0x70, 0x2d,0x70,0x61,0x74,0x68,0x22,0x3a,0x22,0x69,0x6e,0x73,0x65,0x74,0x28,0x31,0x30, 0x30,0x25,0x29,0x22,0x7d,0x3b,0x76,0x61,0x72,0x20,0x4b,0x72,0x3d,0x30,0x2c,0x59, 0x72,0x3d,0x7b,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x6f,0x72,0x3a,0x22,0x3a,0x3a, 0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x72,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x59,0x72,0x29,0x2c,0x75,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x22,0x2b,0x65,0x2b,0x74,0x2e,0x73,0x65,0x70,0x61,0x72,0x61, 0x74,0x6f,0x72,0x2b,0x4b,0x72,0x2b,0x2b,0x7d,0x29,0x2c,0x5b,0x74,0x2e,0x73,0x65, 0x70,0x61,0x72,0x61,0x74,0x6f,0x72,0x2c,0x65,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20, 0x58,0x72,0x3d,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x4a,0x72,0x28,0x65,0x29,0x7b,0x30,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x5a,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x4a,0x72,0x28, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6f,0x28,0x29,0x7b, 0x5a,0x72,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73, 0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x65, 0x7d,0x29,0x29,0x2c,0x74,0x7d,0x76,0x61,0x72,0x20,0x6e,0x6f,0x2c,0x72,0x6f,0x3d, 0x28,0x28,0x6e,0x6f,0x3d,0x7b,0x7d,0x29,0x5b,0x31,0x33,0x5d,0x3d,0x21,0x30,0x2c, 0x6e,0x6f,0x5b,0x39,0x5d,0x3d,0x21,0x30,0x2c,0x6e,0x6f,0x29,0x2c,0x6f,0x6f,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x6f,0x5b,0x65, 0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x5d,0x26,0x26,0x65,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x7d,0x2c,0x69, 0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x22,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x63,0x68, 0x61,0x6e,0x67,0x65,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64, 0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3f,0x65,0x3a,0x74,0x74,0x28,0x5b, 0x65,0x2c,0x22,0x6d,0x73,0x22,0x2b,0x65,0x2c,0x22,0x77,0x65,0x62,0x6b,0x69,0x74, 0x22,0x2b,0x65,0x2c,0x22,0x6d,0x6f,0x7a,0x22,0x2b,0x65,0x2c,0x22,0x6f,0x22,0x2b, 0x65,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x6e,0x22,0x2b,0x65,0x20,0x69,0x6e,0x20, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x29,0x7c,0x7c,0x65,0x7d,0x28, 0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x6f,0x2c,0x75,0x6f,0x3d,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x49,0x44,0x4c,0x45,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x63,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x6f,0x6d,0x70, 0x6c,0x65,0x74,0x65,0x64,0x2c,0x72,0x3d,0x65,0x2e,0x67,0x65,0x74,0x50,0x68,0x61, 0x73,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x73,0x65,0x74,0x50,0x68,0x61,0x73,0x65,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6d,0x6f,0x76,0x65,0x22,0x2c,0x66,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2c,0x6e,0x3d,0x65,0x2e, 0x63,0x6c,0x69,0x65,0x6e,0x74,0x58,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x59,0x3b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x61,0x3d,0x7b,0x78,0x3a,0x6e,0x2c,0x79,0x3a,0x69,0x7d,0x2c,0x75,0x3d, 0x72,0x28,0x29,0x3b,0x69,0x66,0x28,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47, 0x22,0x3d,0x3d,0x3d,0x75,0x2e,0x74,0x79,0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x75,0x2e,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x73,0x2e,0x6d,0x6f,0x76,0x65,0x28,0x61,0x29,0x3b,0x22,0x50,0x45,0x4e, 0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x75,0x2e,0x74,0x79,0x70,0x65,0x26,0x26, 0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x75,0x2e,0x70, 0x6f,0x69,0x6e,0x74,0x3b,0x69,0x66,0x28,0x6c,0x3d,0x63,0x2c,0x73,0x3d,0x61,0x2c, 0x4d,0x61,0x74,0x68,0x2e,0x61,0x62,0x73,0x28,0x73,0x2e,0x78,0x2d,0x6c,0x2e,0x78, 0x29,0x3e,0x3d,0x35,0x7c,0x7c,0x4d,0x61,0x74,0x68,0x2e,0x61,0x62,0x73,0x28,0x73, 0x2e,0x79,0x2d,0x6c,0x2e,0x79,0x29,0x3e,0x3d,0x35,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6c,0x2c,0x73,0x3b,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x75,0x2e,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6c,0x75,0x69,0x64,0x4c,0x69,0x66,0x74, 0x28,0x61,0x29,0x3b,0x6f,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x41, 0x47,0x47,0x49,0x4e,0x47,0x22,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66, 0x7d,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x6d,0x6f,0x75,0x73,0x65,0x75,0x70,0x22,0x2c,0x66,0x6e,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x72,0x28,0x29,0x3b,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d, 0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x3f,0x28,0x65,0x2e,0x70,0x72,0x65,0x76, 0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x6f,0x2e,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x6f,0x70,0x28,0x7b,0x73,0x68,0x6f, 0x75,0x6c,0x64,0x42,0x6c,0x6f,0x63,0x6b,0x4e,0x65,0x78,0x74,0x43,0x6c,0x69,0x63, 0x6b,0x3a,0x21,0x30,0x7d,0x29,0x2c,0x6e,0x28,0x29,0x29,0x3a,0x74,0x28,0x29,0x7d, 0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x6f, 0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e, 0x47,0x22,0x3d,0x3d,0x3d,0x72,0x28,0x29,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x65, 0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28, 0x29,0x2c,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61, 0x6d,0x65,0x3a,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22, 0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x72,0x28,0x29,0x2e,0x74, 0x79,0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x32,0x37,0x3d,0x3d,0x3d, 0x65,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3f,0x28,0x65,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x76,0x6f, 0x69,0x64,0x20,0x74,0x28,0x29,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x6f,0x6f,0x28, 0x65,0x29,0x3b,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x72,0x65,0x73,0x69,0x7a,0x65,0x22,0x2c,0x66,0x6e,0x3a, 0x74,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b, 0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x63,0x61,0x70,0x74,0x75, 0x72,0x65,0x3a,0x21,0x31,0x7d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x22,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d, 0x3d,0x72,0x28,0x29,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x74,0x28,0x29,0x7d,0x7d, 0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x77,0x65,0x62, 0x6b,0x69,0x74,0x6d,0x6f,0x75,0x73,0x65,0x66,0x6f,0x72,0x63,0x65,0x64,0x6f,0x77, 0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x28,0x29,0x3b,0x22,0x49,0x44,0x4c, 0x45,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x41,0x65,0x28, 0x21,0x31,0x29,0x2c,0x6e,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x73,0x68, 0x6f,0x75,0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65, 0x50,0x72,0x65,0x73,0x73,0x28,0x29,0x3f,0x74,0x28,0x29,0x3a,0x65,0x2e,0x70,0x72, 0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x7d,0x7d, 0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x69,0x6f,0x2c,0x66, 0x6e,0x3a,0x74,0x7d,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c, 0x6f,0x28,0x29,0x7b,0x7d,0x76,0x61,0x72,0x20,0x73,0x6f,0x3d,0x28,0x28,0x61,0x6f, 0x3d,0x7b,0x7d,0x29,0x5b,0x33,0x34,0x5d,0x3d,0x21,0x30,0x2c,0x61,0x6f,0x5b,0x33, 0x33,0x5d,0x3d,0x21,0x30,0x2c,0x61,0x6f,0x5b,0x33,0x36,0x5d,0x3d,0x21,0x30,0x2c, 0x61,0x6f,0x5b,0x33,0x35,0x5d,0x3d,0x21,0x30,0x2c,0x61,0x6f,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x74,0x28,0x29,0x2c, 0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x5b,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6b,0x65, 0x79,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x32,0x37,0x3d, 0x3d,0x3d,0x72,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3f,0x28,0x72,0x2e,0x70, 0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c, 0x76,0x6f,0x69,0x64,0x20,0x6e,0x28,0x29,0x29,0x3a,0x33,0x32,0x3d,0x3d,0x3d,0x72, 0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3f,0x28,0x72,0x2e,0x70,0x72,0x65,0x76, 0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x74,0x28,0x29, 0x2c,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x64,0x72,0x6f,0x70,0x28,0x29,0x29,0x3a, 0x34,0x30,0x3d,0x3d,0x3d,0x72,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3f,0x28, 0x72,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74, 0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x44,0x6f, 0x77,0x6e,0x28,0x29,0x29,0x3a,0x33,0x38,0x3d,0x3d,0x3d,0x72,0x2e,0x6b,0x65,0x79, 0x43,0x6f,0x64,0x65,0x3f,0x28,0x72,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e, 0x6d,0x6f,0x76,0x65,0x55,0x70,0x28,0x29,0x29,0x3a,0x33,0x39,0x3d,0x3d,0x3d,0x72, 0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3f,0x28,0x72,0x2e,0x70,0x72,0x65,0x76, 0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x76,0x6f,0x69, 0x64,0x20,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x52,0x69,0x67,0x68,0x74,0x28,0x29,0x29, 0x3a,0x33,0x37,0x3d,0x3d,0x3d,0x72,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3f, 0x28,0x72,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c, 0x74,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x6d,0x6f,0x76,0x65,0x4c, 0x65,0x66,0x74,0x28,0x29,0x29,0x3a,0x76,0x6f,0x69,0x64,0x28,0x73,0x6f,0x5b,0x72, 0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x5d,0x3f,0x72,0x2e,0x70,0x72,0x65,0x76, 0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3a,0x6f,0x6f,0x28, 0x72,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e,0x3a, 0x6e,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6d, 0x6f,0x75,0x73,0x65,0x75,0x70,0x22,0x2c,0x66,0x6e,0x3a,0x6e,0x7d,0x2c,0x7b,0x65, 0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22, 0x2c,0x66,0x6e,0x3a,0x6e,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x74,0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x2c,0x66, 0x6e,0x3a,0x6e,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x72,0x65,0x73,0x69,0x7a,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x6e,0x7d,0x2c,0x7b, 0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x77,0x68,0x65,0x65,0x6c, 0x22,0x2c,0x66,0x6e,0x3a,0x6e,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b, 0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x7d,0x7d,0x2c,0x7b,0x65,0x76, 0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x69,0x6f,0x2c,0x66,0x6e,0x3a,0x6e,0x7d, 0x5d,0x7d,0x76,0x61,0x72,0x20,0x70,0x6f,0x3d,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x49,0x44,0x4c,0x45,0x22,0x7d,0x3b,0x76,0x61,0x72,0x20,0x68,0x6f,0x3d,0x7b,0x69, 0x6e,0x70,0x75,0x74,0x3a,0x21,0x30,0x2c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x21, 0x30,0x2c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3a,0x21,0x30,0x2c,0x73,0x65, 0x6c,0x65,0x63,0x74,0x3a,0x21,0x30,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x21, 0x30,0x2c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3a,0x21,0x30,0x2c,0x76,0x69, 0x64,0x65,0x6f,0x3a,0x21,0x30,0x2c,0x61,0x75,0x64,0x69,0x6f,0x3a,0x21,0x30,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x6f,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e, 0x28,0x68,0x6f,0x5b,0x74,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x6f, 0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x5d,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67, 0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x22,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x74,0x72,0x75,0x65,0x22,0x3d,0x3d,0x3d,0x6e,0x7c, 0x7c,0x22,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x74,0x21,0x3d,0x3d,0x65,0x26,0x26, 0x76,0x6f,0x28,0x65,0x2c,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67, 0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x74, 0x61,0x72,0x67,0x65,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x57,0x72, 0x28,0x6e,0x29,0x26,0x26,0x76,0x6f,0x28,0x65,0x2c,0x6e,0x29,0x7d,0x76,0x61,0x72, 0x20,0x6d,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x65,0x28,0x65,0x2e,0x67,0x65,0x74,0x42, 0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63, 0x74,0x28,0x29,0x29,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x62,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x22,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x22,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x3f,0x65,0x3a,0x74,0x74,0x28,0x5b,0x65,0x2c,0x22,0x6d,0x73,0x4d,0x61, 0x74,0x63,0x68,0x65,0x73,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x22,0x2c,0x22, 0x77,0x65,0x62,0x6b,0x69,0x74,0x4d,0x61,0x74,0x63,0x68,0x65,0x73,0x53,0x65,0x6c, 0x65,0x63,0x74,0x6f,0x72,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x20,0x69,0x6e, 0x20,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x7d,0x29,0x29,0x7c,0x7c,0x65,0x7d,0x28,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x79,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x6e,0x75,0x6c,0x6c, 0x3a,0x65,0x5b,0x62,0x6f,0x5d,0x28,0x74,0x29,0x3f,0x65,0x3a,0x79,0x6f,0x28,0x65, 0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x74, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x6f,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x6f,0x73, 0x65,0x73,0x74,0x3f,0x65,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x74,0x29, 0x3a,0x79,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x77,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c, 0x72,0x3d,0x74,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3b,0x69,0x66,0x28,0x21,0x28, 0x28,0x6e,0x3d,0x72,0x29,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20, 0x55,0x72,0x28,0x6e,0x29,0x2e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x5b,0x22,0x2b,0x44,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x49,0x64,0x2b,0x27,0x3d,0x22,0x27,0x2b,0x65,0x2b,0x27,0x22,0x5d,0x27,0x7d, 0x28,0x65,0x29,0x2c,0x69,0x3d,0x5f,0x6f,0x28,0x72,0x2c,0x6f,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x69,0x26,0x26,0x57,0x72,0x28,0x69,0x29,0x3f,0x69,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x6f, 0x28,0x65,0x29,0x7b,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x78,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x65,0x78, 0x70,0x65,0x63,0x74,0x65,0x64,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73,0x65, 0x2c,0x72,0x3d,0x65,0x2e,0x69,0x73,0x4c,0x6f,0x63,0x6b,0x41,0x63,0x74,0x69,0x76, 0x65,0x3b,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x57,0x61,0x72,0x6e,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x72,0x28,0x29,0x26,0x26,0x74,0x3d,0x3d,0x3d, 0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x6f,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6c,0x6f,0x63,0x6b,0x41,0x50,0x49, 0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x74,0x6f,0x72,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x72, 0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3b,0x69,0x66,0x28,0x74,0x2e,0x69,0x73,0x43, 0x6c,0x61,0x69,0x6d,0x65,0x64,0x28,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x72,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x2e,0x66,0x69,0x6e,0x64,0x42,0x79,0x49,0x64,0x28,0x6f,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x69,0x26,0x26,0x28,0x21,0x21,0x69,0x2e, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x26,0x26,0x21,0x21,0x63,0x72,0x28,0x6e,0x2e,0x67,0x65,0x74,0x53,0x74,0x61, 0x74,0x65,0x28,0x29,0x2c,0x6f,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6a,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x6c,0x6f,0x63,0x6b,0x41,0x50,0x49,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x49,0x64,0x2c,0x72,0x3d,0x65,0x2e,0x73,0x74,0x6f,0x72,0x65,0x2c, 0x6f,0x3d,0x65,0x2e,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x2c,0x69,0x3d,0x65, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x75,0x3d,0x65, 0x2e,0x66,0x6f,0x72,0x63,0x65,0x53,0x65,0x6e,0x73,0x6f,0x72,0x53,0x74,0x6f,0x70, 0x2c,0x63,0x3d,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74, 0x3b,0x69,0x66,0x28,0x21,0x45,0x6f,0x28,0x7b,0x6c,0x6f,0x63,0x6b,0x41,0x50,0x49, 0x3a,0x74,0x2c,0x73,0x74,0x6f,0x72,0x65,0x3a,0x72,0x2c,0x72,0x65,0x67,0x69,0x73, 0x74,0x72,0x79,0x3a,0x6f,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49, 0x64,0x3a,0x69,0x7d,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x2e,0x67,0x65,0x74,0x42,0x79,0x49,0x64,0x28,0x69,0x29,0x2c,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x22,0x5b,0x22,0x2b,0x4e,0x72,0x2e,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x49,0x64,0x2b,0x27,0x3d,0x22,0x27,0x2b,0x65,0x2b,0x27,0x22,0x5d, 0x27,0x2c,0x72,0x3d,0x74,0x74,0x28,0x6e,0x74,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72, 0x41,0x6c,0x6c,0x28,0x6e,0x29,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x67,0x65, 0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x4e,0x72,0x2e,0x69,0x64, 0x29,0x3d,0x3d,0x3d,0x74,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x26,0x26,0x57,0x72,0x28,0x72,0x29,0x3f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d, 0x28,0x6e,0x2c,0x6c,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e, 0x69,0x64,0x29,0x3b,0x69,0x66,0x28,0x21,0x73,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x63,0x26,0x26,0x21,0x6c,0x2e,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x63,0x61,0x6e,0x44,0x72,0x61,0x67,0x49,0x6e, 0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x73,0x26,0x26,0x67,0x6f,0x28,0x73,0x2c,0x63,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x74,0x2e,0x63, 0x6c,0x61,0x69,0x6d,0x28,0x75,0x7c,0x7c,0x6a,0x65,0x29,0x2c,0x64,0x3d,0x22,0x50, 0x52,0x45,0x5f,0x44,0x52,0x41,0x47,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x70,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x2e,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x52,0x65,0x73, 0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73,0x73,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x2e,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x28,0x66,0x29, 0x7d,0x76,0x61,0x72,0x20,0x76,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x78,0x6f,0x28,0x7b,0x65,0x78,0x70,0x65,0x63,0x74,0x65, 0x64,0x3a,0x65,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x64,0x2c,0x69,0x73,0x4c,0x6f, 0x63,0x6b,0x41,0x63,0x74,0x69,0x76,0x65,0x3a,0x68,0x2c,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x57,0x61,0x72,0x6e,0x3a,0x21,0x30,0x7d,0x29,0x26,0x26,0x72,0x2e,0x64,0x69, 0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x74,0x28,0x29,0x29,0x7d,0x2e,0x62,0x69,0x6e, 0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47, 0x22,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x65,0x29, 0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x74,0x2e, 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x28,0x29,0x2c,0x64,0x3d,0x22,0x43,0x4f,0x4d, 0x50,0x4c,0x45,0x54,0x45,0x44,0x22,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6f,0x28,0x74,0x2c,0x6f,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x6f,0x26,0x26,0x28,0x6f,0x3d,0x7b,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x42,0x6c,0x6f,0x63,0x6b,0x4e,0x65,0x78,0x74,0x43,0x6c,0x69,0x63,0x6b,0x3a, 0x21,0x31,0x7d,0x29,0x2c,0x65,0x2e,0x63,0x6c,0x65,0x61,0x6e,0x75,0x70,0x28,0x29, 0x2c,0x6f,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x6c,0x6f,0x63,0x6b,0x4e,0x65, 0x78,0x74,0x43,0x6c,0x69,0x63,0x6b,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6b, 0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x5b,0x7b,0x65,0x76,0x65,0x6e,0x74, 0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22,0x2c,0x66,0x6e,0x3a, 0x4f,0x6f,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x6f,0x6e,0x63,0x65, 0x3a,0x21,0x30,0x2c,0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x31,0x2c,0x63, 0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x7d,0x7d,0x5d,0x29,0x3b,0x73,0x65, 0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x69,0x29,0x7d,0x6e,0x28,0x29,0x2c, 0x72,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x41,0x6e,0x28,0x7b,0x72, 0x65,0x61,0x73,0x6f,0x6e,0x3a,0x74,0x7d,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x50,0x52,0x45,0x5f,0x44,0x52,0x41,0x47,0x22,0x21,0x3d,0x3d,0x64,0x26, 0x26,0x28,0x6e,0x28,0x29,0x2c,0x22,0x50,0x52,0x45,0x5f,0x44,0x52,0x41,0x47,0x22, 0x21,0x3d,0x3d,0x64,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x29,0x2c,0x72,0x2e, 0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65, 0x3a,0x22,0x4c,0x49,0x46,0x54,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a, 0x65,0x7d,0x7d,0x28,0x65,0x2e,0x6c,0x69,0x66,0x74,0x41,0x63,0x74,0x69,0x6f,0x6e, 0x41,0x72,0x67,0x73,0x29,0x29,0x2c,0x64,0x3d,0x22,0x44,0x52,0x41,0x47,0x47,0x49, 0x4e,0x47,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28, 0x7b,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x78,0x6f,0x28,0x7b, 0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x3a,0x22,0x44,0x52,0x41,0x47,0x47,0x49, 0x4e,0x47,0x22,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x64,0x2c,0x69,0x73,0x4c,0x6f, 0x63,0x6b,0x41,0x63,0x74,0x69,0x76,0x65,0x3a,0x68,0x2c,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x57,0x61,0x72,0x6e,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x2c,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72, 0x65,0x73,0x73,0x3a,0x70,0x2c,0x64,0x72,0x6f,0x70,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x22,0x44,0x52,0x4f,0x50,0x22,0x2c,0x65,0x29,0x7d,0x2c,0x63,0x61,0x6e,0x63,0x65, 0x6c,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x22,0x43,0x41,0x4e,0x43,0x45,0x4c,0x22,0x2c, 0x65,0x29,0x7d,0x7d,0x2c,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x78,0x6f,0x28,0x7b,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x3a,0x22, 0x50,0x52,0x45,0x5f,0x44,0x52,0x41,0x47,0x22,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a, 0x64,0x2c,0x69,0x73,0x4c,0x6f,0x63,0x6b,0x41,0x63,0x74,0x69,0x76,0x65,0x3a,0x68, 0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x57,0x61,0x72,0x6e,0x3a,0x21,0x31,0x7d,0x29, 0x7d,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46, 0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73,0x73,0x3a,0x70,0x2c,0x66,0x6c,0x75,0x69, 0x64,0x4c,0x69,0x66,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x78,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x78,0x6e,0x28, 0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3a,0x65,0x7d,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x29,0x2c,0x6e,0x3d,0x67,0x28,0x7b,0x6c,0x69,0x66,0x74,0x41,0x63,0x74,0x69,0x6f, 0x6e,0x41,0x72,0x67,0x73,0x3a,0x7b,0x69,0x64,0x3a,0x69,0x2c,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x65,0x2c,0x6d,0x6f, 0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3a,0x22,0x46,0x4c,0x55,0x49, 0x44,0x22,0x7d,0x2c,0x63,0x6c,0x65,0x61,0x6e,0x75,0x70,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x29,0x7d,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e, 0x73,0x3a,0x7b,0x6d,0x6f,0x76,0x65,0x3a,0x74,0x7d,0x7d,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x6e,0x2c,0x7b,0x6d,0x6f,0x76,0x65,0x3a,0x74,0x7d,0x29,0x7d,0x2c, 0x73,0x6e,0x61,0x70,0x4c,0x69,0x66,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x7b,0x6d,0x6f,0x76,0x65,0x55, 0x70,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x76,0x28,0x45,0x6e,0x29,0x7d,0x2c,0x6d,0x6f,0x76,0x65,0x52, 0x69,0x67,0x68,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x28,0x6b,0x6e,0x29,0x7d,0x2c,0x6d,0x6f, 0x76,0x65,0x44,0x6f,0x77,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x28,0x6a,0x6e,0x29,0x7d,0x2c, 0x6d,0x6f,0x76,0x65,0x4c,0x65,0x66,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x28,0x53,0x6e,0x29, 0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x28,0x7b,0x6c,0x69,0x66, 0x74,0x41,0x63,0x74,0x69,0x6f,0x6e,0x41,0x72,0x67,0x73,0x3a,0x7b,0x69,0x64,0x3a, 0x69,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x3a,0x6d,0x6f,0x28,0x73,0x29,0x2c,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74, 0x4d,0x6f,0x64,0x65,0x3a,0x22,0x53,0x4e,0x41,0x50,0x22,0x7d,0x2c,0x63,0x6c,0x65, 0x61,0x6e,0x75,0x70,0x3a,0x6a,0x65,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a, 0x65,0x7d,0x29,0x7d,0x2c,0x61,0x62,0x6f,0x72,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x78,0x6f,0x28,0x7b,0x65,0x78,0x70,0x65,0x63,0x74, 0x65,0x64,0x3a,0x22,0x50,0x52,0x45,0x5f,0x44,0x52,0x41,0x47,0x22,0x2c,0x70,0x68, 0x61,0x73,0x65,0x3a,0x64,0x2c,0x69,0x73,0x4c,0x6f,0x63,0x6b,0x41,0x63,0x74,0x69, 0x76,0x65,0x3a,0x68,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x57,0x61,0x72,0x6e,0x3a, 0x21,0x30,0x7d,0x29,0x26,0x26,0x74,0x2e,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x28, 0x29,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x6b,0x6f,0x3d,0x5b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x75, 0x6f,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73, 0x65,0x52,0x65,0x66,0x29,0x28,0x6a,0x65,0x29,0x2c,0x6f,0x3d,0x75,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x6f,0x75, 0x73,0x65,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x74,0x2e,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x26,0x26,0x30, 0x3d,0x3d,0x3d,0x74,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x26,0x26,0x21,0x28,0x74, 0x2e,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x7c,0x7c,0x74,0x2e,0x6d,0x65,0x74,0x61, 0x4b,0x65,0x79,0x7c,0x7c,0x74,0x2e,0x73,0x68,0x69,0x66,0x74,0x4b,0x65,0x79,0x7c, 0x7c,0x74,0x2e,0x61,0x6c,0x74,0x4b,0x65,0x79,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x65,0x2e,0x66,0x69,0x6e,0x64,0x43,0x6c,0x6f,0x73,0x65,0x73,0x74,0x44, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x28,0x74,0x29,0x3b,0x69,0x66, 0x28,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x74,0x72,0x79,0x47, 0x65,0x74,0x4c,0x6f,0x63,0x6b,0x28,0x72,0x2c,0x75,0x2c,0x7b,0x73,0x6f,0x75,0x72, 0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x3a,0x74,0x7d,0x29,0x3b,0x69,0x66,0x28,0x6f, 0x29,0x7b,0x74,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x7b,0x78,0x3a,0x74,0x2e, 0x63,0x6c,0x69,0x65,0x6e,0x74,0x58,0x2c,0x79,0x3a,0x74,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x59,0x7d,0x3b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x28,0x29, 0x2c,0x73,0x28,0x6f,0x2c,0x69,0x29,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x29,0x2c,0x5b, 0x65,0x5d,0x29,0x2c,0x69,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x65,0x76,0x65,0x6e, 0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x77,0x65,0x62,0x6b,0x69,0x74,0x6d,0x6f,0x75, 0x73,0x65,0x66,0x6f,0x72,0x63,0x65,0x77,0x69,0x6c,0x6c,0x62,0x65,0x67,0x69,0x6e, 0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x69,0x66,0x28,0x21,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72, 0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x2e,0x66,0x69,0x6e,0x64,0x43,0x6c,0x6f,0x73,0x65,0x73,0x74,0x44,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x46,0x6f,0x72,0x44,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x28,0x6e,0x29,0x3b,0x72,0x26,0x26,0x28,0x72,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73, 0x73,0x7c,0x7c,0x65,0x2e,0x63,0x61,0x6e,0x47,0x65,0x74,0x4c,0x6f,0x63,0x6b,0x28, 0x6e,0x29,0x26,0x26,0x74,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x29,0x7d,0x7d,0x7d,0x7d,0x7d,0x29,0x2c,0x5b,0x65, 0x5d,0x29,0x2c,0x61,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6b,0x65, 0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x5b,0x69,0x2c,0x6f,0x5d,0x2c,0x7b,0x70, 0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x31,0x2c,0x63,0x61,0x70,0x74,0x75,0x72, 0x65,0x3a,0x21,0x30,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x69,0x2c,0x6f,0x5d,0x29,0x2c, 0x75,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x22,0x49,0x44,0x4c,0x45,0x22,0x21,0x3d,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x28,0x74,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x75,0x6f,0x2c,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x28,0x29,0x2c,0x61,0x28,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x61,0x5d,0x29,0x2c, 0x63,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3b,0x75,0x28,0x29,0x2c,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x65,0x2e,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x73,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x7b,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x42,0x6c,0x6f,0x63,0x6b,0x4e,0x65,0x78,0x74,0x43,0x6c,0x69,0x63,0x6b, 0x3a,0x21,0x30,0x7d,0x29,0x2c,0x22,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x65,0x2e,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x73,0x2e,0x61,0x62,0x6f,0x72,0x74,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x75, 0x5d,0x29,0x2c,0x6c,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x63,0x6f,0x28,0x7b,0x63,0x61, 0x6e,0x63,0x65,0x6c,0x3a,0x63,0x2c,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64, 0x3a,0x75,0x2c,0x67,0x65,0x74,0x50,0x68,0x61,0x73,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7d,0x2c,0x73,0x65,0x74,0x50,0x68,0x61,0x73, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x65,0x7d,0x7d,0x29,0x3b,0x6e,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2c,0x65,0x2c,0x7b,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x2c,0x70, 0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x63, 0x2c,0x75,0x5d,0x29,0x2c,0x73,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x22,0x49,0x44,0x4c,0x45,0x22,0x21, 0x3d,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x74,0x79,0x70,0x65, 0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x50,0x45,0x4e,0x44,0x49,0x4e, 0x47,0x22,0x2c,0x70,0x6f,0x69,0x6e,0x74,0x3a,0x6e,0x2c,0x61,0x63,0x74,0x69,0x6f, 0x6e,0x73,0x3a,0x65,0x7d,0x2c,0x6c,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x6c,0x5d,0x29, 0x3b,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x28,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x28, 0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x61,0x5d,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6c,0x6f, 0x29,0x2c,0x6e,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x69,0x66,0x28, 0x21,0x6e,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e, 0x74,0x65,0x64,0x26,0x26,0x33,0x32,0x3d,0x3d,0x3d,0x6e,0x2e,0x6b,0x65,0x79,0x43, 0x6f,0x64,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x66,0x69,0x6e, 0x64,0x43,0x6c,0x6f,0x73,0x65,0x73,0x74,0x44,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x49,0x64,0x28,0x6e,0x29,0x3b,0x69,0x66,0x28,0x72,0x29,0x7b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x65,0x2e,0x74,0x72,0x79,0x47,0x65,0x74,0x4c,0x6f,0x63,0x6b,0x28, 0x72,0x2c,0x63,0x2c,0x7b,0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74, 0x3a,0x6e,0x7d,0x29,0x3b,0x69,0x66,0x28,0x69,0x29,0x7b,0x6e,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x76,0x61, 0x72,0x20,0x61,0x3d,0x21,0x30,0x2c,0x75,0x3d,0x69,0x2e,0x73,0x6e,0x61,0x70,0x4c, 0x69,0x66,0x74,0x28,0x29,0x3b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x28, 0x29,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6b,0x65,0x28,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x2c,0x66,0x6f,0x28,0x75,0x2c,0x63,0x29,0x2c,0x7b,0x63, 0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x73,0x73,0x69,0x76, 0x65,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x63,0x28,0x29,0x7b,0x61,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c, 0x61,0x3d,0x21,0x31,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x28,0x29, 0x2c,0x6f,0x28,0x29,0x7d,0x7d,0x7d,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x6f, 0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2c,0x5b,0x6e,0x5d,0x2c,0x7b,0x70,0x61,0x73,0x73,0x69,0x76,0x65, 0x3a,0x21,0x31,0x2c,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x7d,0x29, 0x7d,0x29,0x2c,0x5b,0x6e,0x5d,0x29,0x3b,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x6f,0x5d,0x29, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65, 0x52,0x65,0x66,0x29,0x28,0x70,0x6f,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6a,0x65,0x29,0x2c, 0x6f,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x69,0x3d,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x61,0x3d,0x75,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74, 0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x74,0x2e, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x66,0x69,0x6e,0x64,0x43,0x6c, 0x6f,0x73,0x65,0x73,0x74,0x44,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x65,0x2e,0x74,0x72,0x79,0x47,0x65,0x74,0x4c,0x6f,0x63,0x6b,0x28,0x72,0x2c,0x63, 0x2c,0x7b,0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x3a,0x74,0x7d, 0x29,0x3b,0x69,0x66,0x28,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e, 0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x5b,0x30,0x5d,0x2c,0x61,0x3d,0x7b,0x78,0x3a, 0x69,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x58,0x2c,0x79,0x3a,0x69,0x2e,0x63,0x6c, 0x69,0x65,0x6e,0x74,0x59,0x7d,0x3b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x28,0x29,0x2c,0x64,0x28,0x6f,0x2c,0x61,0x29,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x29, 0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x75,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x5b,0x61,0x5d,0x2c,0x7b, 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x73,0x73,0x69, 0x76,0x65,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x61,0x5d,0x29,0x2c,0x63, 0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b, 0x22,0x49,0x44,0x4c,0x45,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26, 0x26,0x28,0x22,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x26,0x26,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x28,0x65,0x2e,0x6c,0x6f,0x6e,0x67,0x50,0x72,0x65,0x73,0x73,0x54,0x69, 0x6d,0x65,0x72,0x49,0x64,0x29,0x2c,0x69,0x28,0x70,0x6f,0x29,0x2c,0x6e,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x28,0x29,0x2c,0x75,0x28,0x29,0x29,0x7d,0x29,0x2c, 0x5b,0x75,0x2c,0x69,0x5d,0x29,0x2c,0x6c,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x63,0x28,0x29,0x2c,0x22,0x44,0x52,0x41, 0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26, 0x26,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x63,0x61,0x6e,0x63,0x65, 0x6c,0x28,0x7b,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x6c,0x6f,0x63,0x6b,0x4e,0x65, 0x78,0x74,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x21,0x30,0x7d,0x29,0x2c,0x22,0x50,0x45, 0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26, 0x26,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x61,0x62,0x6f,0x72,0x74, 0x28,0x29,0x7d,0x29,0x2c,0x5b,0x63,0x5d,0x29,0x2c,0x73,0x3d,0x63,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x7b,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x73, 0x73,0x69,0x76,0x65,0x3a,0x21,0x31,0x7d,0x2c,0x74,0x3d,0x7b,0x63,0x61,0x6e,0x63, 0x65,0x6c,0x3a,0x6c,0x2c,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3a,0x63, 0x2c,0x67,0x65,0x74,0x50,0x68,0x61,0x73,0x65,0x3a,0x6f,0x7d,0x2c,0x72,0x3d,0x6b, 0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x61,0x6e, 0x63,0x65,0x6c,0x2c,0x6e,0x3d,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65, 0x64,0x2c,0x72,0x3d,0x65,0x2e,0x67,0x65,0x74,0x50,0x68,0x61,0x73,0x65,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x5b,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x74,0x6f,0x75,0x63,0x68,0x6d,0x6f,0x76,0x65,0x22,0x2c,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x21,0x31, 0x7d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x28,0x29,0x3b,0x69,0x66,0x28,0x22,0x44, 0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70, 0x65,0x29,0x7b,0x6e,0x2e,0x68,0x61,0x73,0x4d,0x6f,0x76,0x65,0x64,0x3d,0x21,0x30, 0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x73, 0x5b,0x30,0x5d,0x2c,0x69,0x3d,0x7b,0x78,0x3a,0x6f,0x2e,0x63,0x6c,0x69,0x65,0x6e, 0x74,0x58,0x2c,0x79,0x3a,0x6f,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x59,0x7d,0x3b, 0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74, 0x28,0x29,0x2c,0x6e,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6d,0x6f,0x76, 0x65,0x28,0x69,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x28,0x29,0x7d,0x7d,0x2c, 0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x6f,0x75,0x63, 0x68,0x65,0x6e,0x64,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x28,0x29,0x3b,0x22, 0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x74,0x79, 0x70,0x65,0x3f,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x6f,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73, 0x2e,0x64,0x72,0x6f,0x70,0x28,0x7b,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x6c,0x6f, 0x63,0x6b,0x4e,0x65,0x78,0x74,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x21,0x30,0x7d,0x29, 0x2c,0x6e,0x28,0x29,0x29,0x3a,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65, 0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x6f,0x75,0x63,0x68,0x63,0x61,0x6e, 0x63,0x65,0x6c,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d, 0x3d,0x72,0x28,0x29,0x2e,0x74,0x79,0x70,0x65,0x3f,0x28,0x65,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x74,0x28, 0x29,0x29,0x3a,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x74,0x6f,0x75,0x63,0x68,0x66,0x6f,0x72,0x63,0x65,0x63, 0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x28,0x29,0x3b, 0x22,0x49,0x44,0x4c,0x45,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x26, 0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e, 0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x5b,0x30,0x5d,0x3b,0x69,0x66,0x28,0x6f,0x26, 0x26,0x6f,0x2e,0x66,0x6f,0x72,0x63,0x65,0x3e,0x3d,0x2e,0x31,0x35,0x29,0x7b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x6e,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x73, 0x68,0x6f,0x75,0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63, 0x65,0x50,0x72,0x65,0x73,0x73,0x28,0x29,0x3b,0x69,0x66,0x28,0x22,0x50,0x45,0x4e, 0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3f,0x6e,0x2e,0x68,0x61,0x73,0x4d,0x6f,0x76, 0x65,0x64,0x3f,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e, 0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20, 0x74,0x28,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65, 0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x69,0x26,0x26,0x74, 0x28,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65, 0x3a,0x69,0x6f,0x2c,0x66,0x6e,0x3a,0x74,0x7d,0x5d,0x7d,0x28,0x74,0x29,0x2c,0x65, 0x29,0x2c,0x69,0x3d,0x6b,0x65,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x2c,0x6e,0x3d,0x65,0x2e,0x67,0x65,0x74, 0x50,0x68,0x61,0x73,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x7b,0x65,0x76, 0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6f,0x72,0x69,0x65,0x6e,0x74,0x61, 0x74,0x69,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x74, 0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x72,0x65, 0x73,0x69,0x7a,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x74,0x7d,0x2c,0x7b,0x65,0x76,0x65, 0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x6d, 0x65,0x6e,0x75,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x66,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x44,0x52, 0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6e,0x28,0x29,0x2e,0x74,0x79, 0x70,0x65,0x3f,0x28,0x32,0x37,0x3d,0x3d,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x43,0x6f, 0x64,0x65,0x26,0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x74,0x28,0x29,0x29,0x3a,0x74,0x28,0x29,0x7d, 0x7d,0x2c,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x69,0x6f,0x2c, 0x66,0x6e,0x3a,0x74,0x7d,0x5d,0x7d,0x28,0x74,0x29,0x2c,0x65,0x29,0x3b,0x6e,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x28,0x29,0x2c,0x69,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x6c, 0x2c,0x6f,0x2c,0x63,0x5d,0x29,0x2c,0x66,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6f,0x28, 0x29,0x3b,0x22,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x21,0x3d,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6c,0x75, 0x69,0x64,0x4c,0x69,0x66,0x74,0x28,0x65,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x29,0x3b, 0x69,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e, 0x47,0x22,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x74,0x2c,0x68,0x61,0x73, 0x4d,0x6f,0x76,0x65,0x64,0x3a,0x21,0x31,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x6f,0x2c, 0x69,0x5d,0x29,0x2c,0x64,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x22,0x49,0x44,0x4c,0x45,0x22,0x21,0x3d, 0x3d,0x6f,0x28,0x29,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x41,0x65,0x28,0x21,0x31, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x28,0x66,0x2c,0x31,0x32,0x30,0x29,0x3b,0x69,0x28,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x2c,0x70,0x6f,0x69,0x6e, 0x74,0x3a,0x74,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x65,0x2c,0x6c,0x6f, 0x6e,0x67,0x50,0x72,0x65,0x73,0x73,0x54,0x69,0x6d,0x65,0x72,0x49,0x64,0x3a,0x6e, 0x7d,0x29,0x2c,0x73,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x73,0x2c,0x6f,0x2c,0x69,0x2c, 0x66,0x5d,0x29,0x3b,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x28,0x29,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6f,0x28,0x29,0x3b,0x22, 0x50,0x45,0x4e,0x44,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70, 0x65,0x26,0x26,0x28,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x28,0x65,0x2e,0x6c,0x6f,0x6e,0x67,0x50,0x72,0x65,0x73,0x73,0x54,0x69,0x6d,0x65, 0x72,0x49,0x64,0x29,0x2c,0x69,0x28,0x70,0x6f,0x29,0x29,0x7d,0x7d,0x29,0x2c,0x5b, 0x6f,0x2c,0x75,0x2c,0x69,0x5d,0x29,0x2c,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x65, 0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x5b,0x7b,0x65,0x76,0x65,0x6e,0x74,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x74,0x6f,0x75,0x63,0x68,0x6d,0x6f,0x76,0x65,0x22,0x2c, 0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x63,0x61,0x70,0x74,0x75,0x72,0x65, 0x3a,0x21,0x31,0x2c,0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x31,0x7d,0x7d, 0x5d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x7d,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x53,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2c,0x6e,0x3d,0x65,0x2e, 0x73,0x74,0x6f,0x72,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x72,0x65,0x67,0x69,0x73,0x74, 0x72,0x79,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x53,0x65,0x6e, 0x73,0x6f,0x72,0x73,0x2c,0x61,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x53,0x65,0x6e,0x73,0x6f,0x72,0x73,0x2c,0x75,0x3d, 0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x3f,0x6b,0x6f,0x3a,0x5b, 0x5d,0x2c,0x69,0x7c,0x7c,0x5b,0x5d,0x29,0x2c,0x63,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x74,0x28,0x29,0x7b,0x65,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69,0x73,0x43,0x6c, 0x61,0x69,0x6d,0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28, 0x65,0x29,0x7d,0x2c,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3d,0x3d,0x3d,0x65,0x7d,0x2c,0x63,0x6c,0x61,0x69,0x6d,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x26,0x26,0x41,0x65,0x28,0x21, 0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x61,0x62,0x61,0x6e,0x64,0x6f, 0x6e,0x3a,0x74,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x6e,0x2c, 0x6e,0x7d,0x2c,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x3a,0x74,0x2c,0x74,0x72,0x79, 0x41,0x62,0x61,0x6e,0x64,0x6f,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x65,0x26,0x26,0x28,0x65,0x2e,0x61,0x62,0x61,0x6e,0x64,0x6f,0x6e, 0x28,0x29,0x2c,0x74,0x28,0x29,0x29,0x7d,0x7d,0x7d,0x28,0x29,0x7d,0x29,0x29,0x5b, 0x30,0x5d,0x2c,0x6c,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x69,0x73,0x44,0x72,0x61,0x67,0x67, 0x69,0x6e,0x67,0x26,0x26,0x21,0x74,0x2e,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x26,0x26,0x63,0x2e,0x74,0x72,0x79,0x41,0x62,0x61,0x6e,0x64,0x6f,0x6e, 0x28,0x29,0x7d,0x29,0x2c,0x5b,0x63,0x5d,0x29,0x3b,0x46,0x72,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e, 0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x6e,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x6c,0x28, 0x65,0x2c,0x74,0x29,0x2c,0x65,0x3d,0x74,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x63, 0x2c,0x6e,0x2c,0x6c,0x5d,0x29,0x2c,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x2e,0x74, 0x72,0x79,0x41,0x62,0x61,0x6e,0x64,0x6f,0x6e,0x7d,0x29,0x2c,0x5b,0x63,0x2e,0x74, 0x72,0x79,0x41,0x62,0x61,0x6e,0x64,0x6f,0x6e,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20, 0x73,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x6f,0x28,0x7b,0x6c,0x6f,0x63, 0x6b,0x41,0x50,0x49,0x3a,0x63,0x2c,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3a, 0x6f,0x2c,0x73,0x74,0x6f,0x72,0x65,0x3a,0x6e,0x2c,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x63,0x2c,0x6f, 0x2c,0x6e,0x5d,0x29,0x2c,0x66,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c,0x69,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6a,0x6f,0x28,0x7b,0x6c,0x6f,0x63,0x6b,0x41,0x50,0x49,0x3a,0x63,0x2c, 0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3a,0x6f,0x2c,0x63,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x49,0x64,0x3a,0x74,0x2c,0x73,0x74,0x6f,0x72,0x65,0x3a,0x6e,0x2c,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2c,0x66,0x6f,0x72, 0x63,0x65,0x53,0x65,0x6e,0x73,0x6f,0x72,0x53,0x74,0x6f,0x70,0x3a,0x72,0x2c,0x73, 0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x3a,0x69,0x26,0x26,0x69,0x2e, 0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x3f,0x69,0x2e,0x73,0x6f, 0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29, 0x7d,0x29,0x2c,0x5b,0x74,0x2c,0x63,0x2c,0x6f,0x2c,0x6e,0x5d,0x29,0x2c,0x64,0x3d, 0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x77,0x6f,0x28,0x65,0x2c, 0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x6e,0x2e,0x67,0x65, 0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x44,0x72,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d, 0x28,0x74,0x2c,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x5d,0x29,0x2c,0x70,0x3d,0x63, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x2e,0x66,0x69,0x6e,0x64,0x42,0x79,0x49,0x64,0x28,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3f,0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x2c,0x5b,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x5d,0x29,0x2c,0x68,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x63,0x2e,0x69,0x73,0x43,0x6c,0x61,0x69,0x6d, 0x65,0x64,0x28,0x29,0x26,0x26,0x28,0x63,0x2e,0x74,0x72,0x79,0x41,0x62,0x61,0x6e, 0x64,0x6f,0x6e,0x28,0x29,0x2c,0x22,0x49,0x44,0x4c,0x45,0x22,0x21,0x3d,0x3d,0x6e, 0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x2e,0x70,0x68,0x61,0x73, 0x65,0x26,0x26,0x6e,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x22,0x46,0x4c,0x55,0x53,0x48,0x22,0x2c,0x70,0x61,0x79,0x6c, 0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x63, 0x2c,0x6e,0x5d,0x29,0x2c,0x76,0x3d,0x63,0x65,0x28,0x63,0x2e,0x69,0x73,0x43,0x6c, 0x61,0x69,0x6d,0x65,0x64,0x2c,0x5b,0x63,0x5d,0x29,0x2c,0x67,0x3d,0x75,0x65,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x63,0x61,0x6e,0x47,0x65,0x74,0x4c,0x6f,0x63,0x6b,0x3a,0x73,0x2c, 0x74,0x72,0x79,0x47,0x65,0x74,0x4c,0x6f,0x63,0x6b,0x3a,0x66,0x2c,0x66,0x69,0x6e, 0x64,0x43,0x6c,0x6f,0x73,0x65,0x73,0x74,0x44,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x49,0x64,0x3a,0x64,0x2c,0x66,0x69,0x6e,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x46,0x6f,0x72,0x44,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x3a,0x70,0x2c, 0x74,0x72,0x79,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x4c,0x6f,0x63,0x6b,0x3a,0x68, 0x2c,0x69,0x73,0x4c,0x6f,0x63,0x6b,0x43,0x6c,0x61,0x69,0x6d,0x65,0x64,0x3a,0x76, 0x7d,0x7d,0x29,0x2c,0x5b,0x73,0x2c,0x66,0x2c,0x64,0x2c,0x70,0x2c,0x68,0x2c,0x76, 0x5d,0x29,0x3b,0x4a,0x72,0x28,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6d,0x3d,0x30,0x3b,0x6d,0x3c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6d, 0x2b,0x2b,0x29,0x75,0x5b,0x6d,0x5d,0x28,0x67,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x43,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21, 0x31,0x29,0x2c,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2c,0x6e,0x3d, 0x65,0x2e,0x73,0x65,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x2c,0x69, 0x3d,0x65,0x2e,0x73,0x65,0x6e,0x73,0x6f,0x72,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x6e, 0x6f,0x6e,0x63,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x48,0x61,0x6e, 0x64,0x6c,0x65,0x55,0x73,0x61,0x67,0x65,0x49,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x69,0x6f,0x6e,0x73,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x65,0x6f, 0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x74,0x6f,0x28,0x65,0x29,0x2c,0x66, 0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6f,0x6e,0x42,0x65,0x66,0x6f, 0x72,0x65,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x3a,0x65,0x2e,0x6f,0x6e,0x42,0x65, 0x66,0x6f,0x72,0x65,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x2c,0x6f,0x6e,0x42,0x65, 0x66,0x6f,0x72,0x65,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x3a,0x65,0x2e, 0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72, 0x74,0x2c,0x6f,0x6e,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x3a,0x65,0x2e, 0x6f,0x6e,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x2c,0x6f,0x6e,0x44,0x72, 0x61,0x67,0x45,0x6e,0x64,0x3a,0x65,0x2e,0x6f,0x6e,0x44,0x72,0x61,0x67,0x45,0x6e, 0x64,0x2c,0x6f,0x6e,0x44,0x72,0x61,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x65, 0x2e,0x6f,0x6e,0x44,0x72,0x61,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x7d,0x7d,0x28, 0x73,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7d,0x29,0x2c,0x5b,0x73,0x5d, 0x29,0x2c,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x72, 0x62,0x64,0x2d,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2d, 0x22,0x2b,0x65,0x7d,0x28,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x6e, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66, 0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63, 0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x22,0x64,0x69,0x76, 0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x65,0x2c,0x65,0x2e,0x69,0x64,0x3d,0x74,0x2c,0x65,0x2e,0x73, 0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69, 0x61,0x2d,0x6c,0x69,0x76,0x65,0x22,0x2c,0x22,0x61,0x73,0x73,0x65,0x72,0x74,0x69, 0x76,0x65,0x22,0x29,0x2c,0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x61,0x74,0x6f,0x6d,0x69,0x63, 0x22,0x2c,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x61,0x2e,0x61,0x29,0x28,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c,0x71,0x72, 0x29,0x2c,0x47,0x72,0x28,0x29,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69, 0x6c,0x64,0x28,0x65,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x47,0x72, 0x28,0x29,0x3b,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x65,0x29, 0x26,0x26,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28, 0x65,0x29,0x2c,0x65,0x3d,0x3d,0x3d,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x26,0x26,0x28,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x74,0x5d,0x29,0x2c,0x63,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x74,0x26, 0x26,0x28,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d, 0x65,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x7d,0x28,0x74,0x29,0x2c,0x70,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2c,0x6e,0x3d,0x65, 0x2e,0x74,0x65,0x78,0x74,0x2c,0x6f,0x3d,0x51,0x72,0x28,0x22,0x68,0x69,0x64,0x64, 0x65,0x6e,0x2d,0x74,0x65,0x78,0x74,0x22,0x2c,0x7b,0x73,0x65,0x70,0x61,0x72,0x61, 0x74,0x6f,0x72,0x3a,0x22,0x2d,0x22,0x7d,0x29,0x2c,0x69,0x3d,0x75,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x72,0x62,0x64,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x2d,0x74,0x65,0x78, 0x74,0x2d,0x22,0x2b,0x28,0x65,0x3d,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49, 0x64,0x3a,0x74,0x2c,0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x3a,0x6f,0x7d,0x29, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2b,0x22,0x2d,0x22,0x2b,0x65, 0x2e,0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x3b,0x76,0x61,0x72,0x20,0x65,0x7d, 0x29,0x2c,0x5b,0x6f,0x2c,0x74,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63, 0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x22,0x64,0x69, 0x76,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x69,0x64,0x3d, 0x69,0x2c,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d, 0x6e,0x2c,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x2c,0x47,0x72,0x28,0x29,0x2e,0x61,0x70, 0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x65,0x29,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x47,0x72, 0x28,0x29,0x3b,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x65,0x29, 0x26,0x26,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28, 0x65,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x69,0x2c,0x6e,0x5d,0x29,0x2c,0x69,0x7d,0x28, 0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x3a,0x74,0x2c,0x74,0x65,0x78, 0x74,0x3a,0x63,0x7d,0x29,0x2c,0x68,0x3d,0x7a,0x72,0x28,0x74,0x2c,0x75,0x29,0x2c, 0x67,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x43,0x6f,0x28,0x6c,0x29,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68, 0x28,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x6d,0x3d,0x75,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x76,0x28,0x7b,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x57,0x68,0x69,0x6c, 0x65,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x62,0x6e,0x2c,0x75,0x70,0x64, 0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x53,0x63,0x72,0x6f, 0x6c,0x6c,0x3a,0x5f,0x6e,0x2c,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x49,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x77, 0x6e,0x2c,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x49,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x3a,0x4f,0x6e,0x2c,0x63,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53, 0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x3a,0x79,0x6e,0x7d,0x2c,0x67,0x29,0x7d,0x29, 0x2c,0x5b,0x67,0x5d,0x29,0x2c,0x62,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x75,0x65,0x28,0x48,0x72,0x2c,0x5b, 0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x71,0x75, 0x65,0x73,0x74,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d, 0x65,0x28,0x65,0x2e,0x63,0x6c,0x65,0x61,0x6e,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x65, 0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x2c,0x79,0x3d,0x75,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x75,0x72,0x28,0x62,0x2c,0x6d,0x29,0x7d,0x29,0x2c,0x5b,0x62,0x2c,0x6d,0x5d,0x29, 0x2c,0x5f,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x72,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57, 0x69,0x6e,0x64,0x6f,0x77,0x3a,0x6c,0x72,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x3a,0x79,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x7d,0x2c,0x76,0x28,0x7b,0x6d, 0x6f,0x76,0x65,0x3a,0x78,0x6e,0x7d,0x2c,0x67,0x29,0x29,0x29,0x7d,0x29,0x2c,0x5b, 0x79,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x2c,0x67,0x5d,0x29,0x2c,0x77,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x7b,0x7d,0x29,0x2c,0x6e, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66, 0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52, 0x65,0x66,0x29,0x28,0x21,0x31,0x29,0x2c,0x61,0x3d,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x7b,0x69,0x64,0x3a,0x65,0x2c,0x66,0x6f,0x63,0x75,0x73,0x3a,0x6e,0x7d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x5b,0x65,0x5d,0x3d,0x72,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3b,0x6e,0x5b,0x65,0x5d,0x21,0x3d,0x3d,0x72,0x26,0x26,0x64,0x65,0x6c,0x65, 0x74,0x65,0x20,0x6e,0x5b,0x65,0x5d,0x7d,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x75, 0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x24,0x72,0x28,0x65,0x2c,0x74,0x29,0x3b,0x6e, 0x26,0x26,0x6e,0x21,0x3d,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61, 0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x6e,0x2e, 0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x63, 0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x3d,0x3d,0x65, 0x26,0x26,0x28,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x74,0x29,0x7d, 0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x6c,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x7c,0x7c,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x6f,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6f,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x65,0x26,0x26,0x75,0x28,0x65,0x29, 0x7d,0x29,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x75,0x5d,0x29,0x2c,0x73,0x3d,0x63,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x63,0x74,0x69, 0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3b,0x74,0x26,0x26,0x74,0x2e,0x67, 0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x44,0x72,0x2e,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x29,0x3d,0x3d,0x3d,0x65,0x26, 0x26,0x28,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x65,0x29,0x7d,0x29, 0x2c,0x5b,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x30,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6f,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x65,0x26,0x26,0x63,0x61,0x6e,0x63,0x65,0x6c, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x28,0x65, 0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x75,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x72, 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x3a,0x61,0x2c,0x74,0x72,0x79,0x52,0x65,0x63, 0x6f,0x72,0x64,0x46,0x6f,0x63,0x75,0x73,0x3a,0x73,0x2c,0x74,0x72,0x79,0x52,0x65, 0x73,0x74,0x6f,0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x52,0x65,0x63,0x6f,0x72,0x64, 0x65,0x64,0x3a,0x6c,0x2c,0x74,0x72,0x79,0x53,0x68,0x69,0x66,0x74,0x52,0x65,0x63, 0x6f,0x72,0x64,0x3a,0x63,0x7d,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x73,0x2c,0x6c,0x2c, 0x63,0x5d,0x29,0x7d,0x28,0x74,0x29,0x2c,0x4f,0x3d,0x75,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x72,0x28,0x7b,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x3a,0x64,0x2c,0x61, 0x75,0x74,0x6f,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x5f,0x2c,0x64,0x69, 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x3a,0x79, 0x2c,0x66,0x6f,0x63,0x75,0x73,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x3a,0x77,0x2c, 0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,0x73,0x3a,0x66,0x2c, 0x73,0x74,0x79,0x6c,0x65,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x3a,0x68,0x7d,0x29, 0x7d,0x29,0x2c,0x5b,0x64,0x2c,0x5f,0x2c,0x79,0x2c,0x77,0x2c,0x66,0x2c,0x68,0x5d, 0x29,0x3b,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x4f,0x3b,0x76,0x61, 0x72,0x20,0x45,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x43,0x6f,0x28,0x6c,0x29,0x3b,0x22, 0x49,0x44,0x4c,0x45,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x67,0x65,0x74,0x53,0x74,0x61, 0x74,0x65,0x28,0x29,0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x65,0x2e,0x64,0x69, 0x73,0x70,0x61,0x74,0x63,0x68,0x28,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x46,0x4c, 0x55,0x53,0x48,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x6a,0x3d,0x63,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x43,0x6f,0x28,0x6c,0x29,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x69,0x73,0x44,0x72,0x61, 0x67,0x67,0x69,0x6e,0x67,0x7c,0x7c,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49, 0x4d,0x41,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x68,0x61,0x73, 0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x3b,0x6e,0x28,0x75,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x6a,0x2c,0x74,0x72,0x79, 0x41,0x62,0x6f,0x72,0x74,0x3a,0x45,0x7d,0x7d,0x29,0x2c,0x5b,0x6a,0x2c,0x45,0x5d, 0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x6b,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x63,0x72,0x28,0x43,0x6f,0x28,0x6c,0x29,0x2e,0x67,0x65,0x74,0x53,0x74,0x61,0x74, 0x65,0x28,0x29,0x2c,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x53,0x3d,0x63, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x51,0x74,0x28,0x43,0x6f,0x28,0x6c,0x29,0x2e,0x67,0x65, 0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c, 0x43,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6d,0x61,0x72,0x73,0x68,0x61,0x6c,0x3a, 0x79,0x2c,0x66,0x6f,0x63,0x75,0x73,0x3a,0x77,0x2c,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x49,0x64,0x3a,0x74,0x2c,0x63,0x61,0x6e,0x4c,0x69,0x66,0x74,0x3a,0x6b,0x2c, 0x69,0x73,0x4d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65, 0x64,0x3a,0x53,0x2c,0x64,0x72,0x61,0x67,0x48,0x61,0x6e,0x64,0x6c,0x65,0x55,0x73, 0x61,0x67,0x65,0x49,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x69,0x6f,0x6e,0x73,0x49, 0x64,0x3a,0x70,0x2c,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3a,0x62,0x7d,0x7d, 0x29,0x2c,0x5b,0x74,0x2c,0x79,0x2c,0x70,0x2c,0x77,0x2c,0x6b,0x2c,0x53,0x2c,0x62, 0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x6f,0x28,0x7b,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x3a,0x74,0x2c,0x73,0x74,0x6f,0x72,0x65,0x3a, 0x4f,0x2c,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x3a,0x62,0x2c,0x63,0x75,0x73, 0x74,0x6f,0x6d,0x53,0x65,0x6e,0x73,0x6f,0x72,0x73,0x3a,0x69,0x2c,0x65,0x6e,0x61, 0x62,0x6c,0x65,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x53,0x65,0x6e,0x73,0x6f,0x72, 0x73,0x3a,0x21,0x31,0x21,0x3d,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x53,0x65,0x6e,0x73,0x6f,0x72,0x73,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x7d,0x29,0x2c,0x5b,0x45,0x5d,0x29,0x2c, 0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x58,0x72,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x43,0x7d,0x2c,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x78,0x2c,0x7b,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3a,0x56,0x72,0x2c,0x73,0x74,0x6f,0x72,0x65,0x3a,0x4f,0x7d, 0x2c,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x7d,0x76,0x61, 0x72,0x20,0x54,0x6f,0x3d,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x50,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x75,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x22,0x2b,0x54,0x6f,0x2b,0x2b,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x6e, 0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x48,0x61,0x6e,0x64,0x6c,0x65,0x55,0x73,0x61, 0x67,0x65,0x49,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x69,0x6f,0x6e,0x73,0x7c,0x7c, 0x52,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x54,0x65,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x41,0x6f,0x2c,0x7b,0x6e,0x6f, 0x6e,0x63,0x65,0x3a,0x65,0x2e,0x6e,0x6f,0x6e,0x63,0x65,0x2c,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x49,0x64,0x3a,0x74,0x2c,0x73,0x65,0x74,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x73,0x3a,0x72,0x2c,0x64,0x72,0x61,0x67,0x48,0x61,0x6e,0x64,0x6c, 0x65,0x55,0x73,0x61,0x67,0x65,0x49,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x69,0x6f, 0x6e,0x73,0x3a,0x6e,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x53,0x65,0x6e,0x73,0x6f,0x72,0x73,0x3a,0x65,0x2e,0x65,0x6e,0x61,0x62, 0x6c,0x65,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x53,0x65,0x6e,0x73,0x6f,0x72,0x73, 0x2c,0x73,0x65,0x6e,0x73,0x6f,0x72,0x73,0x3a,0x65,0x2e,0x73,0x65,0x6e,0x73,0x6f, 0x72,0x73,0x2c,0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x43,0x61,0x70,0x74,0x75, 0x72,0x65,0x3a,0x65,0x2e,0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x43,0x61,0x70, 0x74,0x75,0x72,0x65,0x2c,0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x44,0x72,0x61, 0x67,0x53,0x74,0x61,0x72,0x74,0x3a,0x65,0x2e,0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72, 0x65,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x2c,0x6f,0x6e,0x44,0x72,0x61, 0x67,0x53,0x74,0x61,0x72,0x74,0x3a,0x65,0x2e,0x6f,0x6e,0x44,0x72,0x61,0x67,0x53, 0x74,0x61,0x72,0x74,0x2c,0x6f,0x6e,0x44,0x72,0x61,0x67,0x55,0x70,0x64,0x61,0x74, 0x65,0x3a,0x65,0x2e,0x6f,0x6e,0x44,0x72,0x61,0x67,0x55,0x70,0x64,0x61,0x74,0x65, 0x2c,0x6f,0x6e,0x44,0x72,0x61,0x67,0x45,0x6e,0x64,0x3a,0x65,0x2e,0x6f,0x6e,0x44, 0x72,0x61,0x67,0x45,0x6e,0x64,0x7d,0x2c,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x44,0x6f,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x7d,0x7d,0x2c,0x4e,0x6f,0x3d,0x44, 0x6f,0x28,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x29,0x2c,0x49,0x6f,0x3d,0x44, 0x6f,0x28,0x22,0x61,0x75,0x74,0x6f,0x22,0x29,0x2c,0x52,0x6f,0x3d,0x28,0x44,0x6f, 0x28,0x22,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x22,0x29,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x28,0x65,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x58,0x29,0x7c, 0x7c,0x74,0x28,0x65,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x59,0x29,0x7d, 0x29,0x2c,0x4c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x67,0x65, 0x74,0x43,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64,0x53,0x74,0x79,0x6c,0x65,0x28,0x65, 0x29,0x2c,0x6e,0x3d,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x58,0x3a,0x74, 0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x58,0x2c,0x6f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x59,0x3a,0x74,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x59, 0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x6f,0x28,0x6e,0x2c,0x4e,0x6f, 0x29,0x7c,0x7c,0x52,0x6f,0x28,0x6e,0x2c,0x49,0x6f,0x29,0x7d,0x2c,0x46,0x6f,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x7c,0x7c,0x74,0x3d, 0x3d,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x7c, 0x7c,0x74,0x3d,0x3d,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3f,0x6e,0x75, 0x6c,0x6c,0x3a,0x4c,0x6f,0x28,0x74,0x29,0x3f,0x74,0x3a,0x65,0x28,0x74,0x2e,0x70, 0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x7d,0x2c,0x4d, 0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x78,0x3a,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c, 0x65,0x66,0x74,0x2c,0x79,0x3a,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f, 0x70,0x7d,0x7d,0x2c,0x42,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x74,0x26,0x26, 0x28,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64,0x53,0x74,0x79, 0x6c,0x65,0x28,0x74,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7c,0x7c, 0x65,0x28,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x29,0x29,0x7d,0x2c,0x7a,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x6c,0x6f,0x73,0x65, 0x73,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x3a,0x46,0x6f,0x28, 0x65,0x29,0x2c,0x69,0x73,0x46,0x69,0x78,0x65,0x64,0x4f,0x6e,0x50,0x61,0x67,0x65, 0x3a,0x42,0x6f,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x55,0x6f,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x72,0x65,0x66,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2c,0x72,0x3d,0x65,0x2e,0x65,0x6e,0x76,0x2c,0x6f,0x3d,0x65,0x2e,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x69,0x3d,0x65,0x2e, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x61,0x3d,0x65,0x2e,0x69,0x73, 0x44,0x72,0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x75,0x3d,0x65, 0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x2c,0x63,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x43,0x6c,0x69,0x70, 0x53,0x75,0x62,0x6a,0x65,0x63,0x74,0x2c,0x6c,0x3d,0x72,0x2e,0x63,0x6c,0x6f,0x73, 0x65,0x73,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x2c,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x79,0x65,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x21,0x74,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x69,0x66,0x28,0x65,0x21,0x3d,0x3d, 0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x42,0x6f,0x78,0x2e,0x74,0x6f, 0x70,0x2d,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x2c,0x6f,0x3d, 0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x42,0x6f,0x78,0x2e,0x6c,0x65,0x66, 0x74,0x2d,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2c,0x69, 0x3d,0x72,0x2b,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68, 0x74,0x2c,0x61,0x3d,0x6f,0x2b,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69, 0x64,0x74,0x68,0x2c,0x75,0x3d,0x66,0x65,0x28,0x7b,0x74,0x6f,0x70,0x3a,0x72,0x2c, 0x72,0x69,0x67,0x68,0x74,0x3a,0x61,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x69, 0x2c,0x6c,0x65,0x66,0x74,0x3a,0x6f,0x7d,0x2c,0x6e,0x2e,0x62,0x6f,0x72,0x64,0x65, 0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x28,0x7b,0x62,0x6f, 0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x3a,0x75,0x2c,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x3a,0x6e,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72, 0x3a,0x6e,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x3a,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x7d,0x29,0x7d,0x28,0x74, 0x2c,0x6c,0x29,0x2c,0x66,0x3d,0x6d,0x65,0x28,0x73,0x2c,0x6f,0x29,0x2c,0x64,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x6c, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x79,0x65,0x28,0x6c,0x29,0x2c,0x74,0x3d,0x7b,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x6c,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69, 0x64,0x74,0x68,0x3a,0x6c,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74, 0x68,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x3a,0x65,0x2c,0x70,0x61,0x67,0x65,0x3a,0x6d,0x65,0x28,0x65,0x2c,0x6f,0x29,0x2c, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x4d,0x6f,0x28,0x6c,0x29,0x2c,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x53,0x69,0x7a,0x65,0x3a,0x74,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x43,0x6c,0x69,0x70,0x53,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x63,0x7d,0x7d,0x28, 0x29,0x2c,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x2c,0x6e,0x3d,0x65,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x2c,0x72,0x3d,0x65,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e, 0x61,0x62,0x6c,0x65,0x64,0x2c,0x6f,0x3d,0x65,0x2e,0x69,0x73,0x46,0x69,0x78,0x65, 0x64,0x4f,0x6e,0x50,0x61,0x67,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x64,0x69,0x72,0x65, 0x63,0x74,0x69,0x6f,0x6e,0x2c,0x61,0x3d,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x2c,0x75,0x3d,0x65,0x2e,0x70,0x61,0x67,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x6c, 0x6f,0x73,0x65,0x73,0x74,0x2c,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x63,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x53,0x69,0x7a,0x65,0x2c,0x74,0x3d,0x63,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x2c,0x6e,0x3d,0x6e,0x72,0x28,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48, 0x65,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65, 0x69,0x67,0x68,0x74,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68, 0x3a,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68,0x2c,0x68, 0x65,0x69,0x67,0x68,0x74,0x3a,0x74,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x42, 0x6f,0x78,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a, 0x74,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x42,0x6f,0x78,0x2e,0x77,0x69,0x64, 0x74,0x68,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x70,0x61,0x67,0x65, 0x4d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x3a,0x63,0x2e,0x70,0x61,0x67,0x65, 0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x2c,0x66,0x72,0x61,0x6d,0x65, 0x43,0x6c,0x69,0x65,0x6e,0x74,0x3a,0x74,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x53, 0x69,0x7a,0x65,0x3a,0x65,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x43,0x6c,0x69,0x70, 0x53,0x75,0x62,0x6a,0x65,0x63,0x74,0x3a,0x63,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64, 0x43,0x6c,0x69,0x70,0x53,0x75,0x62,0x6a,0x65,0x63,0x74,0x2c,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x3a,0x7b,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x3a,0x63,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x2c,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x63,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x6d,0x61,0x78,0x3a,0x6e,0x2c,0x64,0x69,0x66,0x66, 0x3a,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x42,0x65,0x2c,0x64,0x69,0x73,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x42,0x65,0x7d,0x7d,0x7d,0x7d,0x28,0x29, 0x2c,0x73,0x3d,0x22,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x22,0x3d,0x3d,0x3d, 0x69,0x3f,0x62,0x74,0x3a,0x79,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x3a,0x74,0x2c,0x69,0x73,0x43,0x6f, 0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x72,0x2c,0x69, 0x73,0x46,0x69,0x78,0x65,0x64,0x4f,0x6e,0x50,0x61,0x67,0x65,0x3a,0x6f,0x2c,0x61, 0x78,0x69,0x73,0x3a,0x73,0x2c,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a, 0x6e,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x3a,0x61,0x2c,0x70,0x61,0x67,0x65,0x3a, 0x75,0x2c,0x66,0x72,0x61,0x6d,0x65,0x3a,0x6c,0x2c,0x73,0x75,0x62,0x6a,0x65,0x63, 0x74,0x3a,0x58,0x65,0x28,0x7b,0x70,0x61,0x67,0x65,0x3a,0x75,0x2c,0x77,0x69,0x74, 0x68,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x6e,0x75,0x6c, 0x6c,0x2c,0x61,0x78,0x69,0x73,0x3a,0x73,0x2c,0x66,0x72,0x61,0x6d,0x65,0x3a,0x6c, 0x7d,0x29,0x7d,0x7d,0x28,0x7b,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x3a,0x6e,0x2c,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x61,0x2c, 0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x3a,0x75,0x2c,0x69,0x73,0x46,0x69,0x78,0x65,0x64,0x4f,0x6e,0x50,0x61,0x67,0x65, 0x3a,0x72,0x2e,0x69,0x73,0x46,0x69,0x78,0x65,0x64,0x4f,0x6e,0x50,0x61,0x67,0x65, 0x2c,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x69,0x2c,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x3a,0x73,0x2c,0x70,0x61,0x67,0x65,0x3a,0x66,0x2c,0x63,0x6c,0x6f, 0x73,0x65,0x73,0x74,0x3a,0x64,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x70,0x7d,0x2c,0x57,0x6f,0x3d,0x7b,0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21, 0x31,0x7d,0x2c,0x24,0x6f,0x3d,0x7b,0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21, 0x30,0x7d,0x2c,0x48,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74, 0x65,0x6c,0x79,0x3f,0x57,0x6f,0x3a,0x24,0x6f,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x56,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x29,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x74,0x7d,0x76,0x61,0x72,0x20,0x47, 0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x65,0x6e,0x76,0x2e,0x63,0x6c, 0x6f,0x73,0x65,0x73,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x7c, 0x7c,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x71,0x6f,0x28,0x29,0x7b,0x7d,0x76,0x61,0x72,0x20,0x4b,0x6f,0x3d,0x7b,0x77,0x69, 0x64,0x74,0x68,0x3a,0x30,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x3a,0x7b,0x74,0x6f,0x70,0x3a,0x30,0x2c,0x72,0x69,0x67, 0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x30,0x2c,0x6c,0x65, 0x66,0x74,0x3a,0x30,0x7d,0x7d,0x2c,0x59,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x4f,0x70,0x65,0x6e,0x4f,0x6e,0x4d, 0x6f,0x75,0x6e,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f, 0x6c,0x64,0x65,0x72,0x2c,0x72,0x3d,0x65,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69, 0x6e,0x67,0x4f,0x70,0x65,0x6e,0x4f,0x6e,0x4d,0x6f,0x75,0x6e,0x74,0x2c,0x6e,0x3d, 0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x72,0x3d, 0x65,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x7c,0x7c,0x22,0x63,0x6c,0x6f,0x73,0x65,0x22,0x3d,0x3d,0x3d,0x72,0x3f, 0x4b,0x6f,0x3a,0x7b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x6e,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x68,0x65, 0x69,0x67,0x68,0x74,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x77,0x69, 0x64,0x74,0x68,0x2c,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x6e,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x7d,0x7d,0x28,0x7b,0x69,0x73, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x4f,0x70,0x65,0x6e,0x4f,0x6e,0x4d, 0x6f,0x75,0x6e,0x74,0x3a,0x74,0x2c,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x3a,0x6e,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x72,0x7d,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2c,0x62,0x6f,0x78,0x53,0x69,0x7a, 0x69,0x6e,0x67,0x3a,0x22,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x78,0x22, 0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x6f,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x68, 0x65,0x69,0x67,0x68,0x74,0x3a,0x6f,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x6d, 0x61,0x72,0x67,0x69,0x6e,0x54,0x6f,0x70,0x3a,0x6f,0x2e,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2e,0x74,0x6f,0x70,0x2c,0x6d,0x61,0x72,0x67,0x69,0x6e,0x52,0x69,0x67,0x68, 0x74,0x3a,0x6f,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2e,0x72,0x69,0x67,0x68,0x74, 0x2c,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x6f,0x2e, 0x6d,0x61,0x72,0x67,0x69,0x6e,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x4c,0x65,0x66,0x74,0x3a,0x6f,0x2e,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x66,0x6c,0x65,0x78,0x53,0x68,0x72,0x69,0x6e, 0x6b,0x3a,0x22,0x30,0x22,0x2c,0x66,0x6c,0x65,0x78,0x47,0x72,0x6f,0x77,0x3a,0x22, 0x30,0x22,0x2c,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x76,0x65,0x6e,0x74,0x73, 0x3a,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x2c,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x21,0x3d,0x3d,0x72,0x3f,0x52,0x6e, 0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x51,0x6f,0x3d,0x6f,0x2e,0x61,0x2e,0x6d, 0x65,0x6d,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x6e,0x3d, 0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x63,0x6c,0x65,0x61,0x72, 0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x29,0x2c,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x69,0x3d,0x65,0x2e,0x61,0x6e,0x69, 0x6d,0x61,0x74,0x65,0x2c,0x61,0x3d,0x65,0x2e,0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x2c,0x75,0x3d,0x65,0x2e,0x6f,0x6e,0x43, 0x6c,0x6f,0x73,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x49,0x64,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73, 0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x22,0x6f,0x70,0x65,0x6e,0x22,0x3d,0x3d, 0x3d,0x65,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x29,0x2c,0x73,0x3d,0x6c,0x5b, 0x30,0x5d,0x2c,0x66,0x3d,0x6c,0x5b,0x31,0x5d,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x73,0x3f,0x22,0x6f,0x70,0x65,0x6e,0x22,0x21,0x3d,0x3d,0x69,0x3f,0x28,0x6e, 0x28,0x29,0x2c,0x66,0x28,0x21,0x31,0x29,0x2c,0x71,0x6f,0x29,0x3a,0x74,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3f,0x71,0x6f,0x3a,0x28,0x74,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x28,0x21,0x31,0x29, 0x7d,0x29,0x29,0x2c,0x6e,0x29,0x3a,0x71,0x6f,0x7d,0x29,0x2c,0x5b,0x69,0x2c,0x73, 0x2c,0x6e,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x63,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x68,0x65,0x69,0x67, 0x68,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x4e,0x61,0x6d,0x65,0x26,0x26,0x28,0x61,0x28,0x29,0x2c,0x22,0x63,0x6c,0x6f,0x73, 0x65,0x22,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x75,0x28,0x29,0x29,0x7d,0x29,0x2c,0x5b, 0x69,0x2c,0x75,0x2c,0x61,0x5d,0x29,0x2c,0x70,0x3d,0x59,0x6f,0x28,0x7b,0x69,0x73, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x4f,0x70,0x65,0x6e,0x4f,0x6e,0x4d, 0x6f,0x75,0x6e,0x74,0x3a,0x73,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x65, 0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x2c,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f, 0x6c,0x64,0x65,0x72,0x3a,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e, 0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x65,0x2e, 0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x74,0x61,0x67,0x4e, 0x61,0x6d,0x65,0x2c,0x7b,0x73,0x74,0x79,0x6c,0x65,0x3a,0x70,0x2c,0x22,0x64,0x61, 0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64, 0x65,0x72,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2d,0x69,0x64,0x22,0x3a,0x63, 0x2c,0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64, 0x3a,0x64,0x2c,0x72,0x65,0x66,0x3a,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65, 0x66,0x7d,0x29,0x7d,0x29,0x29,0x2c,0x58,0x6f,0x3d,0x6f,0x2e,0x61,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x6e,0x75,0x6c,0x6c, 0x29,0x3b,0x76,0x61,0x72,0x20,0x4a,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x72, 0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x6e,0x29,0x2c,0x6f,0x3d, 0x30,0x3b,0x6f,0x3c,0x6e,0x3b,0x6f,0x2b,0x2b,0x29,0x72,0x5b,0x6f,0x5d,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6f,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x74,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x65,0x2c,0x5b,0x74,0x68,0x69,0x73,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x72,0x29,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e,0x73,0x74,0x61, 0x74,0x65,0x3d,0x7b,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x42,0x6f, 0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f,0x6e, 0x29,0x2c,0x64,0x61,0x74,0x61,0x3a,0x74,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f, 0x6e,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x74,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x26, 0x26,0x74,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f,0x6e,0x3f,0x22,0x6f,0x70,0x65, 0x6e,0x22,0x3a,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x7d,0x2c,0x74,0x2e,0x6f,0x6e,0x43, 0x6c,0x6f,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x22,0x63,0x6c,0x6f,0x73,0x65,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74, 0x65,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x26,0x26,0x74,0x2e,0x73,0x65,0x74, 0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65, 0x3a,0x21,0x31,0x7d,0x29,0x7d,0x2c,0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x2c,0x65,0x29, 0x2c,0x74,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x3f,0x65,0x2e,0x6f,0x6e,0x3f,0x7b,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65, 0x3a,0x21,0x30,0x2c,0x64,0x61,0x74,0x61,0x3a,0x65,0x2e,0x6f,0x6e,0x2c,0x61,0x6e, 0x69,0x6d,0x61,0x74,0x65,0x3a,0x22,0x6f,0x70,0x65,0x6e,0x22,0x7d,0x3a,0x74,0x2e, 0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3f,0x7b,0x69,0x73,0x56,0x69,0x73, 0x69,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x64,0x61,0x74,0x61,0x3a,0x74,0x2e,0x64, 0x61,0x74,0x61,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x22,0x63,0x6c,0x6f, 0x73,0x65,0x22,0x7d,0x3a,0x7b,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a, 0x21,0x31,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x22,0x63,0x6c,0x6f,0x73, 0x65,0x22,0x2c,0x64,0x61,0x74,0x61,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3a,0x7b,0x69, 0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e, 0x28,0x65,0x2e,0x6f,0x6e,0x29,0x2c,0x64,0x61,0x74,0x61,0x3a,0x65,0x2e,0x6f,0x6e, 0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x7d, 0x7d,0x2c,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x65, 0x6e,0x64,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x2e,0x69, 0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x7b,0x6f,0x6e,0x43,0x6c, 0x6f,0x73,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6f,0x6e,0x43,0x6c,0x6f,0x73,0x65, 0x2c,0x64,0x61,0x74,0x61,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65, 0x2e,0x64,0x61,0x74,0x61,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x74,0x68, 0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x72, 0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x28,0x65,0x29,0x7d, 0x2c,0x74,0x7d,0x28,0x6f,0x2e,0x61,0x2e,0x50,0x75,0x72,0x65,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x29,0x2c,0x5a,0x6f,0x3d,0x35,0x65,0x33,0x2c,0x65,0x69, 0x3d,0x34,0x35,0x30,0x30,0x2c,0x74,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3f, 0x52,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x28,0x74,0x2e,0x64,0x75,0x72,0x61,0x74,0x69, 0x6f,0x6e,0x29,0x3a,0x65,0x3f,0x52,0x6e,0x2e,0x73,0x6e,0x61,0x70,0x3a,0x52,0x6e, 0x2e,0x66,0x6c,0x75,0x69,0x64,0x7d,0x2c,0x6e,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x3f,0x74,0x3f,0x44,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x3a,0x44,0x6e,0x2e,0x63, 0x6f,0x6d,0x62,0x69,0x6e,0x69,0x6e,0x67,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x69,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d, 0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65, 0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2c,0x6e,0x3d,0x65, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x72,0x3d,0x65,0x2e,0x63,0x6f,0x6d,0x62, 0x69,0x6e,0x65,0x57,0x69,0x74,0x68,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x69,0x6e,0x67,0x2c,0x69,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x72, 0x29,0x2c,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x2e,0x66, 0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74, 0x65,0x3f,0x65,0x2e,0x66,0x6f,0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x22,0x53,0x4e,0x41,0x50,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x6d,0x6f,0x64,0x65,0x7d,0x28,0x65,0x29,0x2c,0x75,0x3d,0x42,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x28,0x6f,0x29,0x2c,0x63,0x3d,0x75,0x3f,0x4d,0x6e,0x28,0x6e, 0x2c,0x69,0x29,0x3a,0x46,0x6e,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x66,0x69,0x78,0x65,0x64, 0x22,0x2c,0x74,0x6f,0x70,0x3a,0x74,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f, 0x78,0x2e,0x74,0x6f,0x70,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x74,0x2e,0x6d,0x61,0x72, 0x67,0x69,0x6e,0x42,0x6f,0x78,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x62,0x6f,0x78,0x53, 0x69,0x7a,0x69,0x6e,0x67,0x3a,0x22,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f, 0x78,0x22,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65, 0x72,0x42,0x6f,0x78,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x74,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x78,0x2e,0x68,0x65, 0x69,0x67,0x68,0x74,0x2c,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x74,0x69,0x28,0x61,0x2c,0x6f,0x29,0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x3a,0x63,0x2c,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x6e,0x69,0x28,0x69, 0x2c,0x75,0x29,0x2c,0x7a,0x49,0x6e,0x64,0x65,0x78,0x3a,0x75,0x3f,0x65,0x69,0x3a, 0x5a,0x6f,0x2c,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x76,0x65,0x6e,0x74,0x73, 0x3a,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x7d,0x7d,0x28,0x65,0x29,0x3a,0x7b,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x46,0x6e,0x28,0x28,0x74,0x3d,0x65,0x29, 0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x29,0x2c,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x74,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d, 0x61,0x74,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3f, 0x6e,0x75,0x6c,0x6c,0x3a,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x69,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x51,0x72,0x28,0x22,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x22,0x29,0x2c,0x6e,0x3d,0x65,0x2e,0x64,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x72,0x65,0x67,0x69,0x73, 0x74,0x72,0x79,0x2c,0x69,0x3d,0x65,0x2e,0x67,0x65,0x74,0x44,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x52,0x65,0x66,0x2c,0x61,0x3d,0x65,0x2e,0x63,0x61,0x6e,0x44, 0x72,0x61,0x67,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72,0x65, 0x73,0x73,0x2c,0x63,0x3d,0x65,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x2c,0x6c,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x61,0x6e,0x44,0x72,0x61,0x67, 0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x73,0x3a,0x61,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x52,0x65,0x73,0x70, 0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73,0x73,0x3a,0x75,0x2c, 0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x63,0x7d,0x7d,0x29,0x2c,0x5b, 0x61,0x2c,0x63,0x2c,0x75,0x5d,0x29,0x2c,0x73,0x3d,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x69,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c,0x41,0x65, 0x28,0x21,0x31,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26, 0x26,0x28,0x6e,0x3d,0x42,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64, 0x53,0x74,0x79,0x6c,0x65,0x28,0x74,0x29,0x2c,0x6f,0x3d,0x74,0x2e,0x67,0x65,0x74, 0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65, 0x63,0x74,0x28,0x29,0x2c,0x69,0x3d,0x62,0x65,0x28,0x6f,0x2c,0x72,0x29,0x2c,0x61, 0x3d,0x6d,0x65,0x28,0x69,0x2c,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x3a,0x65,0x2c,0x70,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x3a,0x69,0x2c,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x3a,0x74,0x2e,0x74,0x61,0x67, 0x4e,0x61,0x6d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65, 0x28,0x29,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x72,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x7d,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x42,0x79, 0x3a,0x7b,0x78,0x3a,0x69,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x78,0x2e, 0x77,0x69,0x64,0x74,0x68,0x2c,0x79,0x3a,0x69,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e, 0x42,0x6f,0x78,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x7d,0x2c,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x3a,0x69,0x2c,0x70,0x61,0x67,0x65,0x3a,0x61,0x7d,0x7d,0x28,0x6e,0x2c, 0x74,0x2c,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x6e,0x2c,0x69,0x5d,0x29,0x2c,0x66,0x3d, 0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x75,0x6e,0x69,0x71,0x75,0x65,0x49,0x64,0x3a,0x74, 0x2c,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x3a,0x6e,0x2c,0x6f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x3a,0x6c,0x2c,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e, 0x73,0x69,0x6f,0x6e,0x3a,0x73,0x7d,0x7d,0x29,0x2c,0x5b,0x6e,0x2c,0x73,0x2c,0x6c, 0x2c,0x74,0x5d,0x29,0x2c,0x64,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x66,0x29,0x2c,0x70,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21,0x30, 0x29,0x3b,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x2e,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x28,0x64,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x2e,0x75,0x6e,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72, 0x28,0x64,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7d,0x7d,0x29,0x2c,0x5b, 0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x5d,0x29,0x2c,0x46,0x72, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28, 0x70,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x70,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x21,0x31,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x64,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x64,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x66,0x2c,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x66,0x2c,0x65,0x29,0x7d, 0x7d,0x29,0x2c,0x5b,0x66,0x2c,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x69,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x5a,0x72,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x61,0x69,0x28,0x65,0x29,0x7b,0x65,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x7d,0x76,0x61, 0x72,0x20,0x75,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74,0x7d, 0x2c,0x63,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2c, 0x6e,0x3d,0x65,0x2e,0x64,0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x74,0x3f,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x69,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x21,0x31, 0x2c,0x69,0x73,0x44,0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67, 0x3a,0x21,0x31,0x2c,0x69,0x73,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x21,0x31,0x2c,0x64, 0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x75,0x6c, 0x6c,0x2c,0x6d,0x6f,0x64,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64,0x72,0x61,0x67, 0x67,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x63,0x6f, 0x6d,0x62,0x69,0x6e,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x46,0x6f,0x72,0x3a,0x65, 0x2c,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x57,0x69,0x74,0x68,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x7d,0x76,0x61,0x72,0x20,0x73,0x69,0x3d,0x7b,0x6d,0x61,0x70,0x70,0x65, 0x64,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x43,0x4f,0x4e,0x44,0x41, 0x52,0x59,0x22,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x42,0x65,0x2c,0x63,0x6f, 0x6d,0x62,0x69,0x6e,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x46,0x6f,0x72,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74, 0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x21,0x30, 0x2c,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x3a,0x6c,0x69,0x28,0x6e,0x75,0x6c, 0x6c,0x29,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x66,0x69,0x3d,0x6e,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x78,0x3a,0x65,0x2c,0x79, 0x3a,0x74,0x7d,0x7d,0x29,0x29,0x2c,0x74,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x3a,0x21,0x30,0x2c,0x69,0x73,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x74,0x2c, 0x69,0x73,0x44,0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6e,0x67,0x3a, 0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x6f,0x29,0x2c,0x64,0x72,0x6f,0x70,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x2c,0x6d,0x6f,0x64,0x65,0x3a, 0x65,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x3a,0x6e, 0x2c,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x57,0x69,0x74,0x68,0x3a,0x72,0x2c,0x63, 0x6f,0x6d,0x62,0x69,0x6e,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x46,0x6f,0x72,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x29,0x29,0x2c,0x6e,0x3d,0x4f,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c, 0x69,0x2c,0x61,0x2c,0x75,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6d,0x61, 0x70,0x70,0x65,0x64,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x41,0x47, 0x47,0x49,0x4e,0x47,0x22,0x2c,0x64,0x72,0x6f,0x70,0x70,0x69,0x6e,0x67,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72, 0x3a,0x69,0x2c,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x57,0x69,0x74,0x68,0x3a,0x61, 0x2c,0x6d,0x6f,0x64,0x65,0x3a,0x6e,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x65, 0x2c,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3a,0x72,0x2c,0x66,0x6f,0x72, 0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a, 0x75,0x2c,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x3a,0x74,0x28,0x6e,0x2c,0x6f, 0x2c,0x69,0x2c,0x61,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d,0x7d,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x72,0x2c,0x6f,0x29,0x7b,0x69,0x66,0x28,0x72,0x2e,0x69,0x73,0x44,0x72,0x61,0x67, 0x67,0x69,0x6e,0x67,0x29,0x7b,0x69,0x66,0x28,0x72,0x2e,0x63,0x72,0x69,0x74,0x69, 0x63,0x61,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64, 0x21,0x3d,0x3d,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x72,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x61,0x3d,0x72,0x2e,0x64, 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x73,0x5b,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x49,0x64,0x5d,0x2c,0x75,0x3d,0x4b,0x74,0x28,0x72,0x2e,0x69,0x6d,0x70,0x61,0x63, 0x74,0x29,0x2c,0x63,0x3d,0x28,0x73,0x3d,0x72,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74, 0x29,0x2e,0x61,0x74,0x26,0x26,0x22,0x43,0x4f,0x4d,0x42,0x49,0x4e,0x45,0x22,0x3d, 0x3d,0x3d,0x73,0x2e,0x61,0x74,0x2e,0x74,0x79,0x70,0x65,0x3f,0x73,0x2e,0x61,0x74, 0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x49,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x3d,0x72,0x2e,0x66,0x6f, 0x72,0x63,0x65,0x53,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x65,0x28,0x69,0x2e,0x78,0x2c, 0x69,0x2e,0x79,0x29,0x2c,0x72,0x2e,0x6d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x4d, 0x6f,0x64,0x65,0x2c,0x61,0x2c,0x6f,0x2e,0x69,0x73,0x43,0x6c,0x6f,0x6e,0x65,0x2c, 0x75,0x2c,0x63,0x2c,0x6c,0x29,0x7d,0x76,0x61,0x72,0x20,0x73,0x3b,0x69,0x66,0x28, 0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47,0x22, 0x3d,0x3d,0x3d,0x72,0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x66,0x3d,0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3b,0x69,0x66, 0x28,0x66,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x49,0x64,0x21,0x3d,0x3d,0x6f,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x49,0x64,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x6f,0x2e,0x69,0x73,0x43,0x6c,0x6f,0x6e, 0x65,0x2c,0x70,0x3d,0x72,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x6f,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d,0x2c,0x68,0x3d,0x66,0x2e,0x72, 0x65,0x73,0x75,0x6c,0x74,0x2c,0x76,0x3d,0x68,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x67, 0x3d,0x63,0x69,0x28,0x68,0x29,0x2c,0x6d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f, 0x6d,0x62,0x69,0x6e,0x65,0x3f,0x65,0x2e,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x28,0x68,0x29,0x2c,0x62,0x3d,0x7b,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x72,0x2e,0x64,0x72,0x6f,0x70,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2c, 0x63,0x75,0x72,0x76,0x65,0x3a,0x50,0x6e,0x2c,0x6d,0x6f,0x76,0x65,0x54,0x6f,0x3a, 0x72,0x2e,0x6e,0x65,0x77,0x48,0x6f,0x6d,0x65,0x43,0x6c,0x69,0x65,0x6e,0x74,0x4f, 0x66,0x66,0x73,0x65,0x74,0x2c,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x6d,0x3f, 0x44,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x63,0x61, 0x6c,0x65,0x3a,0x6d,0x3f,0x4e,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6d,0x61,0x70,0x70,0x65,0x64, 0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47, 0x22,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x72,0x2e,0x6e,0x65,0x77,0x48,0x6f, 0x6d,0x65,0x43,0x6c,0x69,0x65,0x6e,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x64, 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3a,0x70,0x2c,0x64,0x72,0x6f,0x70,0x70, 0x69,0x6e,0x67,0x3a,0x62,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x4f,0x76, 0x65,0x72,0x3a,0x67,0x2c,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x57,0x69,0x74,0x68, 0x3a,0x6d,0x2c,0x6d,0x6f,0x64,0x65,0x3a,0x76,0x2c,0x66,0x6f,0x72,0x63,0x65,0x53, 0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c, 0x6c,0x2c,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x3a,0x74,0x28,0x76,0x2c,0x64, 0x2c,0x67,0x2c,0x6d,0x2c,0x62,0x29,0x7d,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x28,0x29,0x2c,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x65,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x78,0x3a,0x65,0x2c,0x79,0x3a,0x74,0x7d,0x7d,0x29, 0x29,0x2c,0x74,0x3d,0x4f,0x65,0x28,0x6c,0x69,0x29,0x2c,0x6e,0x3d,0x4f,0x65,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x7b,0x6d,0x61, 0x70,0x70,0x65,0x64,0x3a,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x53,0x45,0x43,0x4f, 0x4e,0x44,0x41,0x52,0x59,0x22,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x65,0x2c, 0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x46,0x6f,0x72, 0x3a,0x6e,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x44,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x72,0x2c,0x73, 0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x3a,0x74,0x28,0x6e,0x29,0x7d,0x7d,0x7d,0x29, 0x29,0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x6e,0x28,0x42,0x65,0x2c,0x65,0x2c, 0x21,0x30,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x7b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x69,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x2e, 0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x5b,0x74,0x5d,0x2c,0x63,0x3d,0x42,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x28,0x61,0x2e,0x69,0x6e,0x56,0x69,0x72,0x74,0x75,0x61,0x6c, 0x4c,0x69,0x73,0x74,0x26,0x26,0x61,0x2e,0x65,0x66,0x66,0x65,0x63,0x74,0x65,0x64, 0x5b,0x74,0x5d,0x29,0x2c,0x6c,0x3d,0x6c,0x74,0x28,0x69,0x29,0x2c,0x73,0x3d,0x6c, 0x26,0x26,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3d, 0x3d,0x3d,0x74,0x3f,0x6f,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x21,0x75, 0x29,0x7b,0x69,0x66,0x28,0x21,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x28,0x73,0x29,0x3b,0x69,0x66,0x28,0x69,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63, 0x65,0x64,0x2e,0x69,0x6e,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x5b,0x74,0x5d,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20, 0x66,0x3d,0x24,0x65,0x28,0x61,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64, 0x42,0x79,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x29,0x2c,0x64,0x3d,0x65,0x28,0x66,0x2e, 0x78,0x2c,0x66,0x2e,0x79,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28, 0x64,0x2c,0x73,0x2c,0x21,0x30,0x29,0x7d,0x69,0x66,0x28,0x63,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x28,0x73,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x69, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x63,0x65,0x64,0x42,0x79,0x2e,0x70,0x6f,0x69, 0x6e,0x74,0x2c,0x68,0x3d,0x65,0x28,0x70,0x2e,0x78,0x2c,0x70,0x2e,0x79,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x68,0x2c,0x73,0x2c,0x75,0x2e,0x73, 0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x29,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x69,0x73,0x44,0x72,0x61,0x67,0x67, 0x69,0x6e,0x67,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x72,0x69, 0x74,0x69,0x63,0x61,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e, 0x69,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x49,0x64,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x6f,0x28,0x74,0x2e,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x65,0x2e,0x63,0x72,0x69,0x74,0x69,0x63, 0x61,0x6c,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x2c, 0x65,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x65,0x2e,0x61,0x66,0x74,0x65,0x72, 0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x3b,0x69,0x66,0x28,0x22,0x44,0x52, 0x4f,0x50,0x5f,0x41,0x4e,0x49,0x4d,0x41,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x49,0x64,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x6f,0x28,0x74,0x2e, 0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x6e,0x2e,0x72,0x65, 0x73,0x75,0x6c,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64, 0x2c,0x6e,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2c,0x6e,0x2e,0x61,0x66,0x74,0x65, 0x72,0x43,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x6e,0x2c,0x72,0x29,0x7c,0x7c,0x74, 0x28,0x6e,0x2c,0x72,0x29,0x7c,0x7c,0x73,0x69,0x7d,0x7d,0x29,0x2c,0x7b,0x64,0x72, 0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x69,0x6e,0x69,0x73, 0x68,0x65,0x64,0x3a,0x54,0x6e,0x7d,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x7b,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x3a,0x56,0x72,0x2c,0x70,0x75,0x72,0x65,0x3a,0x21,0x30, 0x2c,0x61,0x72,0x65,0x53,0x74,0x61,0x74,0x65,0x50,0x72,0x6f,0x70,0x73,0x45,0x71, 0x75,0x61,0x6c,0x3a,0x75,0x69,0x7d,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c, 0x6c,0x29,0x2c,0x6e,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x65, 0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x6f,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x69, 0x3d,0x56,0x6f,0x28,0x58,0x72,0x29,0x2c,0x61,0x3d,0x69,0x2e,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x49,0x64,0x2c,0x75,0x3d,0x69,0x2e,0x64,0x72,0x61,0x67,0x48,0x61, 0x6e,0x64,0x6c,0x65,0x55,0x73,0x61,0x67,0x65,0x49,0x6e,0x73,0x74,0x72,0x75,0x63, 0x74,0x69,0x6f,0x6e,0x73,0x49,0x64,0x2c,0x63,0x3d,0x69,0x2e,0x72,0x65,0x67,0x69, 0x73,0x74,0x72,0x79,0x2c,0x6c,0x3d,0x56,0x6f,0x28,0x58,0x6f,0x29,0x2c,0x73,0x3d, 0x6c,0x2e,0x74,0x79,0x70,0x65,0x2c,0x66,0x3d,0x6c,0x2e,0x64,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x64,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69, 0x64,0x3a,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c, 0x69,0x6e,0x64,0x65,0x78,0x3a,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x74,0x79, 0x70,0x65,0x3a,0x73,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3a,0x66,0x7d,0x7d,0x29,0x2c,0x5b,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62, 0x6c,0x65,0x49,0x64,0x2c,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x73,0x2c,0x66, 0x5d,0x29,0x2c,0x70,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c, 0x68,0x3d,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c, 0x76,0x3d,0x65,0x2e,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x67,0x3d, 0x65,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46, 0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73,0x73,0x2c,0x6d,0x3d,0x65,0x2e,0x63,0x61, 0x6e,0x44,0x72,0x61,0x67,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x62,0x3d,0x65,0x2e,0x69,0x73,0x43, 0x6c,0x6f,0x6e,0x65,0x2c,0x79,0x3d,0x65,0x2e,0x6d,0x61,0x70,0x70,0x65,0x64,0x2c, 0x5f,0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x46,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x3b,0x69,0x69,0x28,0x29,0x2c,0x4a, 0x72,0x28,0x29,0x2c,0x62,0x7c,0x7c,0x6f,0x69,0x28,0x75,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x3a,0x64,0x2c,0x72,0x65,0x67, 0x69,0x73,0x74,0x72,0x79,0x3a,0x63,0x2c,0x67,0x65,0x74,0x44,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x52,0x65,0x66,0x3a,0x6f,0x2c,0x63,0x61,0x6e,0x44,0x72,0x61, 0x67,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x3a,0x6d,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x52,0x65,0x73, 0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73,0x73,0x3a,0x67, 0x2c,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x76,0x7d,0x7d,0x29,0x2c, 0x5b,0x64,0x2c,0x63,0x2c,0x6f,0x2c,0x6d,0x2c,0x67,0x2c,0x76,0x5d,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x77,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x3f,0x7b,0x74, 0x61,0x62,0x49,0x6e,0x64,0x65,0x78,0x3a,0x30,0x2c,0x72,0x6f,0x6c,0x65,0x3a,0x22, 0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x22,0x61,0x72,0x69,0x61,0x2d,0x64,0x65, 0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x62,0x79,0x22,0x3a,0x75,0x2c,0x22,0x64,0x61, 0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x61,0x67,0x2d,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x2d,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x69,0x64,0x22, 0x3a,0x68,0x2c,0x22,0x64,0x61,0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x61, 0x67,0x2d,0x68,0x61,0x6e,0x64,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x2d,0x69,0x64,0x22,0x3a,0x61,0x2c,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x3a,0x21,0x31,0x2c,0x6f,0x6e,0x44,0x72,0x61,0x67,0x53,0x74,0x61,0x72,0x74,0x3a, 0x61,0x69,0x7d,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x75,0x2c, 0x68,0x2c,0x76,0x5d,0x29,0x2c,0x4f,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e, 0x47,0x22,0x3d,0x3d,0x3d,0x79,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x79,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x69,0x6e,0x67,0x26,0x26,0x22,0x74,0x72,0x61,0x6e,0x73,0x66, 0x6f,0x72,0x6d,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x4e,0x61,0x6d,0x65,0x26,0x26,0x5f,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x5f,0x2c, 0x79,0x5d,0x29,0x2c,0x78,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x72,0x69,0x28,0x79,0x29, 0x2c,0x74,0x3d,0x22,0x44,0x52,0x41,0x47,0x47,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d, 0x79,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x79,0x2e,0x64,0x72,0x6f,0x70,0x70,0x69, 0x6e,0x67,0x3f,0x4f,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x3a,0x6e,0x2c,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x50,0x72,0x6f,0x70,0x73,0x3a,0x7b,0x22,0x64,0x61,0x74, 0x61,0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d, 0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2d,0x69,0x64,0x22,0x3a,0x61,0x2c,0x22,0x64, 0x61,0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x2d,0x69,0x64,0x22,0x3a,0x68,0x2c,0x73,0x74,0x79,0x6c,0x65,0x3a,0x65,0x2c, 0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x3a, 0x74,0x7d,0x2c,0x64,0x72,0x61,0x67,0x48,0x61,0x6e,0x64,0x6c,0x65,0x50,0x72,0x6f, 0x70,0x73,0x3a,0x77,0x7d,0x7d,0x29,0x2c,0x5b,0x61,0x2c,0x77,0x2c,0x68,0x2c,0x79, 0x2c,0x4f,0x2c,0x6e,0x5d,0x29,0x2c,0x45,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64, 0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x64,0x2e,0x69,0x64,0x2c, 0x74,0x79,0x70,0x65,0x3a,0x64,0x2e,0x74,0x79,0x70,0x65,0x2c,0x73,0x6f,0x75,0x72, 0x63,0x65,0x3a,0x7b,0x69,0x6e,0x64,0x65,0x78,0x3a,0x64,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x64,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x7d,0x7d,0x7d,0x29,0x2c, 0x5b,0x64,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x64, 0x2e,0x69,0x64,0x2c,0x64,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x64,0x2e,0x74,0x79, 0x70,0x65,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x28,0x78,0x2c, 0x79,0x2e,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x2c,0x45,0x29,0x7d,0x29,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x56,0x6f,0x28,0x58,0x6f,0x29,0x2e,0x69,0x73, 0x55,0x73,0x69,0x6e,0x67,0x43,0x6c,0x6f,0x6e,0x65,0x46,0x6f,0x72,0x21,0x3d,0x3d, 0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x7c,0x7c,0x65, 0x2e,0x69,0x73,0x43,0x6c,0x6f,0x6e,0x65,0x3f,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x66,0x69,0x2c,0x65,0x29, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70, 0x69,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x22,0x62,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e, 0x69,0x73,0x44,0x72,0x61,0x67,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7c,0x7c, 0x21,0x65,0x2e,0x69,0x73,0x44,0x72,0x61,0x67,0x44,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x2c,0x6e,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x65,0x2e,0x64,0x69, 0x73,0x61,0x62,0x6c,0x65,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x6c,0x6f,0x63,0x6b,0x69,0x6e,0x67,0x29, 0x2c,0x72,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x65,0x2e,0x73,0x68,0x6f, 0x75,0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50, 0x72,0x65,0x73,0x73,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x64, 0x69,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d, 0x2c,0x65,0x2c,0x7b,0x69,0x73,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x21,0x31,0x2c,0x69, 0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x74,0x2c,0x63,0x61,0x6e,0x44,0x72, 0x61,0x67,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x52,0x65, 0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50,0x72,0x65,0x73,0x73,0x3a, 0x72,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x68,0x69,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65, 0x2e,0x74,0x79,0x70,0x65,0x7d,0x2c,0x76,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x73,0x5b,0x65,0x2e,0x64,0x72, 0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64,0x5d,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x67,0x69,0x3d,0x7b,0x6d,0x6f,0x64,0x65,0x3a,0x22,0x73,0x74,0x61,0x6e,0x64, 0x61,0x72,0x64,0x22,0x2c,0x74,0x79,0x70,0x65,0x3a,0x22,0x44,0x45,0x46,0x41,0x55, 0x4c,0x54,0x22,0x2c,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x76, 0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x22,0x2c,0x69,0x73,0x44,0x72,0x6f,0x70,0x44, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x31,0x2c,0x69,0x73,0x43,0x6f,0x6d, 0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x31,0x2c,0x69, 0x67,0x6e,0x6f,0x72,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x43,0x6c, 0x69,0x70,0x70,0x69,0x6e,0x67,0x3a,0x21,0x31,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72, 0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x67,0x65,0x74,0x43,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x46,0x6f,0x72,0x43,0x6c,0x6f,0x6e,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x7c, 0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x2e,0x62,0x6f,0x64,0x79,0x7d,0x7d,0x2c,0x6d,0x69,0x3d,0x6e,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x7b,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x6e,0x75,0x6c, 0x6c,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x50, 0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x21,0x30,0x2c,0x73,0x6e, 0x61,0x70,0x73,0x68,0x6f,0x74,0x3a,0x7b,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x4f,0x76,0x65,0x72,0x3a,0x21,0x31,0x2c,0x64,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x4f,0x76,0x65,0x72,0x57,0x69,0x74,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x46,0x72,0x6f,0x6d,0x54,0x68,0x69,0x73, 0x57,0x69,0x74,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x73,0x55,0x73,0x69,0x6e, 0x67,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x21,0x31,0x7d, 0x2c,0x75,0x73,0x65,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c, 0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x61,0x29,0x28,0x7b,0x7d, 0x2c,0x65,0x2c,0x7b,0x73,0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74, 0x65,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x21,0x31,0x7d, 0x29,0x2c,0x6e,0x3d,0x4f,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x72,0x61,0x67,0x67, 0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2e,0x69,0x64,0x2c,0x74,0x79,0x70,0x65, 0x3a,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x7b, 0x69,0x6e,0x64,0x65,0x78,0x3a,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x64,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x7d,0x7d,0x7d,0x29,0x29,0x2c,0x72,0x3d,0x4f, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x2c,0x6f,0x2c, 0x69,0x2c,0x61,0x2c,0x75,0x2c,0x63,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x75, 0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x69,0x64,0x3b,0x69, 0x66,0x28,0x75,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2e,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3d,0x3d,0x3d,0x72,0x29,0x7b, 0x76,0x61,0x72,0x20,0x73,0x3d,0x63,0x3f,0x7b,0x72,0x65,0x6e,0x64,0x65,0x72,0x3a, 0x63,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x6e,0x28,0x75,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x29,0x7d,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x66,0x3d,0x7b,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x4f,0x76, 0x65,0x72,0x3a,0x69,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x4f,0x76,0x65, 0x72,0x57,0x69,0x74,0x68,0x3a,0x69,0x3f,0x6c,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64, 0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x46,0x72,0x6f,0x6d,0x54,0x68,0x69,0x73,0x57, 0x69,0x74,0x68,0x3a,0x6c,0x2c,0x69,0x73,0x55,0x73,0x69,0x6e,0x67,0x50,0x6c,0x61, 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x21,0x30,0x7d,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a, 0x75,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x73,0x68, 0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x50,0x6c,0x61,0x63,0x65, 0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x21,0x31,0x2c,0x73,0x6e,0x61,0x70,0x73,0x68, 0x6f,0x74,0x3a,0x66,0x2c,0x75,0x73,0x65,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x73,0x7d, 0x7d,0x69,0x66,0x28,0x21,0x6f,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b, 0x69,0x66,0x28,0x21,0x61,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76, 0x61,0x72,0x20,0x64,0x3d,0x7b,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67, 0x4f,0x76,0x65,0x72,0x3a,0x69,0x2c,0x64,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x4f, 0x76,0x65,0x72,0x57,0x69,0x74,0x68,0x3a,0x6c,0x2c,0x64,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x46,0x72,0x6f,0x6d,0x54,0x68,0x69,0x73,0x57,0x69,0x74,0x68,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x69,0x73,0x55,0x73,0x69,0x6e,0x67,0x50,0x6c,0x61,0x63,0x65, 0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x21,0x30,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x75,0x2e, 0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x73,0x68,0x6f,0x75, 0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x50,0x6c,0x61,0x63,0x65,0x68,0x6f, 0x6c,0x64,0x65,0x72,0x3a,0x21,0x30,0x2c,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74, 0x3a,0x64,0x2c,0x75,0x73,0x65,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d, 0x6f,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x61,0x3d, 0x6f,0x2e,0x74,0x79,0x70,0x65,0x2c,0x75,0x3d,0x21,0x6f,0x2e,0x69,0x73,0x44,0x72, 0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x63,0x3d,0x6f,0x2e,0x72, 0x65,0x6e,0x64,0x65,0x72,0x43,0x6c,0x6f,0x6e,0x65,0x3b,0x69,0x66,0x28,0x6e,0x2e, 0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6c,0x3d,0x6e,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x3b,0x69,0x66,0x28, 0x21,0x68,0x69,0x28,0x61,0x2c,0x6c,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x76,0x69,0x28,0x6c,0x2c,0x6e,0x2e,0x64, 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x29,0x2c,0x66,0x3d,0x4b,0x74,0x28, 0x6e,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x29,0x3d,0x3d,0x3d,0x69,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x69,0x2c,0x75,0x2c,0x66,0x2c,0x66,0x2c,0x73, 0x2c,0x63,0x29,0x7d,0x69,0x66,0x28,0x22,0x44,0x52,0x4f,0x50,0x5f,0x41,0x4e,0x49, 0x4d,0x41,0x54,0x49,0x4e,0x47,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x70,0x68,0x61,0x73, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6c, 0x65,0x74,0x65,0x64,0x3b,0x69,0x66,0x28,0x21,0x68,0x69,0x28,0x61,0x2c,0x64,0x2e, 0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x76,0x69,0x28,0x64,0x2e,0x63,0x72, 0x69,0x74,0x69,0x63,0x61,0x6c,0x2c,0x6e,0x2e,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, 0x6f,0x6e,0x73,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x69,0x2c, 0x75,0x2c,0x63,0x69,0x28,0x64,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x29,0x3d,0x3d, 0x3d,0x69,0x2c,0x4b,0x74,0x28,0x64,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x29,0x3d, 0x3d,0x3d,0x69,0x2c,0x70,0x2c,0x63,0x29,0x7d,0x69,0x66,0x28,0x22,0x49,0x44,0x4c, 0x45,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x70,0x68,0x61,0x73,0x65,0x26,0x26,0x6e,0x2e, 0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x26,0x26,0x21,0x6e,0x2e,0x73,0x68, 0x6f,0x75,0x6c,0x64,0x46,0x6c,0x75,0x73,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x68, 0x3d,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3b,0x69,0x66,0x28, 0x21,0x68,0x69,0x28,0x61,0x2c,0x68,0x2e,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b,0x76,0x61,0x72,0x20,0x76, 0x3d,0x4b,0x74,0x28,0x68,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x29,0x3d,0x3d,0x3d, 0x69,0x2c,0x67,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x68,0x2e,0x69,0x6d, 0x70,0x61,0x63,0x74,0x2e,0x61,0x74,0x26,0x26,0x22,0x43,0x4f,0x4d,0x42,0x49,0x4e, 0x45,0x22,0x3d,0x3d,0x3d,0x68,0x2e,0x69,0x6d,0x70,0x61,0x63,0x74,0x2e,0x61,0x74, 0x2e,0x74,0x79,0x70,0x65,0x29,0x2c,0x6d,0x3d,0x68,0x2e,0x63,0x72,0x69,0x74,0x69, 0x63,0x61,0x6c,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x69,0x64, 0x3d,0x3d,0x3d,0x69,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x3f,0x67,0x3f, 0x65,0x3a,0x74,0x3a,0x6d,0x3f,0x65,0x3a,0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x7d,0x7d,0x29,0x2c,0x7b,0x75,0x70,0x64,0x61,0x74,0x65,0x56,0x69,0x65, 0x77,0x70,0x6f,0x72,0x74,0x4d,0x61,0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x55,0x50,0x44,0x41,0x54,0x45,0x5f,0x56, 0x49,0x45,0x57,0x50,0x4f,0x52,0x54,0x5f,0x4d,0x41,0x58,0x5f,0x53,0x43,0x52,0x4f, 0x4c,0x4c,0x22,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x65,0x7d,0x7d,0x7d, 0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3a,0x56, 0x72,0x2c,0x70,0x75,0x72,0x65,0x3a,0x21,0x30,0x2c,0x61,0x72,0x65,0x53,0x74,0x61, 0x74,0x65,0x50,0x72,0x6f,0x70,0x73,0x45,0x71,0x75,0x61,0x6c,0x3a,0x75,0x69,0x7d, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73, 0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x58,0x72,0x29,0x3b,0x74,0x7c, 0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e, 0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2c,0x69,0x3d,0x74,0x2e,0x69,0x73, 0x4d,0x6f,0x76,0x65,0x6d,0x65,0x6e,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x2c, 0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65, 0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c, 0x29,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6c, 0x3d,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x73, 0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x66,0x3d,0x65,0x2e,0x6d,0x6f,0x64,0x65, 0x2c,0x64,0x3d,0x65,0x2e,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x70, 0x3d,0x65,0x2e,0x69,0x67,0x6e,0x6f,0x72,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x43,0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x2c,0x68,0x3d,0x65,0x2e,0x69, 0x73,0x44,0x72,0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x76,0x3d, 0x65,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c, 0x65,0x64,0x2c,0x67,0x3d,0x65,0x2e,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x2c, 0x6d,0x3d,0x65,0x2e,0x75,0x73,0x65,0x43,0x6c,0x6f,0x6e,0x65,0x2c,0x62,0x3d,0x65, 0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x56,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x4d, 0x61,0x78,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x79,0x3d,0x65,0x2e,0x67,0x65,0x74, 0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x46,0x6f,0x72,0x43,0x6c,0x6f,0x6e, 0x65,0x2c,0x5f,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x77,0x3d,0x63,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x61,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x4f,0x3d, 0x28,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x29,0x3b,0x5a,0x72,0x28,0x29,0x3b,0x76, 0x61,0x72,0x20,0x78,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x69,0x28,0x29,0x26,0x26,0x62,0x28,0x7b,0x6d,0x61,0x78,0x53, 0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x6f,0x72,0x28,0x29,0x7d,0x29,0x7d,0x29,0x2c,0x5b, 0x69,0x2c,0x62,0x5d,0x29,0x3b,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c, 0x6e,0x3d,0x56,0x6f,0x28,0x58,0x72,0x29,0x2c,0x6f,0x3d,0x51,0x72,0x28,0x22,0x64, 0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x22,0x29,0x2c,0x69,0x3d,0x6e,0x2e,0x72, 0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x2c,0x61,0x3d,0x6e,0x2e,0x6d,0x61,0x72,0x73, 0x68,0x61,0x6c,0x2c,0x75,0x3d,0x74,0x6f,0x28,0x65,0x29,0x2c,0x63,0x3d,0x75,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x69,0x64,0x3a,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x49,0x64,0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2e,0x74,0x79,0x70,0x65, 0x2c,0x6d,0x6f,0x64,0x65,0x3a,0x65,0x2e,0x6d,0x6f,0x64,0x65,0x7d,0x7d,0x29,0x2c, 0x5b,0x65,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c,0x65, 0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x65,0x2e,0x74,0x79,0x70,0x65,0x5d,0x29,0x2c,0x6c, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x75,0x73,0x65,0x52,0x65,0x66, 0x29,0x28,0x63,0x29,0x2c,0x73,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x65,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x74, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x7b,0x78,0x3a,0x65,0x2c,0x79,0x3a,0x6e,0x7d, 0x3b,0x61,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x28,0x63,0x2e,0x69,0x64,0x2c,0x72,0x29, 0x7d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x63,0x2e,0x69,0x64,0x2c,0x61,0x5d,0x29,0x2c, 0x66,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x65,0x6e,0x76, 0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62, 0x6c,0x65,0x3f,0x4d,0x6f,0x28,0x65,0x2e,0x65,0x6e,0x76,0x2e,0x63,0x6c,0x6f,0x73, 0x65,0x73,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x29,0x3a,0x42, 0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x64,0x3d,0x63,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x66, 0x28,0x29,0x3b,0x73,0x28,0x65,0x2e,0x78,0x2c,0x65,0x2e,0x79,0x29,0x7d,0x29,0x2c, 0x5b,0x66,0x2c,0x73,0x5d,0x29,0x2c,0x70,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x78, 0x65,0x28,0x64,0x29,0x7d,0x29,0x2c,0x5b,0x64,0x5d,0x29,0x2c,0x68,0x3d,0x63,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6e,0x3d,0x47, 0x6f,0x28,0x65,0x29,0x3b,0x65,0x26,0x26,0x6e,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31, 0x29,0x2c,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x49, 0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x3f,0x64,0x28,0x29,0x3a,0x70, 0x28,0x29,0x7d,0x29,0x2c,0x5b,0x70,0x2c,0x64,0x5d,0x29,0x2c,0x76,0x3d,0x63,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b, 0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x41,0x65,0x28,0x21,0x31, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x2c,0x69,0x3d,0x6f,0x2e,0x67,0x65,0x74,0x44,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x52,0x65,0x66,0x28,0x29,0x3b,0x69,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31, 0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x7a,0x6f,0x28,0x69,0x29,0x2c,0x6c,0x3d, 0x7b,0x72,0x65,0x66,0x3a,0x69,0x2c,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x3a,0x63,0x2c,0x65,0x6e,0x76,0x3a,0x61,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x72,0x7d,0x3b,0x74,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x6c,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x55,0x6f,0x28, 0x7b,0x72,0x65,0x66,0x3a,0x69,0x2c,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x3a,0x63,0x2c,0x65,0x6e,0x76,0x3a,0x61,0x2c,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x65,0x2c,0x64,0x69,0x72,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x3a,0x6f,0x2e,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x69, 0x73,0x44,0x72,0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x6f,0x2e, 0x69,0x73,0x44,0x72,0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x69, 0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a, 0x6f,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c, 0x65,0x64,0x2c,0x73,0x68,0x6f,0x75,0x6c,0x64,0x43,0x6c,0x69,0x70,0x53,0x75,0x62, 0x6a,0x65,0x63,0x74,0x3a,0x21,0x6f,0x2e,0x69,0x67,0x6e,0x6f,0x72,0x65,0x43,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x43,0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x7d, 0x29,0x2c,0x66,0x3d,0x61,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x53,0x63,0x72, 0x6f,0x6c,0x6c,0x61,0x62,0x6c,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x26,0x26,0x28,0x66,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x28,0x52,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x2c,0x6e, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x29,0x2c,0x66,0x2e,0x61,0x64, 0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x68,0x2c,0x48,0x6f,0x28,0x6c,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x29,0x29,0x2c, 0x73,0x7d,0x29,0x2c,0x5b,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64, 0x2c,0x63,0x2c,0x68,0x2c,0x75,0x5d,0x29,0x2c,0x67,0x3d,0x63,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x6e,0x3d,0x47,0x6f,0x28,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x6e,0x7c,0x7c,0x41, 0x65,0x28,0x21,0x31,0x29,0x2c,0x4d,0x6f,0x28,0x6e,0x29,0x7d,0x29,0x2c,0x5b,0x5d, 0x29,0x2c,0x6d,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3b,0x65,0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x47,0x6f,0x28,0x65,0x29,0x3b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x26,0x26,0x28,0x70,0x2e,0x63,0x61, 0x6e,0x63,0x65,0x6c,0x28,0x29,0x2c,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41, 0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x52,0x72,0x2e,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x49,0x64,0x29,0x2c,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45, 0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x68,0x2c,0x48,0x6f,0x28,0x65,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x29,0x29,0x7d,0x29,0x2c, 0x5b,0x68,0x2c,0x70,0x5d,0x29,0x2c,0x62,0x3d,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x6e,0x7c,0x7c,0x41,0x65,0x28,0x21, 0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x47,0x6f,0x28,0x6e,0x29,0x3b,0x72, 0x7c,0x7c,0x41,0x65,0x28,0x21,0x31,0x29,0x2c,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x54,0x6f,0x70,0x2b,0x3d,0x65,0x2e,0x79,0x2c,0x72,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2b,0x3d,0x65,0x2e,0x78,0x7d,0x29,0x2c,0x5b,0x5d, 0x29,0x2c,0x79,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x67,0x65,0x74,0x44,0x69,0x6d, 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x6e,0x64,0x57,0x61,0x74,0x63,0x68,0x53,0x63, 0x72,0x6f,0x6c,0x6c,0x3a,0x76,0x2c,0x67,0x65,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c, 0x57,0x68,0x69,0x6c,0x65,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3a,0x67,0x2c, 0x64,0x72,0x61,0x67,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x3a,0x6d,0x2c,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x3a,0x62,0x7d,0x7d,0x29,0x2c,0x5b,0x6d,0x2c,0x76,0x2c,0x67, 0x2c,0x62,0x5d,0x29,0x2c,0x5f,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x75,0x6e,0x69, 0x71,0x75,0x65,0x49,0x64,0x3a,0x6f,0x2c,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74, 0x6f,0x72,0x3a,0x63,0x2c,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x73,0x3a,0x79, 0x7d,0x7d,0x29,0x2c,0x5b,0x79,0x2c,0x63,0x2c,0x6f,0x5d,0x29,0x3b,0x46,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x5f,0x2e,0x64, 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x2c,0x69,0x2e,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x2e,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x28,0x5f, 0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x6d,0x28,0x29,0x2c,0x69,0x2e,0x64,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2e,0x75,0x6e,0x72,0x65,0x67,0x69,0x73,0x74, 0x65,0x72,0x28,0x5f,0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x79,0x2c,0x63,0x2c,0x6d,0x2c, 0x5f,0x2c,0x61,0x2c,0x69,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x5d, 0x29,0x2c,0x46,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x61,0x2e,0x75,0x70, 0x64,0x61,0x74,0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x73,0x45, 0x6e,0x61,0x62,0x6c,0x65,0x64,0x28,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x2e,0x69,0x64,0x2c,0x21,0x65,0x2e,0x69,0x73,0x44,0x72,0x6f,0x70,0x44,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x2e,0x69,0x73,0x44,0x72, 0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x61,0x5d,0x29,0x2c,0x46, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x61,0x2e,0x75,0x70,0x64,0x61,0x74, 0x65,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x73,0x43,0x6f,0x6d,0x62, 0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x28,0x6c,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x2e,0x69,0x64,0x2c,0x65,0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62, 0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x7d,0x29,0x2c,0x5b,0x65, 0x2e,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x2c,0x61,0x5d,0x29,0x7d,0x28,0x7b,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x49,0x64,0x3a,0x6c,0x2c,0x74,0x79,0x70,0x65,0x3a,0x73,0x2c,0x6d,0x6f,0x64, 0x65,0x3a,0x66,0x2c,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x64,0x2c, 0x69,0x73,0x44,0x72,0x6f,0x70,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x68, 0x2c,0x69,0x73,0x43,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x45,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x3a,0x76,0x2c,0x69,0x67,0x6e,0x6f,0x72,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x43,0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x3a,0x70,0x2c,0x67,0x65, 0x74,0x44,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x52,0x65,0x66,0x3a,0x5f,0x7d, 0x29,0x3b,0x76,0x61,0x72,0x20,0x45,0x3d,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x4a,0x6f,0x2c,0x7b,0x6f,0x6e, 0x3a,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x73, 0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3a,0x65,0x2e,0x73, 0x68,0x6f,0x75,0x6c,0x64,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x50,0x6c,0x61,0x63, 0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x7d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6f,0x6e, 0x43,0x6c,0x6f,0x73,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x64,0x61,0x74,0x61,0x2c,0x69, 0x3d,0x65,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x51,0x6f,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c, 0x64,0x65,0x72,0x3a,0x72,0x2c,0x6f,0x6e,0x43,0x6c,0x6f,0x73,0x65,0x3a,0x74,0x2c, 0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x3a,0x4f,0x2c,0x61,0x6e,0x69,0x6d,0x61, 0x74,0x65,0x3a,0x69,0x2c,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x49,0x64,0x3a,0x6e, 0x2c,0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64, 0x3a,0x78,0x7d,0x29,0x7d,0x29,0x29,0x2c,0x6a,0x3d,0x75,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66,0x3a,0x77,0x2c,0x70,0x6c,0x61,0x63,0x65, 0x68,0x6f,0x6c,0x64,0x65,0x72,0x3a,0x45,0x2c,0x64,0x72,0x6f,0x70,0x70,0x61,0x62, 0x6c,0x65,0x50,0x72,0x6f,0x70,0x73,0x3a,0x7b,0x22,0x64,0x61,0x74,0x61,0x2d,0x72, 0x62,0x64,0x2d,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x2d,0x69,0x64,0x22, 0x3a,0x6c,0x2c,0x22,0x64,0x61,0x74,0x61,0x2d,0x72,0x62,0x64,0x2d,0x64,0x72,0x6f, 0x70,0x70,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2d,0x69, 0x64,0x22,0x3a,0x6e,0x7d,0x7d,0x7d,0x29,0x2c,0x5b,0x6e,0x2c,0x6c,0x2c,0x45,0x2c, 0x77,0x5d,0x29,0x2c,0x6b,0x3d,0x6d,0x3f,0x6d,0x2e,0x64,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x53,0x3d,0x75,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x64,0x72,0x6f,0x70, 0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x6c,0x2c,0x74,0x79,0x70,0x65,0x3a,0x73, 0x2c,0x69,0x73,0x55,0x73,0x69,0x6e,0x67,0x43,0x6c,0x6f,0x6e,0x65,0x46,0x6f,0x72, 0x3a,0x6b,0x7d,0x7d,0x29,0x2c,0x5b,0x6c,0x2c,0x6b,0x2c,0x73,0x5d,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x58,0x6f,0x2e,0x50,0x72,0x6f,0x76,0x69, 0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x53,0x7d,0x2c,0x63,0x28, 0x6a,0x2c,0x67,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x69,0x66,0x28,0x21,0x6d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6d,0x2e,0x64,0x72,0x61,0x67,0x67,0x69, 0x6e,0x67,0x2c,0x74,0x3d,0x6d,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x2c,0x6e,0x3d, 0x6f,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x64,0x69,0x2c,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49, 0x64,0x3a,0x65,0x2e,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x49,0x64,0x2c, 0x69,0x6e,0x64,0x65,0x78,0x3a,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x2c,0x69,0x73,0x43,0x6c,0x6f,0x6e,0x65,0x3a,0x21,0x30,0x2c, 0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x73,0x68,0x6f, 0x75,0x6c,0x64,0x52,0x65,0x73,0x70,0x65,0x63,0x74,0x46,0x6f,0x72,0x63,0x65,0x50, 0x72,0x65,0x73,0x73,0x3a,0x21,0x31,0x2c,0x63,0x61,0x6e,0x44,0x72,0x61,0x67,0x49, 0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x73,0x3a,0x21,0x30,0x7d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x6e, 0x2c,0x72,0x2c,0x65,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x69,0x65,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x72,0x74,0x61, 0x6c,0x28,0x6e,0x2c,0x79,0x28,0x29,0x29,0x7d,0x28,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x6d,0x69,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d, 0x67,0x69,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65, 0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x73,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x70,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79, 0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65, 0x20,0x63,0x61,0x6c,0x6c,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x75,0x6c, 0x6c,0x20,0x6f,0x72,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65, 0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x72,0x79,0x7b,0x69,0x66,0x28,0x21,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e,0x65,0x77,0x20, 0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x22,0x61,0x62,0x63,0x22,0x29,0x3b,0x69,0x66, 0x28,0x65,0x5b,0x35,0x5d,0x3d,0x22,0x64,0x65,0x22,0x2c,0x22,0x35,0x22,0x3d,0x3d, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x4e,0x61,0x6d,0x65,0x73,0x28,0x65,0x29,0x5b,0x30, 0x5d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x74,0x3d,0x7b,0x7d,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x31,0x30, 0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b,0x22,0x5f,0x22,0x2b,0x53,0x74,0x72,0x69,0x6e, 0x67,0x2e,0x66,0x72,0x6f,0x6d,0x43,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x28,0x6e, 0x29,0x5d,0x3d,0x6e,0x3b,0x69,0x66,0x28,0x22,0x30,0x31,0x32,0x33,0x34,0x35,0x36, 0x37,0x38,0x39,0x22,0x21,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65, 0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x4e,0x61,0x6d,0x65, 0x73,0x28,0x74,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x65, 0x5d,0x7d,0x29,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x22,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x7b,0x7d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69, 0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x22,0x2e,0x73,0x70,0x6c, 0x69,0x74,0x28,0x22,0x22,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x5b,0x65,0x5d, 0x3d,0x65,0x7d,0x29,0x29,0x2c,0x22,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69, 0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x22,0x3d,0x3d,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x72,0x29,0x29,0x2e, 0x6a,0x6f,0x69,0x6e,0x28,0x22,0x22,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6f, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x28,0x29,0x3f,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x2c,0x75,0x2c,0x63,0x3d,0x61,0x28,0x65,0x29,0x2c,0x6c,0x3d, 0x31,0x3b,0x6c,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x6c,0x2b,0x2b,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x73,0x20,0x69,0x6e,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6c,0x5d,0x29,0x29,0x6f,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x73,0x29,0x26,0x26,0x28,0x63,0x5b,0x73,0x5d, 0x3d,0x6e,0x5b,0x73,0x5d,0x29,0x3b,0x69,0x66,0x28,0x72,0x29,0x7b,0x75,0x3d,0x72, 0x28,0x6e,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x66,0x3d,0x30,0x3b, 0x66,0x3c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x2b,0x2b,0x29,0x69, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x75,0x5b,0x66,0x5d,0x29,0x26,0x26,0x28, 0x63,0x5b,0x75,0x5b,0x66,0x5d,0x5d,0x3d,0x6e,0x5b,0x75,0x5b,0x66,0x5d,0x5d,0x29, 0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x77,0x65,0x62,0x70,0x61,0x63, 0x6b,0x50,0x6f,0x6c,0x79,0x66,0x69,0x6c,0x6c,0x7c,0x7c,0x28,0x65,0x2e,0x64,0x65, 0x70,0x72,0x65,0x63,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x7d,0x2c,0x65,0x2e,0x70,0x61,0x74,0x68,0x73,0x3d,0x5b,0x5d,0x2c, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x7c,0x7c,0x28,0x65,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3d,0x5b,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x28,0x65,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x65,0x64,0x22,0x2c,0x7b,0x65,0x6e, 0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x67,0x65,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x6c,0x7d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65, 0x2c,0x22,0x69,0x64,0x22,0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c, 0x65,0x3a,0x21,0x30,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x69,0x7d,0x7d, 0x29,0x2c,0x65,0x2e,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x50,0x6f,0x6c,0x79,0x66, 0x69,0x6c,0x6c,0x3d,0x31,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x21,0x65,0x2e,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x50,0x6f,0x6c,0x79, 0x66,0x69,0x6c,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x65,0x29,0x3b,0x74,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x7c,0x7c,0x28,0x74,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3d,0x5b,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74, 0x2c,0x22,0x6c,0x6f,0x61,0x64,0x65,0x64,0x22,0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65, 0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x6c,0x7d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x2c,0x22,0x69, 0x64,0x22,0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21, 0x30,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x69,0x7d,0x7d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x28,0x74,0x2c,0x22,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x22, 0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d, 0x29,0x2c,0x74,0x2e,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x50,0x6f,0x6c,0x79,0x66, 0x69,0x6c,0x6c,0x3d,0x31,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x34,0x34,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x39,0x38,0x29,0x2c,0x69,0x3d,0x2f,0x5c,0x2e,0x7c,0x5c,0x5b,0x28,0x3f,0x3a, 0x5b,0x5e,0x5b,0x5c,0x5d,0x5d,0x2a,0x7c,0x28,0x5b,0x22,0x27,0x5d,0x29,0x28,0x3f, 0x3a,0x28,0x3f,0x21,0x5c,0x31,0x29,0x5b,0x5e,0x5c,0x5c,0x5d,0x7c,0x5c,0x5c,0x2e, 0x29,0x2a,0x3f,0x5c,0x31,0x29,0x5c,0x5d,0x2f,0x2c,0x61,0x3d,0x2f,0x5e,0x5c,0x77, 0x2a,0x24,0x2f,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x72, 0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x6e,0x26, 0x26,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x21,0x3d,0x6e,0x26,0x26,0x22,0x62, 0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x21,0x3d,0x6e,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x65,0x26,0x26,0x21,0x6f,0x28,0x65,0x29,0x29,0x7c,0x7c,0x28,0x61,0x2e, 0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x7c,0x7c,0x21,0x69,0x2e,0x74,0x65,0x73,0x74, 0x28,0x65,0x29,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26,0x65,0x20, 0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x74,0x29,0x29,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28, 0x36,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x7c,0x7c,0x6f,0x28,0x65,0x29,0x26,0x26,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x5d,0x22,0x3d,0x3d,0x72,0x28,0x65, 0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x39,0x32,0x29, 0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x30,0x38,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x31, 0x30,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x32,0x31,0x31,0x29,0x2c,0x75,0x3d,0x6e,0x28, 0x32,0x31,0x32,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72,0x28, 0x29,0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x65,0x5b,0x74,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x5b, 0x30,0x5d,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x7d,0x7d,0x63,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x72,0x2c,0x63,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65, 0x3d,0x6f,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x67, 0x65,0x74,0x3d,0x69,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x68,0x61,0x73,0x3d,0x61,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x75,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x63,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x74,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x35,0x33,0x29,0x28,0x6e,0x28,0x34,0x30,0x29,0x2c,0x22,0x4d,0x61,0x70,0x22,0x29, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x3e,0x2d,0x31, 0x26,0x26,0x65,0x25,0x31,0x3d,0x3d,0x30,0x26,0x26,0x65,0x3c,0x3d,0x39,0x30,0x30, 0x37,0x31,0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39,0x39,0x31,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x31,0x39,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x32,0x32,0x35,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x32,0x39,0x29,0x3b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x65,0x29, 0x3f,0x72,0x28,0x65,0x29,0x3a,0x6f,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f, 0x66,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x5f,0x70, 0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67, 0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x28,0x65,0x29, 0x7d,0x2c,0x6e,0x28,0x74,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x6e,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x36,0x30,0x29, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x70,0x2c,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x70,0x61,0x72,0x73,0x65,0x3d,0x69,0x2c,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x28,0x69,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74, 0x29,0x7d,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x74,0x6f,0x6b, 0x65,0x6e,0x73,0x54,0x6f,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x75,0x2c, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x74,0x6f,0x6b,0x65,0x6e,0x73, 0x54,0x6f,0x52,0x65,0x67,0x45,0x78,0x70,0x3d,0x64,0x3b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x6e,0x65,0x77,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x5b,0x22,0x28,0x5c, 0x5c,0x5c,0x5c,0x2e,0x29,0x22,0x2c,0x22,0x28,0x5b,0x5c,0x5c,0x2f,0x2e,0x5d,0x29, 0x3f,0x28,0x3f,0x3a,0x28,0x3f,0x3a,0x5c,0x5c,0x3a,0x28,0x5c,0x5c,0x77,0x2b,0x29, 0x28,0x3f,0x3a,0x5c,0x5c,0x28,0x28,0x28,0x3f,0x3a,0x5c,0x5c,0x5c,0x5c,0x2e,0x7c, 0x5b,0x5e,0x5c,0x5c,0x5c,0x5c,0x28,0x29,0x5d,0x29,0x2b,0x29,0x5c,0x5c,0x29,0x29, 0x3f,0x7c,0x5c,0x5c,0x28,0x28,0x28,0x3f,0x3a,0x5c,0x5c,0x5c,0x5c,0x2e,0x7c,0x5b, 0x5e,0x5c,0x5c,0x5c,0x5c,0x28,0x29,0x5d,0x29,0x2b,0x29,0x5c,0x5c,0x29,0x29,0x28, 0x5b,0x2b,0x2a,0x3f,0x5d,0x29,0x3f,0x7c,0x28,0x5c,0x5c,0x2a,0x29,0x29,0x22,0x5d, 0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2c,0x22,0x67,0x22,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x3d,0x5b,0x5d,0x2c,0x69, 0x3d,0x30,0x2c,0x61,0x3d,0x30,0x2c,0x75,0x3d,0x22,0x22,0x2c,0x73,0x3d,0x74,0x26, 0x26,0x74,0x2e,0x64,0x65,0x6c,0x69,0x6d,0x69,0x74,0x65,0x72,0x7c,0x7c,0x22,0x2f, 0x22,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x6e,0x3d,0x6f,0x2e,0x65,0x78,0x65, 0x63,0x28,0x65,0x29,0x29,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x6e,0x5b, 0x30,0x5d,0x2c,0x64,0x3d,0x6e,0x5b,0x31,0x5d,0x2c,0x70,0x3d,0x6e,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x3b,0x69,0x66,0x28,0x75,0x2b,0x3d,0x65,0x2e,0x73,0x6c,0x69,0x63, 0x65,0x28,0x61,0x2c,0x70,0x29,0x2c,0x61,0x3d,0x70,0x2b,0x66,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x64,0x29,0x75,0x2b,0x3d,0x64,0x5b,0x31,0x5d,0x3b,0x65,0x6c, 0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x68,0x3d,0x65,0x5b,0x61,0x5d,0x2c,0x76,0x3d, 0x6e,0x5b,0x32,0x5d,0x2c,0x67,0x3d,0x6e,0x5b,0x33,0x5d,0x2c,0x6d,0x3d,0x6e,0x5b, 0x34,0x5d,0x2c,0x62,0x3d,0x6e,0x5b,0x35,0x5d,0x2c,0x79,0x3d,0x6e,0x5b,0x36,0x5d, 0x2c,0x5f,0x3d,0x6e,0x5b,0x37,0x5d,0x3b,0x75,0x26,0x26,0x28,0x72,0x2e,0x70,0x75, 0x73,0x68,0x28,0x75,0x29,0x2c,0x75,0x3d,0x22,0x22,0x29,0x3b,0x76,0x61,0x72,0x20, 0x77,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x76,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x68,0x26,0x26,0x68,0x21,0x3d,0x3d,0x76,0x2c,0x4f,0x3d,0x22,0x2b,0x22,0x3d, 0x3d,0x3d,0x79,0x7c,0x7c,0x22,0x2a,0x22,0x3d,0x3d,0x3d,0x79,0x2c,0x78,0x3d,0x22, 0x3f,0x22,0x3d,0x3d,0x3d,0x79,0x7c,0x7c,0x22,0x2a,0x22,0x3d,0x3d,0x3d,0x79,0x2c, 0x45,0x3d,0x6e,0x5b,0x32,0x5d,0x7c,0x7c,0x73,0x2c,0x6a,0x3d,0x6d,0x7c,0x7c,0x62, 0x3b,0x72,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x67,0x7c, 0x7c,0x69,0x2b,0x2b,0x2c,0x70,0x72,0x65,0x66,0x69,0x78,0x3a,0x76,0x7c,0x7c,0x22, 0x22,0x2c,0x64,0x65,0x6c,0x69,0x6d,0x69,0x74,0x65,0x72,0x3a,0x45,0x2c,0x6f,0x70, 0x74,0x69,0x6f,0x6e,0x61,0x6c,0x3a,0x78,0x2c,0x72,0x65,0x70,0x65,0x61,0x74,0x3a, 0x4f,0x2c,0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x3a,0x77,0x2c,0x61,0x73,0x74,0x65, 0x72,0x69,0x73,0x6b,0x3a,0x21,0x21,0x5f,0x2c,0x70,0x61,0x74,0x74,0x65,0x72,0x6e, 0x3a,0x6a,0x3f,0x6c,0x28,0x6a,0x29,0x3a,0x5f,0x3f,0x22,0x2e,0x2a,0x22,0x3a,0x22, 0x5b,0x5e,0x22,0x2b,0x63,0x28,0x45,0x29,0x2b,0x22,0x5d,0x2b,0x3f,0x22,0x7d,0x29, 0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3c,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x26,0x26,0x28,0x75,0x2b,0x3d,0x65,0x2e,0x73,0x75,0x62,0x73,0x74, 0x72,0x28,0x61,0x29,0x29,0x2c,0x75,0x26,0x26,0x72,0x2e,0x70,0x75,0x73,0x68,0x28, 0x75,0x29,0x2c,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65, 0x55,0x52,0x49,0x28,0x65,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f, 0x5b,0x5c,0x2f,0x3f,0x23,0x5d,0x2f,0x67,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x25,0x22,0x2b, 0x65,0x2e,0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74,0x28,0x30,0x29,0x2e, 0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x74,0x6f,0x55, 0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61, 0x79,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x2c,0x6f,0x3d,0x30,0x3b, 0x6f,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x2b,0x29,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x5b,0x6f,0x5d,0x26,0x26,0x28,0x6e,0x5b,0x6f,0x5d,0x3d,0x6e,0x65,0x77, 0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x5e,0x28,0x3f,0x3a,0x22,0x2b,0x65, 0x5b,0x6f,0x5d,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x2b,0x22,0x29,0x24,0x22, 0x2c,0x66,0x28,0x74,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6f,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x22,0x22,0x2c,0x75,0x3d,0x74,0x7c,0x7c,0x7b, 0x7d,0x2c,0x63,0x3d,0x28,0x6f,0x7c,0x7c,0x7b,0x7d,0x29,0x2e,0x70,0x72,0x65,0x74, 0x74,0x79,0x3f,0x61,0x3a,0x65,0x6e,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x2c,0x6c,0x3d,0x30,0x3b,0x6c,0x3c,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6c,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x73,0x3d,0x65,0x5b,0x6c,0x5d,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x29,0x7b,0x76, 0x61,0x72,0x20,0x66,0x2c,0x64,0x3d,0x75,0x5b,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x5d, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x64,0x29,0x7b,0x69,0x66,0x28, 0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x29,0x7b,0x73,0x2e,0x70,0x61, 0x72,0x74,0x69,0x61,0x6c,0x26,0x26,0x28,0x69,0x2b,0x3d,0x73,0x2e,0x70,0x72,0x65, 0x66,0x69,0x78,0x29,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7d,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f, 0x72,0x28,0x27,0x45,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x22,0x27,0x2b,0x73, 0x2e,0x6e,0x61,0x6d,0x65,0x2b,0x27,0x22,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x64, 0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x29,0x7d,0x69,0x66,0x28,0x72,0x28,0x64,0x29, 0x29,0x7b,0x69,0x66,0x28,0x21,0x73,0x2e,0x72,0x65,0x70,0x65,0x61,0x74,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72, 0x6f,0x72,0x28,0x27,0x45,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x22,0x27,0x2b, 0x73,0x2e,0x6e,0x61,0x6d,0x65,0x2b,0x27,0x22,0x20,0x74,0x6f,0x20,0x6e,0x6f,0x74, 0x20,0x72,0x65,0x70,0x65,0x61,0x74,0x2c,0x20,0x62,0x75,0x74,0x20,0x72,0x65,0x63, 0x65,0x69,0x76,0x65,0x64,0x20,0x60,0x27,0x2b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74, 0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x64,0x29,0x2b,0x22,0x60,0x22,0x29,0x3b, 0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29, 0x7b,0x69,0x66,0x28,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x29,0x63, 0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x78,0x70, 0x65,0x63,0x74,0x65,0x64,0x20,0x22,0x27,0x2b,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x2b, 0x27,0x22,0x20,0x74,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x65,0x6d,0x70, 0x74,0x79,0x27,0x29,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x70,0x3d,0x30, 0x3b,0x70,0x3c,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x70,0x2b,0x2b,0x29, 0x7b,0x69,0x66,0x28,0x66,0x3d,0x63,0x28,0x64,0x5b,0x70,0x5d,0x29,0x2c,0x21,0x6e, 0x5b,0x6c,0x5d,0x2e,0x74,0x65,0x73,0x74,0x28,0x66,0x29,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28, 0x27,0x45,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x6c,0x6c,0x20,0x22,0x27, 0x2b,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x2b,0x27,0x22,0x20,0x74,0x6f,0x20,0x6d,0x61, 0x74,0x63,0x68,0x20,0x22,0x27,0x2b,0x73,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e, 0x2b,0x27,0x22,0x2c,0x20,0x62,0x75,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65, 0x64,0x20,0x60,0x27,0x2b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67, 0x69,0x66,0x79,0x28,0x66,0x29,0x2b,0x22,0x60,0x22,0x29,0x3b,0x69,0x2b,0x3d,0x28, 0x30,0x3d,0x3d,0x3d,0x70,0x3f,0x73,0x2e,0x70,0x72,0x65,0x66,0x69,0x78,0x3a,0x73, 0x2e,0x64,0x65,0x6c,0x69,0x6d,0x69,0x74,0x65,0x72,0x29,0x2b,0x66,0x7d,0x7d,0x65, 0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x66,0x3d,0x73,0x2e,0x61,0x73,0x74,0x65,0x72, 0x69,0x73,0x6b,0x3f,0x65,0x6e,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x28,0x64,0x29, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5b,0x3f,0x23,0x5d,0x2f,0x67, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x25,0x22,0x2b,0x65,0x2e,0x63,0x68,0x61,0x72,0x43,0x6f, 0x64,0x65,0x41,0x74,0x28,0x30,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67, 0x28,0x31,0x36,0x29,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65, 0x28,0x29,0x7d,0x29,0x29,0x3a,0x63,0x28,0x64,0x29,0x2c,0x21,0x6e,0x5b,0x6c,0x5d, 0x2e,0x74,0x65,0x73,0x74,0x28,0x66,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e, 0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x78, 0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x22,0x27,0x2b,0x73,0x2e,0x6e,0x61,0x6d,0x65, 0x2b,0x27,0x22,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x22,0x27,0x2b, 0x73,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x2b,0x27,0x22,0x2c,0x20,0x62,0x75, 0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x22,0x27,0x2b,0x66,0x2b, 0x27,0x22,0x27,0x29,0x3b,0x69,0x2b,0x3d,0x73,0x2e,0x70,0x72,0x65,0x66,0x69,0x78, 0x2b,0x66,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x2b,0x3d,0x73,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x63,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x28,0x5b,0x2e,0x2b,0x2a,0x3f,0x3d,0x5e, 0x21,0x3a,0x24,0x7b,0x7d,0x28,0x29,0x5b,0x5c,0x5d,0x7c,0x5c,0x2f,0x5c,0x5c,0x5d, 0x29,0x2f,0x67,0x2c,0x22,0x5c,0x5c,0x24,0x31,0x22,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6c,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x28,0x5b,0x3d,0x21, 0x3a,0x24,0x5c,0x2f,0x28,0x29,0x5d,0x29,0x2f,0x67,0x2c,0x22,0x5c,0x5c,0x24,0x31, 0x22,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6b,0x65,0x79,0x73, 0x3d,0x74,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x65,0x2e,0x73, 0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x3f,0x22,0x22,0x3a,0x22,0x69,0x22,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x28,0x74,0x29,0x7c,0x7c,0x28,0x6e,0x3d,0x74,0x7c,0x7c,0x6e,0x2c, 0x74,0x3d,0x5b,0x5d,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x28,0x6e,0x3d,0x6e,0x7c,0x7c,0x7b,0x7d,0x29,0x2e,0x73,0x74,0x72,0x69,0x63,0x74, 0x2c,0x69,0x3d,0x21,0x31,0x21,0x3d,0x3d,0x6e,0x2e,0x65,0x6e,0x64,0x2c,0x61,0x3d, 0x22,0x22,0x2c,0x75,0x3d,0x30,0x3b,0x75,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x75,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x65,0x5b,0x75, 0x5d,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x29,0x61,0x2b,0x3d,0x63,0x28,0x6c,0x29, 0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x63,0x28,0x6c,0x2e, 0x70,0x72,0x65,0x66,0x69,0x78,0x29,0x2c,0x70,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b, 0x6c,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x2b,0x22,0x29,0x22,0x3b,0x74,0x2e, 0x70,0x75,0x73,0x68,0x28,0x6c,0x29,0x2c,0x6c,0x2e,0x72,0x65,0x70,0x65,0x61,0x74, 0x26,0x26,0x28,0x70,0x2b,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x64,0x2b,0x70,0x2b, 0x22,0x29,0x2a,0x22,0x29,0x2c,0x61,0x2b,0x3d,0x70,0x3d,0x6c,0x2e,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x61,0x6c,0x3f,0x6c,0x2e,0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x3f, 0x64,0x2b,0x22,0x28,0x22,0x2b,0x70,0x2b,0x22,0x29,0x3f,0x22,0x3a,0x22,0x28,0x3f, 0x3a,0x22,0x2b,0x64,0x2b,0x22,0x28,0x22,0x2b,0x70,0x2b,0x22,0x29,0x29,0x3f,0x22, 0x3a,0x64,0x2b,0x22,0x28,0x22,0x2b,0x70,0x2b,0x22,0x29,0x22,0x7d,0x7d,0x76,0x61, 0x72,0x20,0x68,0x3d,0x63,0x28,0x6e,0x2e,0x64,0x65,0x6c,0x69,0x6d,0x69,0x74,0x65, 0x72,0x7c,0x7c,0x22,0x2f,0x22,0x29,0x2c,0x76,0x3d,0x61,0x2e,0x73,0x6c,0x69,0x63, 0x65,0x28,0x2d,0x68,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3d,0x3d,0x3d,0x68, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7c,0x7c,0x28,0x61,0x3d,0x28,0x76, 0x3f,0x61,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x2d,0x68,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x29,0x3a,0x61,0x29,0x2b,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x68, 0x2b,0x22,0x28,0x3f,0x3d,0x24,0x29,0x29,0x3f,0x22,0x29,0x2c,0x61,0x2b,0x3d,0x69, 0x3f,0x22,0x24,0x22,0x3a,0x6f,0x26,0x26,0x76,0x3f,0x22,0x22,0x3a,0x22,0x28,0x3f, 0x3d,0x22,0x2b,0x68,0x2b,0x22,0x7c,0x24,0x29,0x22,0x2c,0x73,0x28,0x6e,0x65,0x77, 0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x5e,0x22,0x2b,0x61,0x2c,0x66,0x28, 0x6e,0x29,0x29,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x70,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x28,0x74,0x29,0x7c,0x7c,0x28,0x6e,0x3d,0x74,0x7c,0x7c,0x6e,0x2c,0x74,0x3d, 0x5b,0x5d,0x29,0x2c,0x6e,0x3d,0x6e,0x7c,0x7c,0x7b,0x7d,0x2c,0x65,0x20,0x69,0x6e, 0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x3f, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,0x6d,0x61,0x74, 0x63,0x68,0x28,0x2f,0x5c,0x28,0x28,0x3f,0x21,0x5c,0x3f,0x29,0x2f,0x67,0x29,0x3b, 0x69,0x66,0x28,0x6e,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x30, 0x3b,0x72,0x3c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29, 0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x72,0x2c,0x70, 0x72,0x65,0x66,0x69,0x78,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64,0x65,0x6c,0x69,0x6d, 0x69,0x74,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x61,0x6c,0x3a,0x21,0x31,0x2c,0x72,0x65,0x70,0x65,0x61,0x74,0x3a,0x21,0x31,0x2c, 0x70,0x61,0x72,0x74,0x69,0x61,0x6c,0x3a,0x21,0x31,0x2c,0x61,0x73,0x74,0x65,0x72, 0x69,0x73,0x6b,0x3a,0x21,0x31,0x2c,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x3a,0x6e, 0x75,0x6c,0x6c,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65, 0x2c,0x74,0x29,0x7d,0x28,0x65,0x2c,0x74,0x29,0x3a,0x72,0x28,0x65,0x29,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x5b,0x5d,0x2c,0x6f,0x3d,0x30,0x3b, 0x6f,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x2b,0x29,0x72, 0x2e,0x70,0x75,0x73,0x68,0x28,0x70,0x28,0x65,0x5b,0x6f,0x5d,0x2c,0x74,0x2c,0x6e, 0x29,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x73,0x28,0x6e,0x65,0x77,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x28, 0x3f,0x3a,0x22,0x2b,0x72,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2b, 0x22,0x29,0x22,0x2c,0x66,0x28,0x6e,0x29,0x29,0x2c,0x74,0x29,0x7d,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x28,0x69,0x28, 0x65,0x2c,0x6e,0x29,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x33,0x34,0x29, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2b,0x28,0x6e,0x3f,0x22,0x5f, 0x22,0x3a,0x22,0x22,0x29,0x2b,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43, 0x61,0x73,0x65,0x28,0x29,0x7d,0x29,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79, 0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x29,0x2c,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x5b,0x72,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x72,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x6e,0x29,0x7d,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22, 0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x33,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6e,0x63, 0x6f,0x64,0x65,0x55,0x52,0x49,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x28, 0x65,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x25,0x33,0x41,0x2f, 0x67,0x69,0x2c,0x22,0x3a,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x2f,0x25,0x32,0x34,0x2f,0x67,0x2c,0x22,0x24,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c, 0x61,0x63,0x65,0x28,0x2f,0x25,0x32,0x43,0x2f,0x67,0x69,0x2c,0x22,0x2c,0x22,0x29, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x25,0x32,0x30,0x2f,0x67,0x2c, 0x22,0x2b,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x25,0x35, 0x42,0x2f,0x67,0x69,0x2c,0x22,0x5b,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63, 0x65,0x28,0x2f,0x25,0x35,0x44,0x2f,0x67,0x69,0x2c,0x22,0x5d,0x22,0x29,0x7d,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x21,0x74,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x69,0x3b,0x69,0x66, 0x28,0x6e,0x29,0x69,0x3d,0x6e,0x28,0x74,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69, 0x66,0x28,0x72,0x2e,0x69,0x73,0x55,0x52,0x4c,0x53,0x65,0x61,0x72,0x63,0x68,0x50, 0x61,0x72,0x61,0x6d,0x73,0x28,0x74,0x29,0x29,0x69,0x3d,0x74,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x5b,0x5d,0x3b,0x72,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x26,0x26,0x28,0x72,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29, 0x3f,0x74,0x2b,0x3d,0x22,0x5b,0x5d,0x22,0x3a,0x65,0x3d,0x5b,0x65,0x5d,0x2c,0x72, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x2e,0x69,0x73,0x44,0x61,0x74,0x65, 0x28,0x65,0x29,0x3f,0x65,0x3d,0x65,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x28,0x29,0x3a,0x72,0x2e,0x69,0x73,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x65,0x29,0x26,0x26,0x28,0x65,0x3d,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72, 0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x29,0x29,0x2c,0x61,0x2e,0x70,0x75,0x73, 0x68,0x28,0x6f,0x28,0x74,0x29,0x2b,0x22,0x3d,0x22,0x2b,0x6f,0x28,0x65,0x29,0x29, 0x7d,0x29,0x29,0x29,0x7d,0x29,0x29,0x2c,0x69,0x3d,0x61,0x2e,0x6a,0x6f,0x69,0x6e, 0x28,0x22,0x26,0x22,0x29,0x7d,0x69,0x66,0x28,0x69,0x29,0x7b,0x76,0x61,0x72,0x20, 0x75,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x23,0x22,0x29, 0x3b,0x2d,0x31,0x21,0x3d,0x3d,0x75,0x26,0x26,0x28,0x65,0x3d,0x65,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x30,0x2c,0x75,0x29,0x29,0x2c,0x65,0x2b,0x3d,0x28,0x2d,0x31, 0x3d,0x3d,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x3f,0x22, 0x29,0x3f,0x22,0x3f,0x22,0x3a,0x22,0x26,0x22,0x29,0x2b,0x69,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c, 0x6f,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x3d,0x74,0x2c,0x6e,0x26,0x26,0x28,0x65,0x2e,0x63,0x6f,0x64,0x65,0x3d, 0x6e,0x29,0x2c,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x3d,0x72,0x2c,0x65, 0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3d,0x6f,0x2c,0x65,0x2e,0x69,0x73, 0x41,0x78,0x69,0x6f,0x73,0x45,0x72,0x72,0x6f,0x72,0x3d,0x21,0x30,0x2c,0x65,0x2e, 0x74,0x6f,0x4a,0x53,0x4f,0x4e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x6e,0x61, 0x6d,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x68,0x69,0x73,0x2e,0x64,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x6e,0x75,0x6d,0x62,0x65,0x72, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x6e,0x75,0x6d,0x62,0x65,0x72,0x2c,0x66,0x69,0x6c, 0x65,0x4e,0x61,0x6d,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x6c,0x65,0x4e, 0x61,0x6d,0x65,0x2c,0x6c,0x69,0x6e,0x65,0x4e,0x75,0x6d,0x62,0x65,0x72,0x3a,0x74, 0x68,0x69,0x73,0x2e,0x6c,0x69,0x6e,0x65,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2c,0x63, 0x6f,0x6c,0x75,0x6d,0x6e,0x4e,0x75,0x6d,0x62,0x65,0x72,0x3a,0x74,0x68,0x69,0x73, 0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2c,0x73,0x74, 0x61,0x63,0x6b,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x63,0x6b,0x2c,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x3a,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2c,0x63,0x6f,0x64,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x64,0x65, 0x2c,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73, 0x70,0x6f,0x6e,0x73,0x65,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x70, 0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x3f,0x74,0x68,0x69,0x73, 0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x2c,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x33,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x37,0x32,0x29,0x2c,0x69,0x3d, 0x6e,0x28,0x31,0x37,0x33,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x31,0x30,0x38,0x29,0x2c, 0x75,0x3d,0x6e,0x28,0x31,0x37,0x34,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x31,0x37,0x37, 0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x31,0x37,0x38,0x29,0x2c,0x73,0x3d,0x6e,0x28,0x31, 0x31,0x31,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x37,0x30,0x29,0x2c,0x64,0x3d,0x6e,0x28, 0x37,0x31,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x70,0x2c,0x68,0x3d,0x65,0x2e,0x64,0x61,0x74,0x61,0x2c,0x76,0x3d,0x65,0x2e,0x68, 0x65,0x61,0x64,0x65,0x72,0x73,0x2c,0x67,0x3d,0x65,0x2e,0x72,0x65,0x73,0x70,0x6f, 0x6e,0x73,0x65,0x54,0x79,0x70,0x65,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6d,0x28,0x29,0x7b,0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b, 0x65,0x6e,0x26,0x26,0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b,0x65, 0x6e,0x2e,0x75,0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x70,0x29, 0x2c,0x65,0x2e,0x73,0x69,0x67,0x6e,0x61,0x6c,0x26,0x26,0x65,0x2e,0x73,0x69,0x67, 0x6e,0x61,0x6c,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x61,0x62,0x6f,0x72,0x74,0x22,0x2c, 0x70,0x29,0x7d,0x72,0x2e,0x69,0x73,0x46,0x6f,0x72,0x6d,0x44,0x61,0x74,0x61,0x28, 0x68,0x29,0x26,0x26,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x76,0x5b,0x22,0x43,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x22,0x5d,0x3b,0x76,0x61,0x72, 0x20,0x62,0x3d,0x6e,0x65,0x77,0x20,0x58,0x4d,0x4c,0x48,0x74,0x74,0x70,0x52,0x65, 0x71,0x75,0x65,0x73,0x74,0x3b,0x69,0x66,0x28,0x65,0x2e,0x61,0x75,0x74,0x68,0x29, 0x7b,0x76,0x61,0x72,0x20,0x79,0x3d,0x65,0x2e,0x61,0x75,0x74,0x68,0x2e,0x75,0x73, 0x65,0x72,0x6e,0x61,0x6d,0x65,0x7c,0x7c,0x22,0x22,0x2c,0x5f,0x3d,0x65,0x2e,0x61, 0x75,0x74,0x68,0x2e,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3f,0x75,0x6e,0x65, 0x73,0x63,0x61,0x70,0x65,0x28,0x65,0x6e,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x43, 0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x28,0x65,0x2e,0x61,0x75,0x74,0x68,0x2e, 0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x29,0x29,0x3a,0x22,0x22,0x3b,0x76,0x2e, 0x41,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x42, 0x61,0x73,0x69,0x63,0x20,0x22,0x2b,0x62,0x74,0x6f,0x61,0x28,0x79,0x2b,0x22,0x3a, 0x22,0x2b,0x5f,0x29,0x7d,0x76,0x61,0x72,0x20,0x77,0x3d,0x75,0x28,0x65,0x2e,0x62, 0x61,0x73,0x65,0x55,0x52,0x4c,0x2c,0x65,0x2e,0x75,0x72,0x6c,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x28,0x29,0x7b,0x69,0x66,0x28,0x62,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x67,0x65,0x74,0x41,0x6c,0x6c,0x52,0x65, 0x73,0x70,0x6f,0x6e,0x73,0x65,0x48,0x65,0x61,0x64,0x65,0x72,0x73,0x22,0x69,0x6e, 0x20,0x62,0x3f,0x63,0x28,0x62,0x2e,0x67,0x65,0x74,0x41,0x6c,0x6c,0x52,0x65,0x73, 0x70,0x6f,0x6e,0x73,0x65,0x48,0x65,0x61,0x64,0x65,0x72,0x73,0x28,0x29,0x29,0x3a, 0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x3d,0x7b,0x64,0x61,0x74,0x61,0x3a,0x67,0x26,0x26, 0x22,0x74,0x65,0x78,0x74,0x22,0x21,0x3d,0x3d,0x67,0x26,0x26,0x22,0x6a,0x73,0x6f, 0x6e,0x22,0x21,0x3d,0x3d,0x67,0x3f,0x62,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73, 0x65,0x3a,0x62,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74, 0x2c,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x62,0x2e,0x73,0x74,0x61,0x74,0x75,0x73, 0x2c,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74,0x3a,0x62,0x2e,0x73,0x74, 0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74,0x2c,0x68,0x65,0x61,0x64,0x65,0x72,0x73, 0x3a,0x72,0x2c,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x65,0x2c,0x72,0x65,0x71,0x75, 0x65,0x73,0x74,0x3a,0x62,0x7d,0x3b,0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x28,0x65,0x29,0x2c,0x6d,0x28,0x29,0x7d,0x29, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x28, 0x65,0x29,0x2c,0x6d,0x28,0x29,0x7d,0x29,0x2c,0x69,0x29,0x2c,0x62,0x3d,0x6e,0x75, 0x6c,0x6c,0x7d,0x7d,0x69,0x66,0x28,0x62,0x2e,0x6f,0x70,0x65,0x6e,0x28,0x65,0x2e, 0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61, 0x73,0x65,0x28,0x29,0x2c,0x61,0x28,0x77,0x2c,0x65,0x2e,0x70,0x61,0x72,0x61,0x6d, 0x73,0x2c,0x65,0x2e,0x70,0x61,0x72,0x61,0x6d,0x73,0x53,0x65,0x72,0x69,0x61,0x6c, 0x69,0x7a,0x65,0x72,0x29,0x2c,0x21,0x30,0x29,0x2c,0x62,0x2e,0x74,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x3d,0x65,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2c,0x22,0x6f, 0x6e,0x6c,0x6f,0x61,0x64,0x65,0x6e,0x64,0x22,0x69,0x6e,0x20,0x62,0x3f,0x62,0x2e, 0x6f,0x6e,0x6c,0x6f,0x61,0x64,0x65,0x6e,0x64,0x3d,0x4f,0x3a,0x62,0x2e,0x6f,0x6e, 0x72,0x65,0x61,0x64,0x79,0x73,0x74,0x61,0x74,0x65,0x63,0x68,0x61,0x6e,0x67,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x62,0x26,0x26,0x34, 0x3d,0x3d,0x3d,0x62,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x26, 0x26,0x28,0x30,0x21,0x3d,0x3d,0x62,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7c,0x7c, 0x62,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x55,0x52,0x4c,0x26,0x26,0x30, 0x3d,0x3d,0x3d,0x62,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x55,0x52,0x4c, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x66,0x69,0x6c,0x65,0x3a,0x22, 0x29,0x29,0x26,0x26,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x4f, 0x29,0x7d,0x2c,0x62,0x2e,0x6f,0x6e,0x61,0x62,0x6f,0x72,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x62,0x26,0x26,0x28,0x6e,0x28,0x73,0x28, 0x22,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x61,0x62,0x6f,0x72,0x74,0x65,0x64, 0x22,0x2c,0x65,0x2c,0x22,0x45,0x43,0x4f,0x4e,0x4e,0x41,0x42,0x4f,0x52,0x54,0x45, 0x44,0x22,0x2c,0x62,0x29,0x29,0x2c,0x62,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c, 0x62,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x28,0x73,0x28,0x22,0x4e,0x65,0x74,0x77,0x6f,0x72, 0x6b,0x20,0x45,0x72,0x72,0x6f,0x72,0x22,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x62,0x29,0x29,0x2c,0x62,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x62,0x2e,0x6f,0x6e, 0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x74,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x3f,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x6f,0x66,0x20,0x22, 0x2b,0x65,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2b,0x22,0x6d,0x73,0x20,0x65, 0x78,0x63,0x65,0x65,0x64,0x65,0x64,0x22,0x3a,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x20,0x65,0x78,0x63,0x65,0x65,0x64,0x65,0x64,0x22,0x2c,0x72,0x3d,0x65,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x7c,0x7c,0x66,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x3b,0x65,0x2e,0x74, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x45,0x72,0x72,0x6f,0x72,0x4d,0x65,0x73,0x73,0x61, 0x67,0x65,0x26,0x26,0x28,0x74,0x3d,0x65,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x45,0x72,0x72,0x6f,0x72,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x2c,0x6e,0x28, 0x73,0x28,0x74,0x2c,0x65,0x2c,0x72,0x2e,0x63,0x6c,0x61,0x72,0x69,0x66,0x79,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x45,0x72,0x72,0x6f,0x72,0x3f,0x22,0x45,0x54,0x49, 0x4d,0x45,0x44,0x4f,0x55,0x54,0x22,0x3a,0x22,0x45,0x43,0x4f,0x4e,0x4e,0x41,0x42, 0x4f,0x52,0x54,0x45,0x44,0x22,0x2c,0x62,0x29,0x29,0x2c,0x62,0x3d,0x6e,0x75,0x6c, 0x6c,0x7d,0x2c,0x72,0x2e,0x69,0x73,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x42, 0x72,0x6f,0x77,0x73,0x65,0x72,0x45,0x6e,0x76,0x28,0x29,0x29,0x7b,0x76,0x61,0x72, 0x20,0x78,0x3d,0x28,0x65,0x2e,0x77,0x69,0x74,0x68,0x43,0x72,0x65,0x64,0x65,0x6e, 0x74,0x69,0x61,0x6c,0x73,0x7c,0x7c,0x6c,0x28,0x77,0x29,0x29,0x26,0x26,0x65,0x2e, 0x78,0x73,0x72,0x66,0x43,0x6f,0x6f,0x6b,0x69,0x65,0x4e,0x61,0x6d,0x65,0x3f,0x69, 0x2e,0x72,0x65,0x61,0x64,0x28,0x65,0x2e,0x78,0x73,0x72,0x66,0x43,0x6f,0x6f,0x6b, 0x69,0x65,0x4e,0x61,0x6d,0x65,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x78, 0x26,0x26,0x28,0x76,0x5b,0x65,0x2e,0x78,0x73,0x72,0x66,0x48,0x65,0x61,0x64,0x65, 0x72,0x4e,0x61,0x6d,0x65,0x5d,0x3d,0x78,0x29,0x7d,0x22,0x73,0x65,0x74,0x52,0x65, 0x71,0x75,0x65,0x73,0x74,0x48,0x65,0x61,0x64,0x65,0x72,0x22,0x69,0x6e,0x20,0x62, 0x26,0x26,0x72,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x76,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x22,0x75,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x68,0x26,0x26,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79, 0x70,0x65,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43, 0x61,0x73,0x65,0x28,0x29,0x3f,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x76,0x5b,0x74, 0x5d,0x3a,0x62,0x2e,0x73,0x65,0x74,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x48,0x65, 0x61,0x64,0x65,0x72,0x28,0x74,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x72,0x2e,0x69, 0x73,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x65,0x2e,0x77,0x69,0x74, 0x68,0x43,0x72,0x65,0x64,0x65,0x6e,0x74,0x69,0x61,0x6c,0x73,0x29,0x7c,0x7c,0x28, 0x62,0x2e,0x77,0x69,0x74,0x68,0x43,0x72,0x65,0x64,0x65,0x6e,0x74,0x69,0x61,0x6c, 0x73,0x3d,0x21,0x21,0x65,0x2e,0x77,0x69,0x74,0x68,0x43,0x72,0x65,0x64,0x65,0x6e, 0x74,0x69,0x61,0x6c,0x73,0x29,0x2c,0x67,0x26,0x26,0x22,0x6a,0x73,0x6f,0x6e,0x22, 0x21,0x3d,0x3d,0x67,0x26,0x26,0x28,0x62,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73, 0x65,0x54,0x79,0x70,0x65,0x3d,0x65,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65, 0x54,0x79,0x70,0x65,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x6f,0x6e,0x44,0x6f, 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x26,0x26, 0x62,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e, 0x65,0x72,0x28,0x22,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x22,0x2c,0x65,0x2e, 0x6f,0x6e,0x44,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x50,0x72,0x6f,0x67,0x72,0x65, 0x73,0x73,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x6f,0x6e,0x55,0x70,0x6c,0x6f, 0x61,0x64,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x26,0x26,0x62,0x2e,0x75,0x70, 0x6c,0x6f,0x61,0x64,0x26,0x26,0x62,0x2e,0x75,0x70,0x6c,0x6f,0x61,0x64,0x2e,0x61, 0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28, 0x22,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x22,0x2c,0x65,0x2e,0x6f,0x6e,0x55, 0x70,0x6c,0x6f,0x61,0x64,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x29,0x2c,0x28, 0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b,0x65,0x6e,0x7c,0x7c,0x65, 0x2e,0x73,0x69,0x67,0x6e,0x61,0x6c,0x29,0x26,0x26,0x28,0x70,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x62,0x26,0x26,0x28,0x6e,0x28,0x21, 0x65,0x7c,0x7c,0x65,0x26,0x26,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x6e,0x65,0x77, 0x20,0x64,0x28,0x22,0x63,0x61,0x6e,0x63,0x65,0x6c,0x65,0x64,0x22,0x29,0x3a,0x65, 0x29,0x2c,0x62,0x2e,0x61,0x62,0x6f,0x72,0x74,0x28,0x29,0x2c,0x62,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x7d,0x2c,0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b, 0x65,0x6e,0x26,0x26,0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b,0x65, 0x6e,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x70,0x29,0x2c,0x65, 0x2e,0x73,0x69,0x67,0x6e,0x61,0x6c,0x26,0x26,0x28,0x65,0x2e,0x73,0x69,0x67,0x6e, 0x61,0x6c,0x2e,0x61,0x62,0x6f,0x72,0x74,0x65,0x64,0x3f,0x70,0x28,0x29,0x3a,0x65, 0x2e,0x73,0x69,0x67,0x6e,0x61,0x6c,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x61,0x62,0x6f,0x72,0x74,0x22, 0x2c,0x70,0x29,0x29,0x29,0x2c,0x68,0x7c,0x7c,0x28,0x68,0x3d,0x6e,0x75,0x6c,0x6c, 0x29,0x2c,0x62,0x2e,0x73,0x65,0x6e,0x64,0x28,0x68,0x29,0x7d,0x29,0x29,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x30,0x39,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e, 0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x28,0x61,0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x2c,0x69,0x29,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x21,0x65,0x7c, 0x7c,0x21,0x65,0x2e,0x5f,0x5f,0x43,0x41,0x4e,0x43,0x45,0x4c,0x5f,0x5f,0x29,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x74,0x3d,0x74,0x7c,0x7c,0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x7b,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x69,0x73,0x50, 0x6c,0x61,0x69,0x6e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x26,0x26,0x72, 0x2e,0x69,0x73,0x50,0x6c,0x61,0x69,0x6e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x74, 0x29,0x3f,0x72,0x2e,0x6d,0x65,0x72,0x67,0x65,0x28,0x65,0x2c,0x74,0x29,0x3a,0x72, 0x2e,0x69,0x73,0x50,0x6c,0x61,0x69,0x6e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x74, 0x29,0x3f,0x72,0x2e,0x6d,0x65,0x72,0x67,0x65,0x28,0x7b,0x7d,0x2c,0x74,0x29,0x3a, 0x72,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x29,0x3f,0x74,0x2e,0x73, 0x6c,0x69,0x63,0x65,0x28,0x29,0x3a,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x69,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e, 0x69,0x73,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x74,0x5b,0x6e,0x5d, 0x29,0x3f,0x72,0x2e,0x69,0x73,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28, 0x65,0x5b,0x6e,0x5d,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6f,0x28,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x65,0x5b,0x6e,0x5d,0x29,0x3a,0x6f,0x28,0x65,0x5b, 0x6e,0x5d,0x2c,0x74,0x5b,0x6e,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x61,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x72,0x2e,0x69,0x73,0x55, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x74,0x5b,0x65,0x5d,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x74, 0x5b,0x65,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x69,0x73,0x55,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x74,0x5b,0x6e,0x5d,0x29,0x3f,0x72,0x2e, 0x69,0x73,0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x65,0x5b,0x6e,0x5d, 0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6f,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x2c,0x65,0x5b,0x6e,0x5d,0x29,0x3a,0x6f,0x28,0x76,0x6f,0x69,0x64,0x20,0x30, 0x2c,0x74,0x5b,0x6e,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x63,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x20,0x69,0x6e, 0x20,0x74,0x3f,0x6f,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x74,0x5b,0x6e,0x5d,0x29,0x3a, 0x6e,0x20,0x69,0x6e,0x20,0x65,0x3f,0x6f,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c, 0x65,0x5b,0x6e,0x5d,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x76,0x61,0x72, 0x20,0x6c,0x3d,0x7b,0x75,0x72,0x6c,0x3a,0x61,0x2c,0x6d,0x65,0x74,0x68,0x6f,0x64, 0x3a,0x61,0x2c,0x64,0x61,0x74,0x61,0x3a,0x61,0x2c,0x62,0x61,0x73,0x65,0x55,0x52, 0x4c,0x3a,0x75,0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x52,0x65,0x71, 0x75,0x65,0x73,0x74,0x3a,0x75,0x2c,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d, 0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x75,0x2c,0x70,0x61,0x72,0x61,0x6d, 0x73,0x53,0x65,0x72,0x69,0x61,0x6c,0x69,0x7a,0x65,0x72,0x3a,0x75,0x2c,0x74,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x3a,0x75,0x2c,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x4d, 0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x75,0x2c,0x77,0x69,0x74,0x68,0x43,0x72,0x65, 0x64,0x65,0x6e,0x74,0x69,0x61,0x6c,0x73,0x3a,0x75,0x2c,0x61,0x64,0x61,0x70,0x74, 0x65,0x72,0x3a,0x75,0x2c,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x79,0x70, 0x65,0x3a,0x75,0x2c,0x78,0x73,0x72,0x66,0x43,0x6f,0x6f,0x6b,0x69,0x65,0x4e,0x61, 0x6d,0x65,0x3a,0x75,0x2c,0x78,0x73,0x72,0x66,0x48,0x65,0x61,0x64,0x65,0x72,0x4e, 0x61,0x6d,0x65,0x3a,0x75,0x2c,0x6f,0x6e,0x55,0x70,0x6c,0x6f,0x61,0x64,0x50,0x72, 0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x75,0x2c,0x6f,0x6e,0x44,0x6f,0x77,0x6e,0x6c, 0x6f,0x61,0x64,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x75,0x2c,0x64,0x65, 0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x3a,0x75,0x2c,0x6d,0x61,0x78,0x43,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x75,0x2c,0x6d,0x61, 0x78,0x42,0x6f,0x64,0x79,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x75,0x2c,0x74,0x72, 0x61,0x6e,0x73,0x70,0x6f,0x72,0x74,0x3a,0x75,0x2c,0x68,0x74,0x74,0x70,0x41,0x67, 0x65,0x6e,0x74,0x3a,0x75,0x2c,0x68,0x74,0x74,0x70,0x73,0x41,0x67,0x65,0x6e,0x74, 0x3a,0x75,0x2c,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b,0x65,0x6e,0x3a,0x75, 0x2c,0x73,0x6f,0x63,0x6b,0x65,0x74,0x50,0x61,0x74,0x68,0x3a,0x75,0x2c,0x72,0x65, 0x73,0x70,0x6f,0x6e,0x73,0x65,0x45,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3a,0x75, 0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x3a, 0x63,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28, 0x65,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6c,0x5b,0x65, 0x5d,0x7c,0x7c,0x69,0x2c,0x6f,0x3d,0x74,0x28,0x65,0x29,0x3b,0x72,0x2e,0x69,0x73, 0x55,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x28,0x6f,0x29,0x26,0x26,0x74,0x21, 0x3d,0x3d,0x63,0x7c,0x7c,0x28,0x6e,0x5b,0x65,0x5d,0x3d,0x6f,0x29,0x7d,0x29,0x29, 0x2c,0x6e,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x7b,0x76,0x65, 0x72,0x73,0x69,0x6f,0x6e,0x3a,0x22,0x30,0x2e,0x32,0x34,0x2e,0x30,0x22,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x31,0x36,0x29,0x2c,0x6f,0x3d, 0x6e,0x28,0x31,0x32,0x31,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x34,0x34,0x29,0x2c,0x61, 0x3d,0x6e,0x28,0x31,0x32,0x32,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x31,0x30,0x32,0x29, 0x2c,0x63,0x3d,0x6e,0x28,0x37,0x37,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6c,0x3d,0x2d,0x31,0x2c, 0x73,0x3d,0x28,0x74,0x3d,0x72,0x28,0x74,0x2c,0x65,0x29,0x29,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x66,0x3d,0x21,0x31,0x3b,0x2b,0x2b,0x6c,0x3c,0x73,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x63,0x28,0x74,0x5b,0x6c,0x5d,0x29,0x3b,0x69, 0x66,0x28,0x21,0x28,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x6e, 0x28,0x65,0x2c,0x64,0x29,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x65,0x3d,0x65, 0x5b,0x64,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x7c,0x7c,0x2b,0x2b, 0x6c,0x21,0x3d,0x73,0x3f,0x66,0x3a,0x21,0x21,0x28,0x73,0x3d,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26, 0x26,0x75,0x28,0x73,0x29,0x26,0x26,0x61,0x28,0x64,0x2c,0x73,0x29,0x26,0x26,0x28, 0x69,0x28,0x65,0x29,0x7c,0x7c,0x6f,0x28,0x65,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x34,0x34,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x39,0x37, 0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x38,0x39,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x36, 0x34,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x28,0x65,0x29,0x3f,0x65,0x3a,0x6f,0x28,0x65,0x2c,0x74,0x29,0x3f, 0x5b,0x65,0x5d,0x3a,0x69,0x28,0x61,0x28,0x65,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x74,0x26,0x26,0x74,0x26,0x26,0x74,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x3d,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x26,0x26,0x74,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x35,0x36,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x36,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30,0x30, 0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x6f,0x28,0x65,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x72,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x3d,0x3d, 0x74,0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x47,0x65,0x6e,0x65, 0x72,0x61,0x74,0x6f,0x72,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x3d, 0x3d,0x74,0x7c,0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x73,0x79, 0x6e,0x63,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x3d,0x3d,0x74,0x7c, 0x7c,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x50,0x72,0x6f,0x78,0x79,0x5d, 0x22,0x3d,0x3d,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x46,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x7d,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2b,0x22,0x22,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29, 0x7b,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x74, 0x7c,0x7c,0x65,0x21,0x3d,0x3d,0x65,0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x31,0x35,0x29,0x2c,0x6f,0x3d, 0x6e,0x28,0x36,0x33,0x29,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x61,0x3d,0x69,0x2e,0x68,0x61,0x73, 0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x75,0x3d,0x69,0x2e, 0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72, 0x61,0x62,0x6c,0x65,0x2c,0x63,0x3d,0x72,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x7d,0x28,0x29,0x29,0x3f,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x65,0x29,0x26,0x26,0x61,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22,0x63,0x61, 0x6c,0x6c,0x65,0x65,0x22,0x29,0x26,0x26,0x21,0x75,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x65,0x2c,0x22,0x63,0x61,0x6c,0x6c,0x65,0x65,0x22,0x29,0x7d,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x63,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2f,0x5e, 0x28,0x3f,0x3a,0x30,0x7c,0x5b,0x31,0x2d,0x39,0x5d,0x5c,0x64,0x2a,0x29,0x24,0x2f, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21, 0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x39,0x30,0x30,0x37,0x31, 0x39,0x39,0x32,0x35,0x34,0x37,0x34,0x30,0x39,0x39,0x31,0x3a,0x74,0x29,0x26,0x26, 0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x72,0x7c,0x7c,0x22,0x73, 0x79,0x6d,0x62,0x6f,0x6c,0x22,0x21,0x3d,0x72,0x26,0x26,0x6e,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x29,0x29,0x26,0x26,0x65,0x3e,0x2d,0x31,0x26,0x26,0x65,0x25,0x31, 0x3d,0x3d,0x30,0x26,0x26,0x65,0x3c,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x32,0x31,0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x22,0x3d,0x3d,0x74, 0x26,0x26,0x72,0x3f,0x72,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x65,0x6e,0x75,0x6d,0x65, 0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e, 0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29,0x3a,0x65, 0x5b,0x74,0x5d,0x3d,0x6e,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x32,0x31,0x37,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30,0x33,0x29,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26, 0x72,0x28,0x65,0x2c,0x74,0x2c,0x6f,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x34,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x32,0x31,0x29,0x2c,0x69,0x3d,0x74, 0x26,0x26,0x21,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x74, 0x2c,0x61,0x3d,0x69,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x21,0x65,0x2e, 0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x2c,0x75,0x3d,0x61,0x26, 0x26,0x61,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x3d,0x3d,0x69,0x3f,0x72, 0x2e,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x63, 0x3d,0x28,0x75,0x3f,0x75,0x2e,0x69,0x73,0x42,0x75,0x66,0x66,0x65,0x72,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x29,0x7c,0x7c,0x6f,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x63,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x2c,0x6e,0x28,0x39,0x35,0x29,0x28,0x65,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x32,0x32,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x32, 0x33,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x32,0x34,0x29,0x2c,0x61,0x3d,0x69,0x26, 0x26,0x69,0x2e,0x69,0x73,0x54,0x79,0x70,0x65,0x64,0x41,0x72,0x72,0x61,0x79,0x2c, 0x75,0x3d,0x61,0x3f,0x6f,0x28,0x61,0x29,0x3a,0x72,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x75,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x32,0x33,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x36,0x30,0x29,0x2c,0x69,0x3d, 0x6e,0x28,0x32,0x36,0x34,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x34,0x34,0x29,0x2c,0x75, 0x3d,0x6e,0x28,0x32,0x36,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x69,0x3a,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x61,0x28,0x65,0x29,0x3f,0x6f,0x28,0x65, 0x5b,0x30,0x5d,0x2c,0x65,0x5b,0x31,0x5d,0x29,0x3a,0x72,0x28,0x65,0x29,0x3a,0x75, 0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x34, 0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x33,0x32,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32, 0x33,0x33,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x32,0x33,0x34,0x29,0x2c,0x75,0x3d,0x6e, 0x28,0x32,0x33,0x35,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x32,0x33,0x36,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f, 0x3d,0x6e,0x65,0x77,0x20,0x72,0x28,0x65,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x3d,0x74,0x2e,0x73,0x69,0x7a,0x65,0x7d,0x6c,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x6f,0x2c,0x6c, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74, 0x65,0x3d,0x69,0x2c,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x67,0x65,0x74,0x3d,0x61,0x2c,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x68,0x61,0x73,0x3d,0x75,0x2c,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x63,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x6c,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32, 0x33,0x37,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x36,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65, 0x28,0x74,0x2c,0x6e,0x2c,0x69,0x2c,0x61,0x2c,0x75,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x7c,0x7c,0x21,0x6f,0x28, 0x74,0x29,0x26,0x26,0x21,0x6f,0x28,0x6e,0x29,0x3f,0x74,0x21,0x3d,0x3d,0x74,0x26, 0x26,0x6e,0x21,0x3d,0x3d,0x6e,0x3a,0x72,0x28,0x74,0x2c,0x6e,0x2c,0x69,0x2c,0x61, 0x2c,0x65,0x2c,0x75,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x32,0x33,0x38,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x34,0x31,0x29,0x2c,0x69, 0x3d,0x6e,0x28,0x32,0x34,0x32,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x61,0x2c,0x75,0x2c,0x63,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x31,0x26, 0x6e,0x2c,0x73,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x66,0x3d,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x73,0x21,0x3d,0x66,0x26, 0x26,0x21,0x28,0x6c,0x26,0x26,0x66,0x3e,0x73,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x63,0x2e,0x67,0x65,0x74,0x28, 0x65,0x29,0x2c,0x70,0x3d,0x63,0x2e,0x67,0x65,0x74,0x28,0x74,0x29,0x3b,0x69,0x66, 0x28,0x64,0x26,0x26,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x3d,0x3d, 0x74,0x26,0x26,0x70,0x3d,0x3d,0x65,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d,0x2d,0x31, 0x2c,0x76,0x3d,0x21,0x30,0x2c,0x67,0x3d,0x32,0x26,0x6e,0x3f,0x6e,0x65,0x77,0x20, 0x72,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x66,0x6f,0x72,0x28,0x63,0x2e,0x73, 0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x63,0x2e,0x73,0x65,0x74,0x28,0x74,0x2c, 0x65,0x29,0x3b,0x2b,0x2b,0x68,0x3c,0x73,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6d, 0x3d,0x65,0x5b,0x68,0x5d,0x2c,0x62,0x3d,0x74,0x5b,0x68,0x5d,0x3b,0x69,0x66,0x28, 0x61,0x29,0x76,0x61,0x72,0x20,0x79,0x3d,0x6c,0x3f,0x61,0x28,0x62,0x2c,0x6d,0x2c, 0x68,0x2c,0x74,0x2c,0x65,0x2c,0x63,0x29,0x3a,0x61,0x28,0x6d,0x2c,0x62,0x2c,0x68, 0x2c,0x65,0x2c,0x74,0x2c,0x63,0x29,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x79,0x29,0x7b,0x69,0x66,0x28,0x79,0x29,0x63,0x6f,0x6e,0x74, 0x69,0x6e,0x75,0x65,0x3b,0x76,0x3d,0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d, 0x69,0x66,0x28,0x67,0x29,0x7b,0x69,0x66,0x28,0x21,0x6f,0x28,0x74,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28, 0x21,0x69,0x28,0x67,0x2c,0x74,0x29,0x26,0x26,0x28,0x6d,0x3d,0x3d,0x3d,0x65,0x7c, 0x7c,0x75,0x28,0x6d,0x2c,0x65,0x2c,0x6e,0x2c,0x61,0x2c,0x63,0x29,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x7d, 0x29,0x29,0x29,0x7b,0x76,0x3d,0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d, 0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6d,0x21,0x3d,0x3d,0x62,0x26,0x26,0x21, 0x75,0x28,0x6d,0x2c,0x62,0x2c,0x6e,0x2c,0x61,0x2c,0x63,0x29,0x29,0x7b,0x76,0x3d, 0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x63,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x2c,0x63,0x2e,0x64, 0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x29,0x2c,0x76,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x31,0x30,0x30,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x21,0x72, 0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x26,0x26,0x28, 0x6e,0x5b,0x65,0x5d,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x74,0x7c,0x7c,0x65,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6e,0x29,0x29,0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x31,0x31,0x36,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x37,0x37,0x29,0x3b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x30,0x2c,0x69,0x3d,0x28,0x74,0x3d,0x72,0x28,0x74,0x2c,0x65,0x29,0x29, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26, 0x26,0x6e,0x3c,0x69,0x3b,0x29,0x65,0x3d,0x65,0x5b,0x6f,0x28,0x74,0x5b,0x6e,0x2b, 0x2b,0x5d,0x29,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x6e, 0x3d,0x3d,0x69,0x3f,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x36,0x38,0x29,0x2c,0x6f,0x3d,0x6e,0x28, 0x32,0x36,0x39,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x37,0x32,0x29,0x2c,0x61,0x3d, 0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x5b,0x27,0x5c,0x75,0x32,0x30,0x31,0x39, 0x5d,0x22,0x2c,0x22,0x67,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x69,0x28,0x6f,0x28,0x74,0x29, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x61,0x2c,0x22,0x22,0x29,0x29,0x2c, 0x65,0x2c,0x22,0x22,0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x52,0x65,0x67, 0x45,0x78,0x70,0x28,0x22,0x5b,0x5c,0x5c,0x75,0x32,0x30,0x30,0x64,0x5c,0x5c,0x75, 0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5c,0x5c,0x75,0x30, 0x33,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x30,0x33,0x36,0x66,0x5c,0x5c,0x75,0x66,0x65, 0x32,0x30,0x2d,0x5c,0x5c,0x75,0x66,0x65,0x32,0x66,0x5c,0x5c,0x75,0x32,0x30,0x64, 0x30,0x2d,0x5c,0x5c,0x75,0x32,0x30,0x66,0x66,0x5c,0x5c,0x75,0x66,0x65,0x30,0x65, 0x5c,0x5c,0x75,0x66,0x65,0x30,0x66,0x5d,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x74,0x65,0x73,0x74,0x28,0x65, 0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x74,0x7c,0x7c,0x74,0x3e,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26, 0x26,0x28,0x74,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x30,0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20, 0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x29,0x3b,0x6e,0x3c,0x74,0x3b,0x6e,0x2b,0x2b, 0x29,0x72,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x33, 0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x38,0x2c,0x2d,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x4f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x65,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x26,0x26,0x28,0x6e,0x3d, 0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x6e,0x61, 0x6d,0x65,0x29,0x2c,0x22,0x4d,0x61,0x70,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x22, 0x53,0x65,0x74,0x22,0x3d,0x3d,0x3d,0x6e,0x3f,0x41,0x72,0x72,0x61,0x79,0x2e,0x66, 0x72,0x6f,0x6d,0x28,0x65,0x29,0x3a,0x22,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x2f,0x5e,0x28,0x3f,0x3a,0x55,0x69,0x7c, 0x49,0x29,0x6e,0x74,0x28,0x3f,0x3a,0x38,0x7c,0x31,0x36,0x7c,0x33,0x32,0x29,0x28, 0x3f,0x3a,0x43,0x6c,0x61,0x6d,0x70,0x65,0x64,0x29,0x3f,0x41,0x72,0x72,0x61,0x79, 0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x29,0x3f,0x72,0x28,0x65,0x2c,0x74, 0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x35,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x33, 0x29,0x2c,0x61,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x75,0x3d,0x6e,0x2e,0x6e,0x28,0x61, 0x29,0x2c,0x63,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x37,0x29,0x2c, 0x73,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x66,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22, 0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x22,0x5d,0x2c,0x64,0x3d,0x5b,0x22,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x22,0x5d,0x2c,0x70,0x3d,0x5b,0x22,0x78,0x78,0x6c,0x22,0x2c, 0x22,0x78,0x6c,0x22,0x2c,0x22,0x6c,0x67,0x22,0x2c,0x22,0x6d,0x64,0x22,0x2c,0x22, 0x73,0x6d,0x22,0x2c,0x22,0x78,0x73,0x22,0x5d,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d, 0x63,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x2c,0x72,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61, 0x29,0x28,0x65,0x2c,0x66,0x29,0x3b,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6c,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x63,0x6f,0x6c,0x22,0x29,0x3b,0x76,0x61, 0x72,0x20,0x63,0x3d,0x5b,0x5d,0x2c,0x73,0x3d,0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x70,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c, 0x72,0x2c,0x6f,0x2c,0x69,0x3d,0x61,0x5b,0x65,0x5d,0x3b,0x64,0x65,0x6c,0x65,0x74, 0x65,0x20,0x61,0x5b,0x65,0x5d,0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x69,0x3f,0x28,0x74,0x3d,0x69,0x2e,0x73,0x70,0x61,0x6e,0x2c,0x72,0x3d, 0x69,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x6f,0x3d,0x69,0x2e,0x6f,0x72,0x64, 0x65,0x72,0x29,0x3a,0x74,0x3d,0x69,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x22,0x78, 0x73,0x22,0x21,0x3d,0x3d,0x65,0x3f,0x22,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x65,0x29,0x3a,0x22,0x22,0x3b,0x74,0x26,0x26,0x63,0x2e,0x70,0x75,0x73, 0x68,0x28,0x21,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x6e,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x75,0x29,0x3a, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x29,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x75,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x74,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6f,0x26,0x26,0x73, 0x2e,0x70,0x75,0x73,0x68,0x28,0x22,0x6f,0x72,0x64,0x65,0x72,0x22,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x75,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x6f,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x26,0x26, 0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x75,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x72,0x29,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6f,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x61,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x75,0x2e,0x61,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x5b,0x72,0x5d,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x63,0x2c,0x73,0x29,0x29,0x7d,0x29,0x2c,0x7b,0x61,0x73, 0x3a,0x74,0x2c,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x3a,0x6e,0x2c,0x73,0x70, 0x61,0x6e,0x73,0x3a,0x63,0x7d,0x5d,0x7d,0x28,0x65,0x29,0x2c,0x61,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x32,0x29,0x2c,0x63, 0x3d,0x61,0x5b,0x30,0x5d,0x2c,0x68,0x3d,0x63,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x2c,0x76,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61, 0x29,0x28,0x63,0x2c,0x64,0x29,0x2c,0x67,0x3d,0x61,0x5b,0x31,0x5d,0x2c,0x6d,0x3d, 0x67,0x2e,0x61,0x73,0x2c,0x62,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x6d,0x3f,0x22,0x64,0x69,0x76,0x22,0x3a,0x6d,0x2c,0x79,0x3d,0x67,0x2e,0x62,0x73, 0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x5f,0x3d,0x67,0x2e,0x73,0x70,0x61,0x6e,0x73, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x62,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f, 0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x76,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x75,0x28,0x29,0x28,0x68,0x2c, 0x21,0x5f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x79,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x29,0x3b,0x68,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d, 0x65,0x3d,0x22,0x43,0x6f,0x6c,0x22,0x2c,0x74,0x2e,0x61,0x3d,0x68,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22, 0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x30,0x29,0x2c,0x6f,0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x2e, 0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x26,0x26,0x22,0x52,0x65,0x61,0x63, 0x74,0x4e,0x61,0x74,0x69,0x76,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x61,0x76, 0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x2c,0x69, 0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3b,0x74, 0x2e,0x61,0x3d,0x69,0x7c,0x7c,0x6f,0x3f,0x72,0x2e,0x75,0x73,0x65,0x4c,0x61,0x79, 0x6f,0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x72,0x2e,0x75,0x73,0x65,0x45, 0x66,0x66,0x65,0x63,0x74,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x2c,0x6e,0x28,0x35,0x36,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f, 0x3d,0x6e,0x2e,0x6e,0x28,0x72,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x33,0x39,0x29,0x2c, 0x61,0x3d,0x6e,0x28,0x32,0x30,0x29,0x2c,0x75,0x3d,0x6e,0x2e,0x6e,0x28,0x61,0x29, 0x2c,0x63,0x3d,0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x33,0x2c,0x6c,0x3d, 0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x54,0x68,0x69,0x73,0x3f, 0x67,0x6c,0x6f,0x62,0x61,0x6c,0x54,0x68,0x69,0x73,0x3a,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x77,0x69,0x6e,0x64,0x6f,0x77,0x3f,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3a,0x22,0x75, 0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a,0x7b,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x73,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6f,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29, 0x7d,0x2c,0x6f,0x66,0x66,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x74,0x3d,0x74,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x21,0x3d,0x3d,0x65,0x7d,0x29,0x29,0x7d,0x2c,0x67,0x65,0x74,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7d,0x2c,0x73,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x6e,0x2c,0x72,0x29,0x7b,0x65,0x3d,0x6e,0x2c,0x74,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x65,0x2c,0x72,0x29,0x7d,0x29, 0x29,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x66,0x3d,0x6f,0x2e,0x61,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7c,0x7c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x2c,0x6f,0x2c,0x61,0x3d,0x22,0x5f,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x2d,0x72, 0x65,0x61,0x63,0x74,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2d,0x22,0x2b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x22,0x5f,0x5f,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x5f,0x75,0x6e,0x69,0x71,0x75,0x65, 0x5f,0x69,0x64,0x5f,0x5f,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x5b, 0x65,0x5d,0x3d,0x28,0x6c,0x5b,0x65,0x5d,0x7c,0x7c,0x30,0x29,0x2b,0x31,0x7d,0x28, 0x29,0x2b,0x22,0x5f,0x5f,0x22,0x2c,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74, 0x3d,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e, 0x65,0x6d,0x69,0x74,0x74,0x65,0x72,0x3d,0x73,0x28,0x74,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x2c,0x74,0x7d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x67,0x65,0x74,0x43,0x68,0x69,0x6c,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65, 0x3d,0x7b,0x7d,0x29,0x5b,0x61,0x5d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x65,0x6d,0x69, 0x74,0x74,0x65,0x72,0x2c,0x65,0x7d,0x2c,0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x50,0x72, 0x6f,0x70,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x21,0x3d,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x3b,0x28,0x28,0x69,0x3d,0x72,0x29,0x3d,0x3d,0x3d,0x28,0x61,0x3d,0x6f,0x29, 0x3f,0x30,0x21,0x3d,0x3d,0x69,0x7c,0x7c,0x31,0x2f,0x69,0x3d,0x3d,0x3d,0x31,0x2f, 0x61,0x3a,0x69,0x21,0x3d,0x3d,0x69,0x26,0x26,0x61,0x21,0x3d,0x3d,0x61,0x29,0x3f, 0x6e,0x3d,0x30,0x3a,0x28,0x6e,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x74,0x28,0x72, 0x2c,0x6f,0x29,0x3a,0x63,0x2c,0x30,0x21,0x3d,0x3d,0x28,0x6e,0x7c,0x3d,0x30,0x29, 0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x65,0x6d,0x69,0x74,0x74,0x65,0x72,0x2e,0x73, 0x65,0x74,0x28,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x6e,0x29,0x29,0x7d,0x76, 0x61,0x72,0x20,0x69,0x2c,0x61,0x7d,0x2c,0x72,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x7d,0x2c,0x6e,0x7d,0x28,0x72,0x2e,0x43,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b,0x66,0x2e,0x63,0x68,0x69,0x6c,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x73,0x3d,0x28,0x28,0x6e,0x3d, 0x7b,0x7d,0x29,0x5b,0x61,0x5d,0x3d,0x75,0x2e,0x61,0x2e,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x69,0x73,0x52,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x2c,0x6e,0x29,0x3b, 0x76,0x61,0x72,0x20,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x74,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x29,0x2e,0x73,0x74,0x61, 0x74,0x65,0x3d,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x67,0x65,0x74,0x56, 0x61,0x6c,0x75,0x65,0x28,0x29,0x7d,0x2c,0x65,0x2e,0x6f,0x6e,0x55,0x70,0x64,0x61, 0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29, 0x7b,0x30,0x21,0x3d,0x3d,0x28,0x28,0x30,0x7c,0x65,0x2e,0x6f,0x62,0x73,0x65,0x72, 0x76,0x65,0x64,0x42,0x69,0x74,0x73,0x29,0x26,0x6e,0x29,0x26,0x26,0x65,0x2e,0x73, 0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65, 0x2e,0x67,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x28,0x29,0x7d,0x29,0x7d,0x2c,0x65, 0x7d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x74, 0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x63,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69,0x76, 0x65,0x50,0x72,0x6f,0x70,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6f,0x62,0x73,0x65,0x72, 0x76,0x65,0x64,0x42,0x69,0x74,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x6f,0x62,0x73, 0x65,0x72,0x76,0x65,0x64,0x42,0x69,0x74,0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x3f,0x63, 0x3a,0x74,0x7d,0x2c,0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44, 0x69,0x64,0x4d,0x6f,0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x5b, 0x61,0x5d,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x5b,0x61,0x5d,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x6f,0x6e,0x55,0x70, 0x64,0x61,0x74,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f,0x62,0x73,0x65,0x72,0x76,0x65,0x64,0x42, 0x69,0x74,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x6f,0x62,0x73,0x65,0x72,0x76,0x65, 0x64,0x42,0x69,0x74,0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x63,0x3a,0x65,0x7d,0x2c, 0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55, 0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x5b,0x61, 0x5d,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x5b, 0x61,0x5d,0x2e,0x6f,0x66,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x6f,0x6e,0x55,0x70, 0x64,0x61,0x74,0x65,0x29,0x7d,0x2c,0x72,0x2e,0x67,0x65,0x74,0x56,0x61,0x6c,0x75, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x5b,0x61,0x5d,0x3f,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x5b,0x61,0x5d,0x2e,0x67,0x65,0x74,0x28,0x29,0x3a,0x65,0x7d,0x2c,0x72,0x2e,0x72, 0x65,0x6e,0x64,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70, 0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x41,0x72, 0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x3f,0x65, 0x5b,0x30,0x5d,0x3a,0x65,0x29,0x28,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74, 0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x65,0x7d,0x2c, 0x6e,0x7d,0x28,0x72,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x54,0x79,0x70,0x65,0x73,0x3d,0x28,0x28,0x6f,0x3d,0x7b,0x7d,0x29,0x5b,0x61,0x5d, 0x3d,0x75,0x2e,0x61,0x2e,0x6f,0x62,0x6a,0x65,0x63,0x74,0x2c,0x6f,0x29,0x2c,0x7b, 0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3a,0x66,0x2c,0x43,0x6f,0x6e,0x73,0x75, 0x6d,0x65,0x72,0x3a,0x64,0x7d,0x7d,0x3b,0x74,0x2e,0x61,0x3d,0x66,0x7d,0x29,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x35,0x36,0x29,0x29, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26, 0x26,0x65,0x2e,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x26,0x26,0x22,0x52, 0x65,0x61,0x63,0x74,0x4e,0x61,0x74,0x69,0x76,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x70,0x72,0x6f,0x64,0x75,0x63, 0x74,0x2c,0x69,0x3d,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x3b,0x74,0x2e,0x61,0x3d,0x69,0x7c,0x7c,0x6f,0x3f,0x72,0x2e,0x75,0x73,0x65, 0x4c,0x61,0x79,0x6f,0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x72,0x2e,0x75, 0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x35,0x36,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73, 0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x69,0x3d,0x6e,0x28, 0x33,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x75,0x3d,0x6e,0x2e,0x6e,0x28, 0x61,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x34,0x38, 0x29,0x2c,0x73,0x3d,0x6e,0x28,0x37,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x31,0x29,0x2c, 0x64,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69, 0x78,0x22,0x2c,0x22,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x22,0x2c,0x22,0x73,0x69, 0x7a,0x65,0x22,0x2c,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x22,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x5d,0x2c,0x70,0x3d,0x63,0x2e,0x66,0x6f, 0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x61,0x73,0x2c,0x61,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c, 0x63,0x3d,0x65,0x2e,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x2c,0x70,0x3d,0x65,0x2e, 0x73,0x69,0x7a,0x65,0x2c,0x68,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c, 0x76,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x67,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x65,0x2c,0x64,0x29, 0x2c,0x6d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x61, 0x2c,0x22,0x62,0x74,0x6e,0x22,0x29,0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6c,0x2e,0x62,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61, 0x29,0x28,0x7b,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x3a,0x6e,0x7d,0x2c,0x67,0x29, 0x29,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28, 0x62,0x2c,0x32,0x29,0x2c,0x5f,0x3d,0x79,0x5b,0x30,0x5d,0x2c,0x77,0x3d,0x79,0x5b, 0x31,0x5d,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x77,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x67,0x29,0x2c,0x5f,0x29,0x2c,0x7b, 0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x3a,0x75,0x28,0x29,0x28,0x76,0x2c,0x6d,0x2c,0x68,0x26,0x26,0x22,0x61, 0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x63,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x6d,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x63,0x29,0x2c,0x70,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x6d,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x70,0x29,0x2c,0x67,0x2e,0x68,0x72,0x65,0x66,0x26,0x26,0x67,0x2e,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x26,0x26,0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x22,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x70,0x2e,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x42,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c, 0x70,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b, 0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x3a,0x22,0x70,0x72,0x69,0x6d,0x61,0x72,0x79, 0x22,0x2c,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x21,0x31,0x2c,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x3a,0x21,0x31,0x7d,0x2c,0x74,0x2e,0x61,0x3d,0x70,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x74,0x2e,0x61, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x38,0x29,0x2c,0x6f,0x3d,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x26,0x26,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x26,0x26,0x21,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x6e,0x6f,0x64,0x65,0x54, 0x79,0x70,0x65,0x26,0x26,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x69,0x3d,0x6f, 0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x21,0x65,0x2e,0x6e,0x6f,0x64,0x65, 0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x2c,0x61,0x3d,0x69,0x26,0x26,0x69,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x3d,0x3d,0x6f,0x3f,0x72,0x2e,0x61,0x2e,0x42, 0x75,0x66,0x66,0x65,0x72,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x75,0x3d,0x61, 0x3f,0x61,0x2e,0x61,0x6c,0x6c,0x6f,0x63,0x55,0x6e,0x73,0x61,0x66,0x65,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3b,0x74,0x2e,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x29,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x75, 0x3f,0x75,0x28,0x6e,0x29,0x3a,0x6e,0x65,0x77,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x63,0x6f,0x70,0x79,0x28,0x72,0x29,0x2c,0x72,0x7d,0x7d,0x29, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x39,0x36,0x29, 0x28,0x65,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x37, 0x36,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x33,0x34,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3d,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43, 0x61,0x73,0x65,0x28,0x29,0x2c,0x65,0x2b,0x28,0x6e,0x3f,0x72,0x28,0x74,0x29,0x3a, 0x74,0x29,0x7d,0x29,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x6f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x32,0x33,0x29,0x2c, 0x6f,0x3d,0x6e,0x28,0x31,0x32,0x34,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x32,0x37, 0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x69,0x28,0x74,0x2c, 0x33,0x29,0x2c,0x6f,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x72,0x28,0x6e,0x2c,0x74,0x28,0x65,0x2c, 0x6f,0x2c,0x69,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x6e,0x65, 0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x6e,0x29,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c, 0x69,0x3d,0x6e,0x2c,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20, 0x4d,0x61,0x70,0x2c,0x6e,0x3d,0x30,0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x6e,0x3c,0x72,0x3b,0x6e,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x65,0x5b,0x6e,0x5d,0x3b,0x74,0x2e,0x68,0x61,0x73,0x28,0x6f,0x5b,0x30, 0x5d,0x29,0x7c,0x7c,0x74,0x2e,0x73,0x65,0x74,0x28,0x6f,0x5b,0x30,0x5d,0x2c,0x6e, 0x65,0x77,0x20,0x53,0x65,0x74,0x29,0x2c,0x74,0x2e,0x68,0x61,0x73,0x28,0x6f,0x5b, 0x31,0x5d,0x29,0x7c,0x7c,0x74,0x2e,0x73,0x65,0x74,0x28,0x6f,0x5b,0x31,0x5d,0x2c, 0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x29,0x2c,0x74,0x2e,0x67,0x65,0x74,0x28,0x6f, 0x5b,0x30,0x5d,0x29,0x2e,0x61,0x64,0x64,0x28,0x6f,0x5b,0x31,0x5d,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x28,0x74,0x29,0x2c,0x75,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x6e,0x3d,0x30,0x2c, 0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x3c,0x72,0x3b,0x6e, 0x2b,0x2b,0x29,0x74,0x2e,0x73,0x65,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x28,0x65,0x29,0x3b,0x66,0x6f, 0x72,0x28,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x75,0x2e,0x68, 0x61,0x73,0x28,0x65,0x5b,0x30,0x5d,0x29,0x7c,0x7c,0x21,0x75,0x2e,0x68,0x61,0x73, 0x28,0x65,0x5b,0x31,0x5d,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20, 0x6e,0x6f,0x64,0x65,0x2e,0x20,0x54,0x68,0x65,0x72,0x65,0x20,0x69,0x73,0x20,0x61, 0x6e,0x20,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x6e,0x6f,0x64,0x65,0x20,0x69, 0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x75,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x65, 0x64,0x67,0x65,0x73,0x2e,0x22,0x29,0x7d,0x29,0x29,0x3b,0x69,0x2d,0x2d,0x3b,0x29, 0x6f,0x5b,0x69,0x5d,0x7c,0x7c,0x63,0x28,0x65,0x5b,0x69,0x5d,0x2c,0x69,0x2c,0x6e, 0x65,0x77,0x20,0x53,0x65,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x2c,0x74,0x2c, 0x69,0x29,0x7b,0x69,0x66,0x28,0x69,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6c,0x3b,0x74,0x72,0x79,0x7b,0x6c,0x3d,0x22,0x2c,0x20,0x6e, 0x6f,0x64,0x65,0x20,0x77,0x61,0x73,0x3a,0x22,0x2b,0x4a,0x53,0x4f,0x4e,0x2e,0x73, 0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63, 0x68,0x28,0x64,0x29,0x7b,0x6c,0x3d,0x22,0x22,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20, 0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x43,0x79,0x63,0x6c,0x69, 0x63,0x20,0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x79,0x22,0x2b,0x6c,0x29, 0x7d,0x69,0x66,0x28,0x21,0x75,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x46, 0x6f,0x75,0x6e,0x64,0x20,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x6e,0x6f,0x64, 0x65,0x2e,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x6f,0x20, 0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x20,0x61,0x6c,0x6c,0x20,0x69,0x6e,0x76, 0x6f,0x6c,0x76,0x65,0x64,0x20,0x6e,0x6f,0x64,0x65,0x73,0x2e,0x20,0x55,0x6e,0x6b, 0x6e,0x6f,0x77,0x6e,0x20,0x6e,0x6f,0x64,0x65,0x3a,0x20,0x22,0x2b,0x4a,0x53,0x4f, 0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x29,0x29,0x3b, 0x69,0x66,0x28,0x21,0x6f,0x5b,0x74,0x5d,0x29,0x7b,0x6f,0x5b,0x74,0x5d,0x3d,0x21, 0x30,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x61,0x2e,0x67,0x65,0x74,0x28,0x65,0x29, 0x7c,0x7c,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x3b,0x69,0x66,0x28,0x74,0x3d,0x28, 0x73,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x73,0x29,0x29, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x69,0x2e,0x61,0x64,0x64,0x28,0x65, 0x29,0x3b,0x64,0x6f,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x73,0x5b,0x2d,0x2d,0x74, 0x5d,0x3b,0x63,0x28,0x66,0x2c,0x75,0x2e,0x67,0x65,0x74,0x28,0x66,0x29,0x2c,0x69, 0x29,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x74,0x29,0x3b,0x69,0x2e,0x64,0x65,0x6c, 0x65,0x74,0x65,0x28,0x65,0x29,0x7d,0x72,0x5b,0x2d,0x2d,0x6e,0x5d,0x3d,0x65,0x7d, 0x7d,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x2c,0x6e, 0x3d,0x30,0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x3c, 0x72,0x3b,0x6e,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x5b,0x6e, 0x5d,0x3b,0x74,0x2e,0x61,0x64,0x64,0x28,0x6f,0x5b,0x30,0x5d,0x29,0x2c,0x74,0x2e, 0x61,0x64,0x64,0x28,0x6f,0x5b,0x31,0x5d,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x74,0x29,0x7d,0x28, 0x65,0x29,0x2c,0x65,0x29,0x7d,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x2e,0x61,0x72,0x72,0x61,0x79,0x3d,0x6e,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x6e,0x28,0x32,0x38,0x35,0x29,0x7d,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x39, 0x34,0x29,0x2c,0x6f,0x3d,0x36,0x30,0x31,0x30,0x33,0x2c,0x69,0x3d,0x36,0x30,0x31, 0x30,0x36,0x3b,0x74,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x36,0x30, 0x31,0x30,0x37,0x2c,0x74,0x2e,0x53,0x74,0x72,0x69,0x63,0x74,0x4d,0x6f,0x64,0x65, 0x3d,0x36,0x30,0x31,0x30,0x38,0x2c,0x74,0x2e,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65, 0x72,0x3d,0x36,0x30,0x31,0x31,0x34,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x36,0x30, 0x31,0x30,0x39,0x2c,0x75,0x3d,0x36,0x30,0x31,0x31,0x30,0x2c,0x63,0x3d,0x36,0x30, 0x31,0x31,0x32,0x3b,0x74,0x2e,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x3d,0x36, 0x30,0x31,0x31,0x33,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x36,0x30,0x31,0x31,0x35, 0x2c,0x73,0x3d,0x36,0x30,0x31,0x31,0x36,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66, 0x6f,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x3d,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x2e,0x66,0x6f,0x72,0x3b,0x6f,0x3d,0x66,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x29,0x2c,0x69,0x3d,0x66,0x28,0x22,0x72, 0x65,0x61,0x63,0x74,0x2e,0x70,0x6f,0x72,0x74,0x61,0x6c,0x22,0x29,0x2c,0x74,0x2e, 0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x66,0x28,0x22,0x72,0x65,0x61,0x63, 0x74,0x2e,0x66,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x22,0x29,0x2c,0x74,0x2e,0x53, 0x74,0x72,0x69,0x63,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x66,0x28,0x22,0x72,0x65,0x61, 0x63,0x74,0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x5f,0x6d,0x6f,0x64,0x65,0x22,0x29, 0x2c,0x74,0x2e,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x3d,0x66,0x28,0x22,0x72, 0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x22,0x29,0x2c, 0x61,0x3d,0x66,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x76,0x69, 0x64,0x65,0x72,0x22,0x29,0x2c,0x75,0x3d,0x66,0x28,0x22,0x72,0x65,0x61,0x63,0x74, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x22,0x29,0x2c,0x63,0x3d,0x66,0x28,0x22, 0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x5f,0x72,0x65, 0x66,0x22,0x29,0x2c,0x74,0x2e,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x3d,0x66, 0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x73,0x65, 0x22,0x29,0x2c,0x6c,0x3d,0x66,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6d,0x65, 0x6d,0x6f,0x22,0x29,0x2c,0x73,0x3d,0x66,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x6c,0x61,0x7a,0x79,0x22,0x29,0x7d,0x76,0x61,0x72,0x20,0x64,0x3d,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e, 0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x70,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x61,0x63,0x74,0x6a, 0x73,0x2e,0x6f,0x72,0x67,0x2f,0x64,0x6f,0x63,0x73,0x2f,0x65,0x72,0x72,0x6f,0x72, 0x2d,0x64,0x65,0x63,0x6f,0x64,0x65,0x72,0x2e,0x68,0x74,0x6d,0x6c,0x3f,0x69,0x6e, 0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x3d,0x22,0x2b,0x65,0x2c,0x6e,0x3d,0x31,0x3b, 0x6e,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x2b,0x3d,0x22,0x26,0x61,0x72,0x67,0x73, 0x5b,0x5d,0x3d,0x22,0x2b,0x65,0x6e,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x4d,0x69,0x6e, 0x69,0x66,0x69,0x65,0x64,0x20,0x52,0x65,0x61,0x63,0x74,0x20,0x65,0x72,0x72,0x6f, 0x72,0x20,0x23,0x22,0x2b,0x65,0x2b,0x22,0x3b,0x20,0x76,0x69,0x73,0x69,0x74,0x20, 0x22,0x2b,0x74,0x2b,0x22,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x66,0x75, 0x6c,0x6c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6f,0x72,0x20,0x75,0x73, 0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x6f,0x6e,0x2d,0x6d,0x69,0x6e,0x69,0x66,0x69, 0x65,0x64,0x20,0x64,0x65,0x76,0x20,0x65,0x6e,0x76,0x69,0x72,0x6f,0x6e,0x6d,0x65, 0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x66,0x75,0x6c,0x6c,0x20,0x65,0x72,0x72,0x6f, 0x72,0x73,0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61, 0x6c,0x20,0x68,0x65,0x6c,0x70,0x66,0x75,0x6c,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x73,0x2e,0x22,0x7d,0x76,0x61,0x72,0x20,0x68,0x3d,0x7b,0x69,0x73,0x4d,0x6f, 0x75,0x6e,0x74,0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x2c,0x65,0x6e,0x71,0x75,0x65, 0x75,0x65,0x46,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x65,0x6e,0x71,0x75,0x65, 0x75,0x65,0x52,0x65,0x70,0x6c,0x61,0x63,0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x65,0x6e,0x71,0x75, 0x65,0x75,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x7d,0x2c,0x76,0x3d,0x7b,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x3d,0x65,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x74,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x72,0x65,0x66,0x73,0x3d,0x76,0x2c,0x74,0x68,0x69,0x73,0x2e,0x75,0x70, 0x64,0x61,0x74,0x65,0x72,0x3d,0x6e,0x7c,0x7c,0x68,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6d,0x28,0x29,0x7b,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x62,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e, 0x70,0x72,0x6f,0x70,0x73,0x3d,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x73, 0x3d,0x76,0x2c,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x72,0x3d, 0x6e,0x7c,0x7c,0x68,0x7d,0x67,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x69,0x73,0x52,0x65,0x61,0x63,0x74,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, 0x74,0x3d,0x7b,0x7d,0x2c,0x67,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x70,0x28,0x38,0x35,0x29, 0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x72,0x2e,0x65, 0x6e,0x71,0x75,0x65,0x75,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x74, 0x68,0x69,0x73,0x2c,0x65,0x2c,0x74,0x2c,0x22,0x73,0x65,0x74,0x53,0x74,0x61,0x74, 0x65,0x22,0x29,0x7d,0x2c,0x67,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x75,0x70, 0x64,0x61,0x74,0x65,0x72,0x2e,0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x46,0x6f,0x72, 0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x2c, 0x22,0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x22,0x29,0x7d,0x2c, 0x6d,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x67,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20,0x79,0x3d,0x62,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x6e,0x65,0x77,0x20,0x6d,0x3b, 0x79,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x62,0x2c, 0x72,0x28,0x79,0x2c,0x67,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29, 0x2c,0x79,0x2e,0x69,0x73,0x50,0x75,0x72,0x65,0x52,0x65,0x61,0x63,0x74,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3d,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x5f, 0x3d,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c, 0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x2c,0x4f,0x3d,0x7b,0x6b,0x65,0x79,0x3a,0x21,0x30,0x2c,0x72,0x65,0x66,0x3a, 0x21,0x30,0x2c,0x5f,0x5f,0x73,0x65,0x6c,0x66,0x3a,0x21,0x30,0x2c,0x5f,0x5f,0x73, 0x6f,0x75,0x72,0x63,0x65,0x3a,0x21,0x30,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x78,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x2c,0x69,0x3d,0x7b,0x7d,0x2c,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x3d, 0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x29, 0x66,0x6f,0x72,0x28,0x72,0x20,0x69,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x74,0x2e,0x72,0x65,0x66,0x26,0x26,0x28,0x75,0x3d,0x74,0x2e,0x72,0x65, 0x66,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x6b,0x65, 0x79,0x26,0x26,0x28,0x61,0x3d,0x22,0x22,0x2b,0x74,0x2e,0x6b,0x65,0x79,0x29,0x2c, 0x74,0x29,0x77,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x72,0x29,0x26,0x26,0x21, 0x4f,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x28,0x72,0x29,0x26,0x26,0x28,0x69,0x5b,0x72,0x5d,0x3d,0x74,0x5b,0x72,0x5d,0x29, 0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x32,0x3b,0x69,0x66,0x28,0x31,0x3d,0x3d, 0x3d,0x63,0x29,0x69,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3d,0x6e,0x3b, 0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x31,0x3c,0x63,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6c,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x63,0x29,0x2c, 0x73,0x3d,0x30,0x3b,0x73,0x3c,0x63,0x3b,0x73,0x2b,0x2b,0x29,0x6c,0x5b,0x73,0x5d, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x73,0x2b,0x32,0x5d,0x3b, 0x69,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3d,0x6c,0x7d,0x69,0x66,0x28, 0x65,0x26,0x26,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70, 0x73,0x29,0x66,0x6f,0x72,0x28,0x72,0x20,0x69,0x6e,0x20,0x63,0x3d,0x65,0x2e,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x29,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x69,0x5b,0x72,0x5d,0x26,0x26,0x28,0x69,0x5b,0x72,0x5d, 0x3d,0x63,0x5b,0x72,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x6f,0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2c, 0x6b,0x65,0x79,0x3a,0x61,0x2c,0x72,0x65,0x66,0x3a,0x75,0x2c,0x70,0x72,0x6f,0x70, 0x73,0x3a,0x69,0x2c,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x3a,0x5f,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x65,0x2e,0x24,0x24,0x74,0x79,0x70, 0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6f,0x7d,0x76,0x61,0x72,0x20,0x6a,0x3d,0x2f,0x5c, 0x2f,0x2b,0x2f,0x67,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x65,0x2e,0x6b,0x65,0x79,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x22,0x3d,0x22,0x3a,0x22,0x3d,0x30, 0x22,0x2c,0x22,0x3a,0x22,0x3a,0x22,0x3d,0x32,0x22,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x24,0x22,0x2b,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x2f,0x5b,0x3d,0x3a,0x5d,0x2f,0x67,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x65,0x5d, 0x7d,0x29,0x29,0x7d,0x28,0x22,0x22,0x2b,0x65,0x2e,0x6b,0x65,0x79,0x29,0x3a,0x74, 0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x36,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x2c,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x3b,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d, 0x3d,0x75,0x26,0x26,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x21,0x3d,0x3d, 0x75,0x7c,0x7c,0x28,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x76,0x61,0x72,0x20, 0x63,0x3d,0x21,0x31,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65, 0x29,0x63,0x3d,0x21,0x30,0x3b,0x65,0x6c,0x73,0x65,0x20,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x75,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3a,0x63, 0x3d,0x21,0x30,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x6f, 0x3a,0x63,0x61,0x73,0x65,0x20,0x69,0x3a,0x63,0x3d,0x21,0x30,0x7d,0x7d,0x69,0x66, 0x28,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3d,0x61,0x28,0x63,0x3d, 0x65,0x29,0x2c,0x65,0x3d,0x22,0x22,0x3d,0x3d,0x3d,0x72,0x3f,0x22,0x2e,0x22,0x2b, 0x6b,0x28,0x63,0x2c,0x30,0x29,0x3a,0x72,0x2c,0x41,0x72,0x72,0x61,0x79,0x2e,0x69, 0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x61,0x29,0x3f,0x28,0x6e,0x3d,0x22,0x22,0x2c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x28,0x6e,0x3d,0x65,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x6a,0x2c,0x22,0x24,0x26,0x2f,0x22,0x29,0x2b,0x22, 0x2f,0x22,0x29,0x2c,0x53,0x28,0x61,0x2c,0x74,0x2c,0x6e,0x2c,0x22,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x61, 0x26,0x26,0x28,0x45,0x28,0x61,0x29,0x26,0x26,0x28,0x61,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x6f,0x2c,0x74,0x79,0x70,0x65, 0x3a,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6b,0x65,0x79,0x3a,0x74,0x2c,0x72,0x65, 0x66,0x3a,0x65,0x2e,0x72,0x65,0x66,0x2c,0x70,0x72,0x6f,0x70,0x73,0x3a,0x65,0x2e, 0x70,0x72,0x6f,0x70,0x73,0x2c,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x3a,0x65,0x2e,0x5f, 0x6f,0x77,0x6e,0x65,0x72,0x7d,0x7d,0x28,0x61,0x2c,0x6e,0x2b,0x28,0x21,0x61,0x2e, 0x6b,0x65,0x79,0x7c,0x7c,0x63,0x26,0x26,0x63,0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d, 0x61,0x2e,0x6b,0x65,0x79,0x3f,0x22,0x22,0x3a,0x28,0x22,0x22,0x2b,0x61,0x2e,0x6b, 0x65,0x79,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x6a,0x2c,0x22,0x24, 0x26,0x2f,0x22,0x29,0x2b,0x22,0x2f,0x22,0x29,0x2b,0x65,0x29,0x29,0x2c,0x74,0x2e, 0x70,0x75,0x73,0x68,0x28,0x61,0x29,0x29,0x2c,0x31,0x3b,0x69,0x66,0x28,0x63,0x3d, 0x30,0x2c,0x72,0x3d,0x22,0x22,0x3d,0x3d,0x3d,0x72,0x3f,0x22,0x2e,0x22,0x3a,0x72, 0x2b,0x22,0x3a,0x22,0x2c,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72, 0x61,0x79,0x28,0x65,0x29,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6c,0x3d, 0x30,0x3b,0x6c,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6c,0x2b,0x2b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x72,0x2b,0x6b,0x28,0x75,0x3d,0x65,0x5b, 0x6c,0x5d,0x2c,0x6c,0x29,0x3b,0x63,0x2b,0x3d,0x53,0x28,0x75,0x2c,0x74,0x2c,0x6e, 0x2c,0x73,0x2c,0x61,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x65,0x3d,0x64,0x26,0x26,0x65, 0x5b,0x64,0x5d,0x7c,0x7c,0x65,0x5b,0x22,0x40,0x40,0x69,0x74,0x65,0x72,0x61,0x74, 0x6f,0x72,0x22,0x5d,0x29,0x3f,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x65,0x29, 0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x73,0x29,0x66,0x6f,0x72,0x28,0x65,0x3d,0x73,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x29,0x2c,0x6c,0x3d,0x30,0x3b,0x21,0x28,0x75,0x3d,0x65, 0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x29,0x63, 0x2b,0x3d,0x53,0x28,0x75,0x3d,0x75,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x73,0x3d,0x72,0x2b,0x6b,0x28,0x75,0x2c,0x6c,0x2b,0x2b,0x29,0x2c,0x61, 0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x3d,0x75,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x74,0x3d,0x22, 0x22,0x2b,0x65,0x2c,0x45,0x72,0x72,0x6f,0x72,0x28,0x70,0x28,0x33,0x31,0x2c,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22, 0x3d,0x3d,0x3d,0x74,0x3f,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x77,0x69,0x74, 0x68,0x20,0x6b,0x65,0x79,0x73,0x20,0x7b,0x22,0x2b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c, 0x20,0x22,0x29,0x2b,0x22,0x7d,0x22,0x3a,0x74,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x63,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x5b,0x5d,0x2c,0x6f,0x3d,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x53, 0x28,0x65,0x2c,0x72,0x2c,0x22,0x22,0x2c,0x22,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2c,0x65,0x2c,0x6f,0x2b,0x2b,0x29,0x7d,0x29, 0x29,0x2c,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x2d,0x31,0x3d,0x3d,0x3d,0x65,0x2e,0x5f,0x73,0x74,0x61, 0x74,0x75,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x5f,0x72,0x65, 0x73,0x75,0x6c,0x74,0x3b,0x74,0x3d,0x74,0x28,0x29,0x2c,0x65,0x2e,0x5f,0x73,0x74, 0x61,0x74,0x75,0x73,0x3d,0x30,0x2c,0x65,0x2e,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74, 0x3d,0x74,0x2c,0x74,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x30,0x3d,0x3d,0x3d,0x65,0x2e,0x5f,0x73,0x74, 0x61,0x74,0x75,0x73,0x26,0x26,0x28,0x74,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x2c,0x65,0x2e,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x3d,0x31,0x2c,0x65, 0x2e,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x3d,0x74,0x29,0x7d,0x29,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x30,0x3d,0x3d,0x3d,0x65, 0x2e,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x26,0x26,0x28,0x65,0x2e,0x5f,0x73,0x74, 0x61,0x74,0x75,0x73,0x3d,0x32,0x2c,0x65,0x2e,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74, 0x3d,0x74,0x29,0x7d,0x29,0x29,0x7d,0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x65,0x2e, 0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x65, 0x2e,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x7d,0x76,0x61,0x72,0x20,0x54,0x3d,0x7b, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x54,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x70,0x28,0x33,0x32,0x31,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x76,0x61,0x72,0x20,0x44,0x3d,0x7b,0x52,0x65,0x61,0x63,0x74, 0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x44,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x65, 0x72,0x3a,0x54,0x2c,0x52,0x65,0x61,0x63,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74, 0x42,0x61,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x7b,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x30,0x7d,0x2c,0x52,0x65,0x61,0x63,0x74, 0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x4f,0x77,0x6e,0x65,0x72,0x3a,0x5f,0x2c,0x49, 0x73,0x53,0x6f,0x6d,0x65,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x41,0x63,0x74, 0x69,0x6e,0x67,0x3a,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x21,0x31,0x7d, 0x2c,0x61,0x73,0x73,0x69,0x67,0x6e,0x3a,0x72,0x7d,0x3b,0x74,0x2e,0x43,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3d,0x7b,0x6d,0x61,0x70,0x3a,0x43,0x2c,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x43,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69, 0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x29,0x2c,0x6e, 0x29,0x7d,0x2c,0x63,0x6f,0x75,0x6e,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x30,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x43,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x74,0x2b,0x2b,0x7d,0x29,0x29,0x2c,0x74,0x7d,0x2c,0x74,0x6f, 0x41,0x72,0x72,0x61,0x79,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x43,0x28,0x65,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7d,0x29,0x29,0x7c,0x7c,0x5b,0x5d,0x7d,0x2c,0x6f,0x6e,0x6c,0x79,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21, 0x45,0x28,0x65,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x70,0x28,0x31,0x34,0x33,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x7d,0x7d,0x2c,0x74,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3d, 0x67,0x2c,0x74,0x2e,0x50,0x75,0x72,0x65,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, 0x74,0x3d,0x62,0x2c,0x74,0x2e,0x5f,0x5f,0x53,0x45,0x43,0x52,0x45,0x54,0x5f,0x49, 0x4e,0x54,0x45,0x52,0x4e,0x41,0x4c,0x53,0x5f,0x44,0x4f,0x5f,0x4e,0x4f,0x54,0x5f, 0x55,0x53,0x45,0x5f,0x4f,0x52,0x5f,0x59,0x4f,0x55,0x5f,0x57,0x49,0x4c,0x4c,0x5f, 0x42,0x45,0x5f,0x46,0x49,0x52,0x45,0x44,0x3d,0x44,0x2c,0x74,0x2e,0x63,0x6c,0x6f, 0x6e,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x70,0x28, 0x32,0x36,0x37,0x2c,0x65,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x72,0x28, 0x7b,0x7d,0x2c,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x29,0x2c,0x61,0x3d,0x65,0x2e, 0x6b,0x65,0x79,0x2c,0x75,0x3d,0x65,0x2e,0x72,0x65,0x66,0x2c,0x63,0x3d,0x65,0x2e, 0x5f,0x6f,0x77,0x6e,0x65,0x72,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x74,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74, 0x2e,0x72,0x65,0x66,0x26,0x26,0x28,0x75,0x3d,0x74,0x2e,0x72,0x65,0x66,0x2c,0x63, 0x3d,0x5f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x6b,0x65,0x79,0x26,0x26,0x28,0x61,0x3d,0x22, 0x22,0x2b,0x74,0x2e,0x6b,0x65,0x79,0x29,0x2c,0x65,0x2e,0x74,0x79,0x70,0x65,0x26, 0x26,0x65,0x2e,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50, 0x72,0x6f,0x70,0x73,0x29,0x76,0x61,0x72,0x20,0x6c,0x3d,0x65,0x2e,0x74,0x79,0x70, 0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3b,0x66, 0x6f,0x72,0x28,0x73,0x20,0x69,0x6e,0x20,0x74,0x29,0x77,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x74,0x2c,0x73,0x29,0x26,0x26,0x21,0x4f,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x73,0x29,0x26,0x26,0x28,0x69,0x5b, 0x73,0x5d,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b,0x73,0x5d, 0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6c,0x3f,0x6c,0x5b,0x73, 0x5d,0x3a,0x74,0x5b,0x73,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x73,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x32, 0x3b,0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x73,0x29,0x69,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3d,0x6e,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x31, 0x3c,0x73,0x29,0x7b,0x6c,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x73,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x66,0x3d,0x30,0x3b,0x66,0x3c,0x73,0x3b,0x66, 0x2b,0x2b,0x29,0x6c,0x5b,0x66,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x66,0x2b,0x32,0x5d,0x3b,0x69,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3d,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x24,0x24,0x74,0x79,0x70, 0x65,0x6f,0x66,0x3a,0x6f,0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2e,0x74,0x79,0x70, 0x65,0x2c,0x6b,0x65,0x79,0x3a,0x61,0x2c,0x72,0x65,0x66,0x3a,0x75,0x2c,0x70,0x72, 0x6f,0x70,0x73,0x3a,0x69,0x2c,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x3a,0x63,0x7d,0x7d, 0x2c,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x26,0x26,0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x28,0x65,0x3d,0x7b,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x75,0x2c,0x5f,0x63,0x61,0x6c,0x63,0x75, 0x6c,0x61,0x74,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x42,0x69,0x74,0x73,0x3a, 0x74,0x2c,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x3a, 0x65,0x2c,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x32, 0x3a,0x65,0x2c,0x5f,0x74,0x68,0x72,0x65,0x61,0x64,0x43,0x6f,0x75,0x6e,0x74,0x3a, 0x30,0x2c,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x2e, 0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3d,0x7b,0x24,0x24,0x74,0x79,0x70,0x65, 0x6f,0x66,0x3a,0x61,0x2c,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3a,0x65,0x7d, 0x2c,0x65,0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3d,0x65,0x7d,0x2c,0x74, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x78, 0x2c,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x46,0x61,0x63,0x74,0x6f,0x72,0x79, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x78,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d, 0x65,0x2c,0x74,0x7d,0x2c,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x66, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d, 0x7d,0x2c,0x74,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x63,0x2c,0x72,0x65,0x6e, 0x64,0x65,0x72,0x3a,0x65,0x7d,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x56,0x61,0x6c,0x69, 0x64,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x45,0x2c,0x74,0x2e,0x6c,0x61,0x7a, 0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x73,0x2c, 0x5f,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x7b,0x5f,0x73,0x74,0x61,0x74,0x75, 0x73,0x3a,0x2d,0x31,0x2c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x3a,0x65,0x7d,0x2c, 0x5f,0x69,0x6e,0x69,0x74,0x3a,0x41,0x7d,0x7d,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x6c, 0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2c,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x3a, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x6e,0x75,0x6c,0x6c,0x3a, 0x74,0x7d,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x74,0x2e,0x75, 0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50, 0x28,0x29,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x65,0x2c, 0x74,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65,0x44,0x65,0x62,0x75,0x67,0x56,0x61, 0x6c,0x75,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d, 0x2c,0x74,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x28, 0x65,0x2c,0x74,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65,0x49,0x6d,0x70,0x65,0x72, 0x61,0x74,0x69,0x76,0x65,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61, 0x74,0x69,0x76,0x65,0x48,0x61,0x6e,0x64,0x6c,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65,0x4c,0x61,0x79,0x6f,0x75,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73, 0x65,0x4c,0x61,0x79,0x6f,0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x28,0x65,0x2c, 0x74,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x28,0x65, 0x2c,0x74,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65,0x52,0x65,0x64,0x75,0x63,0x65, 0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73,0x65, 0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x2c, 0x74,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x28,0x29,0x2e, 0x75,0x73,0x65,0x52,0x65,0x66,0x28,0x65,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x73,0x65, 0x53,0x74,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x28,0x29,0x2e,0x75,0x73,0x65, 0x53,0x74,0x61,0x74,0x65,0x28,0x65,0x29,0x7d,0x2c,0x74,0x2e,0x76,0x65,0x72,0x73, 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x37,0x2e,0x30,0x2e,0x32,0x22,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x39,0x34,0x29,0x2c,0x69,0x3d, 0x6e,0x28,0x31,0x35,0x32,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x61,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x22, 0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x61,0x63,0x74,0x6a,0x73,0x2e, 0x6f,0x72,0x67,0x2f,0x64,0x6f,0x63,0x73,0x2f,0x65,0x72,0x72,0x6f,0x72,0x2d,0x64, 0x65,0x63,0x6f,0x64,0x65,0x72,0x2e,0x68,0x74,0x6d,0x6c,0x3f,0x69,0x6e,0x76,0x61, 0x72,0x69,0x61,0x6e,0x74,0x3d,0x22,0x2b,0x65,0x2c,0x6e,0x3d,0x31,0x3b,0x6e,0x3c, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x2b,0x3d,0x22,0x26,0x61,0x72,0x67,0x73,0x5b,0x5d, 0x3d,0x22,0x2b,0x65,0x6e,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x4d,0x69,0x6e,0x69,0x66, 0x69,0x65,0x64,0x20,0x52,0x65,0x61,0x63,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x20, 0x23,0x22,0x2b,0x65,0x2b,0x22,0x3b,0x20,0x76,0x69,0x73,0x69,0x74,0x20,0x22,0x2b, 0x74,0x2b,0x22,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x66,0x75,0x6c,0x6c, 0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6f,0x72,0x20,0x75,0x73,0x65,0x20, 0x74,0x68,0x65,0x20,0x6e,0x6f,0x6e,0x2d,0x6d,0x69,0x6e,0x69,0x66,0x69,0x65,0x64, 0x20,0x64,0x65,0x76,0x20,0x65,0x6e,0x76,0x69,0x72,0x6f,0x6e,0x6d,0x65,0x6e,0x74, 0x20,0x66,0x6f,0x72,0x20,0x66,0x75,0x6c,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x73, 0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20, 0x68,0x65,0x6c,0x70,0x66,0x75,0x6c,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x73, 0x2e,0x22,0x7d,0x69,0x66,0x28,0x21,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45, 0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x32,0x37,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x75,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x2c,0x63,0x3d,0x7b,0x7d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x73,0x28,0x65,0x2c,0x74,0x29,0x2c,0x73,0x28,0x65,0x2b,0x22,0x43,0x61,0x70,0x74, 0x75,0x72,0x65,0x22,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x73,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x63,0x5b,0x65,0x5d, 0x3d,0x74,0x2c,0x65,0x3d,0x30,0x3b,0x65,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x65,0x2b,0x2b,0x29,0x75,0x2e,0x61,0x64,0x64,0x28,0x74,0x5b,0x65,0x5d, 0x29,0x7d,0x76,0x61,0x72,0x20,0x66,0x3d,0x21,0x28,0x22,0x75,0x6e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x7c,0x7c,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x22,0x75,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29, 0x2c,0x64,0x3d,0x2f,0x5e,0x5b,0x3a,0x41,0x2d,0x5a,0x5f,0x61,0x2d,0x7a,0x5c,0x75, 0x30,0x30,0x43,0x30,0x2d,0x5c,0x75,0x30,0x30,0x44,0x36,0x5c,0x75,0x30,0x30,0x44, 0x38,0x2d,0x5c,0x75,0x30,0x30,0x46,0x36,0x5c,0x75,0x30,0x30,0x46,0x38,0x2d,0x5c, 0x75,0x30,0x32,0x46,0x46,0x5c,0x75,0x30,0x33,0x37,0x30,0x2d,0x5c,0x75,0x30,0x33, 0x37,0x44,0x5c,0x75,0x30,0x33,0x37,0x46,0x2d,0x5c,0x75,0x31,0x46,0x46,0x46,0x5c, 0x75,0x32,0x30,0x30,0x43,0x2d,0x5c,0x75,0x32,0x30,0x30,0x44,0x5c,0x75,0x32,0x30, 0x37,0x30,0x2d,0x5c,0x75,0x32,0x31,0x38,0x46,0x5c,0x75,0x32,0x43,0x30,0x30,0x2d, 0x5c,0x75,0x32,0x46,0x45,0x46,0x5c,0x75,0x33,0x30,0x30,0x31,0x2d,0x5c,0x75,0x44, 0x37,0x46,0x46,0x5c,0x75,0x46,0x39,0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46, 0x5c,0x75,0x46,0x44,0x46,0x30,0x2d,0x5c,0x75,0x46,0x46,0x46,0x44,0x5d,0x5b,0x3a, 0x41,0x2d,0x5a,0x5f,0x61,0x2d,0x7a,0x5c,0x75,0x30,0x30,0x43,0x30,0x2d,0x5c,0x75, 0x30,0x30,0x44,0x36,0x5c,0x75,0x30,0x30,0x44,0x38,0x2d,0x5c,0x75,0x30,0x30,0x46, 0x36,0x5c,0x75,0x30,0x30,0x46,0x38,0x2d,0x5c,0x75,0x30,0x32,0x46,0x46,0x5c,0x75, 0x30,0x33,0x37,0x30,0x2d,0x5c,0x75,0x30,0x33,0x37,0x44,0x5c,0x75,0x30,0x33,0x37, 0x46,0x2d,0x5c,0x75,0x31,0x46,0x46,0x46,0x5c,0x75,0x32,0x30,0x30,0x43,0x2d,0x5c, 0x75,0x32,0x30,0x30,0x44,0x5c,0x75,0x32,0x30,0x37,0x30,0x2d,0x5c,0x75,0x32,0x31, 0x38,0x46,0x5c,0x75,0x32,0x43,0x30,0x30,0x2d,0x5c,0x75,0x32,0x46,0x45,0x46,0x5c, 0x75,0x33,0x30,0x30,0x31,0x2d,0x5c,0x75,0x44,0x37,0x46,0x46,0x5c,0x75,0x46,0x39, 0x30,0x30,0x2d,0x5c,0x75,0x46,0x44,0x43,0x46,0x5c,0x75,0x46,0x44,0x46,0x30,0x2d, 0x5c,0x75,0x46,0x46,0x46,0x44,0x5c,0x2d,0x2e,0x30,0x2d,0x39,0x5c,0x75,0x30,0x30, 0x42,0x37,0x5c,0x75,0x30,0x33,0x30,0x30,0x2d,0x5c,0x75,0x30,0x33,0x36,0x46,0x5c, 0x75,0x32,0x30,0x33,0x46,0x2d,0x5c,0x75,0x32,0x30,0x34,0x30,0x5d,0x2a,0x24,0x2f, 0x2c,0x70,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x2c,0x68,0x3d,0x7b,0x7d,0x2c,0x76,0x3d,0x7b,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c, 0x6f,0x2c,0x69,0x2c,0x61,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x61,0x63,0x63,0x65, 0x70,0x74,0x73,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x73,0x3d,0x32,0x3d,0x3d,0x3d, 0x74,0x7c,0x7c,0x33,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x34,0x3d,0x3d,0x3d,0x74,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x4e,0x61, 0x6d,0x65,0x3d,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x61,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x4e,0x61,0x6d,0x65,0x73,0x70,0x61,0x63,0x65,0x3d,0x6f,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x6d,0x75,0x73,0x74,0x55,0x73,0x65,0x50,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x3d,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74, 0x79,0x70,0x65,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x61,0x6e,0x69,0x74, 0x69,0x7a,0x65,0x55,0x52,0x4c,0x3d,0x69,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x45,0x6d,0x70,0x74,0x79,0x53,0x74,0x72,0x69,0x6e,0x67,0x3d, 0x61,0x7d,0x76,0x61,0x72,0x20,0x6d,0x3d,0x7b,0x7d,0x3b,0x22,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x20,0x64,0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79, 0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x43,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54, 0x4d,0x4c,0x20,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73,0x43,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x45,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x57,0x61,0x72,0x6e,0x69,0x6e, 0x67,0x20,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73,0x48,0x79,0x64,0x72,0x61,0x74, 0x69,0x6f,0x6e,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x20,0x73,0x74,0x79,0x6c,0x65, 0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x6d,0x5b,0x65,0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x30, 0x2c,0x21,0x31,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31, 0x29,0x7d,0x29,0x29,0x2c,0x5b,0x5b,0x22,0x61,0x63,0x63,0x65,0x70,0x74,0x43,0x68, 0x61,0x72,0x73,0x65,0x74,0x22,0x2c,0x22,0x61,0x63,0x63,0x65,0x70,0x74,0x2d,0x63, 0x68,0x61,0x72,0x73,0x65,0x74,0x22,0x5d,0x2c,0x5b,0x22,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x22,0x5d,0x2c,0x5b, 0x22,0x68,0x74,0x6d,0x6c,0x46,0x6f,0x72,0x22,0x2c,0x22,0x66,0x6f,0x72,0x22,0x5d, 0x2c,0x5b,0x22,0x68,0x74,0x74,0x70,0x45,0x71,0x75,0x69,0x76,0x22,0x2c,0x22,0x68, 0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x22,0x5d,0x5d,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x5b,0x30,0x5d,0x3b,0x6d,0x5b,0x74, 0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x74,0x2c,0x31,0x2c,0x21,0x31,0x2c,0x65, 0x5b,0x31,0x5d,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d, 0x29,0x29,0x2c,0x5b,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x45,0x64,0x69,0x74, 0x61,0x62,0x6c,0x65,0x22,0x2c,0x22,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65, 0x22,0x2c,0x22,0x73,0x70,0x65,0x6c,0x6c,0x43,0x68,0x65,0x63,0x6b,0x22,0x2c,0x22, 0x76,0x61,0x6c,0x75,0x65,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65, 0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x32,0x2c,0x21,0x31,0x2c,0x65, 0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x22, 0x61,0x75,0x74,0x6f,0x52,0x65,0x76,0x65,0x72,0x73,0x65,0x22,0x2c,0x22,0x65,0x78, 0x74,0x65,0x72,0x6e,0x61,0x6c,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x73,0x52, 0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x22,0x2c,0x22,0x66,0x6f,0x63,0x75,0x73,0x61, 0x62,0x6c,0x65,0x22,0x2c,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x41,0x6c, 0x70,0x68,0x61,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65,0x5d,0x3d, 0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x32,0x2c,0x21,0x31,0x2c,0x65,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x22,0x61, 0x6c,0x6c,0x6f,0x77,0x46,0x75,0x6c,0x6c,0x53,0x63,0x72,0x65,0x65,0x6e,0x20,0x61, 0x73,0x79,0x6e,0x63,0x20,0x61,0x75,0x74,0x6f,0x46,0x6f,0x63,0x75,0x73,0x20,0x61, 0x75,0x74,0x6f,0x50,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73, 0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x64,0x65,0x66,0x65,0x72,0x20,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x50, 0x69,0x63,0x74,0x75,0x72,0x65,0x49,0x6e,0x50,0x69,0x63,0x74,0x75,0x72,0x65,0x20, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x52,0x65,0x6d,0x6f,0x74,0x65,0x50,0x6c,0x61, 0x79,0x62,0x61,0x63,0x6b,0x20,0x66,0x6f,0x72,0x6d,0x4e,0x6f,0x56,0x61,0x6c,0x69, 0x64,0x61,0x74,0x65,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x20,0x6c,0x6f,0x6f,0x70, 0x20,0x6e,0x6f,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x20,0x6e,0x6f,0x56,0x61,0x6c,0x69, 0x64,0x61,0x74,0x65,0x20,0x6f,0x70,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x73,0x49, 0x6e,0x6c,0x69,0x6e,0x65,0x20,0x72,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x20,0x72, 0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x64, 0x20,0x73,0x63,0x6f,0x70,0x65,0x64,0x20,0x73,0x65,0x61,0x6d,0x6c,0x65,0x73,0x73, 0x20,0x69,0x74,0x65,0x6d,0x53,0x63,0x6f,0x70,0x65,0x22,0x2e,0x73,0x70,0x6c,0x69, 0x74,0x28,0x22,0x20,0x22,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65,0x5d, 0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x33,0x2c,0x21,0x31,0x2c,0x65,0x2e, 0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x6e,0x75, 0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x22,0x63, 0x68,0x65,0x63,0x6b,0x65,0x64,0x22,0x2c,0x22,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c, 0x65,0x22,0x2c,0x22,0x6d,0x75,0x74,0x65,0x64,0x22,0x2c,0x22,0x73,0x65,0x6c,0x65, 0x63,0x74,0x65,0x64,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65,0x5d, 0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x33,0x2c,0x21,0x30,0x2c,0x65,0x2c, 0x6e,0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x5b, 0x22,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x2c,0x22,0x64,0x6f,0x77,0x6e,0x6c, 0x6f,0x61,0x64,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65,0x5d,0x3d, 0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x34,0x2c,0x21,0x31,0x2c,0x65,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x22, 0x63,0x6f,0x6c,0x73,0x22,0x2c,0x22,0x72,0x6f,0x77,0x73,0x22,0x2c,0x22,0x73,0x69, 0x7a,0x65,0x22,0x2c,0x22,0x73,0x70,0x61,0x6e,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x6d,0x5b,0x65,0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x36,0x2c, 0x21,0x31,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29, 0x7d,0x29,0x29,0x2c,0x5b,0x22,0x72,0x6f,0x77,0x53,0x70,0x61,0x6e,0x22,0x2c,0x22, 0x73,0x74,0x61,0x72,0x74,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65, 0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x35,0x2c,0x21,0x31,0x2c,0x65, 0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61, 0x72,0x20,0x62,0x3d,0x2f,0x5b,0x5c,0x2d,0x3a,0x5d,0x28,0x5b,0x61,0x2d,0x7a,0x5d, 0x29,0x2f,0x67,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x31,0x5d,0x2e,0x74,0x6f, 0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x5f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x6d,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x29,0x3f,0x6d,0x5b,0x74,0x5d,0x3a,0x6e, 0x75,0x6c,0x6c,0x3b,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x3f,0x30,0x3d, 0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x3a,0x21,0x72,0x26,0x26,0x28,0x32,0x3c, 0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x22,0x6f,0x22,0x3d,0x3d, 0x3d,0x74,0x5b,0x30,0x5d,0x7c,0x7c,0x22,0x4f,0x22,0x3d,0x3d,0x3d,0x74,0x5b,0x30, 0x5d,0x29,0x26,0x26,0x28,0x22,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x5b,0x31,0x5d,0x7c, 0x7c,0x22,0x4e,0x22,0x3d,0x3d,0x3d,0x74,0x5b,0x31,0x5d,0x29,0x29,0x29,0x7c,0x7c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x7c,0x7c, 0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x7b,0x63,0x61,0x73,0x65, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3a,0x63,0x61,0x73,0x65,0x22, 0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30, 0x3b,0x63,0x61,0x73,0x65,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x72,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6e,0x3f,0x21,0x6e,0x2e,0x61,0x63,0x63,0x65,0x70,0x74,0x73,0x42,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x73,0x3a,0x22,0x64,0x61,0x74,0x61,0x2d,0x22,0x21,0x3d,0x3d, 0x28,0x65,0x3d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65, 0x28,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x35,0x29,0x29,0x26,0x26, 0x22,0x61,0x72,0x69,0x61,0x2d,0x22,0x21,0x3d,0x3d,0x65,0x29,0x3b,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x30,0x3b,0x69,0x66,0x28,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x29,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x6e,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x74,0x3b,0x63,0x61,0x73,0x65,0x20, 0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3d,0x3d,0x3d,0x74,0x3b,0x63, 0x61,0x73,0x65,0x20,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x73,0x4e, 0x61,0x4e,0x28,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x36,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x69,0x73,0x4e,0x61,0x4e,0x28,0x74,0x29,0x7c,0x7c,0x31,0x3e, 0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x28,0x74,0x2c,0x6e,0x2c, 0x6f,0x2c,0x72,0x29,0x26,0x26,0x28,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x72, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6f,0x3f,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x70, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x76,0x2c,0x65,0x29,0x7c,0x7c,0x21,0x70,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x68,0x2c,0x65,0x29,0x26,0x26,0x28,0x64,0x2e,0x74,0x65,0x73, 0x74,0x28,0x65,0x29,0x3f,0x76,0x5b,0x65,0x5d,0x3d,0x21,0x30,0x3a,0x28,0x68,0x5b, 0x65,0x5d,0x3d,0x21,0x30,0x2c,0x21,0x31,0x29,0x29,0x7d,0x28,0x74,0x29,0x26,0x26, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x3f,0x65,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x74,0x29,0x3a,0x65, 0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x74,0x2c, 0x22,0x22,0x2b,0x6e,0x29,0x29,0x3a,0x6f,0x2e,0x6d,0x75,0x73,0x74,0x55,0x73,0x65, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3f,0x65,0x5b,0x6f,0x2e,0x70,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x4e,0x61,0x6d,0x65,0x5d,0x3d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x6e,0x3f,0x33,0x21,0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x26,0x26, 0x22,0x22,0x3a,0x6e,0x3a,0x28,0x74,0x3d,0x6f,0x2e,0x61,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x4e,0x61,0x6d,0x65,0x2c,0x72,0x3d,0x6f,0x2e,0x61,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x4e,0x61,0x6d,0x65,0x73,0x70,0x61,0x63,0x65,0x2c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x3f,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x74,0x29,0x3a,0x28,0x6e,0x3d, 0x33,0x3d,0x3d,0x3d,0x28,0x6f,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65,0x29,0x7c,0x7c, 0x34,0x3d,0x3d,0x3d,0x6f,0x26,0x26,0x21,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x22,0x22, 0x3a,0x22,0x22,0x2b,0x6e,0x2c,0x72,0x3f,0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74, 0x72,0x69,0x62,0x75,0x74,0x65,0x4e,0x53,0x28,0x72,0x2c,0x74,0x2c,0x6e,0x29,0x3a, 0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x74, 0x2c,0x6e,0x29,0x29,0x29,0x29,0x7d,0x22,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x68, 0x65,0x69,0x67,0x68,0x74,0x20,0x61,0x6c,0x69,0x67,0x6e,0x6d,0x65,0x6e,0x74,0x2d, 0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x20,0x61,0x72,0x61,0x62,0x69,0x63,0x2d, 0x66,0x6f,0x72,0x6d,0x20,0x62,0x61,0x73,0x65,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x68, 0x69,0x66,0x74,0x20,0x63,0x61,0x70,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x20,0x63, 0x6c,0x69,0x70,0x2d,0x70,0x61,0x74,0x68,0x20,0x63,0x6c,0x69,0x70,0x2d,0x72,0x75, 0x6c,0x65,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x69,0x6e,0x74,0x65,0x72,0x70,0x6f, 0x6c,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x69,0x6e,0x74, 0x65,0x72,0x70,0x6f,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65, 0x72,0x73,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65, 0x20,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67, 0x20,0x64,0x6f,0x6d,0x69,0x6e,0x61,0x6e,0x74,0x2d,0x62,0x61,0x73,0x65,0x6c,0x69, 0x6e,0x65,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72, 0x6f,0x75,0x6e,0x64,0x20,0x66,0x69,0x6c,0x6c,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74, 0x79,0x20,0x66,0x69,0x6c,0x6c,0x2d,0x72,0x75,0x6c,0x65,0x20,0x66,0x6c,0x6f,0x6f, 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x66,0x6c,0x6f,0x6f,0x64,0x2d,0x6f,0x70, 0x61,0x63,0x69,0x74,0x79,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c, 0x79,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x20,0x66,0x6f,0x6e,0x74, 0x2d,0x73,0x69,0x7a,0x65,0x2d,0x61,0x64,0x6a,0x75,0x73,0x74,0x20,0x66,0x6f,0x6e, 0x74,0x2d,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73, 0x74,0x79,0x6c,0x65,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x76,0x61,0x72,0x69,0x61,0x6e, 0x74,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x20,0x67,0x6c, 0x79,0x70,0x68,0x2d,0x6e,0x61,0x6d,0x65,0x20,0x67,0x6c,0x79,0x70,0x68,0x2d,0x6f, 0x72,0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x6f,0x72,0x69,0x7a, 0x6f,0x6e,0x74,0x61,0x6c,0x20,0x67,0x6c,0x79,0x70,0x68,0x2d,0x6f,0x72,0x69,0x65, 0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c, 0x20,0x68,0x6f,0x72,0x69,0x7a,0x2d,0x61,0x64,0x76,0x2d,0x78,0x20,0x68,0x6f,0x72, 0x69,0x7a,0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e,0x2d,0x78,0x20,0x69,0x6d,0x61,0x67, 0x65,0x2d,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x20,0x6c,0x65,0x74,0x74, 0x65,0x72,0x2d,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x6c,0x69,0x67,0x68,0x74, 0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72, 0x2d,0x65,0x6e,0x64,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2d,0x6d,0x69,0x64,0x20, 0x6d,0x61,0x72,0x6b,0x65,0x72,0x2d,0x73,0x74,0x61,0x72,0x74,0x20,0x6f,0x76,0x65, 0x72,0x6c,0x69,0x6e,0x65,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x6f, 0x76,0x65,0x72,0x6c,0x69,0x6e,0x65,0x2d,0x74,0x68,0x69,0x63,0x6b,0x6e,0x65,0x73, 0x73,0x20,0x70,0x61,0x69,0x6e,0x74,0x2d,0x6f,0x72,0x64,0x65,0x72,0x20,0x70,0x61, 0x6e,0x6f,0x73,0x65,0x2d,0x31,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65, 0x76,0x65,0x6e,0x74,0x73,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x2d, 0x69,0x6e,0x74,0x65,0x6e,0x74,0x20,0x73,0x68,0x61,0x70,0x65,0x2d,0x72,0x65,0x6e, 0x64,0x65,0x72,0x69,0x6e,0x67,0x20,0x73,0x74,0x6f,0x70,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x20,0x73,0x74,0x6f,0x70,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x20,0x73, 0x74,0x72,0x69,0x6b,0x65,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x2d,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x72,0x69,0x6b,0x65,0x74,0x68,0x72,0x6f, 0x75,0x67,0x68,0x2d,0x74,0x68,0x69,0x63,0x6b,0x6e,0x65,0x73,0x73,0x20,0x73,0x74, 0x72,0x6f,0x6b,0x65,0x2d,0x64,0x61,0x73,0x68,0x61,0x72,0x72,0x61,0x79,0x20,0x73, 0x74,0x72,0x6f,0x6b,0x65,0x2d,0x64,0x61,0x73,0x68,0x6f,0x66,0x66,0x73,0x65,0x74, 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63,0x61,0x70,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x20, 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74,0x65,0x72,0x6c,0x69,0x6d,0x69, 0x74,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x20,0x74,0x65, 0x78,0x74,0x2d,0x61,0x6e,0x63,0x68,0x6f,0x72,0x20,0x74,0x65,0x78,0x74,0x2d,0x64, 0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x2d,0x72, 0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69, 0x6e,0x65,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x75,0x6e,0x64,0x65, 0x72,0x6c,0x69,0x6e,0x65,0x2d,0x74,0x68,0x69,0x63,0x6b,0x6e,0x65,0x73,0x73,0x20, 0x75,0x6e,0x69,0x63,0x6f,0x64,0x65,0x2d,0x62,0x69,0x64,0x69,0x20,0x75,0x6e,0x69, 0x63,0x6f,0x64,0x65,0x2d,0x72,0x61,0x6e,0x67,0x65,0x20,0x75,0x6e,0x69,0x74,0x73, 0x2d,0x70,0x65,0x72,0x2d,0x65,0x6d,0x20,0x76,0x2d,0x61,0x6c,0x70,0x68,0x61,0x62, 0x65,0x74,0x69,0x63,0x20,0x76,0x2d,0x68,0x61,0x6e,0x67,0x69,0x6e,0x67,0x20,0x76, 0x2d,0x69,0x64,0x65,0x6f,0x67,0x72,0x61,0x70,0x68,0x69,0x63,0x20,0x76,0x2d,0x6d, 0x61,0x74,0x68,0x65,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x20,0x76,0x65,0x63,0x74, 0x6f,0x72,0x2d,0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x76,0x65,0x72,0x74,0x2d,0x61, 0x64,0x76,0x2d,0x79,0x20,0x76,0x65,0x72,0x74,0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e, 0x2d,0x78,0x20,0x76,0x65,0x72,0x74,0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e,0x2d,0x79, 0x20,0x77,0x6f,0x72,0x64,0x2d,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x77,0x72, 0x69,0x74,0x69,0x6e,0x67,0x2d,0x6d,0x6f,0x64,0x65,0x20,0x78,0x6d,0x6c,0x6e,0x73, 0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x20,0x78,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x22, 0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65, 0x28,0x62,0x2c,0x79,0x29,0x3b,0x6d,0x5b,0x74,0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67, 0x28,0x74,0x2c,0x31,0x2c,0x21,0x31,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x21, 0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x22,0x78,0x6c,0x69,0x6e,0x6b,0x3a, 0x61,0x63,0x74,0x75,0x61,0x74,0x65,0x20,0x78,0x6c,0x69,0x6e,0x6b,0x3a,0x61,0x72, 0x63,0x72,0x6f,0x6c,0x65,0x20,0x78,0x6c,0x69,0x6e,0x6b,0x3a,0x72,0x6f,0x6c,0x65, 0x20,0x78,0x6c,0x69,0x6e,0x6b,0x3a,0x73,0x68,0x6f,0x77,0x20,0x78,0x6c,0x69,0x6e, 0x6b,0x3a,0x74,0x69,0x74,0x6c,0x65,0x20,0x78,0x6c,0x69,0x6e,0x6b,0x3a,0x74,0x79, 0x70,0x65,0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x72,0x65,0x70,0x6c, 0x61,0x63,0x65,0x28,0x62,0x2c,0x79,0x29,0x3b,0x6d,0x5b,0x74,0x5d,0x3d,0x6e,0x65, 0x77,0x20,0x67,0x28,0x74,0x2c,0x31,0x2c,0x21,0x31,0x2c,0x65,0x2c,0x22,0x68,0x74, 0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f, 0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x2c,0x21,0x31,0x2c,0x21, 0x31,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x22,0x78,0x6d,0x6c,0x3a,0x62,0x61,0x73,0x65, 0x22,0x2c,0x22,0x78,0x6d,0x6c,0x3a,0x6c,0x61,0x6e,0x67,0x22,0x2c,0x22,0x78,0x6d, 0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63, 0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x62, 0x2c,0x79,0x29,0x3b,0x6d,0x5b,0x74,0x5d,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x74, 0x2c,0x31,0x2c,0x21,0x31,0x2c,0x65,0x2c,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, 0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x58,0x4d,0x4c,0x2f,0x31, 0x39,0x39,0x38,0x2f,0x6e,0x61,0x6d,0x65,0x73,0x70,0x61,0x63,0x65,0x22,0x2c,0x21, 0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x5b,0x22,0x74,0x61,0x62,0x49,0x6e, 0x64,0x65,0x78,0x22,0x2c,0x22,0x63,0x72,0x6f,0x73,0x73,0x4f,0x72,0x69,0x67,0x69, 0x6e,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65,0x5d,0x3d,0x6e,0x65, 0x77,0x20,0x67,0x28,0x65,0x2c,0x31,0x2c,0x21,0x31,0x2c,0x65,0x2e,0x74,0x6f,0x4c, 0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x21,0x31,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x6d,0x2e,0x78,0x6c,0x69,0x6e, 0x6b,0x48,0x72,0x65,0x66,0x3d,0x6e,0x65,0x77,0x20,0x67,0x28,0x22,0x78,0x6c,0x69, 0x6e,0x6b,0x48,0x72,0x65,0x66,0x22,0x2c,0x31,0x2c,0x21,0x31,0x2c,0x22,0x78,0x6c, 0x69,0x6e,0x6b,0x3a,0x68,0x72,0x65,0x66,0x22,0x2c,0x22,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39, 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x2c,0x21,0x30,0x2c,0x21,0x31,0x29,0x2c, 0x5b,0x22,0x73,0x72,0x63,0x22,0x2c,0x22,0x68,0x72,0x65,0x66,0x22,0x2c,0x22,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x41,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x5b,0x65,0x5d,0x3d,0x6e, 0x65,0x77,0x20,0x67,0x28,0x65,0x2c,0x31,0x2c,0x21,0x31,0x2c,0x65,0x2e,0x74,0x6f, 0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x2c,0x21,0x30,0x2c,0x21,0x30,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x77, 0x3d,0x72,0x2e,0x5f,0x5f,0x53,0x45,0x43,0x52,0x45,0x54,0x5f,0x49,0x4e,0x54,0x45, 0x52,0x4e,0x41,0x4c,0x53,0x5f,0x44,0x4f,0x5f,0x4e,0x4f,0x54,0x5f,0x55,0x53,0x45, 0x5f,0x4f,0x52,0x5f,0x59,0x4f,0x55,0x5f,0x57,0x49,0x4c,0x4c,0x5f,0x42,0x45,0x5f, 0x46,0x49,0x52,0x45,0x44,0x2c,0x4f,0x3d,0x36,0x30,0x31,0x30,0x33,0x2c,0x78,0x3d, 0x36,0x30,0x31,0x30,0x36,0x2c,0x45,0x3d,0x36,0x30,0x31,0x30,0x37,0x2c,0x6a,0x3d, 0x36,0x30,0x31,0x30,0x38,0x2c,0x6b,0x3d,0x36,0x30,0x31,0x31,0x34,0x2c,0x53,0x3d, 0x36,0x30,0x31,0x30,0x39,0x2c,0x43,0x3d,0x36,0x30,0x31,0x31,0x30,0x2c,0x41,0x3d, 0x36,0x30,0x31,0x31,0x32,0x2c,0x54,0x3d,0x36,0x30,0x31,0x31,0x33,0x2c,0x50,0x3d, 0x36,0x30,0x31,0x32,0x30,0x2c,0x44,0x3d,0x36,0x30,0x31,0x31,0x35,0x2c,0x4e,0x3d, 0x36,0x30,0x31,0x31,0x36,0x2c,0x49,0x3d,0x36,0x30,0x31,0x32,0x31,0x2c,0x52,0x3d, 0x36,0x30,0x31,0x32,0x38,0x2c,0x4c,0x3d,0x36,0x30,0x31,0x32,0x39,0x2c,0x46,0x3d, 0x36,0x30,0x31,0x33,0x30,0x2c,0x4d,0x3d,0x36,0x30,0x31,0x33,0x31,0x3b,0x69,0x66, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x42,0x3d,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x3b,0x4f,0x3d,0x42,0x28,0x22,0x72, 0x65,0x61,0x63,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x29,0x2c,0x78, 0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x6f,0x72,0x74,0x61,0x6c, 0x22,0x29,0x2c,0x45,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x72, 0x61,0x67,0x6d,0x65,0x6e,0x74,0x22,0x29,0x2c,0x6a,0x3d,0x42,0x28,0x22,0x72,0x65, 0x61,0x63,0x74,0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x5f,0x6d,0x6f,0x64,0x65,0x22, 0x29,0x2c,0x6b,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f, 0x66,0x69,0x6c,0x65,0x72,0x22,0x29,0x2c,0x53,0x3d,0x42,0x28,0x22,0x72,0x65,0x61, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x29,0x2c,0x43,0x3d, 0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x22,0x29,0x2c,0x41,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x6f, 0x72,0x77,0x61,0x72,0x64,0x5f,0x72,0x65,0x66,0x22,0x29,0x2c,0x54,0x3d,0x42,0x28, 0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x22, 0x29,0x2c,0x50,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x75,0x73, 0x70,0x65,0x6e,0x73,0x65,0x5f,0x6c,0x69,0x73,0x74,0x22,0x29,0x2c,0x44,0x3d,0x42, 0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x22,0x29,0x2c,0x4e, 0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6c,0x61,0x7a,0x79,0x22,0x29, 0x2c,0x49,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x62,0x6c,0x6f,0x63, 0x6b,0x22,0x29,0x2c,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x63,0x6f, 0x70,0x65,0x22,0x29,0x2c,0x52,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x6f,0x70,0x61,0x71,0x75,0x65,0x2e,0x69,0x64,0x22,0x29,0x2c,0x4c,0x3d,0x42,0x28, 0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x64,0x65,0x62,0x75,0x67,0x5f,0x74,0x72,0x61, 0x63,0x65,0x5f,0x6d,0x6f,0x64,0x65,0x22,0x29,0x2c,0x46,0x3d,0x42,0x28,0x22,0x72, 0x65,0x61,0x63,0x74,0x2e,0x6f,0x66,0x66,0x73,0x63,0x72,0x65,0x65,0x6e,0x22,0x29, 0x2c,0x4d,0x3d,0x42,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6c,0x65,0x67,0x61, 0x63,0x79,0x5f,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x29,0x7d,0x76,0x61,0x72,0x20, 0x7a,0x2c,0x55,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x65,0x3d,0x55,0x26, 0x26,0x65,0x5b,0x55,0x5d,0x7c,0x7c,0x65,0x5b,0x22,0x40,0x40,0x69,0x74,0x65,0x72, 0x61,0x74,0x6f,0x72,0x22,0x5d,0x29,0x3f,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x7a,0x29,0x74,0x72,0x79,0x7b,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x7d,0x63,0x61,0x74, 0x63,0x68,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x2e,0x73,0x74, 0x61,0x63,0x6b,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2e,0x6d,0x61,0x74,0x63,0x68, 0x28,0x2f,0x5c,0x6e,0x28,0x20,0x2a,0x28,0x61,0x74,0x20,0x29,0x3f,0x29,0x2f,0x29, 0x3b,0x7a,0x3d,0x74,0x26,0x26,0x74,0x5b,0x31,0x5d,0x7c,0x7c,0x22,0x22,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x5c,0x6e,0x22,0x2b,0x7a,0x2b,0x65,0x7d,0x76,0x61, 0x72,0x20,0x48,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x56,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x7c,0x7c,0x48,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x3b,0x48,0x3d,0x21,0x30,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x45,0x72,0x72,0x6f,0x72,0x2e,0x70,0x72,0x65,0x70,0x61,0x72, 0x65,0x53,0x74,0x61,0x63,0x6b,0x54,0x72,0x61,0x63,0x65,0x3b,0x45,0x72,0x72,0x6f, 0x72,0x2e,0x70,0x72,0x65,0x70,0x61,0x72,0x65,0x53,0x74,0x61,0x63,0x6b,0x54,0x72, 0x61,0x63,0x65,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x74,0x72,0x79,0x7b,0x69, 0x66,0x28,0x74,0x29,0x69,0x66,0x28,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x29,0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2c,0x22,0x70,0x72,0x6f,0x70,0x73,0x22,0x2c,0x7b,0x73,0x65, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x72, 0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x26,0x26,0x52,0x65,0x66,0x6c,0x65,0x63,0x74, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x29,0x7b,0x74,0x72,0x79,0x7b, 0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63, 0x74,0x28,0x74,0x2c,0x5b,0x5d,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x63,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x63,0x7d,0x52,0x65,0x66,0x6c,0x65,0x63,0x74, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x28,0x65,0x2c,0x5b,0x5d,0x2c, 0x74,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x74,0x72,0x79,0x7b,0x74,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x63,0x29,0x7b,0x72,0x3d, 0x63,0x7d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x74,0x72,0x79,0x7b,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x7d,0x63,0x61,0x74, 0x63,0x68,0x28,0x63,0x29,0x7b,0x72,0x3d,0x63,0x7d,0x65,0x28,0x29,0x7d,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x63,0x29,0x7b,0x69,0x66,0x28,0x63,0x26,0x26,0x72,0x26, 0x26,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x63,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x63,0x2e,0x73,0x74,0x61,0x63,0x6b,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x5c,0x6e,0x22,0x29,0x2c,0x69,0x3d,0x72,0x2e,0x73,0x74, 0x61,0x63,0x6b,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x5c,0x6e,0x22,0x29,0x2c, 0x61,0x3d,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x2c,0x75,0x3d,0x69, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x3b,0x31,0x3c,0x3d,0x61,0x26,0x26, 0x30,0x3c,0x3d,0x75,0x26,0x26,0x6f,0x5b,0x61,0x5d,0x21,0x3d,0x3d,0x69,0x5b,0x75, 0x5d,0x3b,0x29,0x75,0x2d,0x2d,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x31,0x3c,0x3d,0x61, 0x26,0x26,0x30,0x3c,0x3d,0x75,0x3b,0x61,0x2d,0x2d,0x2c,0x75,0x2d,0x2d,0x29,0x69, 0x66,0x28,0x6f,0x5b,0x61,0x5d,0x21,0x3d,0x3d,0x69,0x5b,0x75,0x5d,0x29,0x7b,0x69, 0x66,0x28,0x31,0x21,0x3d,0x3d,0x61,0x7c,0x7c,0x31,0x21,0x3d,0x3d,0x75,0x29,0x64, 0x6f,0x7b,0x69,0x66,0x28,0x61,0x2d,0x2d,0x2c,0x30,0x3e,0x2d,0x2d,0x75,0x7c,0x7c, 0x6f,0x5b,0x61,0x5d,0x21,0x3d,0x3d,0x69,0x5b,0x75,0x5d,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x5c,0x6e,0x22,0x2b,0x6f,0x5b,0x61,0x5d,0x2e,0x72,0x65,0x70,0x6c, 0x61,0x63,0x65,0x28,0x22,0x20,0x61,0x74,0x20,0x6e,0x65,0x77,0x20,0x22,0x2c,0x22, 0x20,0x61,0x74,0x20,0x22,0x29,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x31,0x3c,0x3d, 0x61,0x26,0x26,0x30,0x3c,0x3d,0x75,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d, 0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x48,0x3d,0x21,0x31,0x2c,0x45,0x72, 0x72,0x6f,0x72,0x2e,0x70,0x72,0x65,0x70,0x61,0x72,0x65,0x53,0x74,0x61,0x63,0x6b, 0x54,0x72,0x61,0x63,0x65,0x3d,0x6e,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65, 0x3d,0x65,0x3f,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65, 0x7c,0x7c,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x22,0x29,0x3f,0x24,0x28,0x65, 0x29,0x3a,0x22,0x22,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x28, 0x65,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x74,0x61,0x67,0x29, 0x7b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x24, 0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x36, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x24,0x28,0x22,0x4c,0x61,0x7a,0x79,0x22, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x24,0x28,0x22,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x22,0x29,0x3b,0x63, 0x61,0x73,0x65,0x20,0x31,0x39,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x24,0x28, 0x22,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x4c,0x69,0x73,0x74,0x22,0x29,0x3b, 0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x61, 0x73,0x65,0x20,0x31,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x56, 0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x21,0x31,0x29,0x3b,0x63,0x61,0x73,0x65, 0x20,0x31,0x31,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x56,0x28,0x65, 0x2e,0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x2c,0x21,0x31,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x32,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x3d,0x56,0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x2e,0x5f,0x72,0x65,0x6e,0x64, 0x65,0x72,0x2c,0x21,0x31,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x56,0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c, 0x21,0x30,0x29,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x22,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x65,0x2e,0x6e,0x61,0x6d,0x65, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29, 0x7b,0x63,0x61,0x73,0x65,0x20,0x45,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x46, 0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x22,0x3b,0x63,0x61,0x73,0x65,0x20,0x78,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x50,0x6f,0x72,0x74,0x61,0x6c,0x22,0x3b,0x63, 0x61,0x73,0x65,0x20,0x6b,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x50,0x72,0x6f, 0x66,0x69,0x6c,0x65,0x72,0x22,0x3b,0x63,0x61,0x73,0x65,0x20,0x6a,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x53,0x74,0x72,0x69,0x63,0x74,0x4d,0x6f,0x64,0x65,0x22, 0x3b,0x63,0x61,0x73,0x65,0x20,0x54,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x53, 0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x22,0x3b,0x63,0x61,0x73,0x65,0x20,0x50,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x4c, 0x69,0x73,0x74,0x22,0x7d,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x65,0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63, 0x61,0x73,0x65,0x20,0x43,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x22,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x22,0x29,0x2b,0x22,0x2e,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65, 0x72,0x22,0x3b,0x63,0x61,0x73,0x65,0x20,0x53,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x22,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x22,0x29,0x2b,0x22,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3b, 0x63,0x61,0x73,0x65,0x20,0x41,0x3a,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x72, 0x65,0x6e,0x64,0x65,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x74, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x74,0x2e, 0x6e,0x61,0x6d,0x65,0x7c,0x7c,0x22,0x22,0x2c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x28,0x22,0x22,0x21,0x3d,0x3d,0x74,0x3f, 0x22,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x22,0x2b,0x74,0x2b, 0x22,0x29,0x22,0x3a,0x22,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x22, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x44,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x71,0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x49, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71,0x28,0x65,0x2e,0x5f,0x72,0x65,0x6e, 0x64,0x65,0x72,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x4e,0x3a,0x74,0x3d,0x65,0x2e, 0x5f,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x65,0x3d,0x65,0x2e,0x5f,0x69,0x6e, 0x69,0x74,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71,0x28, 0x65,0x28,0x74,0x29,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x7d, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x28,0x65,0x29,0x7b,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b,0x63,0x61,0x73,0x65, 0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6e, 0x75,0x6d,0x62,0x65,0x72,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x59,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d, 0x65,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x29,0x26,0x26,0x22,0x69,0x6e, 0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72, 0x43,0x61,0x73,0x65,0x28,0x29,0x26,0x26,0x28,0x22,0x63,0x68,0x65,0x63,0x6b,0x62, 0x6f,0x78,0x22,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x72,0x61,0x64,0x69,0x6f,0x22, 0x3d,0x3d,0x3d,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51, 0x28,0x65,0x29,0x7b,0x65,0x2e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x54,0x72,0x61,0x63, 0x6b,0x65,0x72,0x7c,0x7c,0x28,0x65,0x2e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x54,0x72, 0x61,0x63,0x6b,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x59,0x28,0x65,0x29,0x3f,0x22,0x63,0x68, 0x65,0x63,0x6b,0x65,0x64,0x22,0x3a,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x2c,0x6e, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72, 0x28,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x74,0x29,0x2c,0x72,0x3d,0x22,0x22, 0x2b,0x65,0x5b,0x74,0x5d,0x3b,0x69,0x66,0x28,0x21,0x65,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x29,0x26,0x26,0x22, 0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x2e,0x67,0x65,0x74, 0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x2e,0x73,0x65,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x2c,0x69,0x3d,0x6e,0x2e,0x73,0x65,0x74, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64, 0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c, 0x74,0x2c,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a, 0x21,0x30,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x29,0x7d,0x2c,0x73,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x3d,0x22,0x22,0x2b,0x65,0x2c,0x69,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x7d,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65, 0x72,0x61,0x62,0x6c,0x65,0x3a,0x6e,0x2e,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62, 0x6c,0x65,0x7d,0x29,0x2c,0x7b,0x67,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x72,0x7d,0x2c,0x73,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x3d,0x22,0x22,0x2b,0x65,0x7d, 0x2c,0x73,0x74,0x6f,0x70,0x54,0x72,0x61,0x63,0x6b,0x69,0x6e,0x67,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x5f,0x76,0x61,0x6c,0x75, 0x65,0x54,0x72,0x61,0x63,0x6b,0x65,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x64,0x65, 0x6c,0x65,0x74,0x65,0x20,0x65,0x5b,0x74,0x5d,0x7d,0x7d,0x7d,0x7d,0x28,0x65,0x29, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x54,0x72,0x61, 0x63,0x6b,0x65,0x72,0x3b,0x69,0x66,0x28,0x21,0x74,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67,0x65,0x74,0x56, 0x61,0x6c,0x75,0x65,0x28,0x29,0x2c,0x72,0x3d,0x22,0x22,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x26,0x26,0x28,0x72,0x3d,0x59,0x28,0x65,0x29,0x3f,0x65,0x2e, 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3f,0x22,0x74,0x72,0x75,0x65,0x22,0x3a,0x22, 0x66,0x61,0x6c,0x73,0x65,0x22,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x2c, 0x28,0x65,0x3d,0x72,0x29,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x74,0x2e,0x73,0x65, 0x74,0x56,0x61,0x6c,0x75,0x65,0x28,0x65,0x29,0x2c,0x21,0x30,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22, 0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x28,0x65,0x3d,0x65,0x7c,0x7c,0x28,0x22,0x75,0x6e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3f,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x7c,0x7c,0x65,0x2e,0x62,0x6f,0x64,0x79,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x62,0x6f,0x64,0x79,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x43,0x68,0x65,0x63,0x6b,0x65,0x64,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c, 0x75,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3a,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x3f,0x6e,0x3a,0x65,0x2e,0x5f,0x77,0x72,0x61,0x70, 0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x43,0x68,0x65,0x63,0x6b,0x65,0x64,0x7d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x65,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x56,0x61,0x6c,0x75,0x65,0x3f,0x22,0x22,0x3a,0x74,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x74,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3f,0x74,0x2e,0x63,0x68,0x65,0x63, 0x6b,0x65,0x64,0x3a,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x43,0x68,0x65, 0x63,0x6b,0x65,0x64,0x3b,0x6e,0x3d,0x4b,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x3f,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e, 0x29,0x2c,0x65,0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74, 0x65,0x3d,0x7b,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x43,0x68,0x65,0x63,0x6b,0x65, 0x64,0x3a,0x72,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65, 0x3a,0x6e,0x2c,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x64,0x3a,0x22,0x63, 0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70, 0x65,0x7c,0x7c,0x22,0x72,0x61,0x64,0x69,0x6f,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x74, 0x79,0x70,0x65,0x3f,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x63,0x68,0x65,0x63, 0x6b,0x65,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x74,0x3d,0x74,0x2e,0x63, 0x68,0x65,0x63,0x6b,0x65,0x64,0x29,0x26,0x26,0x5f,0x28,0x65,0x2c,0x22,0x63,0x68, 0x65,0x63,0x6b,0x65,0x64,0x22,0x2c,0x74,0x2c,0x21,0x31,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x65, 0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4b,0x28,0x74,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x29,0x2c,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x29,0x22,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x22,0x3d,0x3d,0x3d,0x72,0x3f,0x28,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26, 0x22,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7c,0x7c,0x65,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x21,0x3d,0x6e,0x29,0x26,0x26,0x28,0x65,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x3d,0x22,0x22,0x2b,0x6e,0x29,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x21,0x3d,0x3d,0x22,0x22,0x2b,0x6e,0x26,0x26,0x28,0x65,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x3d,0x22,0x22,0x2b,0x6e,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66, 0x28,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x3d,0x3d,0x3d,0x72,0x7c,0x7c,0x22, 0x72,0x65,0x73,0x65,0x74,0x22,0x3d,0x3d,0x3d,0x72,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41, 0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x76,0x61,0x6c,0x75,0x65,0x22, 0x29,0x3b,0x74,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x28,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x29,0x3f,0x6f,0x65,0x28,0x65, 0x2c,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6e,0x29,0x3a,0x74,0x2e,0x68,0x61,0x73, 0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x22,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x22,0x29,0x26,0x26,0x6f,0x65,0x28, 0x65,0x2c,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x4b,0x28,0x74,0x2e,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x74,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x43,0x68,0x65,0x63, 0x6b,0x65,0x64,0x26,0x26,0x28,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x43, 0x68,0x65,0x63,0x6b,0x65,0x64,0x3d,0x21,0x21,0x74,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x43,0x68,0x65,0x63,0x6b,0x65,0x64,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x72,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66, 0x28,0x74,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x28,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x29,0x7c,0x7c,0x74,0x2e,0x68,0x61, 0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x22,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x22,0x29,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3b,0x69,0x66,0x28,0x21,0x28, 0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x21,0x3d,0x3d,0x72,0x26,0x26,0x22,0x72, 0x65,0x73,0x65,0x74,0x22,0x21,0x3d,0x3d,0x72,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3b,0x74,0x3d,0x22,0x22,0x2b,0x65,0x2e,0x5f,0x77,0x72,0x61,0x70, 0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x56,0x61,0x6c,0x75,0x65,0x2c,0x6e,0x7c,0x7c,0x74,0x3d,0x3d,0x3d,0x65,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x7c,0x7c,0x28,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x74, 0x29,0x2c,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65, 0x3d,0x74,0x7d,0x22,0x22,0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x29,0x26,0x26,0x28,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x22,0x29,0x2c, 0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x43,0x68,0x65,0x63,0x6b,0x65,0x64, 0x3d,0x21,0x21,0x65,0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61, 0x74,0x65,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x43,0x68,0x65,0x63,0x6b,0x65, 0x64,0x2c,0x22,0x22,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x3d,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x65, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22, 0x3d,0x3d,0x3d,0x74,0x26,0x26,0x4a,0x28,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x3f,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x56,0x61,0x6c,0x75,0x65,0x3d,0x22,0x22,0x2b,0x65,0x2e,0x5f,0x77,0x72,0x61,0x70, 0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, 0x56,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56, 0x61,0x6c,0x75,0x65,0x21,0x3d,0x3d,0x22,0x22,0x2b,0x6e,0x26,0x26,0x28,0x65,0x2e, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x3d,0x22,0x22,0x2b, 0x6e,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x65,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x6f,0x28, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30, 0x7d,0x2c,0x74,0x29,0x2c,0x28,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x22,0x22,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x2e,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x28, 0x74,0x2b,0x3d,0x65,0x29,0x7d,0x29,0x29,0x2c,0x74,0x7d,0x28,0x74,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x26,0x26,0x28,0x65,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3d,0x74,0x29,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x61,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b, 0x69,0x66,0x28,0x65,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x74, 0x29,0x7b,0x74,0x3d,0x7b,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x30,0x3b,0x6f,0x3c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b, 0x2b,0x29,0x74,0x5b,0x22,0x24,0x22,0x2b,0x6e,0x5b,0x6f,0x5d,0x5d,0x3d,0x21,0x30, 0x3b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x6f,0x3d,0x74,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x22,0x24,0x22,0x2b,0x65, 0x5b,0x6e,0x5d,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x2c,0x65,0x5b,0x6e,0x5d,0x2e, 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x21,0x3d,0x3d,0x6f,0x26,0x26,0x28,0x65, 0x5b,0x6e,0x5d,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x3d,0x6f,0x29,0x2c, 0x6f,0x26,0x26,0x72,0x26,0x26,0x28,0x65,0x5b,0x6e,0x5d,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x3d,0x21,0x30,0x29,0x7d, 0x65,0x6c,0x73,0x65,0x7b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x22,0x22,0x2b,0x4b,0x28, 0x6e,0x29,0x2c,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x3d,0x30,0x3b,0x6f,0x3c, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x2b,0x29,0x7b,0x69,0x66, 0x28,0x65,0x5b,0x6f,0x5d,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x3d,0x3d,0x6e,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x6f,0x5d,0x2e,0x73,0x65,0x6c,0x65, 0x63,0x74,0x65,0x64,0x3d,0x21,0x30,0x2c,0x76,0x6f,0x69,0x64,0x28,0x72,0x26,0x26, 0x28,0x65,0x5b,0x6f,0x5d,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x53,0x65,0x6c, 0x65,0x63,0x74,0x65,0x64,0x3d,0x21,0x30,0x29,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x74,0x7c,0x7c,0x65,0x5b,0x6f,0x5d,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x7c,0x7c,0x28,0x74,0x3d,0x65,0x5b,0x6f,0x5d,0x29,0x7d,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74, 0x65,0x64,0x3d,0x21,0x30,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x75,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x74,0x2e,0x64,0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53, 0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x39,0x31,0x29,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x22,0x2b,0x65,0x2e,0x5f,0x77,0x72, 0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x7d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x63,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x6e,0x29,0x7b,0x69,0x66,0x28,0x6e,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x2c,0x74,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x56,0x61,0x6c,0x75,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x39,0x32,0x29,0x29,0x3b,0x69,0x66,0x28, 0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6e,0x29, 0x29,0x7b,0x69,0x66,0x28,0x21,0x28,0x31,0x3e,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x61,0x28,0x39,0x33,0x29,0x29,0x3b,0x6e,0x3d,0x6e,0x5b,0x30,0x5d,0x7d,0x74,0x3d, 0x6e,0x7d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x22,0x22, 0x29,0x2c,0x6e,0x3d,0x74,0x7d,0x65,0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72, 0x53,0x74,0x61,0x74,0x65,0x3d,0x7b,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61, 0x6c,0x75,0x65,0x3a,0x4b,0x28,0x6e,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6c,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x4b,0x28,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x2c,0x72,0x3d,0x4b,0x28, 0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x26,0x26,0x28,0x28,0x6e,0x3d,0x22,0x22,0x2b, 0x6e,0x29,0x21,0x3d,0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x26,0x26,0x28,0x65, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x6e,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x26,0x26, 0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x21,0x3d, 0x3d,0x6e,0x26,0x26,0x28,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61, 0x6c,0x75,0x65,0x3d,0x6e,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x26, 0x26,0x28,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65, 0x3d,0x22,0x22,0x2b,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x73,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x74,0x65, 0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x74,0x3d,0x3d,0x3d,0x65,0x2e, 0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x26,0x26,0x22,0x22,0x21,0x3d, 0x3d,0x74,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x28,0x65, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x74,0x29,0x7d,0x76,0x61,0x72,0x20,0x66,0x65, 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e, 0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x22,0x2c, 0x64,0x65,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77, 0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x65,0x28,0x65,0x29,0x7b,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x73,0x76, 0x67,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30, 0x2f,0x73,0x76,0x67,0x22,0x3b,0x63,0x61,0x73,0x65,0x22,0x6d,0x61,0x74,0x68,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77, 0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x38,0x2f,0x4d, 0x61,0x74,0x68,0x2f,0x4d,0x61,0x74,0x68,0x4d,0x4c,0x22,0x3b,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39, 0x39,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x22,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x68,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x68,0x74,0x74,0x70, 0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39, 0x39,0x39,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x22,0x3d,0x3d,0x3d,0x65,0x3f,0x70,0x65, 0x28,0x74,0x29,0x3a,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e, 0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22, 0x3d,0x3d,0x3d,0x65,0x26,0x26,0x22,0x66,0x6f,0x72,0x65,0x69,0x67,0x6e,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x3f,0x22,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39, 0x39,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x22,0x3a,0x65,0x7d,0x76,0x61,0x72,0x20,0x76, 0x65,0x2c,0x67,0x65,0x2c,0x6d,0x65,0x3d,0x28,0x67,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x6e, 0x61,0x6d,0x65,0x73,0x70,0x61,0x63,0x65,0x55,0x52,0x49,0x21,0x3d,0x3d,0x64,0x65, 0x7c,0x7c,0x22,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x22,0x69,0x6e,0x20, 0x65,0x29,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x74,0x3b, 0x65,0x6c,0x73,0x65,0x7b,0x66,0x6f,0x72,0x28,0x28,0x76,0x65,0x3d,0x76,0x65,0x7c, 0x7c,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x22,0x64,0x69,0x76,0x22,0x29,0x29,0x2e, 0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x22,0x3c,0x73,0x76,0x67,0x3e, 0x22,0x2b,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66,0x28,0x29,0x2e,0x74,0x6f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2b,0x22,0x3c,0x2f,0x73,0x76,0x67,0x3e, 0x22,0x2c,0x74,0x3d,0x76,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c, 0x64,0x3b,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x29, 0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x65,0x2e, 0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x66,0x6f,0x72,0x28, 0x3b,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x29,0x65, 0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x74,0x2e,0x66, 0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x7d,0x7d,0x2c,0x22,0x75,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x4d,0x53,0x41,0x70,0x70,0x26,0x26,0x4d,0x53,0x41,0x70,0x70,0x2e,0x65, 0x78,0x65,0x63,0x55,0x6e,0x73,0x61,0x66,0x65,0x4c,0x6f,0x63,0x61,0x6c,0x46,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x4d,0x53,0x41,0x70,0x70,0x2e,0x65, 0x78,0x65,0x63,0x55,0x6e,0x73,0x61,0x66,0x65,0x4c,0x6f,0x63,0x61,0x6c,0x46,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x65,0x28,0x65,0x2c,0x74, 0x29,0x7d,0x29,0x29,0x7d,0x3a,0x67,0x65,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x62,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68, 0x69,0x6c,0x64,0x3b,0x69,0x66,0x28,0x6e,0x26,0x26,0x6e,0x3d,0x3d,0x3d,0x65,0x2e, 0x6c,0x61,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x26,0x26,0x33,0x3d,0x3d,0x3d,0x6e, 0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x76,0x6f,0x69,0x64,0x28,0x6e,0x2e,0x6e,0x6f,0x64,0x65,0x56,0x61,0x6c,0x75, 0x65,0x3d,0x74,0x29,0x7d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3d,0x74,0x7d,0x76,0x61,0x72,0x20,0x79,0x65,0x3d,0x7b,0x61,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x49,0x74,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x43, 0x6f,0x75,0x6e,0x74,0x3a,0x21,0x30,0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x49,0x6d, 0x61,0x67,0x65,0x4f,0x75,0x74,0x73,0x65,0x74,0x3a,0x21,0x30,0x2c,0x62,0x6f,0x72, 0x64,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x53,0x6c,0x69,0x63,0x65,0x3a,0x21,0x30, 0x2c,0x62,0x6f,0x72,0x64,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x57,0x69,0x64,0x74, 0x68,0x3a,0x21,0x30,0x2c,0x62,0x6f,0x78,0x46,0x6c,0x65,0x78,0x3a,0x21,0x30,0x2c, 0x62,0x6f,0x78,0x46,0x6c,0x65,0x78,0x47,0x72,0x6f,0x75,0x70,0x3a,0x21,0x30,0x2c, 0x62,0x6f,0x78,0x4f,0x72,0x64,0x69,0x6e,0x61,0x6c,0x47,0x72,0x6f,0x75,0x70,0x3a, 0x21,0x30,0x2c,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x43,0x6f,0x75,0x6e,0x74,0x3a,0x21, 0x30,0x2c,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x3a,0x21,0x30,0x2c,0x66,0x6c,0x65, 0x78,0x3a,0x21,0x30,0x2c,0x66,0x6c,0x65,0x78,0x47,0x72,0x6f,0x77,0x3a,0x21,0x30, 0x2c,0x66,0x6c,0x65,0x78,0x50,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x3a,0x21,0x30, 0x2c,0x66,0x6c,0x65,0x78,0x53,0x68,0x72,0x69,0x6e,0x6b,0x3a,0x21,0x30,0x2c,0x66, 0x6c,0x65,0x78,0x4e,0x65,0x67,0x61,0x74,0x69,0x76,0x65,0x3a,0x21,0x30,0x2c,0x66, 0x6c,0x65,0x78,0x4f,0x72,0x64,0x65,0x72,0x3a,0x21,0x30,0x2c,0x67,0x72,0x69,0x64, 0x41,0x72,0x65,0x61,0x3a,0x21,0x30,0x2c,0x67,0x72,0x69,0x64,0x52,0x6f,0x77,0x3a, 0x21,0x30,0x2c,0x67,0x72,0x69,0x64,0x52,0x6f,0x77,0x45,0x6e,0x64,0x3a,0x21,0x30, 0x2c,0x67,0x72,0x69,0x64,0x52,0x6f,0x77,0x53,0x70,0x61,0x6e,0x3a,0x21,0x30,0x2c, 0x67,0x72,0x69,0x64,0x52,0x6f,0x77,0x53,0x74,0x61,0x72,0x74,0x3a,0x21,0x30,0x2c, 0x67,0x72,0x69,0x64,0x43,0x6f,0x6c,0x75,0x6d,0x6e,0x3a,0x21,0x30,0x2c,0x67,0x72, 0x69,0x64,0x43,0x6f,0x6c,0x75,0x6d,0x6e,0x45,0x6e,0x64,0x3a,0x21,0x30,0x2c,0x67, 0x72,0x69,0x64,0x43,0x6f,0x6c,0x75,0x6d,0x6e,0x53,0x70,0x61,0x6e,0x3a,0x21,0x30, 0x2c,0x67,0x72,0x69,0x64,0x43,0x6f,0x6c,0x75,0x6d,0x6e,0x53,0x74,0x61,0x72,0x74, 0x3a,0x21,0x30,0x2c,0x66,0x6f,0x6e,0x74,0x57,0x65,0x69,0x67,0x68,0x74,0x3a,0x21, 0x30,0x2c,0x6c,0x69,0x6e,0x65,0x43,0x6c,0x61,0x6d,0x70,0x3a,0x21,0x30,0x2c,0x6c, 0x69,0x6e,0x65,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x21,0x30,0x2c,0x6f,0x70,0x61, 0x63,0x69,0x74,0x79,0x3a,0x21,0x30,0x2c,0x6f,0x72,0x64,0x65,0x72,0x3a,0x21,0x30, 0x2c,0x6f,0x72,0x70,0x68,0x61,0x6e,0x73,0x3a,0x21,0x30,0x2c,0x74,0x61,0x62,0x53, 0x69,0x7a,0x65,0x3a,0x21,0x30,0x2c,0x77,0x69,0x64,0x6f,0x77,0x73,0x3a,0x21,0x30, 0x2c,0x7a,0x49,0x6e,0x64,0x65,0x78,0x3a,0x21,0x30,0x2c,0x7a,0x6f,0x6f,0x6d,0x3a, 0x21,0x30,0x2c,0x66,0x69,0x6c,0x6c,0x4f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x21, 0x30,0x2c,0x66,0x6c,0x6f,0x6f,0x64,0x4f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x21, 0x30,0x2c,0x73,0x74,0x6f,0x70,0x4f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x21,0x30, 0x2c,0x73,0x74,0x72,0x6f,0x6b,0x65,0x44,0x61,0x73,0x68,0x61,0x72,0x72,0x61,0x79, 0x3a,0x21,0x30,0x2c,0x73,0x74,0x72,0x6f,0x6b,0x65,0x44,0x61,0x73,0x68,0x6f,0x66, 0x66,0x73,0x65,0x74,0x3a,0x21,0x30,0x2c,0x73,0x74,0x72,0x6f,0x6b,0x65,0x4d,0x69, 0x74,0x65,0x72,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x21,0x30,0x2c,0x73,0x74,0x72,0x6f, 0x6b,0x65,0x4f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x21,0x30,0x2c,0x73,0x74,0x72, 0x6f,0x6b,0x65,0x57,0x69,0x64,0x74,0x68,0x3a,0x21,0x30,0x7d,0x2c,0x5f,0x65,0x3d, 0x5b,0x22,0x57,0x65,0x62,0x6b,0x69,0x74,0x22,0x2c,0x22,0x6d,0x73,0x22,0x2c,0x22, 0x4d,0x6f,0x7a,0x22,0x2c,0x22,0x4f,0x22,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x77,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x62,0x6f, 0x6f,0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x7c,0x7c,0x22,0x22,0x3d,0x3d,0x3d,0x74,0x3f,0x22,0x22,0x3a,0x6e,0x7c,0x7c, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x74,0x7c,0x7c,0x30,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x79,0x65,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x29, 0x26,0x26,0x79,0x65,0x5b,0x65,0x5d,0x3f,0x28,0x22,0x22,0x2b,0x74,0x29,0x2e,0x74, 0x72,0x69,0x6d,0x28,0x29,0x3a,0x74,0x2b,0x22,0x70,0x78,0x22,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x65,0x3d,0x65,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x2c,0x74,0x29,0x69,0x66,0x28,0x74,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x6e,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x30,0x3d,0x3d,0x3d,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x22,0x2d,0x2d,0x22,0x29,0x2c,0x6f,0x3d,0x77,0x65,0x28,0x6e,0x2c, 0x74,0x5b,0x6e,0x5d,0x2c,0x72,0x29,0x3b,0x22,0x66,0x6c,0x6f,0x61,0x74,0x22,0x3d, 0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x22,0x63,0x73,0x73,0x46,0x6c,0x6f,0x61, 0x74,0x22,0x29,0x2c,0x72,0x3f,0x65,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x28,0x6e,0x2c,0x6f,0x29,0x3a,0x65,0x5b,0x6e,0x5d,0x3d,0x6f,0x7d, 0x7d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x79,0x65,0x29, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x5f,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x74,0x3d, 0x74,0x2b,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x2e,0x74,0x6f, 0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2b,0x65,0x2e,0x73,0x75, 0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x29,0x2c,0x79,0x65,0x5b,0x74,0x5d, 0x3d,0x79,0x65,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x78,0x65,0x3d,0x6f,0x28,0x7b,0x6d,0x65,0x6e,0x75,0x69,0x74,0x65,0x6d,0x3a, 0x21,0x30,0x7d,0x2c,0x7b,0x61,0x72,0x65,0x61,0x3a,0x21,0x30,0x2c,0x62,0x61,0x73, 0x65,0x3a,0x21,0x30,0x2c,0x62,0x72,0x3a,0x21,0x30,0x2c,0x63,0x6f,0x6c,0x3a,0x21, 0x30,0x2c,0x65,0x6d,0x62,0x65,0x64,0x3a,0x21,0x30,0x2c,0x68,0x72,0x3a,0x21,0x30, 0x2c,0x69,0x6d,0x67,0x3a,0x21,0x30,0x2c,0x69,0x6e,0x70,0x75,0x74,0x3a,0x21,0x30, 0x2c,0x6b,0x65,0x79,0x67,0x65,0x6e,0x3a,0x21,0x30,0x2c,0x6c,0x69,0x6e,0x6b,0x3a, 0x21,0x30,0x2c,0x6d,0x65,0x74,0x61,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x61,0x6d, 0x3a,0x21,0x30,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x21,0x30,0x2c,0x74,0x72, 0x61,0x63,0x6b,0x3a,0x21,0x30,0x2c,0x77,0x62,0x72,0x3a,0x21,0x30,0x7d,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x65,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x78,0x65,0x5b,0x65,0x5d,0x26, 0x26,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x64,0x61,0x6e,0x67, 0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48, 0x54,0x4d,0x4c,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x61,0x28,0x31,0x33,0x37,0x2c,0x65,0x29,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x64,0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c, 0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61, 0x28,0x36,0x30,0x29,0x29,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x64,0x61,0x6e, 0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72, 0x48,0x54,0x4d,0x4c,0x7c,0x7c,0x21,0x28,0x22,0x5f,0x5f,0x68,0x74,0x6d,0x6c,0x22, 0x69,0x6e,0x20,0x74,0x2e,0x64,0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79, 0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x29,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x36,0x31,0x29,0x29, 0x7d,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x73,0x74,0x79,0x6c, 0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x36,0x32,0x29,0x29,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x65,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x69,0x66,0x28,0x2d,0x31,0x3d,0x3d,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x22,0x2d,0x22,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x2e,0x69,0x73,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b, 0x63,0x61,0x73,0x65,0x22,0x61,0x6e,0x6e,0x6f,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2d, 0x78,0x6d,0x6c,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x2d, 0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x66,0x6f, 0x6e,0x74,0x2d,0x66,0x61,0x63,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x66,0x6f, 0x6e,0x74,0x2d,0x66,0x61,0x63,0x65,0x2d,0x73,0x72,0x63,0x22,0x3a,0x63,0x61,0x73, 0x65,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x63,0x65,0x2d,0x75,0x72,0x69,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x63,0x65,0x2d, 0x66,0x6f,0x72,0x6d,0x61,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x6e, 0x74,0x2d,0x66,0x61,0x63,0x65,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3a,0x63,0x61,0x73, 0x65,0x22,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x2d,0x67,0x6c,0x79,0x70,0x68,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6b,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x65,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x7c,0x7c,0x65,0x2e, 0x73,0x72,0x63,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x29,0x2e,0x63,0x6f,0x72,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x69,0x6e, 0x67,0x55,0x73,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x65,0x3d, 0x65,0x2e,0x63,0x6f,0x72,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x69,0x6e,0x67,0x55, 0x73,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x33,0x3d,0x3d,0x3d,0x65, 0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x65,0x2e,0x70,0x61,0x72,0x65, 0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3a,0x65,0x7d,0x76,0x61,0x72,0x20,0x53,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x43,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x41,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x65, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x3d,0x72,0x6f,0x28,0x65,0x29,0x29,0x7b, 0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x38,0x30,0x29,0x29,0x3b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b, 0x74,0x26,0x26,0x28,0x74,0x3d,0x69,0x6f,0x28,0x74,0x29,0x2c,0x53,0x65,0x28,0x65, 0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x65,0x2e,0x74,0x79,0x70, 0x65,0x2c,0x74,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x50,0x65,0x28,0x65,0x29,0x7b,0x43,0x65,0x3f,0x41,0x65,0x3f,0x41,0x65,0x2e,0x70, 0x75,0x73,0x68,0x28,0x65,0x29,0x3a,0x41,0x65,0x3d,0x5b,0x65,0x5d,0x3a,0x43,0x65, 0x3d,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x65,0x28,0x29, 0x7b,0x69,0x66,0x28,0x43,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x43,0x65, 0x2c,0x74,0x3d,0x41,0x65,0x3b,0x69,0x66,0x28,0x41,0x65,0x3d,0x43,0x65,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x54,0x65,0x28,0x65,0x29,0x2c,0x74,0x29,0x66,0x6f,0x72,0x28, 0x65,0x3d,0x30,0x3b,0x65,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x65, 0x2b,0x2b,0x29,0x54,0x65,0x28,0x74,0x5b,0x65,0x5d,0x29,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x49,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c, 0x6f,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x65,0x28,0x29, 0x7b,0x7d,0x76,0x61,0x72,0x20,0x4c,0x65,0x3d,0x4e,0x65,0x2c,0x46,0x65,0x3d,0x21, 0x31,0x2c,0x4d,0x65,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x42,0x65,0x28,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x43,0x65,0x26, 0x26,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x41,0x65,0x7c,0x7c,0x28,0x52,0x65,0x28, 0x29,0x2c,0x44,0x65,0x28,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x7a,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x69,0x6f,0x28,0x6e,0x29,0x3b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x72,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x3d,0x72,0x5b,0x74,0x5d,0x3b,0x65,0x3a, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x6f, 0x6e,0x43,0x6c,0x69,0x63,0x6b,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e,0x43, 0x6c,0x69,0x63,0x6b,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x63,0x61,0x73, 0x65,0x22,0x6f,0x6e,0x44,0x6f,0x75,0x62,0x6c,0x65,0x43,0x6c,0x69,0x63,0x6b,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e,0x44,0x6f,0x75,0x62,0x6c,0x65,0x43,0x6c, 0x69,0x63,0x6b,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x63,0x61,0x73,0x65, 0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x44,0x6f,0x77,0x6e,0x43,0x61, 0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e,0x4d,0x6f, 0x75,0x73,0x65,0x4d,0x6f,0x76,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e, 0x4d,0x6f,0x75,0x73,0x65,0x4d,0x6f,0x76,0x65,0x43,0x61,0x70,0x74,0x75,0x72,0x65, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x55,0x70, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x55,0x70, 0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x6e, 0x4d,0x6f,0x75,0x73,0x65,0x45,0x6e,0x74,0x65,0x72,0x22,0x3a,0x28,0x72,0x3d,0x21, 0x72,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x7c,0x7c,0x28,0x72,0x3d, 0x21,0x28,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x28,0x65,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x7c,0x7c,0x22,0x69,0x6e,0x70,0x75,0x74,0x22, 0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x3d,0x65,0x7c,0x7c,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3d,0x3d, 0x3d,0x65,0x29,0x29,0x2c,0x65,0x3d,0x21,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20, 0x65,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x65,0x3d,0x21,0x31,0x7d,0x69, 0x66,0x28,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b, 0x69,0x66,0x28,0x6e,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x33,0x31,0x2c,0x74,0x2c, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x7d,0x76,0x61,0x72,0x20,0x55,0x65,0x3d,0x21,0x31,0x3b,0x69,0x66, 0x28,0x66,0x29,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x57,0x65,0x3d,0x7b,0x7d, 0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x57,0x65,0x2c,0x22,0x70,0x61,0x73,0x73,0x69, 0x76,0x65,0x22,0x2c,0x7b,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x55,0x65,0x3d,0x21,0x30,0x7d,0x7d,0x29,0x2c,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74, 0x65,0x6e,0x65,0x72,0x28,0x22,0x74,0x65,0x73,0x74,0x22,0x2c,0x57,0x65,0x2c,0x57, 0x65,0x29,0x2c,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x74, 0x65,0x73,0x74,0x22,0x2c,0x57,0x65,0x2c,0x57,0x65,0x29,0x7d,0x63,0x61,0x74,0x63, 0x68,0x28,0x67,0x65,0x29,0x7b,0x55,0x65,0x3d,0x21,0x31,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x24,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c, 0x6f,0x2c,0x69,0x2c,0x61,0x2c,0x75,0x2c,0x63,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c, 0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x73,0x6c,0x69,0x63,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2c,0x33,0x29,0x3b,0x74,0x72,0x79,0x7b,0x74,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x6e,0x2c,0x6c,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x73,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x6f,0x6e,0x45,0x72,0x72,0x6f,0x72,0x28, 0x73,0x29,0x7d,0x7d,0x76,0x61,0x72,0x20,0x48,0x65,0x3d,0x21,0x31,0x2c,0x56,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x47,0x65,0x3d,0x21,0x31,0x2c,0x71,0x65,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x4b,0x65,0x3d,0x7b,0x6f,0x6e,0x45,0x72,0x72,0x6f,0x72,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x48,0x65,0x3d,0x21, 0x30,0x2c,0x56,0x65,0x3d,0x65,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x59,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69, 0x2c,0x61,0x2c,0x75,0x2c,0x63,0x29,0x7b,0x48,0x65,0x3d,0x21,0x31,0x2c,0x56,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x24,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x4b, 0x65,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2c,0x6e,0x3d,0x65,0x3b,0x69,0x66,0x28,0x65,0x2e,0x61,0x6c,0x74, 0x65,0x72,0x6e,0x61,0x74,0x65,0x29,0x66,0x6f,0x72,0x28,0x3b,0x74,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3b,0x29,0x74,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x3b,0x65,0x6c,0x73,0x65,0x7b,0x65,0x3d,0x74,0x3b,0x64,0x6f,0x7b,0x30,0x21,0x3d, 0x3d,0x28,0x31,0x30,0x32,0x36,0x26,0x28,0x74,0x3d,0x65,0x29,0x2e,0x66,0x6c,0x61, 0x67,0x73,0x29,0x26,0x26,0x28,0x6e,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x29,0x2c,0x65,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x77,0x68,0x69, 0x6c,0x65,0x28,0x65,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x33,0x3d,0x3d, 0x3d,0x74,0x2e,0x74,0x61,0x67,0x3f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x65,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x31,0x33,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65, 0x72,0x6e,0x61,0x74,0x65,0x29,0x26,0x26,0x28,0x74,0x3d,0x65,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x64, 0x65,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x64,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a, 0x65,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x51,0x65,0x28,0x65,0x29,0x21,0x3d,0x3d, 0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28, 0x31,0x38,0x38,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a, 0x65,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x61,0x6c, 0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x21,0x74,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x74,0x3d,0x51,0x65,0x28,0x65, 0x29,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61, 0x28,0x31,0x38,0x38,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x21, 0x3d,0x3d,0x65,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x65,0x7d,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x2c,0x72,0x3d,0x74,0x3b,0x3b,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6f,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x6f,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x72,0x3d,0x6f,0x2e,0x72,0x65,0x74, 0x75,0x72,0x6e,0x29,0x29,0x7b,0x6e,0x3d,0x72,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e, 0x75,0x65,0x7d,0x62,0x72,0x65,0x61,0x6b,0x7d,0x69,0x66,0x28,0x6f,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x3d,0x3d,0x3d,0x69,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x69,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x69,0x3b,0x29, 0x7b,0x69,0x66,0x28,0x69,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4a,0x65,0x28,0x6f,0x29,0x2c,0x65,0x3b,0x69,0x66,0x28,0x69,0x3d,0x3d,0x3d, 0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x65,0x28,0x6f,0x29,0x2c,0x74, 0x3b,0x69,0x3d,0x69,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x74,0x68,0x72, 0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x38,0x38,0x29,0x29, 0x7d,0x69,0x66,0x28,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x3d,0x3d,0x72, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x29,0x6e,0x3d,0x6f,0x2c,0x72,0x3d,0x69,0x3b, 0x65,0x6c,0x73,0x65,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x75,0x3d,0x21, 0x31,0x2c,0x63,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x3b,0x29,0x7b, 0x69,0x66,0x28,0x63,0x3d,0x3d,0x3d,0x6e,0x29,0x7b,0x75,0x3d,0x21,0x30,0x2c,0x6e, 0x3d,0x6f,0x2c,0x72,0x3d,0x69,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x69,0x66,0x28, 0x63,0x3d,0x3d,0x3d,0x72,0x29,0x7b,0x75,0x3d,0x21,0x30,0x2c,0x72,0x3d,0x6f,0x2c, 0x6e,0x3d,0x69,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x63,0x3d,0x63,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x7d,0x69,0x66,0x28,0x21,0x75,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x63,0x3d,0x69,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x3b,0x29,0x7b,0x69, 0x66,0x28,0x63,0x3d,0x3d,0x3d,0x6e,0x29,0x7b,0x75,0x3d,0x21,0x30,0x2c,0x6e,0x3d, 0x69,0x2c,0x72,0x3d,0x6f,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x69,0x66,0x28,0x63, 0x3d,0x3d,0x3d,0x72,0x29,0x7b,0x75,0x3d,0x21,0x30,0x2c,0x72,0x3d,0x69,0x2c,0x6e, 0x3d,0x6f,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x63,0x3d,0x63,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x7d,0x69,0x66,0x28,0x21,0x75,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x38,0x39,0x29,0x29,0x7d,0x7d, 0x69,0x66,0x28,0x6e,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x21,0x3d, 0x3d,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61, 0x28,0x31,0x39,0x30,0x29,0x29,0x7d,0x69,0x66,0x28,0x33,0x21,0x3d,0x3d,0x6e,0x2e, 0x74,0x61,0x67,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x61,0x28,0x31,0x38,0x38,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x3d,0x3d,0x6e,0x3f,0x65,0x3a,0x74,0x7d,0x28,0x65,0x29,0x2c,0x21, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x3b,0x3b,0x29,0x7b,0x69,0x66,0x28, 0x35,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x61,0x67,0x7c,0x7c,0x36,0x3d,0x3d,0x3d,0x74, 0x2e,0x74,0x61,0x67,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b,0x69,0x66, 0x28,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x74,0x3d,0x74,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x74,0x3d,0x3d,0x3d, 0x65,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x21,0x74,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x21,0x74,0x2e, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c, 0x3b,0x74,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x74,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2e,0x72, 0x65,0x74,0x75,0x72,0x6e,0x2c,0x74,0x3d,0x74,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65, 0x72,0x6e,0x61,0x74,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x3b,0x29, 0x7b,0x69,0x66,0x28,0x74,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x74,0x3d,0x3d,0x3d,0x6e, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x74,0x3d,0x74,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x76,0x61, 0x72,0x20,0x74,0x74,0x2c,0x6e,0x74,0x2c,0x72,0x74,0x2c,0x6f,0x74,0x2c,0x69,0x74, 0x3d,0x21,0x31,0x2c,0x61,0x74,0x3d,0x5b,0x5d,0x2c,0x75,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x73,0x74,0x3d,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x66,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x64,0x74,0x3d,0x5b,0x5d,0x2c,0x70,0x74, 0x3d,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x6f,0x75,0x73, 0x65,0x75,0x70,0x20,0x74,0x6f,0x75,0x63,0x68,0x63,0x61,0x6e,0x63,0x65,0x6c,0x20, 0x74,0x6f,0x75,0x63,0x68,0x65,0x6e,0x64,0x20,0x74,0x6f,0x75,0x63,0x68,0x73,0x74, 0x61,0x72,0x74,0x20,0x61,0x75,0x78,0x63,0x6c,0x69,0x63,0x6b,0x20,0x64,0x62,0x6c, 0x63,0x6c,0x69,0x63,0x6b,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x63,0x61,0x6e, 0x63,0x65,0x6c,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x64,0x6f,0x77,0x6e,0x20, 0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x75,0x70,0x20,0x64,0x72,0x61,0x67,0x65,0x6e, 0x64,0x20,0x64,0x72,0x61,0x67,0x73,0x74,0x61,0x72,0x74,0x20,0x64,0x72,0x6f,0x70, 0x20,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x20, 0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x73,0x74,0x61,0x72,0x74, 0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x70,0x72,0x65,0x73, 0x73,0x20,0x6b,0x65,0x79,0x75,0x70,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x65, 0x78,0x74,0x49,0x6e,0x70,0x75,0x74,0x20,0x63,0x6f,0x70,0x79,0x20,0x63,0x75,0x74, 0x20,0x70,0x61,0x73,0x74,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x63,0x68,0x61, 0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x6d,0x65,0x6e,0x75,0x20, 0x72,0x65,0x73,0x65,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x68,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e, 0x3a,0x65,0x2c,0x64,0x6f,0x6d,0x45,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x3a, 0x74,0x2c,0x65,0x76,0x65,0x6e,0x74,0x53,0x79,0x73,0x74,0x65,0x6d,0x46,0x6c,0x61, 0x67,0x73,0x3a,0x31,0x36,0x7c,0x6e,0x2c,0x6e,0x61,0x74,0x69,0x76,0x65,0x45,0x76, 0x65,0x6e,0x74,0x3a,0x6f,0x2c,0x74,0x61,0x72,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x73,0x3a,0x5b,0x72,0x5d,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x76,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69, 0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75, 0x73,0x69,0x6e,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x6f, 0x75,0x74,0x22,0x3a,0x75,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x65,0x6e,0x74,0x65,0x72, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x6c,0x65,0x61,0x76,0x65, 0x22,0x3a,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x3a, 0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x22,0x3a,0x6c, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65,0x72,0x22,0x3a,0x63, 0x61,0x73,0x65,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x75,0x74,0x22,0x3a, 0x73,0x74,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x2e,0x70,0x6f,0x69,0x6e, 0x74,0x65,0x72,0x49,0x64,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x22,0x67,0x6f,0x74,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x63,0x61,0x70,0x74, 0x75,0x72,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6c,0x6f,0x73,0x74,0x70,0x6f, 0x69,0x6e,0x74,0x65,0x72,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x66,0x74, 0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x65, 0x72,0x49,0x64,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67, 0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c, 0x65,0x2e,0x6e,0x61,0x74,0x69,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x21,0x3d,0x3d, 0x69,0x3f,0x28,0x65,0x3d,0x68,0x74,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c, 0x69,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x72,0x6f,0x28,0x74,0x29,0x29,0x26,0x26, 0x6e,0x74,0x28,0x74,0x29,0x29,0x2c,0x65,0x29,0x3a,0x28,0x65,0x2e,0x65,0x76,0x65, 0x6e,0x74,0x53,0x79,0x73,0x74,0x65,0x6d,0x46,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x72, 0x2c,0x74,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x65,0x72,0x73,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x26,0x26, 0x2d,0x31,0x3d,0x3d,0x3d,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6f, 0x29,0x26,0x26,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x6f,0x29,0x2c,0x65,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x74,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x6e,0x6f,0x28,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74, 0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x51,0x65,0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x29,0x69,0x66,0x28,0x31,0x33,0x3d,0x3d,0x3d,0x28, 0x74,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x58,0x65,0x28,0x6e,0x29,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e, 0x3d,0x74,0x2c,0x76,0x6f,0x69,0x64,0x20,0x6f,0x74,0x28,0x65,0x2e,0x6c,0x61,0x6e, 0x65,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x72,0x75,0x6e,0x57,0x69,0x74,0x68,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79, 0x28,0x65,0x2e,0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x74,0x28,0x6e,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x33,0x3d,0x3d,0x3d, 0x74,0x26,0x26,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x68, 0x79,0x64,0x72,0x61,0x74,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f, 0x69,0x64,0x28,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x33, 0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x3f,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65, 0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e, 0x66,0x6f,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b, 0x65,0x64,0x4f,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x62,0x74,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x73,0x3b,0x30,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5a,0x74,0x28,0x65,0x2e,0x64,0x6f,0x6d, 0x45,0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x2c,0x65,0x2e,0x65,0x76,0x65,0x6e, 0x74,0x53,0x79,0x73,0x74,0x65,0x6d,0x46,0x6c,0x61,0x67,0x73,0x2c,0x74,0x5b,0x30, 0x5d,0x2c,0x65,0x2e,0x6e,0x61,0x74,0x69,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x29, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x72,0x6f, 0x28,0x6e,0x29,0x29,0x26,0x26,0x6e,0x74,0x28,0x74,0x29,0x2c,0x65,0x2e,0x62,0x6c, 0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x6e,0x2c,0x21,0x31,0x3b,0x74,0x2e,0x73, 0x68,0x69,0x66,0x74,0x28,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x74,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x62,0x74,0x28,0x65,0x29,0x26,0x26,0x6e,0x2e,0x64,0x65,0x6c,0x65, 0x74,0x65,0x28,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f, 0x74,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x69,0x74,0x3d,0x21,0x31,0x3b,0x30,0x3c, 0x61,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x61,0x74,0x5b,0x30,0x5d,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x29,0x7b,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x72,0x6f,0x28,0x65,0x2e,0x62,0x6c, 0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x29,0x29,0x26,0x26,0x74,0x74,0x28,0x65,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x73,0x3b,0x30,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5a,0x74,0x28,0x65,0x2e,0x64,0x6f,0x6d,0x45, 0x76,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x2c,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74, 0x53,0x79,0x73,0x74,0x65,0x6d,0x46,0x6c,0x61,0x67,0x73,0x2c,0x74,0x5b,0x30,0x5d, 0x2c,0x65,0x2e,0x6e,0x61,0x74,0x69,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x29,0x7b,0x65,0x2e,0x62, 0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x7d,0x74,0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x7d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x26,0x26,0x61, 0x74,0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x7d,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x75,0x74,0x26,0x26,0x62,0x74,0x28,0x75,0x74,0x29,0x26,0x26,0x28,0x75,0x74, 0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x63,0x74, 0x26,0x26,0x62,0x74,0x28,0x63,0x74,0x29,0x26,0x26,0x28,0x63,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6c,0x74,0x26,0x26,0x62, 0x74,0x28,0x6c,0x74,0x29,0x26,0x26,0x28,0x6c,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x73,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x79,0x74,0x29,0x2c, 0x66,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x79,0x74,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x3d,0x3d,0x74,0x26, 0x26,0x28,0x65,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x69,0x74,0x7c,0x7c,0x28,0x69,0x74,0x3d,0x21,0x30,0x2c,0x69,0x2e, 0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x73,0x63,0x68,0x65,0x64,0x75,0x6c, 0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x69,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x50,0x72,0x69,0x6f,0x72, 0x69,0x74,0x79,0x2c,0x5f,0x74,0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x4f,0x74,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x74,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x74, 0x28,0x74,0x2c,0x65,0x29,0x7d,0x69,0x66,0x28,0x30,0x3c,0x61,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x29,0x7b,0x77,0x74,0x28,0x61,0x74,0x5b,0x30,0x5d,0x2c,0x65, 0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x31,0x3b,0x6e,0x3c, 0x61,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x61,0x74,0x5b,0x6e,0x5d,0x3b,0x72,0x2e,0x62,0x6c,0x6f, 0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x72,0x2e,0x62, 0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d, 0x66,0x6f,0x72,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x75,0x74,0x26,0x26,0x77, 0x74,0x28,0x75,0x74,0x2c,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x63, 0x74,0x26,0x26,0x77,0x74,0x28,0x63,0x74,0x2c,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x6c,0x74,0x26,0x26,0x77,0x74,0x28,0x6c,0x74,0x2c,0x65,0x29,0x2c, 0x73,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x74,0x29,0x2c,0x66,0x74, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x74,0x29,0x2c,0x6e,0x3d,0x30,0x3b, 0x6e,0x3c,0x64,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29, 0x28,0x72,0x3d,0x64,0x74,0x5b,0x6e,0x5d,0x29,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65, 0x64,0x4f,0x6e,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x72,0x2e,0x62,0x6c,0x6f,0x63, 0x6b,0x65,0x64,0x4f,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x66,0x6f,0x72,0x28, 0x3b,0x30,0x3c,0x64,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6e,0x3d,0x64,0x74,0x5b,0x30,0x5d,0x29,0x2e,0x62, 0x6c,0x6f,0x63,0x6b,0x65,0x64,0x4f,0x6e,0x3b,0x29,0x6d,0x74,0x28,0x6e,0x29,0x2c, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x65,0x64, 0x4f,0x6e,0x26,0x26,0x64,0x74,0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x5b,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28, 0x29,0x5d,0x3d,0x74,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65, 0x28,0x29,0x2c,0x6e,0x5b,0x22,0x57,0x65,0x62,0x6b,0x69,0x74,0x22,0x2b,0x65,0x5d, 0x3d,0x22,0x77,0x65,0x62,0x6b,0x69,0x74,0x22,0x2b,0x74,0x2c,0x6e,0x5b,0x22,0x4d, 0x6f,0x7a,0x22,0x2b,0x65,0x5d,0x3d,0x22,0x6d,0x6f,0x7a,0x22,0x2b,0x74,0x2c,0x6e, 0x7d,0x76,0x61,0x72,0x20,0x45,0x74,0x3d,0x7b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, 0x6f,0x6e,0x65,0x6e,0x64,0x3a,0x78,0x74,0x28,0x22,0x41,0x6e,0x69,0x6d,0x61,0x74, 0x69,0x6f,0x6e,0x22,0x2c,0x22,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x45, 0x6e,0x64,0x22,0x29,0x2c,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x69,0x74, 0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x78,0x74,0x28,0x22,0x41,0x6e,0x69,0x6d, 0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x49,0x74,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x29,0x2c,0x61,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x74,0x61,0x72,0x74,0x3a,0x78,0x74,0x28,0x22, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x41,0x6e,0x69,0x6d, 0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x29,0x2c,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x3a,0x78,0x74,0x28,0x22,0x54, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x54,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x22,0x29,0x7d,0x2c,0x6a,0x74,0x3d, 0x7b,0x7d,0x2c,0x6b,0x74,0x3d,0x7b,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x53,0x74,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6a,0x74,0x5b,0x65,0x5d, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6a,0x74,0x5b,0x65,0x5d,0x3b,0x69,0x66, 0x28,0x21,0x45,0x74,0x5b,0x65,0x5d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x45,0x74,0x5b,0x65,0x5d,0x3b,0x66, 0x6f,0x72,0x28,0x74,0x20,0x69,0x6e,0x20,0x6e,0x29,0x69,0x66,0x28,0x6e,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x29, 0x26,0x26,0x74,0x20,0x69,0x6e,0x20,0x6b,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6a,0x74,0x5b,0x65,0x5d,0x3d,0x6e,0x5b,0x74,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x7d,0x66,0x26,0x26,0x28,0x6b,0x74,0x3d,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x28,0x22,0x64,0x69,0x76,0x22,0x29,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c, 0x22,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x45,0x76,0x65,0x6e,0x74,0x22, 0x69,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7c,0x7c,0x28,0x64,0x65,0x6c,0x65, 0x74,0x65,0x20,0x45,0x74,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x65, 0x6e,0x64,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x64,0x65,0x6c, 0x65,0x74,0x65,0x20,0x45,0x74,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, 0x69,0x74,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74, 0x69,0x6f,0x6e,0x2c,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x45,0x74,0x2e,0x61,0x6e, 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x74,0x61,0x72,0x74,0x2e,0x61,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x22,0x54,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x45,0x76,0x65,0x6e,0x74,0x22,0x69,0x6e,0x20,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x7c,0x7c,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x45,0x74,0x2e,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x2e,0x74,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x43,0x74,0x3d,0x53, 0x74,0x28,0x22,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x22, 0x29,0x2c,0x41,0x74,0x3d,0x53,0x74,0x28,0x22,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, 0x6f,0x6e,0x69,0x74,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x29,0x2c,0x54,0x74, 0x3d,0x53,0x74,0x28,0x22,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x74, 0x61,0x72,0x74,0x22,0x29,0x2c,0x50,0x74,0x3d,0x53,0x74,0x28,0x22,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x22,0x29,0x2c,0x44,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x4e,0x74,0x3d,0x6e,0x65,0x77,0x20,0x4d, 0x61,0x70,0x2c,0x49,0x74,0x3d,0x5b,0x22,0x61,0x62,0x6f,0x72,0x74,0x22,0x2c,0x22, 0x61,0x62,0x6f,0x72,0x74,0x22,0x2c,0x43,0x74,0x2c,0x22,0x61,0x6e,0x69,0x6d,0x61, 0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x22,0x2c,0x41,0x74,0x2c,0x22,0x61,0x6e,0x69, 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x49,0x74,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22, 0x2c,0x54,0x74,0x2c,0x22,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74, 0x61,0x72,0x74,0x22,0x2c,0x22,0x63,0x61,0x6e,0x70,0x6c,0x61,0x79,0x22,0x2c,0x22, 0x63,0x61,0x6e,0x50,0x6c,0x61,0x79,0x22,0x2c,0x22,0x63,0x61,0x6e,0x70,0x6c,0x61, 0x79,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x22,0x2c,0x22,0x63,0x61,0x6e,0x50,0x6c, 0x61,0x79,0x54,0x68,0x72,0x6f,0x75,0x67,0x68,0x22,0x2c,0x22,0x64,0x75,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x22,0x64,0x75,0x72, 0x61,0x74,0x69,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x22,0x65,0x6d, 0x70,0x74,0x69,0x65,0x64,0x22,0x2c,0x22,0x65,0x6d,0x70,0x74,0x69,0x65,0x64,0x22, 0x2c,0x22,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x22,0x2c,0x22,0x65,0x6e, 0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x22,0x2c,0x22,0x65,0x6e,0x64,0x65,0x64,0x22, 0x2c,0x22,0x65,0x6e,0x64,0x65,0x64,0x22,0x2c,0x22,0x65,0x72,0x72,0x6f,0x72,0x22, 0x2c,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x2c,0x22,0x67,0x6f,0x74,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x2c,0x22,0x67,0x6f, 0x74,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x22, 0x2c,0x22,0x6c,0x6f,0x61,0x64,0x22,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x22,0x2c,0x22, 0x6c,0x6f,0x61,0x64,0x65,0x64,0x64,0x61,0x74,0x61,0x22,0x2c,0x22,0x6c,0x6f,0x61, 0x64,0x65,0x64,0x44,0x61,0x74,0x61,0x22,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x65,0x64, 0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x22,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x65, 0x64,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x22,0x2c,0x22,0x6c,0x6f,0x61,0x64, 0x73,0x74,0x61,0x72,0x74,0x22,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x53,0x74,0x61,0x72, 0x74,0x22,0x2c,0x22,0x6c,0x6f,0x73,0x74,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x63, 0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x2c,0x22,0x6c,0x6f,0x73,0x74,0x50,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x2c,0x22,0x70,0x6c, 0x61,0x79,0x69,0x6e,0x67,0x22,0x2c,0x22,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x22, 0x2c,0x22,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x22,0x2c,0x22,0x70,0x72,0x6f, 0x67,0x72,0x65,0x73,0x73,0x22,0x2c,0x22,0x73,0x65,0x65,0x6b,0x69,0x6e,0x67,0x22, 0x2c,0x22,0x73,0x65,0x65,0x6b,0x69,0x6e,0x67,0x22,0x2c,0x22,0x73,0x74,0x61,0x6c, 0x6c,0x65,0x64,0x22,0x2c,0x22,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x22,0x2c,0x22, 0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x22,0x2c,0x22,0x73,0x75,0x73,0x70,0x65,0x6e, 0x64,0x22,0x2c,0x22,0x74,0x69,0x6d,0x65,0x75,0x70,0x64,0x61,0x74,0x65,0x22,0x2c, 0x22,0x74,0x69,0x6d,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x22,0x2c,0x50,0x74,0x2c, 0x22,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x22,0x2c, 0x22,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x22,0x2c,0x22,0x77,0x61,0x69,0x74,0x69, 0x6e,0x67,0x22,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x74, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x30,0x3b,0x6e,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x3d, 0x32,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x6e,0x5d,0x2c,0x6f,0x3d, 0x65,0x5b,0x6e,0x2b,0x31,0x5d,0x3b,0x6f,0x3d,0x22,0x6f,0x6e,0x22,0x2b,0x28,0x6f, 0x5b,0x30,0x5d,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28, 0x29,0x2b,0x6f,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29,0x29,0x2c,0x4e,0x74, 0x2e,0x73,0x65,0x74,0x28,0x72,0x2c,0x74,0x29,0x2c,0x44,0x74,0x2e,0x73,0x65,0x74, 0x28,0x72,0x2c,0x6f,0x29,0x2c,0x6c,0x28,0x6f,0x2c,0x5b,0x72,0x5d,0x29,0x7d,0x7d, 0x28,0x30,0x2c,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6e,0x6f, 0x77,0x29,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x4c,0x74,0x3d,0x38,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x74,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x30,0x21,0x3d,0x3d,0x28,0x31,0x26,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4c,0x74,0x3d,0x31,0x35,0x2c,0x31,0x3b,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d, 0x28,0x32,0x26,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x74,0x3d, 0x31,0x34,0x2c,0x32,0x3b,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x28,0x34,0x26,0x65, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x74,0x3d,0x31,0x33,0x2c,0x34, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x32,0x34,0x26,0x65,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x30,0x21,0x3d,0x3d,0x74,0x3f,0x28,0x4c,0x74,0x3d,0x31,0x32,0x2c, 0x74,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28,0x33,0x32,0x26,0x65,0x29,0x3f,0x28,0x4c, 0x74,0x3d,0x31,0x31,0x2c,0x33,0x32,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28,0x74,0x3d, 0x31,0x39,0x32,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74,0x3d,0x31,0x30,0x2c,0x74,0x29, 0x3a,0x30,0x21,0x3d,0x3d,0x28,0x32,0x35,0x36,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74, 0x3d,0x39,0x2c,0x32,0x35,0x36,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x33, 0x35,0x38,0x34,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74,0x3d,0x38,0x2c,0x74,0x29,0x3a, 0x30,0x21,0x3d,0x3d,0x28,0x34,0x30,0x39,0x36,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74, 0x3d,0x37,0x2c,0x34,0x30,0x39,0x36,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28,0x74,0x3d, 0x34,0x31,0x38,0x36,0x31,0x31,0x32,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74,0x3d,0x36, 0x2c,0x74,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x36,0x32,0x39,0x31,0x34, 0x35,0x36,0x30,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74,0x3d,0x35,0x2c,0x74,0x29,0x3a, 0x36,0x37,0x31,0x30,0x38,0x38,0x36,0x34,0x26,0x65,0x3f,0x28,0x4c,0x74,0x3d,0x34, 0x2c,0x36,0x37,0x31,0x30,0x38,0x38,0x36,0x34,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28, 0x31,0x33,0x34,0x32,0x31,0x37,0x37,0x32,0x38,0x26,0x65,0x29,0x3f,0x28,0x4c,0x74, 0x3d,0x33,0x2c,0x31,0x33,0x34,0x32,0x31,0x37,0x37,0x32,0x38,0x29,0x3a,0x30,0x21, 0x3d,0x3d,0x28,0x74,0x3d,0x38,0x30,0x35,0x33,0x30,0x36,0x33,0x36,0x38,0x26,0x65, 0x29,0x3f,0x28,0x4c,0x74,0x3d,0x32,0x2c,0x74,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28, 0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x34,0x26,0x65,0x29,0x3f,0x28,0x4c, 0x74,0x3d,0x31,0x2c,0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x34,0x29,0x3a, 0x28,0x4c,0x74,0x3d,0x38,0x2c,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4d,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x3b,0x69, 0x66,0x28,0x30,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c, 0x74,0x3d,0x30,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x30,0x2c, 0x69,0x3d,0x65,0x2e,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73, 0x2c,0x61,0x3d,0x65,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x70,0x69,0x6e,0x67,0x65,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x3b,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x69,0x29,0x72,0x3d,0x69, 0x2c,0x6f,0x3d,0x4c,0x74,0x3d,0x31,0x35,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66, 0x28,0x30,0x21,0x3d,0x3d,0x28,0x69,0x3d,0x31,0x33,0x34,0x32,0x31,0x37,0x37,0x32, 0x37,0x26,0x6e,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x69,0x26,0x7e,0x61, 0x3b,0x30,0x21,0x3d,0x3d,0x63,0x3f,0x28,0x72,0x3d,0x46,0x74,0x28,0x63,0x29,0x2c, 0x6f,0x3d,0x4c,0x74,0x29,0x3a,0x30,0x21,0x3d,0x3d,0x28,0x75,0x26,0x3d,0x69,0x29, 0x26,0x26,0x28,0x72,0x3d,0x46,0x74,0x28,0x75,0x29,0x2c,0x6f,0x3d,0x4c,0x74,0x29, 0x7d,0x65,0x6c,0x73,0x65,0x20,0x30,0x21,0x3d,0x3d,0x28,0x69,0x3d,0x6e,0x26,0x7e, 0x61,0x29,0x3f,0x28,0x72,0x3d,0x46,0x74,0x28,0x69,0x29,0x2c,0x6f,0x3d,0x4c,0x74, 0x29,0x3a,0x30,0x21,0x3d,0x3d,0x75,0x26,0x26,0x28,0x72,0x3d,0x46,0x74,0x28,0x75, 0x29,0x2c,0x6f,0x3d,0x4c,0x74,0x29,0x3b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x72, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x69,0x66,0x28,0x72,0x3d,0x6e, 0x26,0x28,0x28,0x30,0x3e,0x28,0x72,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28,0x72,0x29, 0x29,0x3f,0x30,0x3a,0x31,0x3c,0x3c,0x72,0x29,0x3c,0x3c,0x31,0x29,0x2d,0x31,0x2c, 0x30,0x21,0x3d,0x3d,0x74,0x26,0x26,0x74,0x21,0x3d,0x3d,0x72,0x26,0x26,0x30,0x3d, 0x3d,0x3d,0x28,0x74,0x26,0x61,0x29,0x29,0x7b,0x69,0x66,0x28,0x46,0x74,0x28,0x74, 0x29,0x2c,0x6f,0x3c,0x3d,0x4c,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x3b,0x4c,0x74,0x3d,0x6f,0x7d,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x28,0x74,0x3d, 0x65,0x2e,0x65,0x6e,0x74,0x61,0x6e,0x67,0x6c,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73, 0x29,0x29,0x66,0x6f,0x72,0x28,0x65,0x3d,0x65,0x2e,0x65,0x6e,0x74,0x61,0x6e,0x67, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x74,0x26,0x3d,0x72,0x3b,0x30,0x3c,0x74, 0x3b,0x29,0x6f,0x3d,0x31,0x3c,0x3c,0x28,0x6e,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28, 0x74,0x29,0x29,0x2c,0x72,0x7c,0x3d,0x65,0x5b,0x6e,0x5d,0x2c,0x74,0x26,0x3d,0x7e, 0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x42,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x30,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x2d,0x31,0x30,0x37,0x33,0x37,0x34,0x31, 0x38,0x32,0x35,0x26,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e, 0x65,0x73,0x29,0x3f,0x65,0x3a,0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x34, 0x26,0x65,0x3f,0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x34,0x3a,0x30,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x74,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x31,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b,0x63,0x61,0x73,0x65, 0x20,0x31,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x32,0x3b,0x63,0x61,0x73, 0x65,0x20,0x31,0x32,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d, 0x28,0x65,0x3d,0x55,0x74,0x28,0x32,0x34,0x26,0x7e,0x74,0x29,0x29,0x3f,0x7a,0x74, 0x28,0x31,0x30,0x2c,0x74,0x29,0x3a,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x30, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x55, 0x74,0x28,0x31,0x39,0x32,0x26,0x7e,0x74,0x29,0x29,0x3f,0x7a,0x74,0x28,0x38,0x2c, 0x74,0x29,0x3a,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x38,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x55,0x74,0x28,0x33,0x35,0x38, 0x34,0x26,0x7e,0x74,0x29,0x29,0x26,0x26,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x65,0x3d, 0x55,0x74,0x28,0x34,0x31,0x38,0x36,0x31,0x31,0x32,0x26,0x7e,0x74,0x29,0x29,0x26, 0x26,0x28,0x65,0x3d,0x35,0x31,0x32,0x29,0x29,0x2c,0x65,0x3b,0x63,0x61,0x73,0x65, 0x20,0x32,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x74, 0x3d,0x55,0x74,0x28,0x38,0x30,0x35,0x33,0x30,0x36,0x33,0x36,0x38,0x26,0x7e,0x74, 0x29,0x29,0x26,0x26,0x28,0x74,0x3d,0x32,0x36,0x38,0x34,0x33,0x35,0x34,0x35,0x36, 0x29,0x2c,0x74,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x61,0x28,0x33,0x35,0x38,0x2c,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x55,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x26,0x2d,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x74, 0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d, 0x2c,0x6e,0x3d,0x30,0x3b,0x33,0x31,0x3e,0x6e,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x2e, 0x70,0x75,0x73,0x68,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x74,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e, 0x65,0x73,0x7c,0x3d,0x74,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2d,0x31,0x3b, 0x65,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73, 0x26,0x3d,0x72,0x2c,0x65,0x2e,0x70,0x69,0x6e,0x67,0x65,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x26,0x3d,0x72,0x2c,0x28,0x65,0x3d,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x54, 0x69,0x6d,0x65,0x73,0x29,0x5b,0x74,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28,0x74,0x29, 0x5d,0x3d,0x6e,0x7d,0x76,0x61,0x72,0x20,0x48,0x74,0x3d,0x4d,0x61,0x74,0x68,0x2e, 0x63,0x6c,0x7a,0x33,0x32,0x3f,0x4d,0x61,0x74,0x68,0x2e,0x63,0x6c,0x7a,0x33,0x32, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x33,0x32,0x3a,0x33,0x31,0x2d, 0x28,0x56,0x74,0x28,0x65,0x29,0x2f,0x47,0x74,0x7c,0x30,0x29,0x7c,0x30,0x7d,0x2c, 0x56,0x74,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6c,0x6f,0x67,0x2c,0x47,0x74,0x3d,0x4d, 0x61,0x74,0x68,0x2e,0x4c,0x4e,0x32,0x3b,0x76,0x61,0x72,0x20,0x71,0x74,0x3d,0x69, 0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x55,0x73,0x65,0x72,0x42,0x6c, 0x6f,0x63,0x6b,0x69,0x6e,0x67,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x4b, 0x74,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x72,0x75,0x6e, 0x57,0x69,0x74,0x68,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x59,0x74,0x3d, 0x21,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x74,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x46,0x65,0x7c,0x7c,0x52,0x65,0x28,0x29, 0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x4a,0x74,0x2c,0x69,0x3d,0x46,0x65,0x3b,0x46, 0x65,0x3d,0x21,0x30,0x3b,0x74,0x72,0x79,0x7b,0x49,0x65,0x28,0x6f,0x2c,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x28, 0x46,0x65,0x3d,0x69,0x29,0x7c,0x7c,0x42,0x65,0x28,0x29,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x7b,0x4b,0x74,0x28,0x71,0x74,0x2c,0x4a,0x74,0x2e,0x62,0x69,0x6e,0x64,0x28, 0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3b,0x69,0x66,0x28,0x59,0x74,0x29, 0x69,0x66,0x28,0x28,0x6f,0x3d,0x30,0x3d,0x3d,0x3d,0x28,0x34,0x26,0x74,0x29,0x29, 0x26,0x26,0x30,0x3c,0x61,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x2d, 0x31,0x3c,0x70,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x29, 0x65,0x3d,0x68,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x29,0x2c,0x61,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29,0x3b,0x65,0x6c, 0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x5a,0x74,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69, 0x29,0x6f,0x26,0x26,0x76,0x74,0x28,0x65,0x2c,0x72,0x29,0x3b,0x65,0x6c,0x73,0x65, 0x7b,0x69,0x66,0x28,0x6f,0x29,0x7b,0x69,0x66,0x28,0x2d,0x31,0x3c,0x70,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x3d,0x68,0x74,0x28,0x69,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x61,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x65, 0x29,0x3b,0x69,0x66,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x74,0x3d,0x67,0x74,0x28,0x75,0x74, 0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x2c,0x21,0x30,0x3b,0x63, 0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x65,0x6e,0x74,0x65,0x72,0x22,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x74,0x3d,0x67,0x74,0x28,0x63,0x74,0x2c,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x2c,0x21,0x30,0x3b,0x63,0x61,0x73, 0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6c,0x74,0x3d,0x67,0x74,0x28,0x6c,0x74,0x2c,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x2c,0x21,0x30,0x3b,0x63,0x61,0x73,0x65,0x22, 0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65,0x72,0x22,0x3a,0x76,0x61,0x72, 0x20,0x69,0x3d,0x6f,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x49,0x64,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x74,0x2e,0x73,0x65,0x74,0x28,0x69,0x2c,0x67, 0x74,0x28,0x73,0x74,0x2e,0x67,0x65,0x74,0x28,0x69,0x29,0x7c,0x7c,0x6e,0x75,0x6c, 0x6c,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x29,0x2c,0x21,0x30, 0x3b,0x63,0x61,0x73,0x65,0x22,0x67,0x6f,0x74,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72, 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x69,0x3d,0x6f,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x49,0x64,0x2c,0x66,0x74, 0x2e,0x73,0x65,0x74,0x28,0x69,0x2c,0x67,0x74,0x28,0x66,0x74,0x2e,0x67,0x65,0x74, 0x28,0x69,0x29,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x2c,0x6f,0x29,0x29,0x2c,0x21,0x30,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x7d,0x28,0x69,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3b,0x76,0x74,0x28,0x65,0x2c,0x72,0x29,0x7d,0x52,0x72,0x28, 0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x29,0x7d,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x74,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6b,0x65,0x28,0x72,0x29, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6f,0x3d,0x6e,0x6f, 0x28,0x6f,0x29,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x51,0x65,0x28,0x6f, 0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69,0x29,0x6f,0x3d, 0x6e,0x75,0x6c,0x6c,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d, 0x69,0x2e,0x74,0x61,0x67,0x3b,0x69,0x66,0x28,0x31,0x33,0x3d,0x3d,0x3d,0x61,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6f,0x3d,0x58,0x65, 0x28,0x69,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3b,0x6f,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x33,0x3d,0x3d, 0x3d,0x61,0x29,0x7b,0x69,0x66,0x28,0x69,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x33,0x3d,0x3d,0x3d,0x69,0x2e,0x74,0x61,0x67,0x3f,0x69,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65, 0x72,0x49,0x6e,0x66,0x6f,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x6f,0x3d,0x6e,0x75,0x6c, 0x6c,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x21,0x3d,0x3d,0x6f,0x26,0x26,0x28,0x6f, 0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52, 0x72,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x2c,0x6e,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x7d,0x76,0x61,0x72,0x20,0x65,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x6e, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x6e,0x3b,0x76,0x61,0x72,0x20, 0x65,0x2c,0x74,0x2c,0x6e,0x3d,0x74,0x6e,0x2c,0x72,0x3d,0x6e,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x6f,0x3d,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x69,0x6e,0x20, 0x65,0x6e,0x3f,0x65,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x6e,0x2e,0x74, 0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x69,0x3d,0x6f,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x65,0x3d,0x30,0x3b,0x65,0x3c, 0x72,0x26,0x26,0x6e,0x5b,0x65,0x5d,0x3d,0x3d,0x3d,0x6f,0x5b,0x65,0x5d,0x3b,0x65, 0x2b,0x2b,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x72,0x2d,0x65,0x3b,0x66,0x6f, 0x72,0x28,0x74,0x3d,0x31,0x3b,0x74,0x3c,0x3d,0x61,0x26,0x26,0x6e,0x5b,0x72,0x2d, 0x74,0x5d,0x3d,0x3d,0x3d,0x6f,0x5b,0x69,0x2d,0x74,0x5d,0x3b,0x74,0x2b,0x2b,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x6e,0x3d,0x6f,0x2e,0x73,0x6c,0x69, 0x63,0x65,0x28,0x65,0x2c,0x31,0x3c,0x74,0x3f,0x31,0x2d,0x74,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x43, 0x6f,0x64,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x63,0x68,0x61,0x72,0x43, 0x6f,0x64,0x65,0x22,0x69,0x6e,0x20,0x65,0x3f,0x30,0x3d,0x3d,0x3d,0x28,0x65,0x3d, 0x65,0x2e,0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x29,0x26,0x26,0x31,0x33,0x3d, 0x3d,0x3d,0x74,0x26,0x26,0x28,0x65,0x3d,0x31,0x33,0x29,0x3a,0x65,0x3d,0x74,0x2c, 0x31,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x31,0x33,0x29,0x2c,0x33, 0x32,0x3c,0x3d,0x65,0x7c,0x7c,0x31,0x33,0x3d,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x30, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x75,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f, 0x2c,0x69,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x61,0x20,0x69,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x4e,0x61,0x6d,0x65, 0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x49, 0x6e,0x73,0x74,0x3d,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x79,0x70,0x65,0x3d, 0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e,0x61,0x74,0x69,0x76,0x65,0x45,0x76,0x65, 0x6e,0x74,0x3d,0x6f,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x72,0x67,0x65,0x74, 0x3d,0x69,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54, 0x61,0x72,0x67,0x65,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x65,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x61,0x29, 0x26,0x26,0x28,0x74,0x3d,0x65,0x5b,0x61,0x5d,0x2c,0x74,0x68,0x69,0x73,0x5b,0x61, 0x5d,0x3d,0x74,0x3f,0x74,0x28,0x6f,0x29,0x3a,0x6f,0x5b,0x61,0x5d,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x3d,0x28,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x6f,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72, 0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x3f,0x6f,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x3a,0x21,0x31,0x3d,0x3d,0x3d, 0x6f,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x29,0x3f,0x61, 0x6e,0x3a,0x75,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x50,0x72,0x6f,0x70, 0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x3d,0x75, 0x6e,0x2c,0x74,0x68,0x69,0x73,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x7b,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x3d,0x21,0x30,0x3b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6e,0x61,0x74,0x69,0x76, 0x65,0x45,0x76,0x65,0x6e,0x74,0x3b,0x65,0x26,0x26,0x28,0x65,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x3f,0x65,0x2e,0x70,0x72, 0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3a,0x22, 0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x26, 0x26,0x28,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x3d, 0x21,0x31,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x3d,0x61,0x6e,0x29,0x7d, 0x2c,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6e,0x61,0x74,0x69,0x76,0x65,0x45,0x76,0x65, 0x6e,0x74,0x3b,0x65,0x26,0x26,0x28,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f, 0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x3f,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50, 0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3a,0x22,0x75,0x6e, 0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x42,0x75,0x62,0x62,0x6c,0x65,0x26,0x26, 0x28,0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x42,0x75,0x62,0x62,0x6c,0x65,0x3d, 0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x50,0x72,0x6f,0x70,0x61, 0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x3d,0x61,0x6e, 0x29,0x7d,0x2c,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x69,0x73,0x50,0x65,0x72,0x73,0x69,0x73, 0x74,0x65,0x6e,0x74,0x3a,0x61,0x6e,0x7d,0x29,0x2c,0x74,0x7d,0x76,0x61,0x72,0x20, 0x6c,0x6e,0x2c,0x73,0x6e,0x2c,0x66,0x6e,0x2c,0x64,0x6e,0x3d,0x7b,0x65,0x76,0x65, 0x6e,0x74,0x50,0x68,0x61,0x73,0x65,0x3a,0x30,0x2c,0x62,0x75,0x62,0x62,0x6c,0x65, 0x73,0x3a,0x30,0x2c,0x63,0x61,0x6e,0x63,0x65,0x6c,0x61,0x62,0x6c,0x65,0x3a,0x30, 0x2c,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x6d,0x70,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x6d,0x70,0x7c,0x7c,0x44,0x61,0x74,0x65,0x2e, 0x6e,0x6f,0x77,0x28,0x29,0x7d,0x2c,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72, 0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x3a,0x30,0x2c,0x69,0x73,0x54,0x72,0x75,0x73, 0x74,0x65,0x64,0x3a,0x30,0x7d,0x2c,0x70,0x6e,0x3d,0x63,0x6e,0x28,0x64,0x6e,0x29, 0x2c,0x68,0x6e,0x3d,0x6f,0x28,0x7b,0x7d,0x2c,0x64,0x6e,0x2c,0x7b,0x76,0x69,0x65, 0x77,0x3a,0x30,0x2c,0x64,0x65,0x74,0x61,0x69,0x6c,0x3a,0x30,0x7d,0x29,0x2c,0x76, 0x6e,0x3d,0x63,0x6e,0x28,0x68,0x6e,0x29,0x2c,0x67,0x6e,0x3d,0x6f,0x28,0x7b,0x7d, 0x2c,0x68,0x6e,0x2c,0x7b,0x73,0x63,0x72,0x65,0x65,0x6e,0x58,0x3a,0x30,0x2c,0x73, 0x63,0x72,0x65,0x65,0x6e,0x59,0x3a,0x30,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x58, 0x3a,0x30,0x2c,0x63,0x6c,0x69,0x65,0x6e,0x74,0x59,0x3a,0x30,0x2c,0x70,0x61,0x67, 0x65,0x58,0x3a,0x30,0x2c,0x70,0x61,0x67,0x65,0x59,0x3a,0x30,0x2c,0x63,0x74,0x72, 0x6c,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x73,0x68,0x69,0x66,0x74,0x4b,0x65,0x79,0x3a, 0x30,0x2c,0x61,0x6c,0x74,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x6d,0x65,0x74,0x61,0x4b, 0x65,0x79,0x3a,0x30,0x2c,0x67,0x65,0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72, 0x53,0x74,0x61,0x74,0x65,0x3a,0x43,0x6e,0x2c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a, 0x30,0x2c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x3a,0x30,0x2c,0x72,0x65,0x6c,0x61, 0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54, 0x61,0x72,0x67,0x65,0x74,0x3f,0x65,0x2e,0x66,0x72,0x6f,0x6d,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x3d,0x3d,0x3d,0x65,0x2e,0x73,0x72,0x63,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x3f,0x65,0x2e,0x74,0x6f,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65, 0x2e,0x66,0x72,0x6f,0x6d,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x2e,0x72, 0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x7d,0x2c,0x6d,0x6f, 0x76,0x65,0x6d,0x65,0x6e,0x74,0x58,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6d,0x6f,0x76,0x65,0x6d, 0x65,0x6e,0x74,0x58,0x22,0x69,0x6e,0x20,0x65,0x3f,0x65,0x2e,0x6d,0x6f,0x76,0x65, 0x6d,0x65,0x6e,0x74,0x58,0x3a,0x28,0x65,0x21,0x3d,0x3d,0x66,0x6e,0x26,0x26,0x28, 0x66,0x6e,0x26,0x26,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6d,0x6f,0x76,0x65,0x22,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x28,0x6c,0x6e,0x3d,0x65,0x2e,0x73, 0x63,0x72,0x65,0x65,0x6e,0x58,0x2d,0x66,0x6e,0x2e,0x73,0x63,0x72,0x65,0x65,0x6e, 0x58,0x2c,0x73,0x6e,0x3d,0x65,0x2e,0x73,0x63,0x72,0x65,0x65,0x6e,0x59,0x2d,0x66, 0x6e,0x2e,0x73,0x63,0x72,0x65,0x65,0x6e,0x59,0x29,0x3a,0x73,0x6e,0x3d,0x6c,0x6e, 0x3d,0x30,0x2c,0x66,0x6e,0x3d,0x65,0x29,0x2c,0x6c,0x6e,0x29,0x7d,0x2c,0x6d,0x6f, 0x76,0x65,0x6d,0x65,0x6e,0x74,0x59,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6d,0x6f,0x76,0x65,0x6d, 0x65,0x6e,0x74,0x59,0x22,0x69,0x6e,0x20,0x65,0x3f,0x65,0x2e,0x6d,0x6f,0x76,0x65, 0x6d,0x65,0x6e,0x74,0x59,0x3a,0x73,0x6e,0x7d,0x7d,0x29,0x2c,0x6d,0x6e,0x3d,0x63, 0x6e,0x28,0x67,0x6e,0x29,0x2c,0x62,0x6e,0x3d,0x63,0x6e,0x28,0x6f,0x28,0x7b,0x7d, 0x2c,0x67,0x6e,0x2c,0x7b,0x64,0x61,0x74,0x61,0x54,0x72,0x61,0x6e,0x73,0x66,0x65, 0x72,0x3a,0x30,0x7d,0x29,0x29,0x2c,0x79,0x6e,0x3d,0x63,0x6e,0x28,0x6f,0x28,0x7b, 0x7d,0x2c,0x68,0x6e,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72, 0x67,0x65,0x74,0x3a,0x30,0x7d,0x29,0x29,0x2c,0x5f,0x6e,0x3d,0x63,0x6e,0x28,0x6f, 0x28,0x7b,0x7d,0x2c,0x64,0x6e,0x2c,0x7b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x4e,0x61,0x6d,0x65,0x3a,0x30,0x2c,0x65,0x6c,0x61,0x70,0x73,0x65,0x64,0x54, 0x69,0x6d,0x65,0x3a,0x30,0x2c,0x70,0x73,0x65,0x75,0x64,0x6f,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x30,0x7d,0x29,0x29,0x2c,0x77,0x6e,0x3d,0x6f,0x28,0x7b,0x7d, 0x2c,0x64,0x6e,0x2c,0x7b,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x44,0x61, 0x74,0x61,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x44, 0x61,0x74,0x61,0x22,0x69,0x6e,0x20,0x65,0x3f,0x65,0x2e,0x63,0x6c,0x69,0x70,0x62, 0x6f,0x61,0x72,0x64,0x44,0x61,0x74,0x61,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x44,0x61,0x74,0x61,0x7d,0x7d,0x29, 0x2c,0x4f,0x6e,0x3d,0x63,0x6e,0x28,0x77,0x6e,0x29,0x2c,0x78,0x6e,0x3d,0x63,0x6e, 0x28,0x6f,0x28,0x7b,0x7d,0x2c,0x64,0x6e,0x2c,0x7b,0x64,0x61,0x74,0x61,0x3a,0x30, 0x7d,0x29,0x29,0x2c,0x45,0x6e,0x3d,0x7b,0x45,0x73,0x63,0x3a,0x22,0x45,0x73,0x63, 0x61,0x70,0x65,0x22,0x2c,0x53,0x70,0x61,0x63,0x65,0x62,0x61,0x72,0x3a,0x22,0x20, 0x22,0x2c,0x4c,0x65,0x66,0x74,0x3a,0x22,0x41,0x72,0x72,0x6f,0x77,0x4c,0x65,0x66, 0x74,0x22,0x2c,0x55,0x70,0x3a,0x22,0x41,0x72,0x72,0x6f,0x77,0x55,0x70,0x22,0x2c, 0x52,0x69,0x67,0x68,0x74,0x3a,0x22,0x41,0x72,0x72,0x6f,0x77,0x52,0x69,0x67,0x68, 0x74,0x22,0x2c,0x44,0x6f,0x77,0x6e,0x3a,0x22,0x41,0x72,0x72,0x6f,0x77,0x44,0x6f, 0x77,0x6e,0x22,0x2c,0x44,0x65,0x6c,0x3a,0x22,0x44,0x65,0x6c,0x65,0x74,0x65,0x22, 0x2c,0x57,0x69,0x6e,0x3a,0x22,0x4f,0x53,0x22,0x2c,0x4d,0x65,0x6e,0x75,0x3a,0x22, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x4d,0x65,0x6e,0x75,0x22,0x2c,0x41,0x70,0x70, 0x73,0x3a,0x22,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x4d,0x65,0x6e,0x75,0x22,0x2c, 0x53,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x22,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x6f, 0x63,0x6b,0x22,0x2c,0x4d,0x6f,0x7a,0x50,0x72,0x69,0x6e,0x74,0x61,0x62,0x6c,0x65, 0x4b,0x65,0x79,0x3a,0x22,0x55,0x6e,0x69,0x64,0x65,0x6e,0x74,0x69,0x66,0x69,0x65, 0x64,0x22,0x7d,0x2c,0x6a,0x6e,0x3d,0x7b,0x38,0x3a,0x22,0x42,0x61,0x63,0x6b,0x73, 0x70,0x61,0x63,0x65,0x22,0x2c,0x39,0x3a,0x22,0x54,0x61,0x62,0x22,0x2c,0x31,0x32, 0x3a,0x22,0x43,0x6c,0x65,0x61,0x72,0x22,0x2c,0x31,0x33,0x3a,0x22,0x45,0x6e,0x74, 0x65,0x72,0x22,0x2c,0x31,0x36,0x3a,0x22,0x53,0x68,0x69,0x66,0x74,0x22,0x2c,0x31, 0x37,0x3a,0x22,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x2c,0x31,0x38,0x3a,0x22, 0x41,0x6c,0x74,0x22,0x2c,0x31,0x39,0x3a,0x22,0x50,0x61,0x75,0x73,0x65,0x22,0x2c, 0x32,0x30,0x3a,0x22,0x43,0x61,0x70,0x73,0x4c,0x6f,0x63,0x6b,0x22,0x2c,0x32,0x37, 0x3a,0x22,0x45,0x73,0x63,0x61,0x70,0x65,0x22,0x2c,0x33,0x32,0x3a,0x22,0x20,0x22, 0x2c,0x33,0x33,0x3a,0x22,0x50,0x61,0x67,0x65,0x55,0x70,0x22,0x2c,0x33,0x34,0x3a, 0x22,0x50,0x61,0x67,0x65,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x33,0x35,0x3a,0x22,0x45, 0x6e,0x64,0x22,0x2c,0x33,0x36,0x3a,0x22,0x48,0x6f,0x6d,0x65,0x22,0x2c,0x33,0x37, 0x3a,0x22,0x41,0x72,0x72,0x6f,0x77,0x4c,0x65,0x66,0x74,0x22,0x2c,0x33,0x38,0x3a, 0x22,0x41,0x72,0x72,0x6f,0x77,0x55,0x70,0x22,0x2c,0x33,0x39,0x3a,0x22,0x41,0x72, 0x72,0x6f,0x77,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x34,0x30,0x3a,0x22,0x41,0x72, 0x72,0x6f,0x77,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x34,0x35,0x3a,0x22,0x49,0x6e,0x73, 0x65,0x72,0x74,0x22,0x2c,0x34,0x36,0x3a,0x22,0x44,0x65,0x6c,0x65,0x74,0x65,0x22, 0x2c,0x31,0x31,0x32,0x3a,0x22,0x46,0x31,0x22,0x2c,0x31,0x31,0x33,0x3a,0x22,0x46, 0x32,0x22,0x2c,0x31,0x31,0x34,0x3a,0x22,0x46,0x33,0x22,0x2c,0x31,0x31,0x35,0x3a, 0x22,0x46,0x34,0x22,0x2c,0x31,0x31,0x36,0x3a,0x22,0x46,0x35,0x22,0x2c,0x31,0x31, 0x37,0x3a,0x22,0x46,0x36,0x22,0x2c,0x31,0x31,0x38,0x3a,0x22,0x46,0x37,0x22,0x2c, 0x31,0x31,0x39,0x3a,0x22,0x46,0x38,0x22,0x2c,0x31,0x32,0x30,0x3a,0x22,0x46,0x39, 0x22,0x2c,0x31,0x32,0x31,0x3a,0x22,0x46,0x31,0x30,0x22,0x2c,0x31,0x32,0x32,0x3a, 0x22,0x46,0x31,0x31,0x22,0x2c,0x31,0x32,0x33,0x3a,0x22,0x46,0x31,0x32,0x22,0x2c, 0x31,0x34,0x34,0x3a,0x22,0x4e,0x75,0x6d,0x4c,0x6f,0x63,0x6b,0x22,0x2c,0x31,0x34, 0x35,0x3a,0x22,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x6f,0x63,0x6b,0x22,0x2c,0x32, 0x32,0x34,0x3a,0x22,0x4d,0x65,0x74,0x61,0x22,0x7d,0x2c,0x6b,0x6e,0x3d,0x7b,0x41, 0x6c,0x74,0x3a,0x22,0x61,0x6c,0x74,0x4b,0x65,0x79,0x22,0x2c,0x43,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x3a,0x22,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x22,0x2c,0x4d,0x65, 0x74,0x61,0x3a,0x22,0x6d,0x65,0x74,0x61,0x4b,0x65,0x79,0x22,0x2c,0x53,0x68,0x69, 0x66,0x74,0x3a,0x22,0x73,0x68,0x69,0x66,0x74,0x4b,0x65,0x79,0x22,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6e,0x61,0x74,0x69,0x76,0x65,0x45, 0x76,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x67,0x65, 0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3f,0x74, 0x2e,0x67,0x65,0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x53,0x74,0x61,0x74, 0x65,0x28,0x65,0x29,0x3a,0x21,0x21,0x28,0x65,0x3d,0x6b,0x6e,0x5b,0x65,0x5d,0x29, 0x26,0x26,0x21,0x21,0x74,0x5b,0x65,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x43,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x6e, 0x7d,0x76,0x61,0x72,0x20,0x41,0x6e,0x3d,0x6f,0x28,0x7b,0x7d,0x2c,0x68,0x6e,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x65,0x2e,0x6b,0x65,0x79,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x45,0x6e,0x5b,0x65,0x2e,0x6b,0x65,0x79,0x5d,0x7c,0x7c,0x65,0x2e,0x6b,0x65, 0x79,0x3b,0x69,0x66,0x28,0x22,0x55,0x6e,0x69,0x64,0x65,0x6e,0x74,0x69,0x66,0x69, 0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73, 0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x31,0x33,0x3d,0x3d,0x3d, 0x28,0x65,0x3d,0x6f,0x6e,0x28,0x65,0x29,0x29,0x3f,0x22,0x45,0x6e,0x74,0x65,0x72, 0x22,0x3a,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x66,0x72,0x6f,0x6d,0x43,0x68,0x61, 0x72,0x43,0x6f,0x64,0x65,0x28,0x65,0x29,0x3a,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77, 0x6e,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x6b,0x65, 0x79,0x75,0x70,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x6a,0x6e, 0x5b,0x65,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x5d,0x7c,0x7c,0x22,0x55,0x6e, 0x69,0x64,0x65,0x6e,0x74,0x69,0x66,0x69,0x65,0x64,0x22,0x3a,0x22,0x22,0x7d,0x2c, 0x63,0x6f,0x64,0x65,0x3a,0x30,0x2c,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x3a, 0x30,0x2c,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x73,0x68,0x69,0x66, 0x74,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x61,0x6c,0x74,0x4b,0x65,0x79,0x3a,0x30,0x2c, 0x6d,0x65,0x74,0x61,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x72,0x65,0x70,0x65,0x61,0x74, 0x3a,0x30,0x2c,0x6c,0x6f,0x63,0x61,0x6c,0x65,0x3a,0x30,0x2c,0x67,0x65,0x74,0x4d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3a,0x43,0x6e,0x2c, 0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6b,0x65,0x79,0x70, 0x72,0x65,0x73,0x73,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x6f, 0x6e,0x28,0x65,0x29,0x3a,0x30,0x7d,0x2c,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x6b,0x65,0x79,0x75,0x70,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x65,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65, 0x3a,0x30,0x7d,0x2c,0x77,0x68,0x69,0x63,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6b,0x65,0x79, 0x70,0x72,0x65,0x73,0x73,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f, 0x6f,0x6e,0x28,0x65,0x29,0x3a,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x6b,0x65,0x79,0x75,0x70, 0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x65,0x2e,0x6b,0x65,0x79, 0x43,0x6f,0x64,0x65,0x3a,0x30,0x7d,0x7d,0x29,0x2c,0x54,0x6e,0x3d,0x63,0x6e,0x28, 0x41,0x6e,0x29,0x2c,0x50,0x6e,0x3d,0x63,0x6e,0x28,0x6f,0x28,0x7b,0x7d,0x2c,0x67, 0x6e,0x2c,0x7b,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x49,0x64,0x3a,0x30,0x2c,0x77, 0x69,0x64,0x74,0x68,0x3a,0x30,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c, 0x70,0x72,0x65,0x73,0x73,0x75,0x72,0x65,0x3a,0x30,0x2c,0x74,0x61,0x6e,0x67,0x65, 0x6e,0x74,0x69,0x61,0x6c,0x50,0x72,0x65,0x73,0x73,0x75,0x72,0x65,0x3a,0x30,0x2c, 0x74,0x69,0x6c,0x74,0x58,0x3a,0x30,0x2c,0x74,0x69,0x6c,0x74,0x59,0x3a,0x30,0x2c, 0x74,0x77,0x69,0x73,0x74,0x3a,0x30,0x2c,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x54, 0x79,0x70,0x65,0x3a,0x30,0x2c,0x69,0x73,0x50,0x72,0x69,0x6d,0x61,0x72,0x79,0x3a, 0x30,0x7d,0x29,0x29,0x2c,0x44,0x6e,0x3d,0x63,0x6e,0x28,0x6f,0x28,0x7b,0x7d,0x2c, 0x68,0x6e,0x2c,0x7b,0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x3a,0x30,0x2c,0x74,0x61, 0x72,0x67,0x65,0x74,0x54,0x6f,0x75,0x63,0x68,0x65,0x73,0x3a,0x30,0x2c,0x63,0x68, 0x61,0x6e,0x67,0x65,0x64,0x54,0x6f,0x75,0x63,0x68,0x65,0x73,0x3a,0x30,0x2c,0x61, 0x6c,0x74,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x6d,0x65,0x74,0x61,0x4b,0x65,0x79,0x3a, 0x30,0x2c,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x73,0x68,0x69,0x66, 0x74,0x4b,0x65,0x79,0x3a,0x30,0x2c,0x67,0x65,0x74,0x4d,0x6f,0x64,0x69,0x66,0x69, 0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3a,0x43,0x6e,0x7d,0x29,0x29,0x2c,0x4e,0x6e, 0x3d,0x63,0x6e,0x28,0x6f,0x28,0x7b,0x7d,0x2c,0x64,0x6e,0x2c,0x7b,0x70,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x4e,0x61,0x6d,0x65,0x3a,0x30,0x2c,0x65,0x6c,0x61,0x70, 0x73,0x65,0x64,0x54,0x69,0x6d,0x65,0x3a,0x30,0x2c,0x70,0x73,0x65,0x75,0x64,0x6f, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x30,0x7d,0x29,0x29,0x2c,0x49,0x6e,0x3d, 0x6f,0x28,0x7b,0x7d,0x2c,0x67,0x6e,0x2c,0x7b,0x64,0x65,0x6c,0x74,0x61,0x58,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x64,0x65,0x6c,0x74,0x61,0x58,0x22,0x69,0x6e,0x20,0x65,0x3f,0x65, 0x2e,0x64,0x65,0x6c,0x74,0x61,0x58,0x3a,0x22,0x77,0x68,0x65,0x65,0x6c,0x44,0x65, 0x6c,0x74,0x61,0x58,0x22,0x69,0x6e,0x20,0x65,0x3f,0x2d,0x65,0x2e,0x77,0x68,0x65, 0x65,0x6c,0x44,0x65,0x6c,0x74,0x61,0x58,0x3a,0x30,0x7d,0x2c,0x64,0x65,0x6c,0x74, 0x61,0x59,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x64,0x65,0x6c,0x74,0x61,0x59,0x22,0x69,0x6e,0x20, 0x65,0x3f,0x65,0x2e,0x64,0x65,0x6c,0x74,0x61,0x59,0x3a,0x22,0x77,0x68,0x65,0x65, 0x6c,0x44,0x65,0x6c,0x74,0x61,0x59,0x22,0x69,0x6e,0x20,0x65,0x3f,0x2d,0x65,0x2e, 0x77,0x68,0x65,0x65,0x6c,0x44,0x65,0x6c,0x74,0x61,0x59,0x3a,0x22,0x77,0x68,0x65, 0x65,0x6c,0x44,0x65,0x6c,0x74,0x61,0x22,0x69,0x6e,0x20,0x65,0x3f,0x2d,0x65,0x2e, 0x77,0x68,0x65,0x65,0x6c,0x44,0x65,0x6c,0x74,0x61,0x3a,0x30,0x7d,0x2c,0x64,0x65, 0x6c,0x74,0x61,0x5a,0x3a,0x30,0x2c,0x64,0x65,0x6c,0x74,0x61,0x4d,0x6f,0x64,0x65, 0x3a,0x30,0x7d,0x29,0x2c,0x52,0x6e,0x3d,0x63,0x6e,0x28,0x49,0x6e,0x29,0x2c,0x4c, 0x6e,0x3d,0x5b,0x39,0x2c,0x31,0x33,0x2c,0x32,0x37,0x2c,0x33,0x32,0x5d,0x2c,0x46, 0x6e,0x3d,0x66,0x26,0x26,0x22,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x45,0x76,0x65,0x6e,0x74,0x22,0x69,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2c,0x4d,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x26,0x26,0x22,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x22,0x69,0x6e,0x20,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x4d,0x6e,0x3d,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65, 0x29,0x3b,0x76,0x61,0x72,0x20,0x42,0x6e,0x3d,0x66,0x26,0x26,0x22,0x54,0x65,0x78, 0x74,0x45,0x76,0x65,0x6e,0x74,0x22,0x69,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x26,0x26,0x21,0x4d,0x6e,0x2c,0x7a,0x6e,0x3d,0x66,0x26,0x26,0x28,0x21,0x46,0x6e, 0x7c,0x7c,0x4d,0x6e,0x26,0x26,0x38,0x3c,0x4d,0x6e,0x26,0x26,0x31,0x31,0x3e,0x3d, 0x4d,0x6e,0x29,0x2c,0x55,0x6e,0x3d,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x66,0x72, 0x6f,0x6d,0x43,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x28,0x33,0x32,0x29,0x2c,0x57, 0x6e,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b, 0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x75,0x70,0x22,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x2d,0x31,0x21,0x3d,0x3d,0x4c,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f, 0x66,0x28,0x74,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x29,0x3b,0x63,0x61,0x73, 0x65,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x32,0x32,0x39,0x21,0x3d,0x3d,0x74,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64, 0x65,0x3b,0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x48,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x28,0x65,0x3d,0x65,0x2e,0x64,0x65,0x74,0x61,0x69,0x6c,0x29,0x26,0x26,0x22, 0x64,0x61,0x74,0x61,0x22,0x69,0x6e,0x20,0x65,0x3f,0x65,0x2e,0x64,0x61,0x74,0x61, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x76,0x61,0x72,0x20,0x56,0x6e,0x3d,0x21,0x31,0x3b, 0x76,0x61,0x72,0x20,0x47,0x6e,0x3d,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x21,0x30, 0x2c,0x64,0x61,0x74,0x65,0x3a,0x21,0x30,0x2c,0x64,0x61,0x74,0x65,0x74,0x69,0x6d, 0x65,0x3a,0x21,0x30,0x2c,0x22,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x6c, 0x6f,0x63,0x61,0x6c,0x22,0x3a,0x21,0x30,0x2c,0x65,0x6d,0x61,0x69,0x6c,0x3a,0x21, 0x30,0x2c,0x6d,0x6f,0x6e,0x74,0x68,0x3a,0x21,0x30,0x2c,0x6e,0x75,0x6d,0x62,0x65, 0x72,0x3a,0x21,0x30,0x2c,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3a,0x21,0x30, 0x2c,0x72,0x61,0x6e,0x67,0x65,0x3a,0x21,0x30,0x2c,0x73,0x65,0x61,0x72,0x63,0x68, 0x3a,0x21,0x30,0x2c,0x74,0x65,0x6c,0x3a,0x21,0x30,0x2c,0x74,0x65,0x78,0x74,0x3a, 0x21,0x30,0x2c,0x74,0x69,0x6d,0x65,0x3a,0x21,0x30,0x2c,0x75,0x72,0x6c,0x3a,0x21, 0x30,0x2c,0x77,0x65,0x65,0x6b,0x3a,0x21,0x30,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x71,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x26,0x26,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x26,0x26,0x65, 0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65, 0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x69, 0x6e,0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x3f,0x21,0x21,0x47,0x6e,0x5b,0x65, 0x2e,0x74,0x79,0x70,0x65,0x5d,0x3a,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61, 0x22,0x3d,0x3d,0x3d,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x50,0x65,0x28,0x72,0x29, 0x2c,0x30,0x3c,0x28,0x74,0x3d,0x46,0x72,0x28,0x74,0x2c,0x22,0x6f,0x6e,0x43,0x68, 0x61,0x6e,0x67,0x65,0x22,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26, 0x28,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x70,0x6e,0x28,0x22,0x6f,0x6e,0x43,0x68,0x61, 0x6e,0x67,0x65,0x22,0x2c,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x6e,0x75, 0x6c,0x6c,0x2c,0x6e,0x2c,0x72,0x29,0x2c,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b, 0x65,0x76,0x65,0x6e,0x74,0x3a,0x6e,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72, 0x73,0x3a,0x74,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x59,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x51,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x58,0x6e,0x28,0x65,0x29,0x7b,0x41,0x72,0x28,0x65,0x2c,0x30, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x6e,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x58,0x28,0x6f,0x6f,0x28,0x65,0x29,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x63,0x68,0x61,0x6e,0x67, 0x65,0x22,0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d, 0x76,0x61,0x72,0x20,0x65,0x72,0x3d,0x21,0x31,0x3b,0x69,0x66,0x28,0x66,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x72,0x3b,0x69,0x66,0x28,0x66,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x72,0x3d,0x22,0x6f,0x6e,0x69,0x6e,0x70,0x75,0x74,0x22,0x69,0x6e,0x20, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3b,0x69,0x66,0x28,0x21,0x6e,0x72,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x72,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x22, 0x64,0x69,0x76,0x22,0x29,0x3b,0x72,0x72,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x6f,0x6e,0x69,0x6e,0x70,0x75,0x74,0x22,0x2c, 0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x22,0x29,0x2c,0x6e,0x72,0x3d,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x72,0x72,0x2e,0x6f,0x6e,0x69,0x6e,0x70,0x75,0x74,0x7d,0x74,0x72,0x3d, 0x6e,0x72,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x3d,0x21,0x31,0x3b,0x65,0x72, 0x3d,0x74,0x72,0x26,0x26,0x28,0x21,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x7c,0x7c,0x39,0x3c, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x4d,0x6f,0x64,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6f,0x72,0x28,0x29,0x7b,0x59,0x6e,0x26,0x26,0x28,0x59,0x6e,0x2e,0x64,0x65,0x74, 0x61,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x22,0x6f,0x6e,0x70,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x69,0x72,0x29,0x2c, 0x51,0x6e,0x3d,0x59,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x69,0x72,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x76, 0x61,0x6c,0x75,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x4e,0x61,0x6d,0x65,0x26,0x26,0x4a,0x6e,0x28,0x51,0x6e,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28,0x4b,0x6e,0x28,0x74, 0x2c,0x51,0x6e,0x2c,0x65,0x2c,0x6b,0x65,0x28,0x65,0x29,0x29,0x2c,0x65,0x3d,0x58, 0x6e,0x2c,0x46,0x65,0x29,0x65,0x28,0x74,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x46, 0x65,0x3d,0x21,0x30,0x3b,0x74,0x72,0x79,0x7b,0x4e,0x65,0x28,0x65,0x2c,0x74,0x29, 0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x46,0x65,0x3d,0x21,0x31,0x2c,0x42, 0x65,0x28,0x29,0x7d,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x61,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x66,0x6f,0x63,0x75,0x73, 0x69,0x6e,0x22,0x3d,0x3d,0x3d,0x65,0x3f,0x28,0x6f,0x72,0x28,0x29,0x2c,0x51,0x6e, 0x3d,0x6e,0x2c,0x28,0x59,0x6e,0x3d,0x74,0x29,0x2e,0x61,0x74,0x74,0x61,0x63,0x68, 0x45,0x76,0x65,0x6e,0x74,0x28,0x22,0x6f,0x6e,0x70,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x69,0x72,0x29,0x29,0x3a,0x22,0x66, 0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x6f,0x72, 0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x72,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x63, 0x68,0x61,0x6e,0x67,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x6b,0x65,0x79, 0x75,0x70,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77, 0x6e,0x22,0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x6e, 0x28,0x51,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x72, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22, 0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x6e,0x28,0x74, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x72,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d, 0x65,0x7c,0x7c,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x6e,0x28,0x74,0x29,0x7d,0x76,0x61,0x72, 0x20,0x73,0x72,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x69, 0x73,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x69,0x73,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x30,0x21,0x3d,0x3d,0x65,0x7c,0x7c, 0x31,0x2f,0x65,0x3d,0x3d,0x3d,0x31,0x2f,0x74,0x29,0x7c,0x7c,0x65,0x21,0x3d,0x3d, 0x65,0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x7d,0x2c,0x66,0x72,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61, 0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66, 0x28,0x73,0x72,0x28,0x65,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x30,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x65,0x7c,0x7c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2c, 0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29, 0x3b,0x69,0x66,0x28,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d,0x3d,0x72, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31, 0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x6e,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x69,0x66,0x28,0x21,0x66,0x72,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x5b,0x72,0x5d,0x29,0x7c,0x7c,0x21,0x73,0x72, 0x28,0x65,0x5b,0x6e,0x5b,0x72,0x5d,0x5d,0x2c,0x74,0x5b,0x6e,0x5b,0x72,0x5d,0x5d, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x65,0x26,0x26,0x65,0x2e,0x66,0x69,0x72, 0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x29,0x65,0x3d,0x65,0x2e,0x66,0x69,0x72, 0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x72,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x3d,0x70,0x72,0x28,0x65,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x65,0x3d,0x30,0x3b,0x72,0x3b,0x29,0x7b,0x69,0x66,0x28,0x33, 0x3d,0x3d,0x3d,0x72,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x3d,0x65,0x2b,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x65,0x3c,0x3d,0x74,0x26, 0x26,0x6e,0x3e,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6e,0x6f,0x64, 0x65,0x3a,0x72,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x74,0x2d,0x65,0x7d,0x3b, 0x65,0x3d,0x6e,0x7d,0x65,0x3a,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x72,0x3b,0x29,0x7b, 0x69,0x66,0x28,0x72,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x29,0x7b,0x72,0x3d,0x72,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x72,0x3d,0x72,0x2e,0x70,0x61, 0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7d,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x7d,0x72,0x3d,0x70,0x72,0x28,0x72,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x76,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x28,0x21,0x65,0x7c,0x7c,0x21,0x74,0x29,0x26,0x26,0x28,0x65,0x3d, 0x3d,0x3d,0x74,0x7c,0x7c,0x28,0x21,0x65,0x7c,0x7c,0x33,0x21,0x3d,0x3d,0x65,0x2e, 0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x29,0x26,0x26,0x28,0x74,0x26,0x26,0x33, 0x3d,0x3d,0x3d,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x76,0x72, 0x28,0x65,0x2c,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29, 0x3a,0x22,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x22,0x69,0x6e,0x20,0x65,0x3f, 0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x29,0x3a,0x21,0x21, 0x65,0x2e,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x26,0x26,0x21,0x21,0x28,0x31,0x36, 0x26,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x44,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x29,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x72,0x28,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c, 0x74,0x3d,0x4a,0x28,0x29,0x3b,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x6f,0x66,0x20,0x65,0x2e,0x48,0x54,0x4d,0x4c,0x49,0x46,0x72,0x61,0x6d,0x65,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3b,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x57,0x69, 0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72, 0x65,0x66,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x72,0x29,0x7b,0x6e,0x3d,0x21,0x31, 0x7d,0x69,0x66,0x28,0x21,0x6e,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x74,0x3d,0x4a, 0x28,0x28,0x65,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x57,0x69,0x6e, 0x64,0x6f,0x77,0x29,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6d,0x72,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x26,0x26, 0x65,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x26,0x26,0x65,0x2e,0x6e,0x6f, 0x64,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61, 0x73,0x65,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x28, 0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x22,0x74, 0x65,0x78,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x7c,0x7c,0x22, 0x73,0x65,0x61,0x72,0x63,0x68,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x7c,0x7c,0x22,0x74,0x65,0x6c,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x7c,0x7c,0x22,0x75,0x72,0x6c,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x7c,0x7c,0x22,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22,0x3d,0x3d,0x3d,0x65, 0x2e,0x74,0x79,0x70,0x65,0x29,0x7c,0x7c,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65, 0x61,0x22,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x74,0x72,0x75,0x65,0x22,0x3d,0x3d, 0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x45,0x64,0x69,0x74,0x61,0x62, 0x6c,0x65,0x29,0x7d,0x76,0x61,0x72,0x20,0x62,0x72,0x3d,0x66,0x26,0x26,0x22,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x22,0x69,0x6e,0x20,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x31,0x31,0x3e,0x3d,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4d,0x6f, 0x64,0x65,0x2c,0x79,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x5f,0x72,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x77,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x4f,0x72,0x3d,0x21,0x31, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x72,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x3d,0x3d,0x3d,0x6e,0x3f,0x6e,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x3a,0x39,0x3d,0x3d,0x3d,0x6e,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65, 0x3f,0x6e,0x3a,0x6e,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x3b,0x4f,0x72,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x79,0x72,0x7c, 0x7c,0x79,0x72,0x21,0x3d,0x3d,0x4a,0x28,0x72,0x29,0x7c,0x7c,0x28,0x22,0x73,0x65, 0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x69,0x6e,0x28, 0x72,0x3d,0x79,0x72,0x29,0x26,0x26,0x6d,0x72,0x28,0x72,0x29,0x3f,0x72,0x3d,0x7b, 0x73,0x74,0x61,0x72,0x74,0x3a,0x72,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x53,0x74,0x61,0x72,0x74,0x2c,0x65,0x6e,0x64,0x3a,0x72,0x2e,0x73,0x65,0x6c, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x7d,0x3a,0x72,0x3d,0x7b,0x61,0x6e, 0x63,0x68,0x6f,0x72,0x4e,0x6f,0x64,0x65,0x3a,0x28,0x72,0x3d,0x28,0x72,0x2e,0x6f, 0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x72,0x2e, 0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x56,0x69,0x65,0x77,0x7c,0x7c,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x29,0x2e,0x67,0x65,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x29,0x2e,0x61,0x6e,0x63,0x68,0x6f,0x72,0x4e,0x6f,0x64,0x65,0x2c,0x61,0x6e, 0x63,0x68,0x6f,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x3a,0x72,0x2e,0x61,0x6e,0x63, 0x68,0x6f,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x66,0x6f,0x63,0x75,0x73,0x4e, 0x6f,0x64,0x65,0x3a,0x72,0x2e,0x66,0x6f,0x63,0x75,0x73,0x4e,0x6f,0x64,0x65,0x2c, 0x66,0x6f,0x63,0x75,0x73,0x4f,0x66,0x66,0x73,0x65,0x74,0x3a,0x72,0x2e,0x66,0x6f, 0x63,0x75,0x73,0x4f,0x66,0x66,0x73,0x65,0x74,0x7d,0x2c,0x77,0x72,0x26,0x26,0x64, 0x72,0x28,0x77,0x72,0x2c,0x72,0x29,0x7c,0x7c,0x28,0x77,0x72,0x3d,0x72,0x2c,0x30, 0x3c,0x28,0x72,0x3d,0x46,0x72,0x28,0x5f,0x72,0x2c,0x22,0x6f,0x6e,0x53,0x65,0x6c, 0x65,0x63,0x74,0x22,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28, 0x74,0x3d,0x6e,0x65,0x77,0x20,0x70,0x6e,0x28,0x22,0x6f,0x6e,0x53,0x65,0x6c,0x65, 0x63,0x74,0x22,0x2c,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x6e,0x75,0x6c, 0x6c,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x65, 0x76,0x65,0x6e,0x74,0x3a,0x74,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73, 0x3a,0x72,0x7d,0x29,0x2c,0x74,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x79,0x72, 0x29,0x29,0x29,0x7d,0x52,0x74,0x28,0x22,0x63,0x61,0x6e,0x63,0x65,0x6c,0x20,0x63, 0x61,0x6e,0x63,0x65,0x6c,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x63,0x6c,0x69,0x63, 0x6b,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x6d,0x65,0x6e,0x75,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x4d,0x65,0x6e,0x75,0x20,0x63,0x6f,0x70,0x79,0x20,0x63,0x6f,0x70,0x79,0x20, 0x63,0x75,0x74,0x20,0x63,0x75,0x74,0x20,0x61,0x75,0x78,0x63,0x6c,0x69,0x63,0x6b, 0x20,0x61,0x75,0x78,0x43,0x6c,0x69,0x63,0x6b,0x20,0x64,0x62,0x6c,0x63,0x6c,0x69, 0x63,0x6b,0x20,0x64,0x6f,0x75,0x62,0x6c,0x65,0x43,0x6c,0x69,0x63,0x6b,0x20,0x64, 0x72,0x61,0x67,0x65,0x6e,0x64,0x20,0x64,0x72,0x61,0x67,0x45,0x6e,0x64,0x20,0x64, 0x72,0x61,0x67,0x73,0x74,0x61,0x72,0x74,0x20,0x64,0x72,0x61,0x67,0x53,0x74,0x61, 0x72,0x74,0x20,0x64,0x72,0x6f,0x70,0x20,0x64,0x72,0x6f,0x70,0x20,0x66,0x6f,0x63, 0x75,0x73,0x69,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x66,0x6f,0x63,0x75,0x73, 0x6f,0x75,0x74,0x20,0x62,0x6c,0x75,0x72,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x69, 0x6e,0x70,0x75,0x74,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x69,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79, 0x44,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73,0x20,0x6b,0x65, 0x79,0x50,0x72,0x65,0x73,0x73,0x20,0x6b,0x65,0x79,0x75,0x70,0x20,0x6b,0x65,0x79, 0x55,0x70,0x20,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x6f,0x75, 0x73,0x65,0x44,0x6f,0x77,0x6e,0x20,0x6d,0x6f,0x75,0x73,0x65,0x75,0x70,0x20,0x6d, 0x6f,0x75,0x73,0x65,0x55,0x70,0x20,0x70,0x61,0x73,0x74,0x65,0x20,0x70,0x61,0x73, 0x74,0x65,0x20,0x70,0x61,0x75,0x73,0x65,0x20,0x70,0x61,0x75,0x73,0x65,0x20,0x70, 0x6c,0x61,0x79,0x20,0x70,0x6c,0x61,0x79,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72, 0x63,0x61,0x6e,0x63,0x65,0x6c,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x43,0x61, 0x6e,0x63,0x65,0x6c,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x64,0x6f,0x77,0x6e, 0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x44,0x6f,0x77,0x6e,0x20,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x75,0x70,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x55,0x70, 0x20,0x72,0x61,0x74,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x72,0x61,0x74,0x65, 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x72,0x65,0x73, 0x65,0x74,0x20,0x73,0x65,0x65,0x6b,0x65,0x64,0x20,0x73,0x65,0x65,0x6b,0x65,0x64, 0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x20,0x74, 0x6f,0x75,0x63,0x68,0x63,0x61,0x6e,0x63,0x65,0x6c,0x20,0x74,0x6f,0x75,0x63,0x68, 0x43,0x61,0x6e,0x63,0x65,0x6c,0x20,0x74,0x6f,0x75,0x63,0x68,0x65,0x6e,0x64,0x20, 0x74,0x6f,0x75,0x63,0x68,0x45,0x6e,0x64,0x20,0x74,0x6f,0x75,0x63,0x68,0x73,0x74, 0x61,0x72,0x74,0x20,0x74,0x6f,0x75,0x63,0x68,0x53,0x74,0x61,0x72,0x74,0x20,0x76, 0x6f,0x6c,0x75,0x6d,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x6f,0x6c,0x75, 0x6d,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28, 0x22,0x20,0x22,0x29,0x2c,0x30,0x29,0x2c,0x52,0x74,0x28,0x22,0x64,0x72,0x61,0x67, 0x20,0x64,0x72,0x61,0x67,0x20,0x64,0x72,0x61,0x67,0x65,0x6e,0x74,0x65,0x72,0x20, 0x64,0x72,0x61,0x67,0x45,0x6e,0x74,0x65,0x72,0x20,0x64,0x72,0x61,0x67,0x65,0x78, 0x69,0x74,0x20,0x64,0x72,0x61,0x67,0x45,0x78,0x69,0x74,0x20,0x64,0x72,0x61,0x67, 0x6c,0x65,0x61,0x76,0x65,0x20,0x64,0x72,0x61,0x67,0x4c,0x65,0x61,0x76,0x65,0x20, 0x64,0x72,0x61,0x67,0x6f,0x76,0x65,0x72,0x20,0x64,0x72,0x61,0x67,0x4f,0x76,0x65, 0x72,0x20,0x6d,0x6f,0x75,0x73,0x65,0x6d,0x6f,0x76,0x65,0x20,0x6d,0x6f,0x75,0x73, 0x65,0x4d,0x6f,0x76,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x20,0x6d, 0x6f,0x75,0x73,0x65,0x4f,0x75,0x74,0x20,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65, 0x72,0x20,0x6d,0x6f,0x75,0x73,0x65,0x4f,0x76,0x65,0x72,0x20,0x70,0x6f,0x69,0x6e, 0x74,0x65,0x72,0x6d,0x6f,0x76,0x65,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x4d, 0x6f,0x76,0x65,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x75,0x74,0x20,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x4f,0x75,0x74,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65, 0x72,0x6f,0x76,0x65,0x72,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x4f,0x76,0x65, 0x72,0x20,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x20,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x20, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x74,0x6f, 0x75,0x63,0x68,0x6d,0x6f,0x76,0x65,0x20,0x74,0x6f,0x75,0x63,0x68,0x4d,0x6f,0x76, 0x65,0x20,0x77,0x68,0x65,0x65,0x6c,0x20,0x77,0x68,0x65,0x65,0x6c,0x22,0x2e,0x73, 0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x2c,0x31,0x29,0x2c,0x52,0x74,0x28, 0x49,0x74,0x2c,0x32,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x45,0x72, 0x3d,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x65,0x78,0x74,0x49,0x6e,0x70, 0x75,0x74,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x73,0x74, 0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65, 0x6e,0x64,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x75,0x70, 0x64,0x61,0x74,0x65,0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29, 0x2c,0x6a,0x72,0x3d,0x30,0x3b,0x6a,0x72,0x3c,0x45,0x72,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3b,0x6a,0x72,0x2b,0x2b,0x29,0x4e,0x74,0x2e,0x73,0x65,0x74,0x28,0x45, 0x72,0x5b,0x6a,0x72,0x5d,0x2c,0x30,0x29,0x3b,0x73,0x28,0x22,0x6f,0x6e,0x4d,0x6f, 0x75,0x73,0x65,0x45,0x6e,0x74,0x65,0x72,0x22,0x2c,0x5b,0x22,0x6d,0x6f,0x75,0x73, 0x65,0x6f,0x75,0x74,0x22,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72, 0x22,0x5d,0x29,0x2c,0x73,0x28,0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x4c,0x65, 0x61,0x76,0x65,0x22,0x2c,0x5b,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x22, 0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x5d,0x29,0x2c,0x73, 0x28,0x22,0x6f,0x6e,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x6e,0x74,0x65,0x72, 0x22,0x2c,0x5b,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x75,0x74,0x22,0x2c, 0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65,0x72,0x22,0x5d,0x29,0x2c, 0x73,0x28,0x22,0x6f,0x6e,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x4c,0x65,0x61,0x76, 0x65,0x22,0x2c,0x5b,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x75,0x74,0x22, 0x2c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65,0x72,0x22,0x5d,0x29, 0x2c,0x6c,0x28,0x22,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x22,0x63, 0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x66,0x6f,0x63,0x75, 0x73,0x69,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x20,0x69,0x6e,0x70, 0x75,0x74,0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x75,0x70, 0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65, 0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x29,0x2c,0x6c,0x28, 0x22,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x66,0x6f,0x63,0x75, 0x73,0x6f,0x75,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x6d,0x65,0x6e,0x75, 0x20,0x64,0x72,0x61,0x67,0x65,0x6e,0x64,0x20,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e, 0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x75,0x70,0x20,0x6d, 0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x6f,0x75,0x73,0x65,0x75,0x70, 0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65, 0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x29,0x2c,0x6c,0x28, 0x22,0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x49,0x6e,0x70,0x75,0x74,0x22,0x2c, 0x5b,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64, 0x22,0x2c,0x22,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73,0x22,0x2c,0x22,0x74,0x65, 0x78,0x74,0x49,0x6e,0x70,0x75,0x74,0x22,0x2c,0x22,0x70,0x61,0x73,0x74,0x65,0x22, 0x5d,0x29,0x2c,0x6c,0x28,0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x45,0x6e,0x64,0x22,0x2c,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x20,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74, 0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x70,0x72,0x65,0x73, 0x73,0x20,0x6b,0x65,0x79,0x75,0x70,0x20,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77, 0x6e,0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x29,0x2c,0x6c, 0x28,0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53, 0x74,0x61,0x72,0x74,0x22,0x2c,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x73,0x74,0x61,0x72,0x74,0x20,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74, 0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x70,0x72,0x65,0x73, 0x73,0x20,0x6b,0x65,0x79,0x75,0x70,0x20,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77, 0x6e,0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x29,0x2c,0x6c, 0x28,0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x55, 0x70,0x64,0x61,0x74,0x65,0x22,0x2c,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x6f,0x63,0x75,0x73,0x6f, 0x75,0x74,0x20,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x20,0x6b,0x65,0x79,0x70,0x72, 0x65,0x73,0x73,0x20,0x6b,0x65,0x79,0x75,0x70,0x20,0x6d,0x6f,0x75,0x73,0x65,0x64, 0x6f,0x77,0x6e,0x22,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x6b,0x72,0x3d,0x22,0x61,0x62,0x6f,0x72,0x74,0x20,0x63, 0x61,0x6e,0x70,0x6c,0x61,0x79,0x20,0x63,0x61,0x6e,0x70,0x6c,0x61,0x79,0x74,0x68, 0x72,0x6f,0x75,0x67,0x68,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x63,0x68, 0x61,0x6e,0x67,0x65,0x20,0x65,0x6d,0x70,0x74,0x69,0x65,0x64,0x20,0x65,0x6e,0x63, 0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x65,0x6e,0x64,0x65,0x64,0x20,0x65,0x72,0x72, 0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f, 0x61,0x64,0x65,0x64,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61, 0x64,0x73,0x74,0x61,0x72,0x74,0x20,0x70,0x61,0x75,0x73,0x65,0x20,0x70,0x6c,0x61, 0x79,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x67,0x72,0x65, 0x73,0x73,0x20,0x72,0x61,0x74,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x73,0x65, 0x65,0x6b,0x65,0x64,0x20,0x73,0x65,0x65,0x6b,0x69,0x6e,0x67,0x20,0x73,0x74,0x61, 0x6c,0x6c,0x65,0x64,0x20,0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x20,0x74,0x69,0x6d, 0x65,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x63,0x68, 0x61,0x6e,0x67,0x65,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x22,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x2c,0x53,0x72,0x3d,0x6e,0x65,0x77,0x20, 0x53,0x65,0x74,0x28,0x22,0x63,0x61,0x6e,0x63,0x65,0x6c,0x20,0x63,0x6c,0x6f,0x73, 0x65,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x6c,0x6f,0x61,0x64,0x20,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x6b,0x72,0x29,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x72, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x2d,0x65, 0x76,0x65,0x6e,0x74,0x22,0x3b,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54, 0x61,0x72,0x67,0x65,0x74,0x3d,0x6e,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x75,0x2c,0x63, 0x2c,0x6c,0x29,0x7b,0x69,0x66,0x28,0x59,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x2c, 0x48,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x48,0x65,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x39,0x38,0x29,0x29,0x3b,0x76, 0x61,0x72,0x20,0x73,0x3d,0x56,0x65,0x3b,0x48,0x65,0x3d,0x21,0x31,0x2c,0x56,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x47,0x65,0x7c,0x7c,0x28,0x47,0x65,0x3d,0x21,0x30, 0x2c,0x71,0x65,0x3d,0x73,0x29,0x7d,0x7d,0x28,0x72,0x2c,0x74,0x2c,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x65,0x29,0x2c,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x54,0x61,0x72,0x67,0x65,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x41,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x3d,0x30, 0x21,0x3d,0x3d,0x28,0x34,0x26,0x74,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x6e,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x6e,0x5d,0x2c, 0x6f,0x3d,0x72,0x2e,0x65,0x76,0x65,0x6e,0x74,0x3b,0x72,0x3d,0x72,0x2e,0x6c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3b,0x65,0x3a,0x7b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x69,0x66,0x28,0x74,0x29,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x61,0x3d,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d, 0x31,0x3b,0x30,0x3c,0x3d,0x61,0x3b,0x61,0x2d,0x2d,0x29,0x7b,0x76,0x61,0x72,0x20, 0x75,0x3d,0x72,0x5b,0x61,0x5d,0x2c,0x63,0x3d,0x75,0x2e,0x69,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x2c,0x6c,0x3d,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54, 0x61,0x72,0x67,0x65,0x74,0x3b,0x69,0x66,0x28,0x75,0x3d,0x75,0x2e,0x6c,0x69,0x73, 0x74,0x65,0x6e,0x65,0x72,0x2c,0x63,0x21,0x3d,0x3d,0x69,0x26,0x26,0x6f,0x2e,0x69, 0x73,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f,0x70, 0x70,0x65,0x64,0x28,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x43,0x72, 0x28,0x6f,0x2c,0x75,0x2c,0x6c,0x29,0x2c,0x69,0x3d,0x63,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x66,0x6f,0x72,0x28,0x61,0x3d,0x30,0x3b,0x61,0x3c,0x72,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x61,0x2b,0x2b,0x29,0x7b,0x69,0x66,0x28,0x63,0x3d,0x28,0x75, 0x3d,0x72,0x5b,0x61,0x5d,0x29,0x2e,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2c, 0x6c,0x3d,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x61,0x72,0x67,0x65, 0x74,0x2c,0x75,0x3d,0x75,0x2e,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x2c,0x63, 0x21,0x3d,0x3d,0x69,0x26,0x26,0x6f,0x2e,0x69,0x73,0x50,0x72,0x6f,0x70,0x61,0x67, 0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x28,0x29,0x29,0x62, 0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x43,0x72,0x28,0x6f,0x2c,0x75,0x2c,0x6c,0x29, 0x2c,0x69,0x3d,0x63,0x7d,0x7d,0x7d,0x69,0x66,0x28,0x47,0x65,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x65,0x3d,0x71,0x65,0x2c,0x47,0x65,0x3d,0x21,0x31,0x2c,0x71,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x54,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61, 0x6f,0x28,0x74,0x29,0x2c,0x72,0x3d,0x65,0x2b,0x22,0x5f,0x5f,0x62,0x75,0x62,0x62, 0x6c,0x65,0x22,0x3b,0x6e,0x2e,0x68,0x61,0x73,0x28,0x72,0x29,0x7c,0x7c,0x28,0x49, 0x72,0x28,0x74,0x2c,0x65,0x2c,0x32,0x2c,0x21,0x31,0x29,0x2c,0x6e,0x2e,0x61,0x64, 0x64,0x28,0x72,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x50,0x72,0x3d,0x22,0x5f,0x72, 0x65,0x61,0x63,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x69,0x6e,0x67,0x22,0x2b,0x4d, 0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x36,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28, 0x32,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x72,0x28,0x65, 0x29,0x7b,0x65,0x5b,0x50,0x72,0x5d,0x7c,0x7c,0x28,0x65,0x5b,0x50,0x72,0x5d,0x3d, 0x21,0x30,0x2c,0x75,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x53,0x72,0x2e,0x68,0x61,0x73, 0x28,0x74,0x29,0x7c,0x7c,0x4e,0x72,0x28,0x74,0x2c,0x21,0x31,0x2c,0x65,0x2c,0x6e, 0x75,0x6c,0x6c,0x29,0x2c,0x4e,0x72,0x28,0x74,0x2c,0x21,0x30,0x2c,0x65,0x2c,0x6e, 0x75,0x6c,0x6c,0x29,0x7d,0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4e,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x34,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x34,0x5d,0x3f,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x34,0x5d,0x3a,0x30,0x2c,0x69,0x3d,0x6e, 0x3b,0x69,0x66,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x63,0x68, 0x61,0x6e,0x67,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x39,0x21,0x3d,0x3d,0x6e, 0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x28,0x69,0x3d,0x6e,0x2e, 0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26,0x21,0x74,0x26,0x26,0x53,0x72,0x2e, 0x68,0x61,0x73,0x28,0x65,0x29,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x22,0x21,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6f, 0x7c,0x3d,0x32,0x2c,0x69,0x3d,0x72,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x61,0x6f, 0x28,0x69,0x29,0x2c,0x75,0x3d,0x65,0x2b,0x22,0x5f,0x5f,0x22,0x2b,0x28,0x74,0x3f, 0x22,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x22,0x62,0x75,0x62,0x62,0x6c, 0x65,0x22,0x29,0x3b,0x61,0x2e,0x68,0x61,0x73,0x28,0x75,0x29,0x7c,0x7c,0x28,0x74, 0x26,0x26,0x28,0x6f,0x7c,0x3d,0x34,0x29,0x2c,0x49,0x72,0x28,0x69,0x2c,0x65,0x2c, 0x6f,0x2c,0x74,0x29,0x2c,0x61,0x2e,0x61,0x64,0x64,0x28,0x75,0x29,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x4e,0x74,0x2e,0x67,0x65,0x74, 0x28,0x74,0x29,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x32,0x3a,0x6f,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x30,0x3a,0x6f,0x3d,0x51,0x74,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x20,0x31,0x3a,0x6f,0x3d,0x58,0x74,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x6f,0x3d,0x4a,0x74,0x7d,0x6e,0x3d,0x6f,0x2e, 0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c,0x6e,0x2c,0x65,0x29, 0x2c,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x21,0x55,0x65,0x7c,0x7c,0x22, 0x74,0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x21,0x3d,0x3d,0x74,0x26, 0x26,0x22,0x74,0x6f,0x75,0x63,0x68,0x6d,0x6f,0x76,0x65,0x22,0x21,0x3d,0x3d,0x74, 0x26,0x26,0x22,0x77,0x68,0x65,0x65,0x6c,0x22,0x21,0x3d,0x3d,0x74,0x7c,0x7c,0x28, 0x6f,0x3d,0x21,0x30,0x29,0x2c,0x72,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x6f,0x3f,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73, 0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x6e,0x2c,0x7b,0x63,0x61,0x70,0x74,0x75, 0x72,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x6f,0x7d, 0x29,0x3a,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74, 0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x6e,0x2c,0x21,0x30,0x29,0x3a,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x6f,0x3f,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65, 0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74,0x2c,0x6e,0x2c,0x7b, 0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x6f,0x7d,0x29,0x3a,0x65,0x2e,0x61,0x64, 0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x74, 0x2c,0x6e,0x2c,0x21,0x31,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x52,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x76,0x61, 0x72,0x20,0x69,0x3d,0x72,0x3b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x31,0x26, 0x74,0x29,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x74,0x29,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x29,0x65,0x3a,0x66,0x6f,0x72,0x28,0x3b,0x3b, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x72,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x72,0x2e,0x74,0x61,0x67, 0x3b,0x69,0x66,0x28,0x33,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x34,0x3d,0x3d,0x3d,0x61, 0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x72,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66, 0x6f,0x3b,0x69,0x66,0x28,0x75,0x3d,0x3d,0x3d,0x6f,0x7c,0x7c,0x38,0x3d,0x3d,0x3d, 0x75,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x75,0x2e,0x70,0x61, 0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3d,0x3d,0x3d,0x6f,0x29,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x69,0x66,0x28,0x34,0x3d,0x3d,0x3d,0x61,0x29,0x66,0x6f,0x72,0x28, 0x61,0x3d,0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x61,0x2e,0x74,0x61, 0x67,0x3b,0x69,0x66,0x28,0x28,0x33,0x3d,0x3d,0x3d,0x63,0x7c,0x7c,0x34,0x3d,0x3d, 0x3d,0x63,0x29,0x26,0x26,0x28,0x28,0x63,0x3d,0x61,0x2e,0x73,0x74,0x61,0x74,0x65, 0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e, 0x66,0x6f,0x29,0x3d,0x3d,0x3d,0x6f,0x7c,0x7c,0x38,0x3d,0x3d,0x3d,0x63,0x2e,0x6e, 0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x63,0x2e,0x70,0x61,0x72,0x65,0x6e, 0x74,0x4e,0x6f,0x64,0x65,0x3d,0x3d,0x3d,0x6f,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3b,0x61,0x3d,0x61,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x66,0x6f,0x72, 0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x75,0x3b,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x61,0x3d,0x6e,0x6f,0x28,0x75,0x29,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x69,0x66,0x28,0x35,0x3d,0x3d,0x3d,0x28, 0x63,0x3d,0x61,0x2e,0x74,0x61,0x67,0x29,0x7c,0x7c,0x36,0x3d,0x3d,0x3d,0x63,0x29, 0x7b,0x72,0x3d,0x69,0x3d,0x61,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x20, 0x65,0x7d,0x75,0x3d,0x75,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65, 0x7d,0x7d,0x72,0x3d,0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x21,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66, 0x28,0x4d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x2c,0x6e, 0x29,0x3b,0x4d,0x65,0x3d,0x21,0x30,0x3b,0x74,0x72,0x79,0x7b,0x4c,0x65,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x4d,0x65, 0x3d,0x21,0x31,0x2c,0x42,0x65,0x28,0x29,0x7d,0x7d,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x69,0x2c,0x6f, 0x3d,0x6b,0x65,0x28,0x6e,0x29,0x2c,0x61,0x3d,0x5b,0x5d,0x3b,0x65,0x3a,0x7b,0x76, 0x61,0x72,0x20,0x75,0x3d,0x44,0x74,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x69, 0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x75,0x29,0x7b,0x76,0x61, 0x72,0x20,0x63,0x3d,0x70,0x6e,0x2c,0x6c,0x3d,0x65,0x3b,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x70,0x72,0x65, 0x73,0x73,0x22,0x3a,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x6f,0x6e,0x28,0x6e,0x29, 0x29,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x22,0x6b,0x65, 0x79,0x64,0x6f,0x77,0x6e,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x75, 0x70,0x22,0x3a,0x63,0x3d,0x54,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22,0x3a,0x6c,0x3d,0x22,0x66, 0x6f,0x63,0x75,0x73,0x22,0x2c,0x63,0x3d,0x79,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x3b,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3a, 0x6c,0x3d,0x22,0x62,0x6c,0x75,0x72,0x22,0x2c,0x63,0x3d,0x79,0x6e,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x62, 0x6c,0x75,0x72,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x61,0x66,0x74,0x65,0x72,0x62, 0x6c,0x75,0x72,0x22,0x3a,0x63,0x3d,0x79,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22,0x3a,0x69,0x66,0x28,0x32, 0x3d,0x3d,0x3d,0x6e,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x62,0x72,0x65,0x61, 0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x22,0x61,0x75,0x78,0x63,0x6c,0x69,0x63, 0x6b,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x62,0x6c,0x63,0x6c,0x69,0x63,0x6b, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6d,0x6f,0x76,0x65, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x75,0x70,0x22,0x3a, 0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x22,0x3a,0x63, 0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x3a,0x63, 0x61,0x73,0x65,0x22,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x6d,0x65,0x6e,0x75,0x22, 0x3a,0x63,0x3d,0x6d,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65, 0x22,0x64,0x72,0x61,0x67,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67, 0x65,0x6e,0x64,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x65,0x6e, 0x74,0x65,0x72,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x65,0x78, 0x69,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x6c,0x65,0x61, 0x76,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x6f,0x76,0x65, 0x72,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x61,0x67,0x73,0x74,0x61,0x72, 0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x64,0x72,0x6f,0x70,0x22,0x3a,0x63,0x3d, 0x62,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x6f, 0x75,0x63,0x68,0x63,0x61,0x6e,0x63,0x65,0x6c,0x22,0x3a,0x63,0x61,0x73,0x65,0x22, 0x74,0x6f,0x75,0x63,0x68,0x65,0x6e,0x64,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x74, 0x6f,0x75,0x63,0x68,0x6d,0x6f,0x76,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x74, 0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x63,0x3d,0x44,0x6e,0x3b, 0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x43,0x74,0x3a,0x63,0x61, 0x73,0x65,0x20,0x41,0x74,0x3a,0x63,0x61,0x73,0x65,0x20,0x54,0x74,0x3a,0x63,0x3d, 0x5f,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x50,0x74, 0x3a,0x63,0x3d,0x4e,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65, 0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x3a,0x63,0x3d,0x76,0x6e,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x77,0x68,0x65,0x65,0x6c,0x22,0x3a, 0x63,0x3d,0x52,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x63,0x6f,0x70,0x79,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x63,0x75,0x74,0x22,0x3a, 0x63,0x61,0x73,0x65,0x22,0x70,0x61,0x73,0x74,0x65,0x22,0x3a,0x63,0x3d,0x4f,0x6e, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x67,0x6f,0x74,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x63, 0x61,0x73,0x65,0x22,0x6c,0x6f,0x73,0x74,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x63, 0x61,0x70,0x74,0x75,0x72,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x63,0x61,0x6e,0x63,0x65,0x6c,0x22,0x3a,0x63,0x61,0x73,0x65, 0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x64,0x6f,0x77,0x6e,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6d,0x6f,0x76,0x65,0x22,0x3a, 0x63,0x61,0x73,0x65,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x75,0x74,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65, 0x72,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x75, 0x70,0x22,0x3a,0x63,0x3d,0x50,0x6e,0x7d,0x76,0x61,0x72,0x20,0x73,0x3d,0x30,0x21, 0x3d,0x3d,0x28,0x34,0x26,0x74,0x29,0x2c,0x66,0x3d,0x21,0x73,0x26,0x26,0x22,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x22,0x3d,0x3d,0x3d,0x65,0x2c,0x64,0x3d,0x73,0x3f,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x75,0x3f,0x75,0x2b,0x22,0x43,0x61,0x70,0x74,0x75, 0x72,0x65,0x22,0x3a,0x6e,0x75,0x6c,0x6c,0x3a,0x75,0x3b,0x73,0x3d,0x5b,0x5d,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x70,0x2c,0x68,0x3d,0x72,0x3b,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x68,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x76,0x3d,0x28, 0x70,0x3d,0x68,0x29,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x69, 0x66,0x28,0x35,0x3d,0x3d,0x3d,0x70,0x2e,0x74,0x61,0x67,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x76,0x26,0x26,0x28,0x70,0x3d,0x76,0x2c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x64,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x76,0x3d, 0x7a,0x65,0x28,0x68,0x2c,0x64,0x29,0x29,0x26,0x26,0x73,0x2e,0x70,0x75,0x73,0x68, 0x28,0x4c,0x72,0x28,0x68,0x2c,0x76,0x2c,0x70,0x29,0x29,0x29,0x29,0x2c,0x66,0x29, 0x62,0x72,0x65,0x61,0x6b,0x3b,0x68,0x3d,0x68,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7d,0x30,0x3c,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x75,0x3d, 0x6e,0x65,0x77,0x20,0x63,0x28,0x75,0x2c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e, 0x2c,0x6f,0x29,0x2c,0x61,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x65,0x76,0x65,0x6e, 0x74,0x3a,0x75,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3a,0x73,0x7d, 0x29,0x29,0x7d,0x7d,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x37,0x26,0x74,0x29, 0x29,0x7b,0x69,0x66,0x28,0x63,0x3d,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74, 0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f, 0x75,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x2c,0x28,0x21,0x28,0x75,0x3d,0x22,0x6d,0x6f, 0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x65,0x29, 0x7c,0x7c,0x30,0x21,0x3d,0x3d,0x28,0x31,0x36,0x26,0x74,0x29,0x7c,0x7c,0x21,0x28, 0x6c,0x3d,0x6e,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65, 0x74,0x7c,0x7c,0x6e,0x2e,0x66,0x72,0x6f,0x6d,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x7c,0x7c,0x21,0x6e,0x6f,0x28,0x6c,0x29,0x26,0x26,0x21,0x6c,0x5b,0x65,0x6f, 0x5d,0x29,0x26,0x26,0x28,0x63,0x7c,0x7c,0x75,0x29,0x26,0x26,0x28,0x75,0x3d,0x6f, 0x2e,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3d,0x3d,0x3d,0x6f,0x3f,0x6f,0x3a,0x28,0x75, 0x3d,0x6f,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x29,0x3f,0x75,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x69,0x65,0x77,0x7c, 0x7c,0x75,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x57,0x69,0x6e,0x64,0x6f,0x77,0x3a, 0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x63,0x3f,0x28,0x63,0x3d,0x72,0x2c,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6c,0x3d,0x28,0x6c,0x3d,0x6e,0x2e,0x72,0x65,0x6c, 0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x7c,0x7c,0x6e,0x2e,0x74,0x6f, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3f,0x6e,0x6f,0x28,0x6c,0x29,0x3a,0x6e, 0x75,0x6c,0x6c,0x29,0x26,0x26,0x28,0x6c,0x21,0x3d,0x3d,0x28,0x66,0x3d,0x51,0x65, 0x28,0x6c,0x29,0x29,0x7c,0x7c,0x35,0x21,0x3d,0x3d,0x6c,0x2e,0x74,0x61,0x67,0x26, 0x26,0x36,0x21,0x3d,0x3d,0x6c,0x2e,0x74,0x61,0x67,0x29,0x26,0x26,0x28,0x6c,0x3d, 0x6e,0x75,0x6c,0x6c,0x29,0x29,0x3a,0x28,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6c, 0x3d,0x72,0x29,0x2c,0x63,0x21,0x3d,0x3d,0x6c,0x29,0x29,0x7b,0x69,0x66,0x28,0x73, 0x3d,0x6d,0x6e,0x2c,0x76,0x3d,0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x4c,0x65, 0x61,0x76,0x65,0x22,0x2c,0x64,0x3d,0x22,0x6f,0x6e,0x4d,0x6f,0x75,0x73,0x65,0x45, 0x6e,0x74,0x65,0x72,0x22,0x2c,0x68,0x3d,0x22,0x6d,0x6f,0x75,0x73,0x65,0x22,0x2c, 0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x75,0x74,0x22,0x21,0x3d,0x3d,0x65, 0x26,0x26,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6f,0x76,0x65,0x72,0x22,0x21, 0x3d,0x3d,0x65,0x7c,0x7c,0x28,0x73,0x3d,0x50,0x6e,0x2c,0x76,0x3d,0x22,0x6f,0x6e, 0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x4c,0x65,0x61,0x76,0x65,0x22,0x2c,0x64,0x3d, 0x22,0x6f,0x6e,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x6e,0x74,0x65,0x72,0x22, 0x2c,0x68,0x3d,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x22,0x29,0x2c,0x66,0x3d, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x63,0x3f,0x75,0x3a,0x6f,0x6f,0x28,0x63,0x29,0x2c, 0x70,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6c,0x3f,0x75,0x3a,0x6f,0x6f,0x28,0x6c, 0x29,0x2c,0x28,0x75,0x3d,0x6e,0x65,0x77,0x20,0x73,0x28,0x76,0x2c,0x68,0x2b,0x22, 0x6c,0x65,0x61,0x76,0x65,0x22,0x2c,0x63,0x2c,0x6e,0x2c,0x6f,0x29,0x29,0x2e,0x74, 0x61,0x72,0x67,0x65,0x74,0x3d,0x66,0x2c,0x75,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65, 0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3d,0x70,0x2c,0x76,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x6e,0x6f,0x28,0x6f,0x29,0x3d,0x3d,0x3d,0x72,0x26,0x26,0x28,0x28,0x73,0x3d, 0x6e,0x65,0x77,0x20,0x73,0x28,0x64,0x2c,0x68,0x2b,0x22,0x65,0x6e,0x74,0x65,0x72, 0x22,0x2c,0x6c,0x2c,0x6e,0x2c,0x6f,0x29,0x29,0x2e,0x74,0x61,0x72,0x67,0x65,0x74, 0x3d,0x70,0x2c,0x73,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67, 0x65,0x74,0x3d,0x66,0x2c,0x76,0x3d,0x73,0x29,0x2c,0x66,0x3d,0x76,0x2c,0x63,0x26, 0x26,0x6c,0x29,0x65,0x3a,0x7b,0x66,0x6f,0x72,0x28,0x64,0x3d,0x6c,0x2c,0x68,0x3d, 0x30,0x2c,0x70,0x3d,0x73,0x3d,0x63,0x3b,0x70,0x3b,0x70,0x3d,0x4d,0x72,0x28,0x70, 0x29,0x29,0x68,0x2b,0x2b,0x3b,0x66,0x6f,0x72,0x28,0x70,0x3d,0x30,0x2c,0x76,0x3d, 0x64,0x3b,0x76,0x3b,0x76,0x3d,0x4d,0x72,0x28,0x76,0x29,0x29,0x70,0x2b,0x2b,0x3b, 0x66,0x6f,0x72,0x28,0x3b,0x30,0x3c,0x68,0x2d,0x70,0x3b,0x29,0x73,0x3d,0x4d,0x72, 0x28,0x73,0x29,0x2c,0x68,0x2d,0x2d,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x30,0x3c,0x70, 0x2d,0x68,0x3b,0x29,0x64,0x3d,0x4d,0x72,0x28,0x64,0x29,0x2c,0x70,0x2d,0x2d,0x3b, 0x66,0x6f,0x72,0x28,0x3b,0x68,0x2d,0x2d,0x3b,0x29,0x7b,0x69,0x66,0x28,0x73,0x3d, 0x3d,0x3d,0x64,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x64,0x26,0x26,0x73, 0x3d,0x3d,0x3d,0x64,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x29,0x62, 0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x73,0x3d,0x4d,0x72,0x28,0x73,0x29,0x2c,0x64, 0x3d,0x4d,0x72,0x28,0x64,0x29,0x7d,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x63,0x26,0x26,0x42,0x72,0x28,0x61,0x2c,0x75,0x2c,0x63,0x2c,0x73,0x2c,0x21, 0x31,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6c,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x66,0x26,0x26,0x42,0x72,0x28,0x61,0x2c,0x66,0x2c,0x6c,0x2c, 0x73,0x2c,0x21,0x30,0x29,0x7d,0x69,0x66,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74, 0x22,0x3d,0x3d,0x3d,0x28,0x63,0x3d,0x28,0x75,0x3d,0x72,0x3f,0x6f,0x6f,0x28,0x72, 0x29,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x29,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61, 0x6d,0x65,0x26,0x26,0x75,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x74, 0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x29,0x7c,0x7c,0x22, 0x69,0x6e,0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x63,0x26,0x26,0x22,0x66,0x69,0x6c, 0x65,0x22,0x3d,0x3d,0x3d,0x75,0x2e,0x74,0x79,0x70,0x65,0x29,0x76,0x61,0x72,0x20, 0x67,0x3d,0x5a,0x6e,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x71,0x6e,0x28, 0x75,0x29,0x29,0x69,0x66,0x28,0x65,0x72,0x29,0x67,0x3d,0x6c,0x72,0x3b,0x65,0x6c, 0x73,0x65,0x7b,0x67,0x3d,0x75,0x72,0x3b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x61,0x72, 0x7d,0x65,0x6c,0x73,0x65,0x28,0x63,0x3d,0x75,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61, 0x6d,0x65,0x29,0x26,0x26,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x63, 0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x26,0x26, 0x28,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3d,0x3d,0x3d,0x75,0x2e, 0x74,0x79,0x70,0x65,0x7c,0x7c,0x22,0x72,0x61,0x64,0x69,0x6f,0x22,0x3d,0x3d,0x3d, 0x75,0x2e,0x74,0x79,0x70,0x65,0x29,0x26,0x26,0x28,0x67,0x3d,0x63,0x72,0x29,0x3b, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x67,0x26,0x26,0x28,0x67,0x3d,0x67,0x28,0x65, 0x2c,0x72,0x29,0x29,0x3f,0x4b,0x6e,0x28,0x61,0x2c,0x67,0x2c,0x6e,0x2c,0x6f,0x29, 0x3a,0x28,0x6d,0x26,0x26,0x6d,0x28,0x65,0x2c,0x75,0x2c,0x72,0x29,0x2c,0x22,0x66, 0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x6d, 0x3d,0x75,0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65, 0x29,0x26,0x26,0x6d,0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x64,0x26, 0x26,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x75,0x2e,0x74,0x79, 0x70,0x65,0x26,0x26,0x6f,0x65,0x28,0x75,0x2c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72, 0x22,0x2c,0x75,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x29,0x2c,0x6d,0x3d,0x72,0x3f, 0x6f,0x6f,0x28,0x72,0x29,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x65,0x29,0x7b, 0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22,0x3a,0x28,0x71, 0x6e,0x28,0x6d,0x29,0x7c,0x7c,0x22,0x74,0x72,0x75,0x65,0x22,0x3d,0x3d,0x3d,0x6d, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x45,0x64,0x69,0x74,0x61,0x62,0x6c,0x65, 0x29,0x26,0x26,0x28,0x79,0x72,0x3d,0x6d,0x2c,0x5f,0x72,0x3d,0x72,0x2c,0x77,0x72, 0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3a,0x77,0x72,0x3d,0x5f, 0x72,0x3d,0x79,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x22,0x3a, 0x4f,0x72,0x3d,0x21,0x30,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65, 0x22,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x6d,0x65,0x6e,0x75,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x75,0x70,0x22,0x3a,0x63,0x61,0x73,0x65, 0x22,0x64,0x72,0x61,0x67,0x65,0x6e,0x64,0x22,0x3a,0x4f,0x72,0x3d,0x21,0x31,0x2c, 0x78,0x72,0x28,0x61,0x2c,0x6e,0x2c,0x6f,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x63,0x68, 0x61,0x6e,0x67,0x65,0x22,0x3a,0x69,0x66,0x28,0x62,0x72,0x29,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x3a, 0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x75,0x70,0x22,0x3a,0x78,0x72,0x28,0x61, 0x2c,0x6e,0x2c,0x6f,0x29,0x7d,0x76,0x61,0x72,0x20,0x62,0x3b,0x69,0x66,0x28,0x46, 0x6e,0x29,0x65,0x3a,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x63, 0x61,0x73,0x65,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x73, 0x74,0x61,0x72,0x74,0x22,0x3a,0x76,0x61,0x72,0x20,0x79,0x3d,0x22,0x6f,0x6e,0x43, 0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x22,0x63,0x6f, 0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x22,0x3a,0x79,0x3d, 0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e, 0x64,0x22,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x22, 0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x75,0x70,0x64,0x61,0x74, 0x65,0x22,0x3a,0x79,0x3d,0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x55,0x70,0x64,0x61,0x74,0x65,0x22,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x20,0x65,0x7d,0x79,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x56,0x6e,0x3f,0x24,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26,0x28,0x79,0x3d, 0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e, 0x64,0x22,0x29,0x3a,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x3d,0x3d,0x3d, 0x65,0x26,0x26,0x32,0x32,0x39,0x3d,0x3d,0x3d,0x6e,0x2e,0x6b,0x65,0x79,0x43,0x6f, 0x64,0x65,0x26,0x26,0x28,0x79,0x3d,0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x29,0x3b,0x79,0x26,0x26, 0x28,0x7a,0x6e,0x26,0x26,0x22,0x6b,0x6f,0x22,0x21,0x3d,0x3d,0x6e,0x2e,0x6c,0x6f, 0x63,0x61,0x6c,0x65,0x26,0x26,0x28,0x56,0x6e,0x7c,0x7c,0x22,0x6f,0x6e,0x43,0x6f, 0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x21, 0x3d,0x3d,0x79,0x3f,0x22,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x45,0x6e,0x64,0x22,0x3d,0x3d,0x3d,0x79,0x26,0x26,0x56,0x6e,0x26,0x26, 0x28,0x62,0x3d,0x72,0x6e,0x28,0x29,0x29,0x3a,0x28,0x74,0x6e,0x3d,0x22,0x76,0x61, 0x6c,0x75,0x65,0x22,0x69,0x6e,0x28,0x65,0x6e,0x3d,0x6f,0x29,0x3f,0x65,0x6e,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2c,0x56,0x6e,0x3d,0x21,0x30,0x29,0x29,0x2c,0x30,0x3c,0x28, 0x6d,0x3d,0x46,0x72,0x28,0x72,0x2c,0x79,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x26,0x26,0x28,0x79,0x3d,0x6e,0x65,0x77,0x20,0x78,0x6e,0x28,0x79,0x2c,0x65, 0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x2c,0x6f,0x29,0x2c,0x61,0x2e,0x70,0x75,0x73, 0x68,0x28,0x7b,0x65,0x76,0x65,0x6e,0x74,0x3a,0x79,0x2c,0x6c,0x69,0x73,0x74,0x65, 0x6e,0x65,0x72,0x73,0x3a,0x6d,0x7d,0x29,0x2c,0x62,0x3f,0x79,0x2e,0x64,0x61,0x74, 0x61,0x3d,0x62,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x62,0x3d,0x48,0x6e, 0x28,0x6e,0x29,0x29,0x26,0x26,0x28,0x79,0x2e,0x64,0x61,0x74,0x61,0x3d,0x62,0x29, 0x29,0x29,0x2c,0x28,0x62,0x3d,0x42,0x6e,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29, 0x7b,0x63,0x61,0x73,0x65,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x6e,0x28, 0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73, 0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x33,0x32,0x21,0x3d,0x3d,0x74,0x2e, 0x77,0x68,0x69,0x63,0x68,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x28,0x57,0x6e,0x3d,0x21, 0x30,0x2c,0x55,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x65,0x78,0x74,0x49, 0x6e,0x70,0x75,0x74,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x74, 0x2e,0x64,0x61,0x74,0x61,0x29,0x3d,0x3d,0x3d,0x55,0x6e,0x26,0x26,0x57,0x6e,0x3f, 0x6e,0x75,0x6c,0x6c,0x3a,0x65,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x28,0x65,0x2c,0x6e, 0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x69,0x66,0x28,0x56,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x63,0x6f,0x6d, 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x22,0x3d,0x3d,0x3d,0x65, 0x7c,0x7c,0x21,0x46,0x6e,0x26,0x26,0x24,0x6e,0x28,0x65,0x2c,0x74,0x29,0x3f,0x28, 0x65,0x3d,0x72,0x6e,0x28,0x29,0x2c,0x6e,0x6e,0x3d,0x74,0x6e,0x3d,0x65,0x6e,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x56,0x6e,0x3d,0x21,0x31,0x2c,0x65,0x29,0x3a,0x6e,0x75, 0x6c,0x6c,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c, 0x3b,0x63,0x61,0x73,0x65,0x22,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73,0x22,0x3a, 0x69,0x66,0x28,0x21,0x28,0x74,0x2e,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x7c,0x7c, 0x74,0x2e,0x61,0x6c,0x74,0x4b,0x65,0x79,0x7c,0x7c,0x74,0x2e,0x6d,0x65,0x74,0x61, 0x4b,0x65,0x79,0x29,0x7c,0x7c,0x74,0x2e,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x26, 0x26,0x74,0x2e,0x61,0x6c,0x74,0x4b,0x65,0x79,0x29,0x7b,0x69,0x66,0x28,0x74,0x2e, 0x63,0x68,0x61,0x72,0x26,0x26,0x31,0x3c,0x74,0x2e,0x63,0x68,0x61,0x72,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63, 0x68,0x61,0x72,0x3b,0x69,0x66,0x28,0x74,0x2e,0x77,0x68,0x69,0x63,0x68,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x66,0x72,0x6f, 0x6d,0x43,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x28,0x74,0x2e,0x77,0x68,0x69,0x63, 0x68,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x63, 0x61,0x73,0x65,0x22,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65, 0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7a,0x6e,0x26,0x26,0x22, 0x6b,0x6f,0x22,0x21,0x3d,0x3d,0x74,0x2e,0x6c,0x6f,0x63,0x61,0x6c,0x65,0x3f,0x6e, 0x75,0x6c,0x6c,0x3a,0x74,0x2e,0x64,0x61,0x74,0x61,0x7d,0x7d,0x28,0x65,0x2c,0x6e, 0x29,0x29,0x26,0x26,0x28,0x30,0x3c,0x28,0x72,0x3d,0x46,0x72,0x28,0x72,0x2c,0x22, 0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x49,0x6e,0x70,0x75,0x74,0x22,0x29,0x29, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x6f,0x3d,0x6e,0x65,0x77,0x20, 0x78,0x6e,0x28,0x22,0x6f,0x6e,0x42,0x65,0x66,0x6f,0x72,0x65,0x49,0x6e,0x70,0x75, 0x74,0x22,0x2c,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x69,0x6e,0x70,0x75,0x74,0x22, 0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x2c,0x6f,0x29,0x2c,0x61,0x2e,0x70,0x75,0x73, 0x68,0x28,0x7b,0x65,0x76,0x65,0x6e,0x74,0x3a,0x6f,0x2c,0x6c,0x69,0x73,0x74,0x65, 0x6e,0x65,0x72,0x73,0x3a,0x72,0x7d,0x29,0x2c,0x6f,0x2e,0x64,0x61,0x74,0x61,0x3d, 0x62,0x29,0x29,0x7d,0x41,0x72,0x28,0x61,0x2c,0x74,0x29,0x7d,0x29,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x3a,0x65,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3a,0x74,0x2c,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x6e,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x72,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2b,0x22,0x43,0x61, 0x70,0x74,0x75,0x72,0x65,0x22,0x2c,0x72,0x3d,0x5b,0x5d,0x3b,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2c,0x69, 0x3d,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x35,0x3d,0x3d, 0x3d,0x6f,0x2e,0x74,0x61,0x67,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69, 0x26,0x26,0x28,0x6f,0x3d,0x69,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x69,0x3d, 0x7a,0x65,0x28,0x65,0x2c,0x6e,0x29,0x29,0x26,0x26,0x72,0x2e,0x75,0x6e,0x73,0x68, 0x69,0x66,0x74,0x28,0x4c,0x72,0x28,0x65,0x2c,0x69,0x2c,0x6f,0x29,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x28,0x69,0x3d,0x7a,0x65,0x28,0x65,0x2c,0x74,0x29,0x29, 0x26,0x26,0x72,0x2e,0x70,0x75,0x73,0x68,0x28,0x4c,0x72,0x28,0x65,0x2c,0x69,0x2c, 0x6f,0x29,0x29,0x29,0x2c,0x65,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x4d,0x72,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b, 0x64,0x6f,0x7b,0x65,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x77,0x68, 0x69,0x6c,0x65,0x28,0x65,0x26,0x26,0x35,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x72,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x69,0x3d,0x74,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x4e,0x61,0x6d,0x65,0x2c,0x61, 0x3d,0x5b,0x5d,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x6e,0x21, 0x3d,0x3d,0x72,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x6e,0x2c,0x63,0x3d, 0x75,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x2c,0x6c,0x3d,0x75,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x63,0x26,0x26,0x63,0x3d,0x3d,0x3d,0x72,0x29,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x35,0x3d,0x3d,0x3d,0x75,0x2e,0x74,0x61,0x67,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x6c,0x26,0x26,0x28,0x75,0x3d,0x6c,0x2c,0x6f,0x3f,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x28,0x63,0x3d,0x7a,0x65,0x28,0x6e,0x2c,0x69,0x29,0x29, 0x26,0x26,0x61,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x28,0x4c,0x72,0x28,0x6e, 0x2c,0x63,0x2c,0x75,0x29,0x29,0x3a,0x6f,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x28,0x63,0x3d,0x7a,0x65,0x28,0x6e,0x2c,0x69,0x29,0x29,0x26,0x26,0x61,0x2e,0x70, 0x75,0x73,0x68,0x28,0x4c,0x72,0x28,0x6e,0x2c,0x63,0x2c,0x75,0x29,0x29,0x29,0x2c, 0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x30,0x21,0x3d,0x3d,0x61, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x65,0x2e,0x70,0x75,0x73,0x68,0x28, 0x7b,0x65,0x76,0x65,0x6e,0x74,0x3a,0x74,0x2c,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65, 0x72,0x73,0x3a,0x61,0x7d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x7a,0x72,0x28,0x29,0x7b,0x7d,0x76,0x61,0x72,0x20,0x55,0x72,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x57,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x24,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22, 0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x21,0x74,0x2e,0x61,0x75,0x74,0x6f,0x46,0x6f,0x63,0x75,0x73,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x48,0x72,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x74, 0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x6e,0x6f,0x73, 0x63,0x72,0x69,0x70,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x7c,0x7c,0x22,0x6e,0x75,0x6d,0x62,0x65, 0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x7c,0x7c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x64,0x61,0x6e,0x67, 0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48, 0x54,0x4d,0x4c,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x64,0x61, 0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65, 0x72,0x48,0x54,0x4d,0x4c,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x64, 0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e, 0x65,0x72,0x48,0x54,0x4d,0x4c,0x2e,0x5f,0x5f,0x68,0x74,0x6d,0x6c,0x7d,0x76,0x61, 0x72,0x20,0x56,0x72,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x3f,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x47,0x72,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x6c,0x65, 0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3f,0x63,0x6c,0x65,0x61,0x72,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x72,0x28,0x65,0x29,0x7b,0x31,0x3d,0x3d, 0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x65,0x2e,0x74,0x65, 0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x22,0x3a,0x39,0x3d,0x3d, 0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x62,0x6f,0x64,0x79,0x29,0x26,0x26, 0x28,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22, 0x22,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x72,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x3b, 0x65,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70, 0x65,0x3b,0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x33,0x3d,0x3d,0x3d, 0x74,0x29,0x62,0x72,0x65,0x61,0x6b,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x72,0x28,0x65,0x29,0x7b, 0x65,0x3d,0x65,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x53,0x69,0x62,0x6c, 0x69,0x6e,0x67,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x30,0x3b, 0x65,0x3b,0x29,0x7b,0x69,0x66,0x28,0x38,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x64, 0x61,0x74,0x61,0x3b,0x69,0x66,0x28,0x22,0x24,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c, 0x22,0x24,0x21,0x22,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x22,0x24,0x3f,0x22,0x3d,0x3d, 0x3d,0x6e,0x29,0x7b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3b,0x74,0x2d,0x2d,0x7d,0x65,0x6c,0x73,0x65,0x22,0x2f, 0x24,0x22,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x74,0x2b,0x2b,0x7d,0x65,0x3d,0x65,0x2e, 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x76,0x61,0x72,0x20, 0x51,0x72,0x3d,0x30,0x3b,0x76,0x61,0x72,0x20,0x58,0x72,0x3d,0x4d,0x61,0x74,0x68, 0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69, 0x6e,0x67,0x28,0x33,0x36,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x32,0x29,0x2c, 0x4a,0x72,0x3d,0x22,0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x46,0x69,0x62,0x65,0x72, 0x24,0x22,0x2b,0x58,0x72,0x2c,0x5a,0x72,0x3d,0x22,0x5f,0x5f,0x72,0x65,0x61,0x63, 0x74,0x50,0x72,0x6f,0x70,0x73,0x24,0x22,0x2b,0x58,0x72,0x2c,0x65,0x6f,0x3d,0x22, 0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x24,0x22,0x2b,0x58,0x72,0x2c,0x74,0x6f,0x3d,0x22,0x5f,0x5f,0x72,0x65,0x61,0x63, 0x74,0x45,0x76,0x65,0x6e,0x74,0x73,0x24,0x22,0x2b,0x58,0x72,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x5b,0x4a,0x72,0x5d,0x3b,0x69,0x66,0x28,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b,0x6e,0x3b,0x29, 0x7b,0x69,0x66,0x28,0x74,0x3d,0x6e,0x5b,0x65,0x6f,0x5d,0x7c,0x7c,0x6e,0x5b,0x4a, 0x72,0x5d,0x29,0x7b,0x69,0x66,0x28,0x6e,0x3d,0x74,0x2e,0x61,0x6c,0x74,0x65,0x72, 0x6e,0x61,0x74,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x66,0x6f, 0x72,0x28,0x65,0x3d,0x59,0x72,0x28,0x65,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x65,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x3d,0x65,0x5b,0x4a,0x72,0x5d,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x65,0x3d,0x59,0x72,0x28,0x65,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x6e,0x3d,0x28,0x65,0x3d,0x6e, 0x29,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x72,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28, 0x65,0x3d,0x65,0x5b,0x4a,0x72,0x5d,0x7c,0x7c,0x65,0x5b,0x65,0x6f,0x5d,0x29,0x7c, 0x7c,0x35,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x26,0x26,0x36,0x21,0x3d,0x3d, 0x65,0x2e,0x74,0x61,0x67,0x26,0x26,0x31,0x33,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61, 0x67,0x26,0x26,0x33,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x3f,0x6e,0x75,0x6c, 0x6c,0x3a,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6f,0x28, 0x65,0x29,0x7b,0x69,0x66,0x28,0x35,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x7c, 0x7c,0x36,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x74,0x68, 0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6f,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x5a,0x72,0x5d,0x7c,0x7c,0x6e,0x75, 0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6f,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x5b,0x74,0x6f,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x26, 0x26,0x28,0x74,0x3d,0x65,0x5b,0x74,0x6f,0x5d,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65, 0x74,0x29,0x2c,0x74,0x7d,0x76,0x61,0x72,0x20,0x75,0x6f,0x3d,0x5b,0x5d,0x2c,0x63, 0x6f,0x3d,0x2d,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3a,0x65,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73, 0x6f,0x28,0x65,0x29,0x7b,0x30,0x3e,0x63,0x6f,0x7c,0x7c,0x28,0x65,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x75,0x6f,0x5b,0x63,0x6f,0x5d,0x2c,0x75,0x6f,0x5b, 0x63,0x6f,0x5d,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x63,0x6f,0x2d,0x2d,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x63,0x6f,0x2b,0x2b,0x2c,0x75,0x6f,0x5b,0x63,0x6f,0x5d,0x3d,0x65,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x2c,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d, 0x74,0x7d,0x76,0x61,0x72,0x20,0x70,0x6f,0x3d,0x7b,0x7d,0x2c,0x68,0x6f,0x3d,0x6c, 0x6f,0x28,0x70,0x6f,0x29,0x2c,0x76,0x6f,0x3d,0x6c,0x6f,0x28,0x21,0x31,0x29,0x2c, 0x67,0x6f,0x3d,0x70,0x6f,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d, 0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x74, 0x79,0x70,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x73, 0x3b,0x69,0x66,0x28,0x21,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x6f, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x3b,0x69,0x66,0x28,0x72,0x26,0x26,0x72,0x2e,0x5f,0x5f,0x72,0x65,0x61, 0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x55,0x6e,0x6d,0x61,0x73,0x6b,0x65,0x64,0x43,0x68,0x69,0x6c,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x2e,0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72, 0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x4d,0x61,0x73,0x6b,0x65, 0x64,0x43,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3b,0x76,0x61, 0x72,0x20,0x6f,0x2c,0x69,0x3d,0x7b,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x6f,0x20,0x69, 0x6e,0x20,0x6e,0x29,0x69,0x5b,0x6f,0x5d,0x3d,0x74,0x5b,0x6f,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x26,0x26,0x28,0x28,0x65,0x3d,0x65,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x5f,0x5f,0x72,0x65,0x61,0x63,0x74, 0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x55,0x6e,0x6d,0x61,0x73,0x6b,0x65,0x64,0x43,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3d,0x74,0x2c,0x65,0x2e,0x5f,0x5f,0x72,0x65,0x61,0x63,0x74, 0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x4d,0x61,0x73,0x6b,0x65,0x64,0x43,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x3d,0x69,0x29,0x2c,0x69,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x62,0x6f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x73,0x29,0x26,0x26,0x76,0x6f, 0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x79,0x6f,0x28,0x29,0x7b,0x73,0x6f,0x28,0x76,0x6f,0x29,0x2c,0x73,0x6f, 0x28,0x68,0x6f,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x6f, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x68,0x6f,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x21,0x3d,0x3d,0x70,0x6f,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x38,0x29,0x29,0x3b,0x66, 0x6f,0x28,0x68,0x6f,0x2c,0x74,0x29,0x2c,0x66,0x6f,0x28,0x76,0x6f,0x2c,0x6e,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x6f,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74, 0x65,0x4e,0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x65,0x3d,0x74,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x73,0x2c,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x72,0x2e,0x67,0x65,0x74,0x43,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x69,0x6e,0x20,0x72,0x3d,0x72,0x2e,0x67, 0x65,0x74,0x43,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x29, 0x29,0x69,0x66,0x28,0x21,0x28,0x69,0x20,0x69,0x6e,0x20,0x65,0x29,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x30,0x38,0x2c, 0x71,0x28,0x74,0x29,0x7c,0x7c,0x22,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x2c, 0x69,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x7b,0x7d,0x2c, 0x6e,0x2c,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x6f, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x28,0x65,0x3d, 0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x26,0x26,0x65,0x2e, 0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x4d,0x65,0x72,0x67,0x65,0x64,0x43,0x68,0x69, 0x6c,0x64,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7c,0x7c,0x70,0x6f,0x2c,0x67,0x6f, 0x3d,0x68,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x66,0x6f,0x28,0x68, 0x6f,0x2c,0x65,0x29,0x2c,0x66,0x6f,0x28,0x76,0x6f,0x2c,0x76,0x6f,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x21,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x78,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x69, 0x66,0x28,0x21,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x61,0x28,0x31,0x36,0x39,0x29,0x29,0x3b,0x6e,0x3f,0x28,0x65,0x3d,0x77,0x6f, 0x28,0x65,0x2c,0x74,0x2c,0x67,0x6f,0x29,0x2c,0x72,0x2e,0x5f,0x5f,0x72,0x65,0x61, 0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x4d,0x65,0x72,0x67,0x65,0x64,0x43,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3d,0x65,0x2c,0x73,0x6f,0x28,0x76,0x6f,0x29,0x2c,0x73,0x6f, 0x28,0x68,0x6f,0x29,0x2c,0x66,0x6f,0x28,0x68,0x6f,0x2c,0x65,0x29,0x29,0x3a,0x73, 0x6f,0x28,0x76,0x6f,0x29,0x2c,0x66,0x6f,0x28,0x76,0x6f,0x2c,0x6e,0x29,0x7d,0x76, 0x61,0x72,0x20,0x45,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6a,0x6f,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x6b,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x72,0x75,0x6e,0x57,0x69,0x74,0x68,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79, 0x2c,0x53,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x73, 0x63,0x68,0x65,0x64,0x75,0x6c,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c, 0x43,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x63,0x61, 0x6e,0x63,0x65,0x6c,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x41,0x6f,0x3d, 0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x73,0x68,0x6f,0x75,0x6c, 0x64,0x59,0x69,0x65,0x6c,0x64,0x2c,0x54,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x50,0x61,0x69,0x6e, 0x74,0x2c,0x50,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f, 0x6e,0x6f,0x77,0x2c,0x44,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c, 0x65,0x5f,0x67,0x65,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x72,0x69,0x6f, 0x72,0x69,0x74,0x79,0x4c,0x65,0x76,0x65,0x6c,0x2c,0x4e,0x6f,0x3d,0x69,0x2e,0x75, 0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74, 0x65,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x49,0x6f,0x3d,0x69,0x2e,0x75, 0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x55,0x73,0x65,0x72,0x42,0x6c,0x6f,0x63, 0x6b,0x69,0x6e,0x67,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x52,0x6f,0x3d, 0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x4e,0x6f,0x72,0x6d,0x61, 0x6c,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x4c,0x6f,0x3d,0x69,0x2e,0x75, 0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x4c,0x6f,0x77,0x50,0x72,0x69,0x6f,0x72, 0x69,0x74,0x79,0x2c,0x46,0x6f,0x3d,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c, 0x65,0x5f,0x49,0x64,0x6c,0x65,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x2c,0x4d, 0x6f,0x3d,0x7b,0x7d,0x2c,0x42,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x54,0x6f,0x3f,0x54,0x6f,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x7d,0x2c,0x7a,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x55,0x6f,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x57,0x6f,0x3d,0x21,0x31,0x2c,0x24,0x6f,0x3d,0x50,0x6f,0x28, 0x29,0x2c,0x48,0x6f,0x3d,0x31,0x65,0x34,0x3e,0x24,0x6f,0x3f,0x50,0x6f,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x50,0x6f,0x28,0x29,0x2d,0x24,0x6f,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x56,0x6f,0x28,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x44, 0x6f,0x28,0x29,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x4e,0x6f,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x39,0x39,0x3b,0x63,0x61,0x73,0x65,0x20,0x49,0x6f,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x38,0x3b,0x63,0x61,0x73,0x65,0x20,0x52,0x6f, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x37,0x3b,0x63,0x61,0x73,0x65,0x20, 0x4c,0x6f,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x36,0x3b,0x63,0x61,0x73, 0x65,0x20,0x46,0x6f,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x35,0x3b,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x32,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x47,0x6f,0x28,0x65,0x29,0x7b,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x39,0x39,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4e,0x6f,0x3b,0x63,0x61,0x73,0x65,0x20,0x39,0x38,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x6f,0x3b,0x63,0x61,0x73,0x65,0x20,0x39,0x37, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x6f,0x3b,0x63,0x61,0x73,0x65,0x20, 0x39,0x36,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4c,0x6f,0x3b,0x63,0x61,0x73, 0x65,0x20,0x39,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x6f,0x3b,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x32,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x71,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3d,0x47,0x6f,0x28,0x65,0x29,0x2c,0x6b,0x6f,0x28,0x65, 0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x6f,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d, 0x47,0x6f,0x28,0x65,0x29,0x2c,0x53,0x6f,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x6f,0x28,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x55,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x55,0x6f,0x3b,0x55,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x43,0x6f,0x28, 0x65,0x29,0x7d,0x51,0x6f,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x51,0x6f,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x57,0x6f,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x7a,0x6f,0x29,0x7b,0x57,0x6f,0x3d,0x21,0x30,0x3b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x30,0x3b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x7a,0x6f,0x3b,0x71,0x6f,0x28,0x39,0x39,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x65,0x3c,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x65,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x5b,0x65,0x5d,0x3b,0x64,0x6f,0x7b,0x6e,0x3d,0x6e,0x28,0x21,0x30,0x29, 0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x29, 0x7d,0x7d,0x29,0x29,0x2c,0x7a,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x63,0x61,0x74, 0x63,0x68,0x28,0x6e,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x7a,0x6f,0x26,0x26,0x28,0x7a,0x6f,0x3d,0x7a,0x6f,0x2e,0x73,0x6c, 0x69,0x63,0x65,0x28,0x65,0x2b,0x31,0x29,0x29,0x2c,0x53,0x6f,0x28,0x4e,0x6f,0x2c, 0x59,0x6f,0x29,0x2c,0x6e,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x57,0x6f, 0x3d,0x21,0x31,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x58,0x6f,0x3d,0x77,0x2e,0x52, 0x65,0x61,0x63,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x42,0x61,0x74,0x63,0x68, 0x43,0x6f,0x6e,0x66,0x69,0x67,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x4a,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x26,0x26,0x65,0x2e, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x74,0x3d,0x6f,0x28,0x7b, 0x7d,0x2c,0x74,0x29,0x2c,0x65,0x3d,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x50,0x72,0x6f,0x70,0x73,0x29,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x5b,0x6e,0x5d,0x26,0x26,0x28,0x74,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x7d,0x76,0x61,0x72,0x20,0x5a,0x6f,0x3d,0x6c,0x6f,0x28,0x6e,0x75,0x6c, 0x6c,0x29,0x2c,0x65,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x69,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x6e,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x72,0x69,0x28,0x29,0x7b,0x6e,0x69,0x3d,0x74,0x69,0x3d,0x65, 0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6f,0x69,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5a,0x6f,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x73,0x6f,0x28,0x5a,0x6f,0x29,0x2c,0x65,0x2e, 0x74,0x79,0x70,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2e,0x5f,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x3d,0x74,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65, 0x3b,0x69,0x66,0x28,0x28,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x26,0x74,0x29,0x3d,0x3d,0x3d,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x28,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c, 0x61,0x6e,0x65,0x73,0x26,0x74,0x29,0x3d,0x3d,0x3d,0x74,0x29,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d, 0x74,0x7d,0x65,0x6c,0x73,0x65,0x20,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x7c,0x3d,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26, 0x26,0x28,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d, 0x74,0x29,0x3b,0x65,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x65,0x69,0x3d,0x65,0x2c,0x6e,0x69,0x3d,0x74,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x64,0x65,0x70,0x65, 0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x26,0x26,0x28,0x30,0x21,0x3d,0x3d,0x28,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x26, 0x74,0x29,0x26,0x26,0x28,0x46,0x61,0x3d,0x21,0x30,0x29,0x2c,0x65,0x2e,0x66,0x69, 0x72,0x73,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x69,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x69,0x21,0x3d,0x3d,0x65,0x26,0x26,0x21,0x31,0x21, 0x3d,0x3d,0x74,0x26,0x26,0x30,0x21,0x3d,0x3d,0x74,0x29,0x69,0x66,0x28,0x22,0x6e, 0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x26,0x26,0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x33,0x21,0x3d,0x3d, 0x74,0x7c,0x7c,0x28,0x6e,0x69,0x3d,0x65,0x2c,0x74,0x3d,0x31,0x30,0x37,0x33,0x37, 0x34,0x31,0x38,0x32,0x33,0x29,0x2c,0x74,0x3d,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x3a,0x65,0x2c,0x6f,0x62,0x73,0x65,0x72,0x76,0x65,0x64,0x42,0x69,0x74,0x73, 0x3a,0x74,0x2c,0x6e,0x65,0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x69,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x65,0x69,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x61,0x28,0x33,0x30,0x38,0x29,0x29,0x3b,0x74,0x69,0x3d,0x74,0x2c,0x65, 0x69,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x3d,0x7b, 0x6c,0x61,0x6e,0x65,0x73,0x3a,0x30,0x2c,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3a,0x74,0x2c,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72, 0x73,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x69,0x3d, 0x74,0x69,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65, 0x7d,0x76,0x61,0x72,0x20,0x63,0x69,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6c,0x69,0x28,0x65,0x29,0x7b,0x65,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x7b,0x62,0x61,0x73,0x65,0x53,0x74,0x61, 0x74,0x65,0x3a,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x2c,0x66,0x69,0x72,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61, 0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65, 0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x68,0x61,0x72, 0x65,0x64,0x3a,0x7b,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x2c,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x69,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x65,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x2c,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x3d, 0x3d,0x65,0x26,0x26,0x28,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65, 0x75,0x65,0x3d,0x7b,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x65,0x2e, 0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x2c,0x66,0x69,0x72,0x73,0x74,0x42, 0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x65,0x2e,0x66,0x69,0x72,0x73, 0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x2c,0x6c,0x61,0x73,0x74, 0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x65,0x2e,0x6c,0x61,0x73, 0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x2c,0x73,0x68,0x61,0x72, 0x65,0x64,0x3a,0x65,0x2e,0x73,0x68,0x61,0x72,0x65,0x64,0x2c,0x65,0x66,0x66,0x65, 0x63,0x74,0x73,0x3a,0x65,0x2e,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x7d,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x69,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x65,0x76,0x65,0x6e,0x74,0x54,0x69,0x6d, 0x65,0x3a,0x65,0x2c,0x6c,0x61,0x6e,0x65,0x3a,0x74,0x2c,0x74,0x61,0x67,0x3a,0x30, 0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x63,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x65,0x78,0x74, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x64,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65, 0x75,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x28,0x65,0x3d,0x65,0x2e, 0x73,0x68,0x61,0x72,0x65,0x64,0x29,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3b, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x3f,0x74,0x2e,0x6e,0x65,0x78,0x74,0x3d, 0x74,0x3a,0x28,0x74,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74, 0x2c,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x74,0x29,0x2c,0x65,0x2e,0x70,0x65,0x6e, 0x64,0x69,0x6e,0x67,0x3d,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x70,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x2c,0x72,0x3d,0x65, 0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26,0x6e,0x3d,0x3d,0x3d,0x28,0x72,0x3d,0x72, 0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x6e,0x2e, 0x66,0x69,0x72,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x29, 0x29,0x7b,0x64,0x6f,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x7b,0x65,0x76,0x65,0x6e, 0x74,0x54,0x69,0x6d,0x65,0x3a,0x6e,0x2e,0x65,0x76,0x65,0x6e,0x74,0x54,0x69,0x6d, 0x65,0x2c,0x6c,0x61,0x6e,0x65,0x3a,0x6e,0x2e,0x6c,0x61,0x6e,0x65,0x2c,0x74,0x61, 0x67,0x3a,0x6e,0x2e,0x74,0x61,0x67,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a, 0x6e,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x63,0x61,0x6c,0x6c,0x62,0x61, 0x63,0x6b,0x3a,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x6e,0x65, 0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x69,0x3f,0x6f,0x3d,0x69,0x3d,0x61,0x3a,0x69,0x3d,0x69,0x2e,0x6e,0x65,0x78,0x74, 0x3d,0x61,0x2c,0x6e,0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x7d,0x77,0x68,0x69,0x6c, 0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x29,0x3b,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x69,0x3f,0x6f,0x3d,0x69,0x3d,0x74,0x3a,0x69,0x3d,0x69,0x2e,0x6e, 0x65,0x78,0x74,0x3d,0x74,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6f,0x3d,0x69,0x3d,0x74, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x7b,0x62,0x61,0x73,0x65,0x53, 0x74,0x61,0x74,0x65,0x3a,0x72,0x2e,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65, 0x2c,0x66,0x69,0x72,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65, 0x3a,0x6f,0x2c,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74, 0x65,0x3a,0x69,0x2c,0x73,0x68,0x61,0x72,0x65,0x64,0x3a,0x72,0x2e,0x73,0x68,0x61, 0x72,0x65,0x64,0x2c,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x72,0x2e,0x65,0x66, 0x66,0x65,0x63,0x74,0x73,0x7d,0x2c,0x76,0x6f,0x69,0x64,0x28,0x65,0x2e,0x75,0x70, 0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6e,0x29,0x7d,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x6e,0x2e,0x6c,0x61,0x73,0x74,0x42,0x61,0x73, 0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x29,0x3f,0x6e,0x2e,0x66,0x69,0x72,0x73,0x74, 0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x74,0x3a,0x65,0x2e,0x6e, 0x65,0x78,0x74,0x3d,0x74,0x2c,0x6e,0x2e,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65, 0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x68,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61, 0x72,0x20,0x69,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75, 0x65,0x3b,0x63,0x69,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x69,0x2e, 0x66,0x69,0x72,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x2c, 0x75,0x3d,0x69,0x2e,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61, 0x74,0x65,0x2c,0x63,0x3d,0x69,0x2e,0x73,0x68,0x61,0x72,0x65,0x64,0x2e,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x63,0x29,0x7b,0x69,0x2e,0x73,0x68,0x61,0x72,0x65,0x64,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x63, 0x2c,0x73,0x3d,0x6c,0x2e,0x6e,0x65,0x78,0x74,0x3b,0x6c,0x2e,0x6e,0x65,0x78,0x74, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x75,0x3f,0x61, 0x3d,0x73,0x3a,0x75,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x73,0x2c,0x75,0x3d,0x6c,0x3b, 0x76,0x61,0x72,0x20,0x66,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74, 0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x66,0x29,0x7b,0x76, 0x61,0x72,0x20,0x64,0x3d,0x28,0x66,0x3d,0x66,0x2e,0x75,0x70,0x64,0x61,0x74,0x65, 0x51,0x75,0x65,0x75,0x65,0x29,0x2e,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65,0x55, 0x70,0x64,0x61,0x74,0x65,0x3b,0x64,0x21,0x3d,0x3d,0x75,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x64,0x3f,0x66,0x2e,0x66,0x69,0x72,0x73,0x74,0x42,0x61, 0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x73,0x3a,0x64,0x2e,0x6e,0x65,0x78, 0x74,0x3d,0x73,0x2c,0x66,0x2e,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70, 0x64,0x61,0x74,0x65,0x3d,0x6c,0x29,0x7d,0x7d,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x61,0x29,0x7b,0x66,0x6f,0x72,0x28,0x64,0x3d,0x69,0x2e,0x62,0x61, 0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x2c,0x75,0x3d,0x30,0x2c,0x66,0x3d,0x73,0x3d, 0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x3b,0x29,0x7b,0x63,0x3d,0x61,0x2e,0x6c,0x61, 0x6e,0x65,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74, 0x54,0x69,0x6d,0x65,0x3b,0x69,0x66,0x28,0x28,0x72,0x26,0x63,0x29,0x3d,0x3d,0x3d, 0x63,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x66,0x26,0x26,0x28,0x66,0x3d, 0x66,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x7b,0x65,0x76,0x65,0x6e,0x74,0x54,0x69,0x6d, 0x65,0x3a,0x70,0x2c,0x6c,0x61,0x6e,0x65,0x3a,0x30,0x2c,0x74,0x61,0x67,0x3a,0x61, 0x2e,0x74,0x61,0x67,0x2c,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3a,0x61,0x2e,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a, 0x61,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x6e,0x65,0x78,0x74,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x3b,0x65,0x3a,0x7b,0x76,0x61,0x72,0x20,0x68,0x3d, 0x65,0x2c,0x76,0x3d,0x61,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x63,0x3d,0x74, 0x2c,0x70,0x3d,0x6e,0x2c,0x76,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65, 0x20,0x31,0x3a,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x68,0x3d,0x76,0x2e,0x70,0x61, 0x79,0x6c,0x6f,0x61,0x64,0x29,0x29,0x7b,0x64,0x3d,0x68,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x70,0x2c,0x64,0x2c,0x63,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d, 0x64,0x3d,0x68,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65, 0x20,0x33,0x3a,0x68,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x2d,0x34,0x30,0x39,0x37, 0x26,0x68,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x36,0x34,0x3b,0x63,0x61,0x73,0x65, 0x20,0x30,0x3a,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x63,0x3d, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x28,0x68,0x3d,0x76,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x29, 0x3f,0x68,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x70,0x2c,0x64,0x2c,0x63,0x29,0x3a,0x68, 0x29,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x29,0x62,0x72, 0x65,0x61,0x6b,0x20,0x65,0x3b,0x64,0x3d,0x6f,0x28,0x7b,0x7d,0x2c,0x64,0x2c,0x63, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x32, 0x3a,0x63,0x69,0x3d,0x21,0x30,0x7d,0x7d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x61, 0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x26,0x26,0x28,0x65,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x7c,0x3d,0x33,0x32,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28, 0x63,0x3d,0x69,0x2e,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x29,0x3f,0x69,0x2e,0x65, 0x66,0x66,0x65,0x63,0x74,0x73,0x3d,0x5b,0x61,0x5d,0x3a,0x63,0x2e,0x70,0x75,0x73, 0x68,0x28,0x61,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x70,0x3d,0x7b,0x65,0x76, 0x65,0x6e,0x74,0x54,0x69,0x6d,0x65,0x3a,0x70,0x2c,0x6c,0x61,0x6e,0x65,0x3a,0x63, 0x2c,0x74,0x61,0x67,0x3a,0x61,0x2e,0x74,0x61,0x67,0x2c,0x70,0x61,0x79,0x6c,0x6f, 0x61,0x64,0x3a,0x61,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x2c,0x63,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x3a,0x61,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x2c,0x6e,0x65,0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x66,0x3f,0x28,0x73,0x3d,0x66,0x3d,0x70,0x2c,0x6c,0x3d,0x64,0x29, 0x3a,0x66,0x3d,0x66,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x70,0x2c,0x75,0x7c,0x3d,0x63, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x61,0x3d,0x61,0x2e, 0x6e,0x65,0x78,0x74,0x29,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x28,0x63,0x3d,0x69,0x2e,0x73,0x68,0x61,0x72,0x65,0x64,0x2e,0x70,0x65,0x6e, 0x64,0x69,0x6e,0x67,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x61,0x3d,0x63,0x2e, 0x6e,0x65,0x78,0x74,0x2c,0x63,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x69,0x2e,0x6c,0x61,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74, 0x65,0x3d,0x63,0x2c,0x69,0x2e,0x73,0x68,0x61,0x72,0x65,0x64,0x2e,0x70,0x65,0x6e, 0x64,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x66,0x26,0x26,0x28,0x6c,0x3d,0x64,0x29,0x2c,0x69,0x2e,0x62,0x61,0x73, 0x65,0x53,0x74,0x61,0x74,0x65,0x3d,0x6c,0x2c,0x69,0x2e,0x66,0x69,0x72,0x73,0x74, 0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x73,0x2c,0x69,0x2e,0x6c, 0x61,0x73,0x74,0x42,0x61,0x73,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x66,0x2c, 0x55,0x75,0x7c,0x3d,0x75,0x2c,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x75,0x2c, 0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d, 0x64,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x65,0x3d,0x74,0x2e,0x65,0x66,0x66, 0x65,0x63,0x74,0x73,0x2c,0x74,0x2e,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x29,0x66,0x6f,0x72, 0x28,0x74,0x3d,0x30,0x3b,0x74,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x5b,0x74,0x5d,0x2c, 0x6f,0x3d,0x72,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x29,0x7b,0x69,0x66,0x28,0x72,0x2e,0x63, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x3d,0x6e, 0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6f,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x31,0x39,0x31,0x2c,0x6f,0x29,0x29,0x3b,0x6f,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x72,0x29,0x7d,0x7d,0x7d,0x76,0x61,0x72,0x20,0x67,0x69,0x3d, 0x28,0x6e,0x65,0x77,0x20,0x72,0x2e,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74, 0x29,0x2e,0x72,0x65,0x66,0x73,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6d,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x6e,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6e,0x3d,0x6e,0x28,0x72,0x2c,0x74,0x3d,0x65,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x29,0x7c, 0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x74,0x3a,0x6f,0x28, 0x7b,0x7d,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x2c,0x30,0x3d,0x3d,0x3d,0x65,0x2e, 0x6c,0x61,0x6e,0x65,0x73,0x26,0x26,0x28,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65, 0x51,0x75,0x65,0x75,0x65,0x2e,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3d, 0x6e,0x29,0x7d,0x76,0x61,0x72,0x20,0x62,0x69,0x3d,0x7b,0x69,0x73,0x4d,0x6f,0x75, 0x6e,0x74,0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x28,0x65,0x3d,0x65,0x2e,0x5f,0x72, 0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x29,0x26,0x26, 0x51,0x65,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x65,0x7d,0x2c,0x65,0x6e,0x71,0x75,0x65, 0x75,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x65,0x3d,0x65,0x2e,0x5f, 0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x64,0x63,0x28,0x29,0x2c,0x6f,0x3d,0x70,0x63,0x28,0x65, 0x29,0x2c,0x69,0x3d,0x66,0x69,0x28,0x72,0x2c,0x6f,0x29,0x3b,0x69,0x2e,0x70,0x61, 0x79,0x6c,0x6f,0x61,0x64,0x3d,0x74,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x6e,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x69, 0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x6e,0x29,0x2c,0x64,0x69,0x28, 0x65,0x2c,0x69,0x29,0x2c,0x68,0x63,0x28,0x65,0x2c,0x6f,0x2c,0x72,0x29,0x7d,0x2c, 0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x52,0x65,0x70,0x6c,0x61,0x63,0x65,0x53,0x74, 0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x65,0x3d,0x65,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e, 0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x64,0x63, 0x28,0x29,0x2c,0x6f,0x3d,0x70,0x63,0x28,0x65,0x29,0x2c,0x69,0x3d,0x66,0x69,0x28, 0x72,0x2c,0x6f,0x29,0x3b,0x69,0x2e,0x74,0x61,0x67,0x3d,0x31,0x2c,0x69,0x2e,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x3d,0x74,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x6e,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28, 0x69,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x6e,0x29,0x2c,0x64,0x69, 0x28,0x65,0x2c,0x69,0x29,0x2c,0x68,0x63,0x28,0x65,0x2c,0x6f,0x2c,0x72,0x29,0x7d, 0x2c,0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x46,0x6f,0x72,0x63,0x65,0x55,0x70,0x64, 0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x65,0x3d,0x65,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65, 0x72,0x6e,0x61,0x6c,0x73,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x64,0x63,0x28,0x29, 0x2c,0x72,0x3d,0x70,0x63,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x66,0x69,0x28,0x6e,0x2c, 0x72,0x29,0x3b,0x6f,0x2e,0x74,0x61,0x67,0x3d,0x32,0x2c,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x74,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26, 0x26,0x28,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x74,0x29,0x2c, 0x64,0x69,0x28,0x65,0x2c,0x6f,0x29,0x2c,0x68,0x63,0x28,0x65,0x2c,0x72,0x2c,0x6e, 0x29,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x69,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x65,0x3d,0x65,0x2e,0x73,0x74,0x61, 0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x73,0x68,0x6f,0x75,0x6c,0x64,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x55,0x70,0x64,0x61,0x74,0x65,0x3f,0x65,0x2e, 0x73,0x68,0x6f,0x75,0x6c,0x64,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x55, 0x70,0x64,0x61,0x74,0x65,0x28,0x72,0x2c,0x69,0x2c,0x61,0x29,0x3a,0x21,0x74,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x7c,0x7c,0x21,0x74,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x69,0x73,0x50,0x75,0x72,0x65,0x52,0x65, 0x61,0x63,0x74,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x7c,0x7c,0x28,0x21, 0x64,0x72,0x28,0x6e,0x2c,0x72,0x29,0x7c,0x7c,0x21,0x64,0x72,0x28,0x6f,0x2c,0x69, 0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x69,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x21,0x31,0x2c,0x6f, 0x3d,0x70,0x6f,0x2c,0x69,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54, 0x79,0x70,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x3f,0x69,0x3d,0x75,0x69,0x28,0x69,0x29,0x3a, 0x28,0x6f,0x3d,0x62,0x6f,0x28,0x74,0x29,0x3f,0x67,0x6f,0x3a,0x68,0x6f,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x69,0x3d,0x28,0x72,0x3d,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x28,0x72,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54, 0x79,0x70,0x65,0x73,0x29,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x72,0x29,0x3f,0x6d,0x6f,0x28,0x65,0x2c,0x6f,0x29,0x3a,0x70,0x6f,0x29,0x2c,0x74, 0x3d,0x6e,0x65,0x77,0x20,0x74,0x28,0x6e,0x2c,0x69,0x29,0x2c,0x65,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x3f,0x74,0x2e,0x73, 0x74,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x72,0x3d,0x62,0x69,0x2c,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x3d,0x74,0x2c,0x74,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74, 0x65,0x72,0x6e,0x61,0x6c,0x73,0x3d,0x65,0x2c,0x72,0x26,0x26,0x28,0x28,0x65,0x3d, 0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x5f,0x5f,0x72, 0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x55,0x6e,0x6d,0x61,0x73,0x6b,0x65,0x64,0x43,0x68,0x69,0x6c, 0x64,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x6f,0x2c,0x65,0x2e,0x5f,0x5f,0x72, 0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x4d,0x61,0x73,0x6b,0x65,0x64,0x43,0x68,0x69,0x6c,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x69,0x29,0x2c,0x74,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x65,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74, 0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65, 0x63,0x65,0x69,0x76,0x65,0x50,0x72,0x6f,0x70,0x73,0x26,0x26,0x74,0x2e,0x63,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69, 0x76,0x65,0x50,0x72,0x6f,0x70,0x73,0x28,0x6e,0x2c,0x72,0x29,0x2c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x50,0x72, 0x6f,0x70,0x73,0x26,0x26,0x74,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69, 0x76,0x65,0x50,0x72,0x6f,0x70,0x73,0x28,0x6e,0x2c,0x72,0x29,0x2c,0x74,0x2e,0x73, 0x74,0x61,0x74,0x65,0x21,0x3d,0x3d,0x65,0x26,0x26,0x62,0x69,0x2e,0x65,0x6e,0x71, 0x75,0x65,0x75,0x65,0x52,0x65,0x70,0x6c,0x61,0x63,0x65,0x53,0x74,0x61,0x74,0x65, 0x28,0x74,0x2c,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x69,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x6f,0x2e,0x70,0x72,0x6f,0x70,0x73,0x3d, 0x6e,0x2c,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x6f,0x2e,0x72,0x65,0x66,0x73, 0x3d,0x67,0x69,0x2c,0x6c,0x69,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d, 0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65,0x3b,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x69,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x3f,0x6f,0x2e,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x3d,0x75,0x69,0x28,0x69,0x29,0x3a,0x28,0x69,0x3d,0x62, 0x6f,0x28,0x74,0x29,0x3f,0x67,0x6f,0x3a,0x68,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x2c,0x6f,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x6d,0x6f,0x28, 0x65,0x2c,0x69,0x29,0x29,0x2c,0x68,0x69,0x28,0x65,0x2c,0x6e,0x2c,0x6f,0x2c,0x72, 0x29,0x2c,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x69,0x3d, 0x74,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70,0x73,0x29,0x26,0x26,0x28,0x6d,0x69, 0x28,0x65,0x2c,0x74,0x2c,0x69,0x2c,0x6e,0x29,0x2c,0x6f,0x2e,0x73,0x74,0x61,0x74, 0x65,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69, 0x76,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70, 0x73,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70, 0x73,0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74,0x65, 0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63, 0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e, 0x74,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65, 0x6e,0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x7c,0x7c,0x28,0x74,0x3d, 0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x63,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74, 0x26,0x26,0x6f,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c, 0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x28,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x55, 0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57, 0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26,0x6f,0x2e,0x55,0x4e,0x53,0x41, 0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c, 0x4d,0x6f,0x75,0x6e,0x74,0x28,0x29,0x2c,0x74,0x21,0x3d,0x3d,0x6f,0x2e,0x73,0x74, 0x61,0x74,0x65,0x26,0x26,0x62,0x69,0x2e,0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x52, 0x65,0x70,0x6c,0x61,0x63,0x65,0x53,0x74,0x61,0x74,0x65,0x28,0x6f,0x2c,0x6f,0x2e, 0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x68,0x69,0x28,0x65, 0x2c,0x6e,0x2c,0x6f,0x2c,0x72,0x29,0x2c,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d, 0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29, 0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74, 0x44,0x69,0x64,0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26,0x28,0x65,0x2e,0x66,0x6c,0x61, 0x67,0x73,0x7c,0x3d,0x34,0x29,0x7d,0x76,0x61,0x72,0x20,0x78,0x69,0x3d,0x41,0x72, 0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x45,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x6e,0x2e,0x72,0x65, 0x66,0x29,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b, 0x69,0x66,0x28,0x6e,0x2e,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x29,0x7b,0x69,0x66,0x28, 0x6e,0x3d,0x6e,0x2e,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x29,0x7b,0x69,0x66,0x28,0x31, 0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45, 0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x30,0x39,0x29,0x29,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x7d,0x69, 0x66,0x28,0x21,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x61,0x28,0x31,0x34,0x37,0x2c,0x65,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x22,0x22,0x2b,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e, 0x72,0x65,0x66,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x72,0x65,0x66,0x26,0x26, 0x74,0x2e,0x72,0x65,0x66,0x2e,0x5f,0x73,0x74,0x72,0x69,0x6e,0x67,0x52,0x65,0x66, 0x3d,0x3d,0x3d,0x6f,0x3f,0x74,0x2e,0x72,0x65,0x66,0x3a,0x28,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x72,0x2e,0x72,0x65,0x66,0x73,0x3b,0x74,0x3d,0x3d,0x3d,0x67,0x69,0x26,0x26,0x28, 0x74,0x3d,0x72,0x2e,0x72,0x65,0x66,0x73,0x3d,0x7b,0x7d,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x5b,0x6f, 0x5d,0x3a,0x74,0x5b,0x6f,0x5d,0x3d,0x65,0x7d,0x2c,0x74,0x2e,0x5f,0x73,0x74,0x72, 0x69,0x6e,0x67,0x52,0x65,0x66,0x3d,0x6f,0x2c,0x74,0x29,0x7d,0x69,0x66,0x28,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61, 0x28,0x32,0x38,0x34,0x29,0x29,0x3b,0x69,0x66,0x28,0x21,0x6e,0x2e,0x5f,0x6f,0x77, 0x6e,0x65,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x61,0x28,0x32,0x39,0x30,0x2c,0x65,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x69,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61, 0x22,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x31,0x2c,0x22,0x5b,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x3d,0x3d,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x29,0x3f,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x6b, 0x65,0x79,0x73,0x20,0x7b,0x22,0x2b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65, 0x79,0x73,0x28,0x74,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c,0x20,0x22,0x29, 0x2b,0x22,0x7d,0x22,0x3a,0x74,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6b,0x69,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x74,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74, 0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x3f,0x28,0x72,0x2e,0x6e,0x65,0x78, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x2c,0x74,0x2e,0x6c,0x61,0x73,0x74, 0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x29,0x3a,0x74,0x2e,0x66,0x69,0x72,0x73, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x3d,0x6e,0x2c,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66, 0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73, 0x3d,0x38,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x6e, 0x2c,0x72,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x72,0x3b,0x29,0x74,0x28,0x6e,0x2c,0x72,0x29,0x2c,0x72,0x3d,0x72,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x65,0x3d,0x6e,0x65,0x77,0x20,0x4d,0x61, 0x70,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x3b,0x29,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x74,0x2e,0x6b,0x65,0x79,0x3f,0x65,0x2e,0x73,0x65,0x74,0x28,0x74, 0x2e,0x6b,0x65,0x79,0x2c,0x74,0x29,0x3a,0x65,0x2e,0x73,0x65,0x74,0x28,0x74,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x2c,0x74,0x29,0x2c,0x74,0x3d,0x74,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x47,0x63,0x28,0x65,0x2c,0x74,0x29,0x29,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x3d,0x30,0x2c,0x65,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x69,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3d,0x72,0x2c,0x65,0x3f,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x72,0x3d,0x74,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x29,0x3f,0x28,0x72,0x3d,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x29, 0x3c,0x6e,0x3f,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x32,0x2c,0x6e,0x29, 0x3a,0x72,0x3a,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x32,0x2c,0x6e,0x29, 0x3a,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x74,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26,0x28, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x32,0x29,0x2c,0x74,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74, 0x7c,0x7c,0x36,0x21,0x3d,0x3d,0x74,0x2e,0x74,0x61,0x67,0x3f,0x28,0x28,0x74,0x3d, 0x51,0x63,0x28,0x6e,0x2c,0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x72,0x29,0x29,0x2e, 0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x74,0x29,0x3a,0x28,0x28,0x74,0x3d, 0x6f,0x28,0x74,0x2c,0x6e,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65, 0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x3f, 0x28,0x28,0x72,0x3d,0x6f,0x28,0x74,0x2c,0x6e,0x2e,0x70,0x72,0x6f,0x70,0x73,0x29, 0x29,0x2e,0x72,0x65,0x66,0x3d,0x45,0x69,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x2c, 0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x72,0x29,0x3a,0x28,0x28, 0x72,0x3d,0x71,0x63,0x28,0x6e,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6e,0x2e,0x6b,0x65, 0x79,0x2c,0x6e,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x72,0x29,0x29,0x2e,0x72,0x65,0x66,0x3d,0x45,0x69, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x3d,0x65,0x2c,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x34,0x21,0x3d,0x3d,0x74, 0x2e,0x74,0x61,0x67,0x7c,0x7c,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64, 0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x21, 0x3d,0x3d,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66, 0x6f,0x7c,0x7c,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x69, 0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x21,0x3d,0x3d, 0x6e,0x2e,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, 0x3f,0x28,0x28,0x74,0x3d,0x58,0x63,0x28,0x6e,0x2c,0x65,0x2e,0x6d,0x6f,0x64,0x65, 0x2c,0x72,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x74,0x29, 0x3a,0x28,0x28,0x74,0x3d,0x6f,0x28,0x74,0x2c,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x7c,0x7c,0x5b,0x5d,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x3d,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x69,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x7c,0x7c,0x37,0x21,0x3d, 0x3d,0x74,0x2e,0x74,0x61,0x67,0x3f,0x28,0x28,0x74,0x3d,0x4b,0x63,0x28,0x6e,0x2c, 0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x72,0x2c,0x69,0x29,0x29,0x2e,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3d,0x65,0x2c,0x74,0x29,0x3a,0x28,0x28,0x74,0x3d,0x6f,0x28,0x74, 0x2c,0x6e,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x74,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x7c,0x7c,0x22,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x51,0x63,0x28,0x22,0x22,0x2b,0x74,0x2c, 0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x6e,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3d,0x65,0x2c,0x74,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74, 0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x4f,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e,0x3d,0x71,0x63,0x28,0x74,0x2e, 0x74,0x79,0x70,0x65,0x2c,0x74,0x2e,0x6b,0x65,0x79,0x2c,0x74,0x2e,0x70,0x72,0x6f, 0x70,0x73,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x6e, 0x29,0x29,0x2e,0x72,0x65,0x66,0x3d,0x45,0x69,0x28,0x65,0x2c,0x6e,0x75,0x6c,0x6c, 0x2c,0x74,0x29,0x2c,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x6e, 0x3b,0x63,0x61,0x73,0x65,0x20,0x78,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74, 0x3d,0x58,0x63,0x28,0x74,0x2c,0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x6e,0x29,0x29, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x74,0x7d,0x69,0x66,0x28,0x78, 0x69,0x28,0x74,0x29,0x7c,0x7c,0x57,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x74,0x3d,0x4b,0x63,0x28,0x74,0x2c,0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c, 0x6e,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d, 0x65,0x2c,0x74,0x3b,0x6a,0x69,0x28,0x65,0x2c,0x74,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x70,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x3f,0x74,0x2e,0x6b,0x65,0x79, 0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x7c,0x7c,0x22,0x6e, 0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x6f,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x63,0x28,0x65,0x2c,0x74,0x2c,0x22,0x22,0x2b, 0x6e,0x2c,0x72,0x29,0x3b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x6e,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x4f, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d, 0x6f,0x3f,0x6e,0x2e,0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x45,0x3f,0x66,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x3a,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x78,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d,0x6f, 0x3f,0x73,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x69,0x66,0x28,0x78,0x69,0x28,0x6e,0x29,0x7c,0x7c,0x57,0x28,0x6e,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x3f, 0x6e,0x75,0x6c,0x6c,0x3a,0x66,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6e, 0x75,0x6c,0x6c,0x29,0x3b,0x6a,0x69,0x28,0x65,0x2c,0x6e,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x68,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x69, 0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x72,0x7c,0x7c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x63,0x28,0x74,0x2c,0x65,0x3d,0x65,0x2e,0x67,0x65,0x74,0x28,0x6e,0x29, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x22,0x22,0x2b,0x72,0x2c,0x6f,0x29,0x3b,0x69, 0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x72,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x29, 0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x72,0x2e,0x24,0x24,0x74,0x79,0x70,0x65, 0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x4f,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x3d,0x65,0x2e,0x67,0x65,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x72,0x2e,0x6b,0x65,0x79,0x3f,0x6e,0x3a,0x72,0x2e,0x6b,0x65,0x79,0x29,0x7c, 0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x2e,0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x45, 0x3f,0x66,0x28,0x74,0x2c,0x65,0x2c,0x72,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6f,0x2c,0x72,0x2e,0x6b,0x65,0x79,0x29, 0x3a,0x6c,0x28,0x74,0x2c,0x65,0x2c,0x72,0x2c,0x6f,0x29,0x3b,0x63,0x61,0x73,0x65, 0x20,0x78,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x74,0x2c,0x65,0x3d, 0x65,0x2e,0x67,0x65,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x72,0x2e,0x6b, 0x65,0x79,0x3f,0x6e,0x3a,0x72,0x2e,0x6b,0x65,0x79,0x29,0x7c,0x7c,0x6e,0x75,0x6c, 0x6c,0x2c,0x72,0x2c,0x6f,0x29,0x7d,0x69,0x66,0x28,0x78,0x69,0x28,0x72,0x29,0x7c, 0x7c,0x57,0x28,0x72,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x28,0x74, 0x2c,0x65,0x3d,0x65,0x2e,0x67,0x65,0x74,0x28,0x6e,0x29,0x7c,0x7c,0x6e,0x75,0x6c, 0x6c,0x2c,0x72,0x2c,0x6f,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x6a,0x69,0x28,0x74, 0x2c,0x72,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x28,0x6f,0x2c,0x61,0x2c,0x75, 0x2c,0x63,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6c,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x3d,0x61,0x2c,0x76,0x3d, 0x61,0x3d,0x30,0x2c,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x66,0x26,0x26,0x76,0x3c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x76,0x2b,0x2b,0x29,0x7b,0x66,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3e,0x76,0x3f,0x28, 0x67,0x3d,0x66,0x2c,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x3a,0x67,0x3d,0x66,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x76,0x61,0x72,0x20,0x6d,0x3d,0x70,0x28, 0x6f,0x2c,0x66,0x2c,0x75,0x5b,0x76,0x5d,0x2c,0x63,0x29,0x3b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6d,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x66,0x26,0x26,0x28,0x66,0x3d,0x67,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x65, 0x26,0x26,0x66,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6d,0x2e,0x61,0x6c, 0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26,0x74,0x28,0x6f,0x2c,0x66,0x29,0x2c, 0x61,0x3d,0x69,0x28,0x6d,0x2c,0x61,0x2c,0x76,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x73,0x3f,0x6c,0x3d,0x6d,0x3a,0x73,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x3d,0x6d,0x2c,0x73,0x3d,0x6d,0x2c,0x66,0x3d,0x67,0x7d,0x69,0x66,0x28,0x76, 0x3d,0x3d,0x3d,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x28,0x6f,0x2c,0x66,0x29,0x2c,0x6c,0x3b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x66,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x76,0x3c, 0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x76,0x2b,0x2b,0x29,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x28,0x66,0x3d,0x64,0x28,0x6f,0x2c,0x75,0x5b,0x76,0x5d,0x2c, 0x63,0x29,0x29,0x26,0x26,0x28,0x61,0x3d,0x69,0x28,0x66,0x2c,0x61,0x2c,0x76,0x29, 0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x73,0x3f,0x6c,0x3d,0x66,0x3a,0x73,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x66,0x2c,0x73,0x3d,0x66,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x7d,0x66,0x6f,0x72,0x28,0x66,0x3d,0x72,0x28, 0x6f,0x2c,0x66,0x29,0x3b,0x76,0x3c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x76,0x2b,0x2b,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x67,0x3d,0x68,0x28, 0x66,0x2c,0x6f,0x2c,0x76,0x2c,0x75,0x5b,0x76,0x5d,0x2c,0x63,0x29,0x29,0x26,0x26, 0x28,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x67,0x2e,0x61,0x6c,0x74, 0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26,0x66,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x67,0x2e,0x6b,0x65,0x79,0x3f,0x76,0x3a, 0x67,0x2e,0x6b,0x65,0x79,0x29,0x2c,0x61,0x3d,0x69,0x28,0x67,0x2c,0x61,0x2c,0x76, 0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x73,0x3f,0x6c,0x3d,0x67,0x3a,0x73, 0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x67,0x2c,0x73,0x3d,0x67,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x66,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x6f,0x2c,0x65,0x29,0x7d,0x29, 0x29,0x2c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x6f, 0x2c,0x75,0x2c,0x63,0x2c,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x57,0x28, 0x63,0x29,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x35,0x30,0x29,0x29,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x63,0x3d,0x73,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x63,0x29,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x31,0x35,0x31,0x29,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x66,0x3d,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x76,0x3d,0x75,0x2c, 0x67,0x3d,0x75,0x3d,0x30,0x2c,0x6d,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x62,0x3d,0x63, 0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x76, 0x26,0x26,0x21,0x62,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x67,0x2b,0x2b,0x2c,0x62,0x3d, 0x63,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x7b,0x76,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x3e,0x67,0x3f,0x28,0x6d,0x3d,0x76,0x2c,0x76,0x3d,0x6e,0x75,0x6c,0x6c,0x29, 0x3a,0x6d,0x3d,0x76,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x76,0x61,0x72, 0x20,0x79,0x3d,0x70,0x28,0x6f,0x2c,0x76,0x2c,0x62,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x2c,0x6c,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x79,0x29, 0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x76,0x26,0x26,0x28,0x76,0x3d,0x6d,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x65,0x26,0x26,0x76,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x79,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x26, 0x26,0x74,0x28,0x6f,0x2c,0x76,0x29,0x2c,0x75,0x3d,0x69,0x28,0x79,0x2c,0x75,0x2c, 0x67,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x66,0x3f,0x73,0x3d,0x79,0x3a, 0x66,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x79,0x2c,0x66,0x3d,0x79,0x2c, 0x76,0x3d,0x6d,0x7d,0x69,0x66,0x28,0x62,0x2e,0x64,0x6f,0x6e,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x6f,0x2c,0x76,0x29,0x2c,0x73,0x3b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x76,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b, 0x21,0x62,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x67,0x2b,0x2b,0x2c,0x62,0x3d,0x63,0x2e, 0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x62, 0x3d,0x64,0x28,0x6f,0x2c,0x62,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x6c,0x29,0x29, 0x26,0x26,0x28,0x75,0x3d,0x69,0x28,0x62,0x2c,0x75,0x2c,0x67,0x29,0x2c,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x66,0x3f,0x73,0x3d,0x62,0x3a,0x66,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3d,0x62,0x2c,0x66,0x3d,0x62,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x7d,0x66,0x6f,0x72,0x28,0x76,0x3d,0x72,0x28,0x6f,0x2c,0x76, 0x29,0x3b,0x21,0x62,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x67,0x2b,0x2b,0x2c,0x62,0x3d, 0x63,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x28,0x62,0x3d,0x68,0x28,0x76,0x2c,0x6f,0x2c,0x67,0x2c,0x62,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x2c,0x6c,0x29,0x29,0x26,0x26,0x28,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x62,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26, 0x76,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x62,0x2e,0x6b,0x65,0x79,0x3f,0x67,0x3a,0x62,0x2e,0x6b,0x65,0x79,0x29,0x2c,0x75, 0x3d,0x69,0x28,0x62,0x2c,0x75,0x2c,0x67,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x66,0x3f,0x73,0x3d,0x62,0x3a,0x66,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x3d,0x62,0x2c,0x66,0x3d,0x62,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x26,0x26,0x76,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x28,0x6f,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x73,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c, 0x69,0x2c,0x63,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x26,0x26, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x26,0x26,0x69,0x2e,0x74,0x79,0x70,0x65, 0x3d,0x3d,0x3d,0x45,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69,0x2e,0x6b, 0x65,0x79,0x3b,0x6c,0x26,0x26,0x28,0x69,0x3d,0x69,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x73, 0x3d,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x69,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x3b,0x69, 0x66,0x28,0x73,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x69,0x2e,0x24,0x24,0x74, 0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x4f,0x3a,0x65,0x3a, 0x7b,0x66,0x6f,0x72,0x28,0x73,0x3d,0x69,0x2e,0x6b,0x65,0x79,0x2c,0x6c,0x3d,0x72, 0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6c,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6c, 0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d,0x73,0x29,0x7b,0x69,0x66,0x28,0x37,0x3d,0x3d, 0x3d,0x6c,0x2e,0x74,0x61,0x67,0x29,0x7b,0x69,0x66,0x28,0x69,0x2e,0x74,0x79,0x70, 0x65,0x3d,0x3d,0x3d,0x45,0x29,0x7b,0x6e,0x28,0x65,0x2c,0x6c,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x29,0x2c,0x28,0x72,0x3d,0x6f,0x28,0x6c,0x2c,0x69,0x2e,0x70, 0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x2e, 0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x72,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x20,0x65,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6c,0x2e, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x69,0x2e, 0x74,0x79,0x70,0x65,0x29,0x7b,0x6e,0x28,0x65,0x2c,0x6c,0x2e,0x73,0x69,0x62,0x6c, 0x69,0x6e,0x67,0x29,0x2c,0x28,0x72,0x3d,0x6f,0x28,0x6c,0x2c,0x69,0x2e,0x70,0x72, 0x6f,0x70,0x73,0x29,0x29,0x2e,0x72,0x65,0x66,0x3d,0x45,0x69,0x28,0x65,0x2c,0x6c, 0x2c,0x69,0x29,0x2c,0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65, 0x3d,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x6e,0x28,0x65,0x2c,0x6c, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x74,0x28,0x65,0x2c,0x6c,0x29,0x2c,0x6c, 0x3d,0x6c,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x69,0x2e,0x74,0x79,0x70, 0x65,0x3d,0x3d,0x3d,0x45,0x3f,0x28,0x28,0x72,0x3d,0x4b,0x63,0x28,0x69,0x2e,0x70, 0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x65,0x2e, 0x6d,0x6f,0x64,0x65,0x2c,0x63,0x2c,0x69,0x2e,0x6b,0x65,0x79,0x29,0x29,0x2e,0x72, 0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x72,0x29,0x3a,0x28,0x28,0x63, 0x3d,0x71,0x63,0x28,0x69,0x2e,0x74,0x79,0x70,0x65,0x2c,0x69,0x2e,0x6b,0x65,0x79, 0x2c,0x69,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e, 0x6d,0x6f,0x64,0x65,0x2c,0x63,0x29,0x29,0x2e,0x72,0x65,0x66,0x3d,0x45,0x69,0x28, 0x65,0x2c,0x72,0x2c,0x69,0x29,0x2c,0x63,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d, 0x65,0x2c,0x65,0x3d,0x63,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x28, 0x65,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x78,0x3a,0x65,0x3a,0x7b,0x66,0x6f,0x72, 0x28,0x6c,0x3d,0x69,0x2e,0x6b,0x65,0x79,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x72,0x3b,0x29,0x7b,0x69,0x66,0x28,0x72,0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d,0x6c, 0x29,0x7b,0x69,0x66,0x28,0x34,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x61,0x67,0x26,0x26, 0x72,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x3d,0x3d,0x3d,0x69,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x26,0x26,0x72,0x2e,0x73, 0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3d,0x3d,0x3d,0x69,0x2e,0x69,0x6d,0x70,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x29,0x7b,0x6e,0x28,0x65,0x2c, 0x72,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x29,0x2c,0x28,0x72,0x3d,0x6f,0x28, 0x72,0x2c,0x69,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x7c,0x7c,0x5b,0x5d, 0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x72,0x3b, 0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x6e,0x28,0x65,0x2c,0x72,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x7d,0x74,0x28,0x65,0x2c,0x72,0x29,0x2c,0x72,0x3d,0x72,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x28,0x72,0x3d,0x58,0x63,0x28,0x69,0x2c, 0x65,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x63,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75, 0x28,0x65,0x29,0x7d,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x7c,0x7c,0x22,0x6e,0x75,0x6d, 0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3d,0x22,0x22,0x2b,0x69,0x2c,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26,0x36,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x61, 0x67,0x3f,0x28,0x6e,0x28,0x65,0x2c,0x72,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x29,0x2c,0x28,0x72,0x3d,0x6f,0x28,0x72,0x2c,0x69,0x29,0x29,0x2e,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x72,0x29,0x3a,0x28,0x6e,0x28,0x65,0x2c, 0x72,0x29,0x2c,0x28,0x72,0x3d,0x51,0x63,0x28,0x69,0x2c,0x65,0x2e,0x6d,0x6f,0x64, 0x65,0x2c,0x63,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65, 0x3d,0x72,0x29,0x2c,0x75,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x78,0x69,0x28,0x69, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x28,0x65,0x2c,0x72,0x2c,0x69, 0x2c,0x63,0x29,0x3b,0x69,0x66,0x28,0x57,0x28,0x69,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x67,0x28,0x65,0x2c,0x72,0x2c,0x69,0x2c,0x63,0x29,0x3b,0x69,0x66, 0x28,0x73,0x26,0x26,0x6a,0x69,0x28,0x65,0x2c,0x69,0x29,0x2c,0x22,0x75,0x6e,0x64, 0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x69,0x26,0x26,0x21,0x6c,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e, 0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65, 0x20,0x32,0x32,0x3a,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61,0x73,0x65,0x20, 0x31,0x31,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x35,0x3a,0x74,0x68,0x72,0x6f,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x35,0x32,0x2c,0x71,0x28,0x65, 0x2e,0x74,0x79,0x70,0x65,0x29,0x7c,0x7c,0x22,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65, 0x6e,0x74,0x22,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x65, 0x2c,0x72,0x29,0x7d,0x7d,0x76,0x61,0x72,0x20,0x53,0x69,0x3d,0x6b,0x69,0x28,0x21, 0x30,0x29,0x2c,0x43,0x69,0x3d,0x6b,0x69,0x28,0x21,0x31,0x29,0x2c,0x41,0x69,0x3d, 0x7b,0x7d,0x2c,0x54,0x69,0x3d,0x6c,0x6f,0x28,0x41,0x69,0x29,0x2c,0x50,0x69,0x3d, 0x6c,0x6f,0x28,0x41,0x69,0x29,0x2c,0x44,0x69,0x3d,0x6c,0x6f,0x28,0x41,0x69,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x69,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x41,0x69,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x37,0x34,0x29,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x49,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x66, 0x6f,0x28,0x44,0x69,0x2c,0x74,0x29,0x2c,0x66,0x6f,0x28,0x50,0x69,0x2c,0x65,0x29, 0x2c,0x66,0x6f,0x28,0x54,0x69,0x2c,0x41,0x69,0x29,0x2c,0x65,0x3d,0x74,0x2e,0x6e, 0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x39,0x3a, 0x63,0x61,0x73,0x65,0x20,0x31,0x31,0x3a,0x74,0x3d,0x28,0x74,0x3d,0x74,0x2e,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3f, 0x74,0x2e,0x6e,0x61,0x6d,0x65,0x73,0x70,0x61,0x63,0x65,0x55,0x52,0x49,0x3a,0x68, 0x65,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x22,0x22,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x3d,0x68,0x65,0x28,0x74,0x3d, 0x28,0x65,0x3d,0x38,0x3d,0x3d,0x3d,0x65,0x3f,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e, 0x74,0x4e,0x6f,0x64,0x65,0x3a,0x74,0x29,0x2e,0x6e,0x61,0x6d,0x65,0x73,0x70,0x61, 0x63,0x65,0x55,0x52,0x49,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x3d,0x65,0x2e, 0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29,0x7d,0x73,0x6f,0x28,0x54,0x69,0x29,0x2c, 0x66,0x6f,0x28,0x54,0x69,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x52,0x69,0x28,0x29,0x7b,0x73,0x6f,0x28,0x54,0x69,0x29,0x2c,0x73,0x6f, 0x28,0x50,0x69,0x29,0x2c,0x73,0x6f,0x28,0x44,0x69,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x4c,0x69,0x28,0x65,0x29,0x7b,0x4e,0x69,0x28,0x44,0x69, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x4e,0x69,0x28,0x54,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x6e, 0x3d,0x68,0x65,0x28,0x74,0x2c,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x3b,0x74,0x21, 0x3d,0x3d,0x6e,0x26,0x26,0x28,0x66,0x6f,0x28,0x50,0x69,0x2c,0x65,0x29,0x2c,0x66, 0x6f,0x28,0x54,0x69,0x2c,0x6e,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x46,0x69,0x28,0x65,0x29,0x7b,0x50,0x69,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x73,0x6f,0x28,0x54,0x69,0x29,0x2c, 0x73,0x6f,0x28,0x50,0x69,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x4d,0x69,0x3d,0x6c, 0x6f,0x28,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x69, 0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x3b, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x3b,0x29,0x7b,0x69,0x66,0x28,0x31,0x33, 0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6e,0x3d,0x6e,0x2e,0x64,0x65,0x68,0x79,0x64,0x72, 0x61,0x74,0x65,0x64,0x29,0x7c,0x7c,0x22,0x24,0x3f,0x22,0x3d,0x3d,0x3d,0x6e,0x2e, 0x64,0x61,0x74,0x61,0x7c,0x7c,0x22,0x24,0x21,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x64, 0x61,0x74,0x61,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x69,0x66,0x28,0x31,0x39,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x61,0x67, 0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2e,0x72,0x65,0x76,0x65,0x61, 0x6c,0x4f,0x72,0x64,0x65,0x72,0x29,0x7b,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x28, 0x36,0x34,0x26,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x74,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x74,0x3d, 0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, 0x7d,0x69,0x66,0x28,0x74,0x3d,0x3d,0x3d,0x65,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x74,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3b,0x74,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d, 0x74,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x74,0x3d,0x74,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x7d,0x76,0x61,0x72,0x20,0x7a,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x55,0x69, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x57,0x69,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x24,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x48,0x63,0x28,0x35,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c, 0x6c,0x2c,0x30,0x29,0x3b,0x6e,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79, 0x70,0x65,0x3d,0x22,0x44,0x45,0x4c,0x45,0x54,0x45,0x44,0x22,0x2c,0x6e,0x2e,0x74, 0x79,0x70,0x65,0x3d,0x22,0x44,0x45,0x4c,0x45,0x54,0x45,0x44,0x22,0x2c,0x6e,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x74,0x2c,0x6e,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x38, 0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x3f,0x28,0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x2c, 0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x29,0x3a, 0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x65,0x2e, 0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x48,0x69,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65, 0x20,0x35,0x3a,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74, 0x3d,0x31,0x21,0x3d,0x3d,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x7c, 0x7c,0x6e,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29, 0x21,0x3d,0x3d,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x6f, 0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3f,0x6e,0x75,0x6c,0x6c, 0x3a,0x74,0x29,0x26,0x26,0x28,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64, 0x65,0x3d,0x74,0x2c,0x21,0x30,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x36,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d, 0x22,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72, 0x6f,0x70,0x73,0x7c,0x7c,0x33,0x21,0x3d,0x3d,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54, 0x79,0x70,0x65,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x74,0x29,0x26,0x26,0x28,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x74,0x2c,0x21,0x30,0x29,0x3b, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31, 0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x69,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x57,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x55,0x69, 0x3b,0x69,0x66,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x3b,0x69, 0x66,0x28,0x21,0x48,0x69,0x28,0x65,0x2c,0x74,0x29,0x29,0x7b,0x69,0x66,0x28,0x21, 0x28,0x74,0x3d,0x4b,0x72,0x28,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c, 0x69,0x6e,0x67,0x29,0x29,0x7c,0x7c,0x21,0x48,0x69,0x28,0x65,0x2c,0x74,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x2d, 0x31,0x30,0x32,0x35,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x32,0x2c,0x57, 0x69,0x3d,0x21,0x31,0x2c,0x76,0x6f,0x69,0x64,0x28,0x7a,0x69,0x3d,0x65,0x29,0x3b, 0x24,0x69,0x28,0x7a,0x69,0x2c,0x6e,0x29,0x7d,0x7a,0x69,0x3d,0x65,0x2c,0x55,0x69, 0x3d,0x4b,0x72,0x28,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64, 0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x2d, 0x31,0x30,0x32,0x35,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x32,0x2c,0x57, 0x69,0x3d,0x21,0x31,0x2c,0x7a,0x69,0x3d,0x65,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x47,0x69,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x65,0x3d, 0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x65,0x26,0x26,0x35,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x26,0x26,0x33,0x21, 0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x26,0x26,0x31,0x33,0x21,0x3d,0x3d,0x65,0x2e, 0x74,0x61,0x67,0x3b,0x29,0x65,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b, 0x7a,0x69,0x3d,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x69, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x21,0x3d,0x3d,0x7a,0x69,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x21,0x57,0x69,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x47,0x69,0x28,0x65,0x29,0x2c,0x57,0x69,0x3d,0x21,0x30, 0x2c,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x3b,0x69,0x66,0x28,0x35,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x7c,0x7c,0x22, 0x68,0x65,0x61,0x64,0x22,0x21,0x3d,0x3d,0x74,0x26,0x26,0x22,0x62,0x6f,0x64,0x79, 0x22,0x21,0x3d,0x3d,0x74,0x26,0x26,0x21,0x48,0x72,0x28,0x74,0x2c,0x65,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x29,0x29,0x66,0x6f, 0x72,0x28,0x74,0x3d,0x55,0x69,0x3b,0x74,0x3b,0x29,0x24,0x69,0x28,0x65,0x2c,0x74, 0x29,0x2c,0x74,0x3d,0x4b,0x72,0x28,0x74,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x29,0x3b,0x69,0x66,0x28,0x47,0x69,0x28,0x65,0x29,0x2c,0x31, 0x33,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x7b,0x69,0x66,0x28,0x21,0x28, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x3f,0x65,0x2e,0x64, 0x65,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x31, 0x37,0x29,0x29,0x3b,0x65,0x3a,0x7b,0x66,0x6f,0x72,0x28,0x65,0x3d,0x65,0x2e,0x6e, 0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2c,0x74,0x3d,0x30,0x3b,0x65, 0x3b,0x29,0x7b,0x69,0x66,0x28,0x38,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65, 0x54,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x64,0x61, 0x74,0x61,0x3b,0x69,0x66,0x28,0x22,0x2f,0x24,0x22,0x3d,0x3d,0x3d,0x6e,0x29,0x7b, 0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x74,0x29,0x7b,0x55,0x69,0x3d,0x4b,0x72,0x28, 0x65,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x74,0x2d,0x2d,0x7d,0x65,0x6c,0x73,0x65,0x22, 0x24,0x22,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x22,0x24,0x21,0x22,0x21,0x3d,0x3d,0x6e, 0x26,0x26,0x22,0x24,0x3f,0x22,0x21,0x3d,0x3d,0x6e,0x7c,0x7c,0x74,0x2b,0x2b,0x7d, 0x65,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d, 0x55,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x55,0x69, 0x3d,0x7a,0x69,0x3f,0x4b,0x72,0x28,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x2e,0x6e,0x65,0x78,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x29,0x3a, 0x6e,0x75,0x6c,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x69,0x28,0x29,0x7b,0x55,0x69,0x3d,0x7a, 0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x57,0x69,0x3d,0x21,0x31,0x7d,0x76,0x61,0x72, 0x20,0x59,0x69,0x3d,0x5b,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x51,0x69,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x30, 0x3b,0x65,0x3c,0x59,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x65,0x2b,0x2b, 0x29,0x59,0x69,0x5b,0x65,0x5d,0x2e,0x5f,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x50,0x72, 0x6f,0x67,0x72,0x65,0x73,0x73,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x50,0x72,0x69, 0x6d,0x61,0x72,0x79,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x59,0x69,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3d,0x30,0x7d,0x76,0x61,0x72,0x20,0x58,0x69,0x3d,0x77,0x2e,0x52, 0x65,0x61,0x63,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x44,0x69,0x73,0x70,0x61, 0x74,0x63,0x68,0x65,0x72,0x2c,0x4a,0x69,0x3d,0x77,0x2e,0x52,0x65,0x61,0x63,0x74, 0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x42,0x61,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66, 0x69,0x67,0x2c,0x5a,0x69,0x3d,0x30,0x2c,0x65,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x74,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x72,0x61,0x3d,0x21,0x31,0x2c,0x6f,0x61,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x69,0x61,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x32,0x31,0x29,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x30,0x3b, 0x6e,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x6e,0x3c,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x69,0x66,0x28,0x21,0x73, 0x72,0x28,0x65,0x5b,0x6e,0x5d,0x2c,0x74,0x5b,0x6e,0x5d,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x69,0x66,0x28,0x5a,0x69,0x3d,0x69,0x2c, 0x65,0x61,0x3d,0x74,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53, 0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x6c, 0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x58,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x3f,0x4e,0x61,0x3a,0x49,0x61,0x2c,0x65,0x3d,0x6e,0x28,0x72,0x2c,0x6f, 0x29,0x2c,0x6f,0x61,0x29,0x7b,0x69,0x3d,0x30,0x3b,0x64,0x6f,0x7b,0x69,0x66,0x28, 0x6f,0x61,0x3d,0x21,0x31,0x2c,0x21,0x28,0x32,0x35,0x3e,0x69,0x29,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x30,0x31,0x29, 0x29,0x3b,0x69,0x2b,0x3d,0x31,0x2c,0x6e,0x61,0x3d,0x74,0x61,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x58,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d, 0x52,0x61,0x2c,0x65,0x3d,0x6e,0x28,0x72,0x2c,0x6f,0x29,0x7d,0x77,0x68,0x69,0x6c, 0x65,0x28,0x6f,0x61,0x29,0x7d,0x69,0x66,0x28,0x58,0x69,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x44,0x61,0x2c,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x74,0x61,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x61,0x2e,0x6e,0x65, 0x78,0x74,0x2c,0x5a,0x69,0x3d,0x30,0x2c,0x6e,0x61,0x3d,0x74,0x61,0x3d,0x65,0x61, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x61,0x3d,0x21,0x31,0x2c,0x74,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x30,0x30,0x29, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x63,0x61,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x7b, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3a,0x6e,0x75, 0x6c,0x6c,0x2c,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c, 0x6c,0x2c,0x62,0x61,0x73,0x65,0x51,0x75,0x65,0x75,0x65,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x71,0x75,0x65,0x75,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x65,0x78,0x74, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x61,0x3f,0x65,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x61,0x3d,0x65,0x3a,0x6e,0x61, 0x3d,0x6e,0x61,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x65,0x2c,0x6e,0x61,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x61,0x28,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x65,0x61,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3b,0x65,0x3d,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3f,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x65,0x6c,0x73, 0x65,0x20,0x65,0x3d,0x74,0x61,0x2e,0x6e,0x65,0x78,0x74,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x61,0x3f,0x65,0x61,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3a,0x6e,0x61,0x2e, 0x6e,0x65,0x78,0x74,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74, 0x29,0x6e,0x61,0x3d,0x74,0x2c,0x74,0x61,0x3d,0x65,0x3b,0x65,0x6c,0x73,0x65,0x7b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x31,0x30,0x29,0x29,0x3b, 0x65,0x3d,0x7b,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x3a,0x28,0x74,0x61,0x3d,0x65,0x29,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x2c,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3a, 0x74,0x61,0x2e,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x2c,0x62,0x61,0x73, 0x65,0x51,0x75,0x65,0x75,0x65,0x3a,0x74,0x61,0x2e,0x62,0x61,0x73,0x65,0x51,0x75, 0x65,0x75,0x65,0x2c,0x71,0x75,0x65,0x75,0x65,0x3a,0x74,0x61,0x2e,0x71,0x75,0x65, 0x75,0x65,0x2c,0x6e,0x65,0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x61,0x3f,0x65,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x61,0x3d,0x65,0x3a,0x6e,0x61, 0x3d,0x6e,0x61,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x65,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x61,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x3f,0x74,0x28,0x65,0x29,0x3a,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x66,0x61,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6c,0x61, 0x28,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x71,0x75,0x65,0x75,0x65,0x3b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45, 0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x31,0x31,0x29,0x29,0x3b,0x6e,0x2e,0x6c, 0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x52,0x65,0x64,0x75,0x63, 0x65,0x72,0x3d,0x65,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x61,0x2c,0x6f,0x3d, 0x72,0x2e,0x62,0x61,0x73,0x65,0x51,0x75,0x65,0x75,0x65,0x2c,0x69,0x3d,0x6e,0x2e, 0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x69,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f, 0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x6f,0x2e,0x6e,0x65,0x78,0x74,0x3b,0x6f, 0x2e,0x6e,0x65,0x78,0x74,0x3d,0x69,0x2e,0x6e,0x65,0x78,0x74,0x2c,0x69,0x2e,0x6e, 0x65,0x78,0x74,0x3d,0x75,0x7d,0x72,0x2e,0x62,0x61,0x73,0x65,0x51,0x75,0x65,0x75, 0x65,0x3d,0x6f,0x3d,0x69,0x2c,0x6e,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f, 0x29,0x7b,0x6f,0x3d,0x6f,0x2e,0x6e,0x65,0x78,0x74,0x2c,0x72,0x3d,0x72,0x2e,0x62, 0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x75, 0x3d,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x3d,0x6f,0x3b,0x64,0x6f,0x7b,0x76, 0x61,0x72,0x20,0x73,0x3d,0x6c,0x2e,0x6c,0x61,0x6e,0x65,0x3b,0x69,0x66,0x28,0x28, 0x5a,0x69,0x26,0x73,0x29,0x3d,0x3d,0x3d,0x73,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x63,0x26,0x26,0x28,0x63,0x3d,0x63,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x7b,0x6c, 0x61,0x6e,0x65,0x3a,0x30,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x6c,0x2e,0x61, 0x63,0x74,0x69,0x6f,0x6e,0x2c,0x65,0x61,0x67,0x65,0x72,0x52,0x65,0x64,0x75,0x63, 0x65,0x72,0x3a,0x6c,0x2e,0x65,0x61,0x67,0x65,0x72,0x52,0x65,0x64,0x75,0x63,0x65, 0x72,0x2c,0x65,0x61,0x67,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3a,0x6c,0x2e,0x65, 0x61,0x67,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2c,0x6e,0x65,0x78,0x74,0x3a,0x6e, 0x75,0x6c,0x6c,0x7d,0x29,0x2c,0x72,0x3d,0x6c,0x2e,0x65,0x61,0x67,0x65,0x72,0x52, 0x65,0x64,0x75,0x63,0x65,0x72,0x3d,0x3d,0x3d,0x65,0x3f,0x6c,0x2e,0x65,0x61,0x67, 0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3a,0x65,0x28,0x72,0x2c,0x6c,0x2e,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x66, 0x3d,0x7b,0x6c,0x61,0x6e,0x65,0x3a,0x73,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a, 0x6c,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x65,0x61,0x67,0x65,0x72,0x52,0x65, 0x64,0x75,0x63,0x65,0x72,0x3a,0x6c,0x2e,0x65,0x61,0x67,0x65,0x72,0x52,0x65,0x64, 0x75,0x63,0x65,0x72,0x2c,0x65,0x61,0x67,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3a, 0x6c,0x2e,0x65,0x61,0x67,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2c,0x6e,0x65,0x78, 0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x63, 0x3f,0x28,0x75,0x3d,0x63,0x3d,0x66,0x2c,0x69,0x3d,0x72,0x29,0x3a,0x63,0x3d,0x63, 0x2e,0x6e,0x65,0x78,0x74,0x3d,0x66,0x2c,0x65,0x61,0x2e,0x6c,0x61,0x6e,0x65,0x73, 0x7c,0x3d,0x73,0x2c,0x55,0x75,0x7c,0x3d,0x73,0x7d,0x6c,0x3d,0x6c,0x2e,0x6e,0x65, 0x78,0x74,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x6c,0x26,0x26,0x6c,0x21,0x3d,0x3d,0x6f,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x63,0x3f,0x69,0x3d,0x72,0x3a,0x63,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x75,0x2c, 0x73,0x72,0x28,0x72,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53, 0x74,0x61,0x74,0x65,0x29,0x7c,0x7c,0x28,0x46,0x61,0x3d,0x21,0x30,0x29,0x2c,0x74, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x72, 0x2c,0x74,0x2e,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3d,0x69,0x2c,0x74, 0x2e,0x62,0x61,0x73,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x63,0x2c,0x6e,0x2e,0x6c, 0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x3d,0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x6e,0x2e,0x64,0x69,0x73,0x70, 0x61,0x74,0x63,0x68,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64, 0x61,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6c,0x61,0x28,0x29,0x2c, 0x6e,0x3d,0x74,0x2e,0x71,0x75,0x65,0x75,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x6e,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x61,0x28,0x33,0x31,0x31,0x29,0x29,0x3b,0x6e,0x2e,0x6c,0x61,0x73,0x74, 0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3d, 0x65,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x64,0x69,0x73,0x70,0x61,0x74, 0x63,0x68,0x2c,0x6f,0x3d,0x6e,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x2c,0x69, 0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x29,0x7b,0x6e,0x2e, 0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x75,0x3d,0x6f,0x3d,0x6f,0x2e,0x6e,0x65,0x78,0x74,0x3b,0x64,0x6f,0x7b,0x69, 0x3d,0x65,0x28,0x69,0x2c,0x75,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x75, 0x3d,0x75,0x2e,0x6e,0x65,0x78,0x74,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x75,0x21, 0x3d,0x3d,0x6f,0x29,0x3b,0x73,0x72,0x28,0x69,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x7c,0x7c,0x28,0x46,0x61,0x3d, 0x21,0x30,0x29,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x3d,0x69,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x62, 0x61,0x73,0x65,0x51,0x75,0x65,0x75,0x65,0x26,0x26,0x28,0x74,0x2e,0x62,0x61,0x73, 0x65,0x53,0x74,0x61,0x74,0x65,0x3d,0x69,0x29,0x2c,0x6e,0x2e,0x6c,0x61,0x73,0x74, 0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x69,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x69,0x2c,0x72,0x5d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x5f,0x67,0x65,0x74,0x56,0x65,0x72,0x73,0x69, 0x6f,0x6e,0x3b,0x72,0x3d,0x72,0x28,0x74,0x2e,0x5f,0x73,0x6f,0x75,0x72,0x63,0x65, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x5f,0x77,0x6f,0x72,0x6b,0x49, 0x6e,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e, 0x50,0x72,0x69,0x6d,0x61,0x72,0x79,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x6f,0x3f,0x65,0x3d,0x6f,0x3d,0x3d,0x3d,0x72,0x3a,0x28,0x65,0x3d,0x65, 0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x2c,0x28,0x65,0x3d,0x28,0x5a,0x69,0x26,0x65,0x29,0x3d,0x3d,0x3d,0x65,0x29, 0x26,0x26,0x28,0x74,0x2e,0x5f,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x50,0x72,0x6f,0x67, 0x72,0x65,0x73,0x73,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x50,0x72,0x69,0x6d,0x61, 0x72,0x79,0x3d,0x72,0x2c,0x59,0x69,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x29, 0x29,0x2c,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x74,0x2e,0x5f, 0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x3b,0x74,0x68,0x72,0x6f,0x77,0x20,0x59,0x69, 0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x2c,0x45,0x72,0x72,0x6f,0x72,0x28,0x61, 0x28,0x33,0x35,0x30,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x68,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x4e,0x75,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6f, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33, 0x34,0x39,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e,0x5f,0x67,0x65, 0x74,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x2c,0x75,0x3d,0x69,0x28,0x74,0x2e,0x5f, 0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x2c,0x63,0x3d,0x58,0x69,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x2c,0x6c,0x3d,0x63,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x70,0x61,0x28,0x6f,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x29, 0x29,0x2c,0x73,0x3d,0x6c,0x5b,0x31,0x5d,0x2c,0x66,0x3d,0x6c,0x5b,0x30,0x5d,0x3b, 0x6c,0x3d,0x6e,0x61,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x65,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x70,0x3d,0x64,0x2e,0x72, 0x65,0x66,0x73,0x2c,0x68,0x3d,0x70,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70,0x73, 0x68,0x6f,0x74,0x2c,0x76,0x3d,0x64,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x3b,0x64, 0x3d,0x64,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3b,0x76,0x61,0x72, 0x20,0x67,0x3d,0x65,0x61,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x7b,0x72,0x65, 0x66,0x73,0x3a,0x70,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x74,0x2c,0x73,0x75, 0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x72,0x7d,0x2c,0x63,0x2e,0x75,0x73,0x65, 0x45,0x66,0x66,0x65,0x63,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x70,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74, 0x3d,0x6e,0x2c,0x70,0x2e,0x73,0x65,0x74,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74, 0x3d,0x73,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x69,0x28,0x74,0x2e,0x5f,0x73,0x6f, 0x75,0x72,0x63,0x65,0x29,0x3b,0x69,0x66,0x28,0x21,0x73,0x72,0x28,0x75,0x2c,0x65, 0x29,0x29,0x7b,0x65,0x3d,0x6e,0x28,0x74,0x2e,0x5f,0x73,0x6f,0x75,0x72,0x63,0x65, 0x29,0x2c,0x73,0x72,0x28,0x66,0x2c,0x65,0x29,0x7c,0x7c,0x28,0x73,0x28,0x65,0x29, 0x2c,0x65,0x3d,0x70,0x63,0x28,0x67,0x29,0x2c,0x6f,0x2e,0x6d,0x75,0x74,0x61,0x62, 0x6c,0x65,0x52,0x65,0x61,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x65,0x26,0x6f, 0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x29,0x2c,0x65, 0x3d,0x6f,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x2c,0x6f,0x2e,0x65,0x6e,0x74,0x61,0x6e,0x67,0x6c,0x65,0x64,0x4c, 0x61,0x6e,0x65,0x73,0x7c,0x3d,0x65,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6f,0x2e,0x65,0x6e,0x74,0x61,0x6e,0x67,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x73,0x2c,0x61,0x3d,0x65,0x3b,0x30,0x3c,0x61,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x63,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28,0x61,0x29,0x2c,0x6c,0x3d,0x31,0x3c,0x3c, 0x63,0x3b,0x72,0x5b,0x63,0x5d,0x7c,0x3d,0x65,0x2c,0x61,0x26,0x3d,0x7e,0x6c,0x7d, 0x7d,0x7d,0x29,0x2c,0x5b,0x6e,0x2c,0x74,0x2c,0x72,0x5d,0x29,0x2c,0x63,0x2e,0x75, 0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x74,0x2e, 0x5f,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x70,0x2e,0x67,0x65,0x74,0x53, 0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x2c,0x6e,0x3d,0x70,0x2e,0x73,0x65,0x74,0x53, 0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x3b,0x74,0x72,0x79,0x7b,0x6e,0x28,0x65,0x28, 0x74,0x2e,0x5f,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x70,0x63,0x28,0x67,0x29,0x3b,0x6f,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c, 0x65,0x52,0x65,0x61,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x72,0x26,0x6f,0x2e, 0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x7d,0x63,0x61,0x74, 0x63,0x68,0x28,0x69,0x29,0x7b,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x69,0x7d,0x29,0x29,0x7d,0x7d, 0x29,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x2c,0x72,0x5d,0x29,0x2c,0x73,0x72,0x28,0x68, 0x2c,0x6e,0x29,0x26,0x26,0x73,0x72,0x28,0x76,0x2c,0x74,0x29,0x26,0x26,0x73,0x72, 0x28,0x64,0x2c,0x72,0x29,0x7c,0x7c,0x28,0x28,0x65,0x3d,0x7b,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64,0x69,0x73,0x70,0x61,0x74,0x63, 0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65, 0x72,0x65,0x64,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3a,0x73,0x61,0x2c,0x6c,0x61, 0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3a, 0x66,0x7d,0x29,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x3d,0x73,0x3d,0x50, 0x61,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x61,0x2c,0x65, 0x29,0x2c,0x6c,0x2e,0x71,0x75,0x65,0x75,0x65,0x3d,0x65,0x2c,0x6c,0x2e,0x62,0x61, 0x73,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x3d,0x70, 0x61,0x28,0x6f,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x6c,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6c,0x2e,0x62,0x61,0x73,0x65,0x53, 0x74,0x61,0x74,0x65,0x3d,0x66,0x29,0x2c,0x66,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x76,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x68,0x61,0x28,0x6c,0x61,0x28,0x29,0x2c,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x61,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x61,0x28,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x28,0x65,0x3d,0x65,0x28,0x29, 0x29,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3d,0x74,0x2e,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3d,0x65,0x2c, 0x65,0x3d,0x28,0x65,0x3d,0x74,0x2e,0x71,0x75,0x65,0x75,0x65,0x3d,0x7b,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64,0x69,0x73,0x70,0x61, 0x74,0x63,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x61,0x73,0x74,0x52,0x65,0x6e, 0x64,0x65,0x72,0x65,0x64,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3a,0x73,0x61,0x2c, 0x6c,0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3a,0x65,0x7d,0x29,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x3d,0x50, 0x61,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x61,0x2c,0x65, 0x29,0x2c,0x5b,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x2c,0x65,0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d, 0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x3d,0x7b,0x74,0x61,0x67,0x3a,0x65,0x2c,0x63,0x72,0x65,0x61,0x74, 0x65,0x3a,0x74,0x2c,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x3a,0x6e,0x2c,0x64,0x65, 0x70,0x73,0x3a,0x72,0x2c,0x6e,0x65,0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x74,0x3d,0x65,0x61,0x2e,0x75,0x70,0x64, 0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x29,0x3f,0x28,0x74,0x3d,0x7b,0x6c,0x61, 0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x65, 0x61,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x74,0x2c, 0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x65,0x2e,0x6e, 0x65,0x78,0x74,0x3d,0x65,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6e, 0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x3f,0x74, 0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x65,0x2e,0x6e,0x65, 0x78,0x74,0x3d,0x65,0x3a,0x28,0x72,0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x2c,0x6e, 0x2e,0x6e,0x65,0x78,0x74,0x3d,0x65,0x2c,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x72, 0x2c,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x65,0x29, 0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x61,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x7b,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3a,0x65,0x7d,0x2c,0x63,0x61,0x28,0x29,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x65,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x79,0x61,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6c,0x61,0x28,0x29,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x61,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x63, 0x61,0x28,0x29,0x3b,0x65,0x61,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x65,0x2c, 0x6f,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d, 0x6d,0x61,0x28,0x31,0x7c,0x74,0x2c,0x6e,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x3f,0x6e,0x75,0x6c,0x6c,0x3a, 0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x61,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6c,0x61, 0x28,0x29,0x3b,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x3f, 0x6e,0x75,0x6c,0x6c,0x3a,0x72,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x61, 0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x69,0x3d,0x61,0x2e, 0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72, 0x26,0x26,0x61,0x61,0x28,0x72,0x2c,0x61,0x2e,0x64,0x65,0x70,0x73,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x6d,0x61,0x28,0x74,0x2c, 0x6e,0x2c,0x69,0x2c,0x72,0x29,0x7d,0x65,0x61,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c, 0x3d,0x65,0x2c,0x6f,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x3d,0x6d,0x61,0x28,0x31,0x7c,0x74,0x2c,0x6e,0x2c,0x69,0x2c,0x72,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x61,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x61,0x28,0x35,0x31,0x36,0x2c, 0x34,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x78,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77, 0x61,0x28,0x35,0x31,0x36,0x2c,0x34,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x77,0x61,0x28,0x34,0x2c,0x32,0x2c,0x65,0x2c,0x74,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x61,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x28,0x65, 0x3d,0x65,0x28,0x29,0x2c,0x74,0x28,0x65,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x29,0x3a,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x74,0x3f,0x28,0x65,0x3d,0x65,0x28,0x29,0x2c,0x74,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x65,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c, 0x7d,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6b,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x3f,0x6e,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x5b,0x65,0x5d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x77,0x61, 0x28,0x34,0x2c,0x32,0x2c,0x6a,0x61,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c, 0x6c,0x2c,0x74,0x2c,0x65,0x29,0x2c,0x6e,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x53,0x61,0x28,0x29,0x7b,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x43,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x6c,0x61,0x28,0x29,0x3b,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x74,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x74,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x61,0x61,0x28,0x74,0x2c,0x72, 0x5b,0x31,0x5d,0x29,0x3f,0x72,0x5b,0x30,0x5d,0x3a,0x28,0x6e,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x5b,0x65,0x2c,0x74,0x5d, 0x2c,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x61,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6c,0x61,0x28,0x29,0x3b, 0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x6e,0x75,0x6c, 0x6c,0x3a,0x74,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x74,0x26,0x26,0x61,0x61,0x28,0x74,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x3f, 0x72,0x5b,0x30,0x5d,0x3a,0x28,0x65,0x3d,0x65,0x28,0x29,0x2c,0x6e,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x5b,0x65,0x2c,0x74, 0x5d,0x2c,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x61, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x56,0x6f,0x28,0x29, 0x3b,0x71,0x6f,0x28,0x39,0x38,0x3e,0x6e,0x3f,0x39,0x38,0x3a,0x6e,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x28,0x21,0x30,0x29,0x7d, 0x29,0x29,0x2c,0x71,0x6f,0x28,0x39,0x37,0x3c,0x6e,0x3f,0x39,0x37,0x3a,0x6e,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3b, 0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3d,0x31,0x3b, 0x74,0x72,0x79,0x7b,0x65,0x28,0x21,0x31,0x29,0x2c,0x74,0x28,0x29,0x7d,0x66,0x69, 0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3d,0x6e,0x7d,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x50,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x64,0x63,0x28,0x29,0x2c,0x6f,0x3d,0x70,0x63,0x28,0x65,0x29,0x2c, 0x69,0x3d,0x7b,0x6c,0x61,0x6e,0x65,0x3a,0x6f,0x2c,0x61,0x63,0x74,0x69,0x6f,0x6e, 0x3a,0x6e,0x2c,0x65,0x61,0x67,0x65,0x72,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3a, 0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x61,0x67,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3a, 0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x65,0x78,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c, 0x61,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x61,0x3f,0x69,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x69, 0x3a,0x28,0x69,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x61,0x2e,0x6e,0x65,0x78,0x74,0x2c, 0x61,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x69,0x29,0x2c,0x74,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x3d,0x69,0x2c,0x61,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x2c,0x65,0x3d,0x3d,0x3d,0x65,0x61,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x61,0x26,0x26,0x61,0x3d,0x3d,0x3d,0x65,0x61,0x29,0x6f,0x61,0x3d, 0x72,0x61,0x3d,0x21,0x30,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x30,0x3d, 0x3d,0x3d,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x30,0x3d,0x3d,0x3d,0x61,0x2e,0x6c,0x61,0x6e,0x65, 0x73,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x61,0x3d,0x74,0x2e, 0x6c,0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x52,0x65,0x64,0x75, 0x63,0x65,0x72,0x29,0x29,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74, 0x2e,0x6c,0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x2c,0x63,0x3d,0x61,0x28,0x75,0x2c,0x6e,0x29,0x3b,0x69,0x66,0x28,0x69, 0x2e,0x65,0x61,0x67,0x65,0x72,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3d,0x61,0x2c, 0x69,0x2e,0x65,0x61,0x67,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x63,0x2c,0x73, 0x72,0x28,0x63,0x2c,0x75,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x6c,0x29,0x7b,0x7d,0x68,0x63,0x28,0x65,0x2c,0x6f,0x2c,0x72, 0x29,0x7d,0x7d,0x76,0x61,0x72,0x20,0x44,0x61,0x3d,0x7b,0x72,0x65,0x61,0x64,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x3a,0x75,0x69,0x2c,0x75,0x73,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74, 0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61,0x74,0x69,0x76, 0x65,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x4c,0x61, 0x79,0x6f,0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x69,0x61,0x2c,0x75,0x73, 0x65,0x4d,0x65,0x6d,0x6f,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x52,0x65,0x64,0x75, 0x63,0x65,0x72,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x52,0x65,0x66,0x3a,0x69,0x61, 0x2c,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65, 0x44,0x65,0x62,0x75,0x67,0x56,0x61,0x6c,0x75,0x65,0x3a,0x69,0x61,0x2c,0x75,0x73, 0x65,0x44,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x3a,0x69, 0x61,0x2c,0x75,0x73,0x65,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a, 0x69,0x61,0x2c,0x75,0x73,0x65,0x4d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75, 0x72,0x63,0x65,0x3a,0x69,0x61,0x2c,0x75,0x73,0x65,0x4f,0x70,0x61,0x71,0x75,0x65, 0x49,0x64,0x65,0x6e,0x74,0x69,0x66,0x69,0x65,0x72,0x3a,0x69,0x61,0x2c,0x75,0x6e, 0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x69,0x73,0x4e,0x65,0x77,0x52,0x65,0x63,0x6f, 0x6e,0x63,0x69,0x6c,0x65,0x72,0x3a,0x21,0x31,0x7d,0x2c,0x4e,0x61,0x3d,0x7b,0x72, 0x65,0x61,0x64,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3a,0x75,0x69,0x2c,0x75,0x73, 0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63, 0x61,0x28,0x29,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3d,0x5b,0x65,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f, 0x6e,0x75,0x6c,0x6c,0x3a,0x74,0x5d,0x2c,0x65,0x7d,0x2c,0x75,0x73,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x3a,0x75,0x69,0x2c,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x3a,0x4f,0x61,0x2c,0x75,0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61,0x74, 0x69,0x76,0x65,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x3f,0x6e,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x5b,0x65,0x5d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x5f,0x61,0x28,0x34,0x2c, 0x32,0x2c,0x6a,0x61,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74, 0x2c,0x65,0x29,0x2c,0x6e,0x29,0x7d,0x2c,0x75,0x73,0x65,0x4c,0x61,0x79,0x6f,0x75, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5f,0x61,0x28, 0x34,0x2c,0x32,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x75,0x73,0x65,0x4d,0x65,0x6d, 0x6f,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x63,0x61,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x6e, 0x75,0x6c,0x6c,0x3a,0x74,0x2c,0x65,0x3d,0x65,0x28,0x29,0x2c,0x6e,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x5b,0x65,0x2c,0x74, 0x5d,0x2c,0x65,0x7d,0x2c,0x75,0x73,0x65,0x52,0x65,0x64,0x75,0x63,0x65,0x72,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x63,0x61,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x3f,0x6e, 0x28,0x74,0x29,0x3a,0x74,0x2c,0x72,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x3d,0x72,0x2e,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74, 0x65,0x3d,0x74,0x2c,0x65,0x3d,0x28,0x65,0x3d,0x72,0x2e,0x71,0x75,0x65,0x75,0x65, 0x3d,0x7b,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x64, 0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x61,0x73, 0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x52,0x65,0x64,0x75,0x63,0x65,0x72, 0x3a,0x65,0x2c,0x6c,0x61,0x73,0x74,0x52,0x65,0x6e,0x64,0x65,0x72,0x65,0x64,0x53, 0x74,0x61,0x74,0x65,0x3a,0x74,0x7d,0x29,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63, 0x68,0x3d,0x50,0x61,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x61,0x2c,0x65,0x29,0x2c,0x5b,0x72,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x2c,0x65,0x5d,0x7d,0x2c,0x75,0x73,0x65,0x52,0x65,0x66, 0x3a,0x62,0x61,0x2c,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x67,0x61,0x2c, 0x75,0x73,0x65,0x44,0x65,0x62,0x75,0x67,0x56,0x61,0x6c,0x75,0x65,0x3a,0x53,0x61, 0x2c,0x75,0x73,0x65,0x44,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x56,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x67,0x61,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x74,0x5b,0x30,0x5d, 0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x61,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3d, 0x31,0x3b,0x74,0x72,0x79,0x7b,0x72,0x28,0x65,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c, 0x6c,0x79,0x7b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x3d,0x74,0x7d,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x6e,0x7d,0x2c,0x75,0x73, 0x65,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x67,0x61,0x28, 0x21,0x31,0x29,0x2c,0x74,0x3d,0x65,0x5b,0x30,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x62,0x61,0x28,0x65,0x3d,0x54,0x61,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e, 0x75,0x6c,0x6c,0x2c,0x65,0x5b,0x31,0x5d,0x29,0x29,0x2c,0x5b,0x65,0x2c,0x74,0x5d, 0x7d,0x2c,0x75,0x73,0x65,0x4d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72, 0x63,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x63,0x61,0x28,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53, 0x74,0x61,0x74,0x65,0x3d,0x7b,0x72,0x65,0x66,0x73,0x3a,0x7b,0x67,0x65,0x74,0x53, 0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x3a,0x74,0x2c,0x73,0x65,0x74,0x53,0x6e,0x61, 0x70,0x73,0x68,0x6f,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x73,0x6f,0x75,0x72, 0x63,0x65,0x3a,0x65,0x2c,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3a,0x6e, 0x7d,0x2c,0x68,0x61,0x28,0x72,0x2c,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x2c,0x75, 0x73,0x65,0x4f,0x70,0x61,0x71,0x75,0x65,0x49,0x64,0x65,0x6e,0x74,0x69,0x66,0x69, 0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66, 0x28,0x57,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x21,0x31,0x2c,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x52,0x2c,0x74,0x6f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x3a,0x65,0x2c,0x76,0x61,0x6c,0x75,0x65,0x4f,0x66, 0x3a,0x65,0x7d,0x7d,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x7c,0x7c,0x28,0x65,0x3d,0x21,0x30,0x2c, 0x6e,0x28,0x22,0x72,0x3a,0x22,0x2b,0x28,0x51,0x72,0x2b,0x2b,0x29,0x2e,0x74,0x6f, 0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x36,0x29,0x29,0x29,0x2c,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x33,0x35,0x35,0x29,0x29,0x7d,0x29,0x29,0x2c,0x6e,0x3d, 0x67,0x61,0x28,0x74,0x29,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x65,0x61,0x2e,0x6d,0x6f,0x64,0x65,0x29,0x26, 0x26,0x28,0x65,0x61,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x35,0x31,0x36,0x2c, 0x6d,0x61,0x28,0x35,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x6e,0x28,0x22,0x72,0x3a,0x22,0x2b,0x28,0x51,0x72,0x2b,0x2b,0x29,0x2e,0x74, 0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x36,0x29,0x29,0x7d,0x29,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x29,0x2c,0x74,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x61,0x28,0x74,0x3d,0x22,0x72,0x3a,0x22,0x2b, 0x28,0x51,0x72,0x2b,0x2b,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28, 0x33,0x36,0x29,0x29,0x2c,0x74,0x7d,0x2c,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x69,0x73,0x4e,0x65,0x77,0x52,0x65,0x63,0x6f,0x6e,0x63,0x69,0x6c,0x65,0x72, 0x3a,0x21,0x31,0x7d,0x2c,0x49,0x61,0x3d,0x7b,0x72,0x65,0x61,0x64,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3a,0x75,0x69,0x2c,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x3a,0x43,0x61,0x2c,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x3a,0x75,0x69,0x2c,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x78, 0x61,0x2c,0x75,0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61,0x74,0x69,0x76,0x65,0x48, 0x61,0x6e,0x64,0x6c,0x65,0x3a,0x6b,0x61,0x2c,0x75,0x73,0x65,0x4c,0x61,0x79,0x6f, 0x75,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x45,0x61,0x2c,0x75,0x73,0x65,0x4d, 0x65,0x6d,0x6f,0x3a,0x41,0x61,0x2c,0x75,0x73,0x65,0x52,0x65,0x64,0x75,0x63,0x65, 0x72,0x3a,0x66,0x61,0x2c,0x75,0x73,0x65,0x52,0x65,0x66,0x3a,0x79,0x61,0x2c,0x75, 0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x28,0x73,0x61,0x29, 0x7d,0x2c,0x75,0x73,0x65,0x44,0x65,0x62,0x75,0x67,0x56,0x61,0x6c,0x75,0x65,0x3a, 0x53,0x61,0x2c,0x75,0x73,0x65,0x44,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x56,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x66,0x61,0x28,0x73,0x61,0x29,0x2c,0x6e,0x3d,0x74, 0x5b,0x30,0x5d,0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x78,0x61,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3d,0x31,0x3b,0x74,0x72,0x79,0x7b,0x72,0x28,0x65,0x29,0x7d,0x66,0x69, 0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3d,0x74,0x7d,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x6e,0x7d, 0x2c,0x75,0x73,0x65,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x66,0x61,0x28,0x73,0x61,0x29,0x5b,0x30,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x5b,0x79,0x61,0x28,0x29,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x65,0x5d, 0x7d,0x2c,0x75,0x73,0x65,0x4d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72, 0x63,0x65,0x3a,0x76,0x61,0x2c,0x75,0x73,0x65,0x4f,0x70,0x61,0x71,0x75,0x65,0x49, 0x64,0x65,0x6e,0x74,0x69,0x66,0x69,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x28,0x73, 0x61,0x29,0x5b,0x30,0x5d,0x7d,0x2c,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f, 0x69,0x73,0x4e,0x65,0x77,0x52,0x65,0x63,0x6f,0x6e,0x63,0x69,0x6c,0x65,0x72,0x3a, 0x21,0x31,0x7d,0x2c,0x52,0x61,0x3d,0x7b,0x72,0x65,0x61,0x64,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x3a,0x75,0x69,0x2c,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61, 0x63,0x6b,0x3a,0x43,0x61,0x2c,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x3a,0x75,0x69,0x2c,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x78,0x61, 0x2c,0x75,0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61,0x74,0x69,0x76,0x65,0x48,0x61, 0x6e,0x64,0x6c,0x65,0x3a,0x6b,0x61,0x2c,0x75,0x73,0x65,0x4c,0x61,0x79,0x6f,0x75, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x45,0x61,0x2c,0x75,0x73,0x65,0x4d,0x65, 0x6d,0x6f,0x3a,0x41,0x61,0x2c,0x75,0x73,0x65,0x52,0x65,0x64,0x75,0x63,0x65,0x72, 0x3a,0x64,0x61,0x2c,0x75,0x73,0x65,0x52,0x65,0x66,0x3a,0x79,0x61,0x2c,0x75,0x73, 0x65,0x53,0x74,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x61,0x28,0x73,0x61,0x29,0x7d, 0x2c,0x75,0x73,0x65,0x44,0x65,0x62,0x75,0x67,0x56,0x61,0x6c,0x75,0x65,0x3a,0x53, 0x61,0x2c,0x75,0x73,0x65,0x44,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x56,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x64,0x61,0x28,0x73,0x61,0x29,0x2c,0x6e,0x3d,0x74,0x5b, 0x30,0x5d,0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x78,0x61,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x3d,0x31,0x3b,0x74,0x72,0x79,0x7b,0x72,0x28,0x65,0x29,0x7d,0x66,0x69,0x6e, 0x61,0x6c,0x6c,0x79,0x7b,0x4a,0x69,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3d,0x74,0x7d,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x2c,0x6e,0x7d,0x2c, 0x75,0x73,0x65,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x64, 0x61,0x28,0x73,0x61,0x29,0x5b,0x30,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b, 0x79,0x61,0x28,0x29,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x65,0x5d,0x7d, 0x2c,0x75,0x73,0x65,0x4d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63, 0x65,0x3a,0x76,0x61,0x2c,0x75,0x73,0x65,0x4f,0x70,0x61,0x71,0x75,0x65,0x49,0x64, 0x65,0x6e,0x74,0x69,0x66,0x69,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x61,0x28,0x73,0x61, 0x29,0x5b,0x30,0x5d,0x7d,0x2c,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x69, 0x73,0x4e,0x65,0x77,0x52,0x65,0x63,0x6f,0x6e,0x63,0x69,0x6c,0x65,0x72,0x3a,0x21, 0x31,0x7d,0x2c,0x4c,0x61,0x3d,0x77,0x2e,0x52,0x65,0x61,0x63,0x74,0x43,0x75,0x72, 0x72,0x65,0x6e,0x74,0x4f,0x77,0x6e,0x65,0x72,0x2c,0x46,0x61,0x3d,0x21,0x31,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7b,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x43,0x69,0x28,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x6e,0x2c,0x72,0x29,0x3a,0x53,0x69,0x28,0x74,0x2c,0x65,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x2c,0x6e,0x2c,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x42,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x6e,0x3d, 0x6e,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74, 0x2e,0x72,0x65,0x66,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x69,0x28,0x74, 0x2c,0x6f,0x29,0x2c,0x72,0x3d,0x75,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x2c,0x69,0x2c,0x6f,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c, 0x46,0x61,0x3f,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x2c,0x4d, 0x61,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x29,0x3a,0x28,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65, 0x75,0x65,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x3d,0x2d,0x35,0x31,0x37,0x2c,0x65, 0x2e,0x6c,0x61,0x6e,0x65,0x73,0x26,0x3d,0x7e,0x6f,0x2c,0x69,0x75,0x28,0x65,0x2c, 0x74,0x2c,0x6f,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a, 0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x61,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x61,0x7c,0x7c,0x56,0x63,0x28,0x61,0x29,0x7c,0x7c,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50, 0x72,0x6f,0x70,0x73,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x2e,0x63, 0x6f,0x6d,0x70,0x61,0x72,0x65,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x6e,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3f, 0x28,0x28,0x65,0x3d,0x71,0x63,0x28,0x6e,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6e,0x75, 0x6c,0x6c,0x2c,0x72,0x2c,0x74,0x2c,0x74,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x69,0x29, 0x29,0x2e,0x72,0x65,0x66,0x3d,0x74,0x2e,0x72,0x65,0x66,0x2c,0x65,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x65, 0x29,0x3a,0x28,0x74,0x2e,0x74,0x61,0x67,0x3d,0x31,0x35,0x2c,0x74,0x2e,0x74,0x79, 0x70,0x65,0x3d,0x61,0x2c,0x55,0x61,0x28,0x65,0x2c,0x74,0x2c,0x61,0x2c,0x72,0x2c, 0x6f,0x2c,0x69,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3d,0x65, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x6f,0x26,0x69,0x29, 0x26,0x26,0x28,0x6f,0x3d,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50, 0x72,0x6f,0x70,0x73,0x2c,0x28,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28, 0x6e,0x3d,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x29,0x3f,0x6e,0x3a,0x64, 0x72,0x29,0x28,0x6f,0x2c,0x72,0x29,0x26,0x26,0x65,0x2e,0x72,0x65,0x66,0x3d,0x3d, 0x3d,0x74,0x2e,0x72,0x65,0x66,0x29,0x3f,0x69,0x75,0x28,0x65,0x2c,0x74,0x2c,0x69, 0x29,0x3a,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x2c,0x28,0x65, 0x3d,0x47,0x63,0x28,0x61,0x2c,0x72,0x29,0x29,0x2e,0x72,0x65,0x66,0x3d,0x74,0x2e, 0x72,0x65,0x66,0x2c,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x55,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c, 0x69,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26, 0x64,0x72,0x28,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f, 0x70,0x73,0x2c,0x72,0x29,0x26,0x26,0x65,0x2e,0x72,0x65,0x66,0x3d,0x3d,0x3d,0x74, 0x2e,0x72,0x65,0x66,0x29,0x7b,0x69,0x66,0x28,0x46,0x61,0x3d,0x21,0x31,0x2c,0x30, 0x3d,0x3d,0x3d,0x28,0x69,0x26,0x6f,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x2c, 0x69,0x75,0x28,0x65,0x2c,0x74,0x2c,0x69,0x29,0x3b,0x30,0x21,0x3d,0x3d,0x28,0x31, 0x36,0x33,0x38,0x34,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x26,0x26,0x28, 0x46,0x61,0x3d,0x21,0x30,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x61, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x69,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x57,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72, 0x6f,0x70,0x73,0x2c,0x6f,0x3d,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3f,0x65,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c, 0x3b,0x69,0x66,0x28,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3d,0x3d,0x3d,0x72, 0x2e,0x6d,0x6f,0x64,0x65,0x7c,0x7c,0x22,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x2d,0x64,0x65,0x66,0x65,0x72,0x2d,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x2d,0x68, 0x69,0x64,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x6d,0x6f,0x64,0x65,0x29, 0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x34,0x26,0x74,0x2e,0x6d,0x6f,0x64,0x65, 0x29,0x29,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3d,0x7b,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x3a,0x30,0x7d,0x2c, 0x4f,0x63,0x28,0x74,0x2c,0x6e,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28, 0x30,0x3d,0x3d,0x3d,0x28,0x31,0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x34,0x26, 0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x69,0x3f,0x69,0x2e,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73, 0x7c,0x6e,0x3a,0x6e,0x2c,0x74,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x31,0x30,0x37,0x33,0x37,0x34, 0x31,0x38,0x32,0x34,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53, 0x74,0x61,0x74,0x65,0x3d,0x7b,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x3a, 0x65,0x7d,0x2c,0x4f,0x63,0x28,0x74,0x2c,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b, 0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d, 0x7b,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x3a,0x30,0x7d,0x2c,0x4f,0x63, 0x28,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x3f,0x69,0x2e,0x62,0x61, 0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x3a,0x6e,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x3f,0x28,0x72,0x3d,0x69,0x2e,0x62,0x61, 0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x6e,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x3a, 0x72,0x3d,0x6e,0x2c,0x4f,0x63,0x28,0x74,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6f,0x2c,0x6e,0x29,0x2c,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x24,0x61,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e, 0x72,0x65,0x66,0x3b,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x65,0x26,0x26,0x65,0x2e,0x72,0x65,0x66,0x21,0x3d,0x3d,0x6e,0x29,0x26,0x26,0x28, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x32,0x38,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x48,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x2c,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x62,0x6f,0x28,0x6e,0x29, 0x3f,0x67,0x6f,0x3a,0x68,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3d,0x6d,0x6f,0x28,0x74,0x2c,0x69,0x29,0x2c, 0x61,0x69,0x28,0x74,0x2c,0x6f,0x29,0x2c,0x6e,0x3d,0x75,0x61,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x2c,0x69,0x2c,0x6f,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x65,0x7c,0x7c,0x46,0x61,0x3f,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c, 0x3d,0x31,0x2c,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x29,0x2c,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x3a,0x28,0x74,0x2e,0x75,0x70,0x64,0x61,0x74, 0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51, 0x75,0x65,0x75,0x65,0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x3d,0x2d,0x35, 0x31,0x37,0x2c,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x26,0x3d,0x7e,0x6f,0x2c,0x69, 0x75,0x28,0x65,0x2c,0x74,0x2c,0x6f,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x56,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29, 0x7b,0x69,0x66,0x28,0x62,0x6f,0x28,0x6e,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x21,0x30,0x3b,0x4f,0x6f,0x28,0x74,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69, 0x3d,0x21,0x31,0x3b,0x69,0x66,0x28,0x61,0x69,0x28,0x74,0x2c,0x6f,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64, 0x65,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x2e,0x61, 0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e, 0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74, 0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x29,0x2c,0x5f,0x69,0x28,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x2c,0x4f,0x69,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29, 0x2c,0x72,0x3d,0x21,0x30,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x74,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x75,0x3d,0x74,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3b,0x61,0x2e,0x70,0x72, 0x6f,0x70,0x73,0x3d,0x75,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x61,0x2e,0x63,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x2c,0x6c,0x3d,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x54,0x79,0x70,0x65,0x3b,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x6c,0x3f,0x6c,0x3d,0x75,0x69,0x28,0x6c,0x29,0x3a,0x6c,0x3d,0x6d,0x6f, 0x28,0x74,0x2c,0x6c,0x3d,0x62,0x6f,0x28,0x6e,0x29,0x3f,0x67,0x6f,0x3a,0x68,0x6f, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d, 0x6e,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70,0x73,0x2c,0x66,0x3d,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x73,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61, 0x70,0x73,0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74, 0x65,0x3b,0x66,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x55,0x4e,0x53,0x41,0x46, 0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52, 0x65,0x63,0x65,0x69,0x76,0x65,0x50,0x72,0x6f,0x70,0x73,0x26,0x26,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c, 0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x50,0x72,0x6f,0x70,0x73,0x7c,0x7c,0x28,0x75, 0x21,0x3d,0x3d,0x72,0x7c,0x7c,0x63,0x21,0x3d,0x3d,0x6c,0x29,0x26,0x26,0x77,0x69, 0x28,0x74,0x2c,0x61,0x2c,0x72,0x2c,0x6c,0x29,0x2c,0x63,0x69,0x3d,0x21,0x31,0x3b, 0x76,0x61,0x72,0x20,0x64,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x3b,0x61,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x64,0x2c, 0x68,0x69,0x28,0x74,0x2c,0x72,0x2c,0x61,0x2c,0x6f,0x29,0x2c,0x63,0x3d,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x75,0x21, 0x3d,0x3d,0x72,0x7c,0x7c,0x64,0x21,0x3d,0x3d,0x63,0x7c,0x7c,0x76,0x6f,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x63,0x69,0x3f,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x73,0x26,0x26,0x28,0x6d,0x69,0x28,0x74,0x2c,0x6e,0x2c,0x73,0x2c,0x72,0x29,0x2c, 0x63,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x29,0x2c,0x28,0x75,0x3d,0x63,0x69,0x7c,0x7c,0x79,0x69,0x28,0x74,0x2c,0x6e, 0x2c,0x75,0x2c,0x72,0x2c,0x64,0x2c,0x63,0x2c,0x6c,0x29,0x29,0x3f,0x28,0x66,0x7c, 0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74, 0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, 0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x7c,0x7c,0x28,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c, 0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65, 0x6e,0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x28,0x29,0x2c,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x61,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26,0x61, 0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, 0x74,0x57,0x69,0x6c,0x6c,0x4d,0x6f,0x75,0x6e,0x74,0x28,0x29,0x29,0x2c,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64, 0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c, 0x3d,0x34,0x29,0x29,0x3a,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26,0x28, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x2c,0x74,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3d,0x72,0x2c,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x63,0x29, 0x2c,0x61,0x2e,0x70,0x72,0x6f,0x70,0x73,0x3d,0x72,0x2c,0x61,0x2e,0x73,0x74,0x61, 0x74,0x65,0x3d,0x63,0x2c,0x61,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x6c, 0x2c,0x72,0x3d,0x75,0x29,0x3a,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x4d,0x6f,0x75,0x6e,0x74,0x26,0x26, 0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x2c,0x72,0x3d,0x21, 0x31,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x61,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74, 0x65,0x4e,0x6f,0x64,0x65,0x2c,0x73,0x69,0x28,0x65,0x2c,0x74,0x29,0x2c,0x75,0x3d, 0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c, 0x6c,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x74,0x2e,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3f,0x75,0x3a,0x4a,0x6f,0x28,0x74,0x2e, 0x74,0x79,0x70,0x65,0x2c,0x75,0x29,0x2c,0x61,0x2e,0x70,0x72,0x6f,0x70,0x73,0x3d, 0x6c,0x2c,0x66,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f, 0x70,0x73,0x2c,0x64,0x3d,0x61,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2c,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x28,0x63,0x3d,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79,0x70,0x65, 0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x63,0x3f,0x63,0x3d,0x75,0x69, 0x28,0x63,0x29,0x3a,0x63,0x3d,0x6d,0x6f,0x28,0x74,0x2c,0x63,0x3d,0x62,0x6f,0x28, 0x6e,0x29,0x3f,0x67,0x6f,0x3a,0x68,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x44,0x65,0x72, 0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f, 0x70,0x73,0x3b,0x28,0x73,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x70,0x7c,0x7c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x61,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x42,0x65, 0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x29,0x7c,0x7c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x61,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x50,0x72, 0x6f,0x70,0x73,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x50, 0x72,0x6f,0x70,0x73,0x7c,0x7c,0x28,0x75,0x21,0x3d,0x3d,0x66,0x7c,0x7c,0x64,0x21, 0x3d,0x3d,0x63,0x29,0x26,0x26,0x77,0x69,0x28,0x74,0x2c,0x61,0x2c,0x72,0x2c,0x63, 0x29,0x2c,0x63,0x69,0x3d,0x21,0x31,0x2c,0x64,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x61,0x2e,0x73,0x74,0x61,0x74, 0x65,0x3d,0x64,0x2c,0x68,0x69,0x28,0x74,0x2c,0x72,0x2c,0x61,0x2c,0x6f,0x29,0x3b, 0x76,0x61,0x72,0x20,0x68,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x3b,0x75,0x21,0x3d,0x3d,0x66,0x7c,0x7c,0x64,0x21,0x3d, 0x3d,0x68,0x7c,0x7c,0x76,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c, 0x63,0x69,0x3f,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x70,0x26,0x26,0x28,0x6d,0x69,0x28,0x74, 0x2c,0x6e,0x2c,0x70,0x2c,0x72,0x29,0x2c,0x68,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x2c,0x28,0x6c,0x3d,0x63,0x69, 0x7c,0x7c,0x79,0x69,0x28,0x74,0x2c,0x6e,0x2c,0x6c,0x2c,0x72,0x2c,0x64,0x2c,0x68, 0x2c,0x63,0x29,0x29,0x3f,0x28,0x73,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x55, 0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57, 0x69,0x6c,0x6c,0x55,0x70,0x64,0x61,0x74,0x65,0x26,0x26,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61, 0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55,0x70, 0x64,0x61,0x74,0x65,0x7c,0x7c,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55,0x70,0x64,0x61,0x74,0x65, 0x26,0x26,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c, 0x6c,0x55,0x70,0x64,0x61,0x74,0x65,0x28,0x72,0x2c,0x68,0x2c,0x63,0x29,0x2c,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x61,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55,0x70,0x64,0x61,0x74,0x65,0x26, 0x26,0x61,0x2e,0x55,0x4e,0x53,0x41,0x46,0x45,0x5f,0x63,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55,0x70,0x64,0x61,0x74,0x65,0x28,0x72,0x2c, 0x68,0x2c,0x63,0x29,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x55,0x70,0x64,0x61,0x74,0x65,0x26,0x26, 0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x2c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x61,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x42,0x65, 0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x26,0x26,0x28,0x74,0x2e,0x66, 0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x35,0x36,0x29,0x29,0x3a,0x28,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x55, 0x70,0x64,0x61,0x74,0x65,0x7c,0x7c,0x75,0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x26,0x26,0x64,0x3d,0x3d,0x3d, 0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x7c, 0x7c,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x2c,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x61,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x42, 0x65,0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x7c,0x7c,0x75,0x3d,0x3d, 0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73, 0x26,0x26,0x64,0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x7c,0x7c,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c, 0x3d,0x32,0x35,0x36,0x29,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x50,0x72,0x6f,0x70,0x73,0x3d,0x72,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x68,0x29,0x2c,0x61,0x2e,0x70,0x72,0x6f, 0x70,0x73,0x3d,0x72,0x2c,0x61,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x68,0x2c,0x61, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x63,0x2c,0x72,0x3d,0x6c,0x29,0x3a, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74, 0x44,0x69,0x64,0x55,0x70,0x64,0x61,0x74,0x65,0x7c,0x7c,0x75,0x3d,0x3d,0x3d,0x65, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x26,0x26, 0x64,0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x7c,0x7c,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34, 0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x2e,0x67,0x65,0x74,0x53,0x6e,0x61,0x70,0x73, 0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x7c, 0x7c,0x75,0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50, 0x72,0x6f,0x70,0x73,0x26,0x26,0x64,0x3d,0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x7c,0x7c,0x28,0x74,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x7c,0x3d,0x32,0x35,0x36,0x29,0x2c,0x72,0x3d,0x21,0x31,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x2c,0x69,0x2c,0x6f,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x47,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b, 0x24,0x61,0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x30,0x21, 0x3d,0x3d,0x28,0x36,0x34,0x26,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x3b,0x69, 0x66,0x28,0x21,0x72,0x26,0x26,0x21,0x61,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x26,0x26,0x78,0x6f,0x28,0x74,0x2c,0x6e,0x2c,0x21,0x31,0x29,0x2c,0x69,0x75, 0x28,0x65,0x2c,0x74,0x2c,0x69,0x29,0x3b,0x72,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74, 0x65,0x4e,0x6f,0x64,0x65,0x2c,0x4c,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3d,0x74,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x61,0x26,0x26,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x6e,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x46,0x72,0x6f,0x6d,0x45,0x72,0x72,0x6f,0x72,0x3f,0x6e,0x75,0x6c,0x6c,0x3a, 0x72,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x2c,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x61,0x3f,0x28,0x74,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x3d,0x53,0x69,0x28,0x74,0x2c,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x69,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x53, 0x69,0x28,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x2c,0x69,0x29,0x29,0x3a,0x4d, 0x61,0x28,0x65,0x2c,0x74,0x2c,0x75,0x2c,0x69,0x29,0x2c,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x72,0x2e,0x73,0x74,0x61, 0x74,0x65,0x2c,0x6f,0x26,0x26,0x78,0x6f,0x28,0x74,0x2c,0x6e,0x2c,0x21,0x30,0x29, 0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x71,0x61,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x74,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3f,0x5f,0x6f,0x28,0x30,0x2c, 0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x2c,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x21,0x3d,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x3a,0x74, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x26,0x26,0x5f,0x6f,0x28,0x30,0x2c,0x74, 0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2c,0x21,0x31,0x29,0x2c,0x49,0x69,0x28, 0x65,0x2c,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66, 0x6f,0x29,0x7d,0x76,0x61,0x72,0x20,0x4b,0x61,0x2c,0x59,0x61,0x2c,0x51,0x61,0x2c, 0x58,0x61,0x3d,0x7b,0x64,0x65,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x64,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x72,0x65,0x74,0x72,0x79,0x4c,0x61,0x6e,0x65,0x3a,0x30,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x61,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x3d,0x74,0x2e,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c,0x69,0x3d,0x4d,0x69,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x61,0x3d,0x21,0x31,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x28,0x72,0x3d,0x30,0x21,0x3d,0x3d,0x28,0x36,0x34,0x26,0x74,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x29,0x29,0x7c,0x7c,0x28,0x72,0x3d,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x26,0x26, 0x30,0x21,0x3d,0x3d,0x28,0x32,0x26,0x69,0x29,0x29,0x2c,0x72,0x3f,0x28,0x61,0x3d, 0x21,0x30,0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x3d,0x2d,0x36,0x35,0x29, 0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x2e,0x66,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x7c,0x7c,0x21,0x30,0x3d,0x3d,0x3d,0x6f,0x2e,0x75, 0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x61,0x76,0x6f,0x69,0x64,0x54,0x68,0x69, 0x73,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x7c,0x7c,0x28,0x69,0x7c,0x3d,0x31, 0x29,0x2c,0x66,0x6f,0x28,0x4d,0x69,0x2c,0x31,0x26,0x69,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x6f,0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x26,0x26,0x56,0x69,0x28,0x74, 0x29,0x2c,0x65,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x69, 0x3d,0x6f,0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x61,0x3f,0x28,0x65, 0x3d,0x5a,0x61,0x28,0x74,0x2c,0x65,0x2c,0x69,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x3d,0x7b,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x3a,0x6e,0x7d, 0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x3d,0x58,0x61,0x2c,0x65,0x29,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x75,0x6e,0x73,0x74,0x61, 0x62,0x6c,0x65,0x5f,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x4c,0x6f,0x61,0x64, 0x54,0x69,0x6d,0x65,0x3f,0x28,0x65,0x3d,0x5a,0x61,0x28,0x74,0x2c,0x65,0x2c,0x69, 0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x7b,0x62,0x61,0x73,0x65,0x4c, 0x61,0x6e,0x65,0x73,0x3a,0x6e,0x7d,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x58,0x61,0x2c,0x74,0x2e,0x6c,0x61,0x6e, 0x65,0x73,0x3d,0x33,0x33,0x35,0x35,0x34,0x34,0x33,0x32,0x2c,0x65,0x29,0x3a,0x28, 0x28,0x6e,0x3d,0x59,0x63,0x28,0x7b,0x6d,0x6f,0x64,0x65,0x3a,0x22,0x76,0x69,0x73, 0x69,0x62,0x6c,0x65,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65, 0x7d,0x2c,0x74,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x6e,0x2c,0x6e,0x75,0x6c,0x6c,0x29, 0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x74,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x3d,0x6e,0x29,0x29,0x3a,0x28,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x61,0x3f,0x28,0x6f,0x3d,0x74,0x75,0x28, 0x65,0x2c,0x74,0x2c,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6f, 0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x6e,0x29,0x2c,0x61,0x3d,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x61, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69,0x3f,0x7b,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e, 0x65,0x73,0x3a,0x6e,0x7d,0x3a,0x7b,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73, 0x3a,0x69,0x2e,0x62,0x61,0x73,0x65,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x6e,0x7d,0x2c, 0x61,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x65,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x26,0x7e,0x6e,0x2c,0x74,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x58,0x61,0x2c, 0x6f,0x29,0x3a,0x28,0x6e,0x3d,0x65,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6f,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x6e,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x61,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65, 0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x7b,0x6d,0x6f,0x64,0x65,0x3a,0x22, 0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x74,0x7d,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x6f,0x29,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x3f,0x28,0x69,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x4c,0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x69,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e, 0x67,0x50,0x72,0x6f,0x70,0x73,0x3d,0x74,0x29,0x3a,0x69,0x3d,0x59,0x63,0x28,0x74, 0x2c,0x6f,0x2c,0x30,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x6e,0x3d,0x4b,0x63,0x28, 0x6e,0x2c,0x6f,0x2c,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x69,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d, 0x65,0x2c,0x69,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x2c,0x65,0x2e, 0x63,0x68,0x69,0x6c,0x64,0x3d,0x69,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x65,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3d,0x6f,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2c, 0x6e,0x3d,0x47,0x63,0x28,0x6f,0x2c,0x7b,0x6d,0x6f,0x64,0x65,0x3a,0x22,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x6e,0x7d,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x74,0x2e,0x6d,0x6f,0x64, 0x65,0x29,0x26,0x26,0x28,0x6e,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x72,0x29,0x2c, 0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x6e,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x65,0x26,0x26,0x28,0x65,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x38, 0x2c,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x74, 0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x65,0x29,0x2c,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x74,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b, 0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x65,0x2c,0x61,0x3d,0x65, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x65,0x3d,0x61,0x2e,0x73,0x69,0x62,0x6c,0x69, 0x6e,0x67,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x7b,0x6d,0x6f,0x64,0x65,0x3a,0x22, 0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x6e,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x28, 0x32,0x26,0x69,0x29,0x26,0x26,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x21,0x3d,0x3d, 0x61,0x3f,0x28,0x28,0x6e,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x6e,0x2e,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x3d,0x75,0x2c,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x28,0x61,0x3d,0x6e,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66, 0x65,0x63,0x74,0x29,0x3f,0x28,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66, 0x65,0x63,0x74,0x3d,0x6e,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63, 0x74,0x2c,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x61, 0x2c,0x61,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x3a,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63, 0x74,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e, 0x75,0x6c,0x6c,0x29,0x3a,0x6e,0x3d,0x47,0x63,0x28,0x61,0x2c,0x75,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3f,0x72,0x3d,0x47,0x63,0x28,0x65,0x2c,0x72, 0x29,0x3a,0x28,0x72,0x3d,0x4b,0x63,0x28,0x72,0x2c,0x69,0x2c,0x6f,0x2c,0x6e,0x75, 0x6c,0x6c,0x29,0x29,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x2c,0x72,0x2e, 0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x2c,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3d,0x74,0x2c,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x72,0x2c, 0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6e,0x2c,0x72,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6e,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x6c, 0x61,0x6e,0x65,0x73,0x7c,0x3d,0x74,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6e,0x26,0x26,0x28,0x6e,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x74,0x29, 0x2c,0x69,0x69,0x28,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x74,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x75,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x61,0x3f,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x7b,0x69,0x73,0x42,0x61,0x63,0x6b,0x77, 0x61,0x72,0x64,0x73,0x3a,0x74,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67, 0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x53, 0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3a,0x30,0x2c,0x6c,0x61,0x73,0x74,0x3a, 0x72,0x2c,0x74,0x61,0x69,0x6c,0x3a,0x6e,0x2c,0x74,0x61,0x69,0x6c,0x4d,0x6f,0x64, 0x65,0x3a,0x6f,0x2c,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a,0x69, 0x7d,0x3a,0x28,0x61,0x2e,0x69,0x73,0x42,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x73, 0x3d,0x74,0x2c,0x61,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x61,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x53, 0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3d,0x30,0x2c,0x61,0x2e,0x6c,0x61,0x73, 0x74,0x3d,0x72,0x2c,0x61,0x2e,0x74,0x61,0x69,0x6c,0x3d,0x6e,0x2c,0x61,0x2e,0x74, 0x61,0x69,0x6c,0x4d,0x6f,0x64,0x65,0x3d,0x6f,0x2c,0x61,0x2e,0x6c,0x61,0x73,0x74, 0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x69,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6f,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70, 0x73,0x2c,0x6f,0x3d,0x72,0x2e,0x72,0x65,0x76,0x65,0x61,0x6c,0x4f,0x72,0x64,0x65, 0x72,0x2c,0x69,0x3d,0x72,0x2e,0x74,0x61,0x69,0x6c,0x3b,0x69,0x66,0x28,0x4d,0x61, 0x28,0x65,0x2c,0x74,0x2c,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c, 0x6e,0x29,0x2c,0x30,0x21,0x3d,0x3d,0x28,0x32,0x26,0x28,0x72,0x3d,0x4d,0x69,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x29,0x29,0x72,0x3d,0x31,0x26,0x72,0x7c, 0x32,0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x36,0x34,0x3b,0x65,0x6c, 0x73,0x65,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26, 0x30,0x21,0x3d,0x3d,0x28,0x36,0x34,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29, 0x29,0x65,0x3a,0x66,0x6f,0x72,0x28,0x65,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3b,0x29,0x7b,0x69,0x66,0x28,0x31, 0x33,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x26,0x26,0x6e,0x75,0x28,0x65,0x2c,0x6e,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69, 0x66,0x28,0x31,0x39,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x6e,0x75,0x28, 0x65,0x2c,0x6e,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x65,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65,0x2c,0x65,0x3d, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, 0x7d,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x74,0x29,0x62,0x72,0x65,0x61,0x6b,0x20, 0x65,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x65,0x2e, 0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x3d,0x3d,0x74,0x29,0x62,0x72,0x65,0x61,0x6b, 0x20,0x65,0x3b,0x65,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x65,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x65, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c, 0x69,0x6e,0x67,0x7d,0x72,0x26,0x3d,0x31,0x7d,0x69,0x66,0x28,0x66,0x6f,0x28,0x4d, 0x69,0x2c,0x72,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x74,0x2e,0x6d,0x6f, 0x64,0x65,0x29,0x29,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x65,0x6c,0x73,0x65,0x20,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x6f,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x72, 0x77,0x61,0x72,0x64,0x73,0x22,0x3a,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x74,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x2c,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x6e,0x3b,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d, 0x6e,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x29,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x42,0x69,0x28,0x65,0x29,0x26,0x26,0x28,0x6f,0x3d,0x6e, 0x29,0x2c,0x6e,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6e,0x3d,0x6f,0x29,0x3f,0x28,0x6f,0x3d,0x74,0x2e, 0x63,0x68,0x69,0x6c,0x64,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x3a,0x28,0x6f,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x2c,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x72,0x75,0x28,0x74,0x2c,0x21,0x31,0x2c,0x6f,0x2c,0x6e,0x2c,0x69,0x2c,0x74, 0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64, 0x73,0x22,0x3a,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x3d, 0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d, 0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x3b,0x29,0x7b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x6f,0x2e,0x61, 0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x42,0x69,0x28,0x65,0x29,0x29,0x7b,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x3d,0x6f,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x65,0x3d,0x6f,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x2c,0x6f,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x6e, 0x2c,0x6e,0x3d,0x6f,0x2c,0x6f,0x3d,0x65,0x7d,0x72,0x75,0x28,0x74,0x2c,0x21,0x30, 0x2c,0x6e,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x2c,0x74,0x2e,0x6c,0x61,0x73,0x74, 0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x22,0x74,0x6f,0x67,0x65,0x74,0x68,0x65,0x72,0x22,0x3a,0x72,0x75,0x28, 0x74,0x2c,0x21,0x31,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x3a,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x63,0x68,0x69,0x6c,0x64,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69, 0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x74,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x65, 0x6e,0x63,0x69,0x65,0x73,0x3d,0x65,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e, 0x63,0x69,0x65,0x73,0x29,0x2c,0x55,0x75,0x7c,0x3d,0x74,0x2e,0x6c,0x61,0x6e,0x65, 0x73,0x2c,0x30,0x21,0x3d,0x3d,0x28,0x6e,0x26,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x4c,0x61,0x6e,0x65,0x73,0x29,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x65,0x26,0x26,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x21,0x3d,0x3d,0x65, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x31,0x35,0x33,0x29,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x6e,0x3d,0x47,0x63,0x28,0x65,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x2c,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x29, 0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6e,0x2c,0x6e,0x2e,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3d,0x74,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x73, 0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c, 0x69,0x6e,0x67,0x2c,0x28,0x6e,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x3d,0x47,0x63,0x28,0x65,0x2c,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50, 0x72,0x6f,0x70,0x73,0x29,0x29,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x3b, 0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x61,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x57, 0x69,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x74,0x61,0x69,0x6c,0x4d, 0x6f,0x64,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x68,0x69,0x64,0x64,0x65,0x6e, 0x22,0x3a,0x74,0x3d,0x65,0x2e,0x74,0x61,0x69,0x6c,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x74,0x3b,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x61,0x6c,0x74, 0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26,0x28,0x6e,0x3d,0x74,0x29,0x2c,0x74,0x3d, 0x74,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x6e,0x3f,0x65,0x2e,0x74,0x61,0x69,0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x3a,0x6e, 0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73, 0x65,0x64,0x22,0x3a,0x6e,0x3d,0x65,0x2e,0x74,0x61,0x69,0x6c,0x3b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x6e,0x3b,0x29,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x2e,0x61, 0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26,0x28,0x72,0x3d,0x6e,0x29,0x2c, 0x6e,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x72,0x3f,0x74,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65, 0x2e,0x74,0x61,0x69,0x6c,0x3f,0x65,0x2e,0x74,0x61,0x69,0x6c,0x3d,0x6e,0x75,0x6c, 0x6c,0x3a,0x65,0x2e,0x74,0x61,0x69,0x6c,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x3d,0x6e,0x75,0x6c,0x6c,0x3a,0x72,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75, 0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74, 0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x3b,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65, 0x20,0x32,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x36,0x3a,0x63,0x61,0x73,0x65,0x20, 0x31,0x35,0x3a,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61,0x73,0x65,0x20,0x31, 0x31,0x3a,0x63,0x61,0x73,0x65,0x20,0x37,0x3a,0x63,0x61,0x73,0x65,0x20,0x38,0x3a, 0x63,0x61,0x73,0x65,0x20,0x31,0x32,0x3a,0x63,0x61,0x73,0x65,0x20,0x39,0x3a,0x63, 0x61,0x73,0x65,0x20,0x31,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x20,0x31, 0x37,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x6f,0x28,0x74,0x2e,0x74,0x79, 0x70,0x65,0x29,0x26,0x26,0x79,0x6f,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x63, 0x61,0x73,0x65,0x20,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x69,0x28, 0x29,0x2c,0x73,0x6f,0x28,0x76,0x6f,0x29,0x2c,0x73,0x6f,0x28,0x68,0x6f,0x29,0x2c, 0x51,0x69,0x28,0x29,0x2c,0x28,0x72,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x29,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x26,0x26,0x28,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d, 0x72,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x2c,0x72,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65, 0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x7c,0x7c,0x28,0x71,0x69,0x28,0x74,0x29,0x3f,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73, 0x7c,0x3d,0x34,0x3a,0x72,0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x7c,0x7c,0x28, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x35,0x36,0x29,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x46,0x69,0x28,0x74,0x29, 0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x4e,0x69,0x28,0x44,0x69,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x29,0x3b,0x69,0x66,0x28,0x6e,0x3d,0x74,0x2e,0x74,0x79,0x70, 0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x59,0x61, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x2c,0x65,0x2e,0x72,0x65,0x66,0x21, 0x3d,0x3d,0x74,0x2e,0x72,0x65,0x66,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67, 0x73,0x7c,0x3d,0x31,0x32,0x38,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28, 0x21,0x72,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x36,0x29,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x69,0x66,0x28,0x65,0x3d,0x4e, 0x69,0x28,0x54,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x71,0x69, 0x28,0x74,0x29,0x29,0x7b,0x72,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x2c,0x6e,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20, 0x75,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70, 0x73,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x72,0x5b,0x4a,0x72,0x5d,0x3d,0x74, 0x2c,0x72,0x5b,0x5a,0x72,0x5d,0x3d,0x75,0x2c,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65, 0x22,0x64,0x69,0x61,0x6c,0x6f,0x67,0x22,0x3a,0x54,0x72,0x28,0x22,0x63,0x61,0x6e, 0x63,0x65,0x6c,0x22,0x2c,0x72,0x29,0x2c,0x54,0x72,0x28,0x22,0x63,0x6c,0x6f,0x73, 0x65,0x22,0x2c,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65, 0x22,0x69,0x66,0x72,0x61,0x6d,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6d,0x62,0x65,0x64, 0x22,0x3a,0x54,0x72,0x28,0x22,0x6c,0x6f,0x61,0x64,0x22,0x2c,0x72,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x76,0x69,0x64,0x65,0x6f,0x22, 0x3a,0x63,0x61,0x73,0x65,0x22,0x61,0x75,0x64,0x69,0x6f,0x22,0x3a,0x66,0x6f,0x72, 0x28,0x65,0x3d,0x30,0x3b,0x65,0x3c,0x6b,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x65,0x2b,0x2b,0x29,0x54,0x72,0x28,0x6b,0x72,0x5b,0x65,0x5d,0x2c,0x72,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x73,0x6f,0x75,0x72, 0x63,0x65,0x22,0x3a,0x54,0x72,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x2c,0x72, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x69,0x6d,0x67, 0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x69,0x6d,0x61,0x67,0x65,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x6c,0x69,0x6e,0x6b,0x22,0x3a,0x54,0x72,0x28,0x22,0x65,0x72,0x72, 0x6f,0x72,0x22,0x2c,0x72,0x29,0x2c,0x54,0x72,0x28,0x22,0x6c,0x6f,0x61,0x64,0x22, 0x2c,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x64, 0x65,0x74,0x61,0x69,0x6c,0x73,0x22,0x3a,0x54,0x72,0x28,0x22,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x22,0x2c,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x65,0x65,0x28,0x72,0x2c,0x75,0x29, 0x2c,0x54,0x72,0x28,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x72,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x73,0x65,0x6c,0x65, 0x63,0x74,0x22,0x3a,0x72,0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74, 0x61,0x74,0x65,0x3d,0x7b,0x77,0x61,0x73,0x4d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65, 0x3a,0x21,0x21,0x75,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x7d,0x2c,0x54, 0x72,0x28,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x72,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x65,0x78,0x74,0x61,0x72, 0x65,0x61,0x22,0x3a,0x63,0x65,0x28,0x72,0x2c,0x75,0x29,0x2c,0x54,0x72,0x28,0x22, 0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x72,0x29,0x7d,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6c,0x20,0x69,0x6e,0x20,0x45,0x65,0x28,0x6e,0x2c,0x75,0x29, 0x2c,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x29,0x75,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x6c,0x29,0x26,0x26,0x28, 0x69,0x3d,0x75,0x5b,0x6c,0x5d,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x22,0x3d,0x3d,0x3d,0x6c,0x3f,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x3f,0x72,0x2e,0x74,0x65,0x78,0x74, 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x21,0x3d,0x3d,0x69,0x26,0x26,0x28,0x65,0x3d, 0x5b,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x69,0x5d,0x29,0x3a, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x69,0x26,0x26,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x21,0x3d,0x3d,0x22,0x22,0x2b,0x69,0x26,0x26,0x28,0x65,0x3d,0x5b,0x22, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x22,0x22,0x2b,0x69,0x5d,0x29, 0x3a,0x63,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x28,0x6c,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x69,0x26,0x26,0x22, 0x6f,0x6e,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x3d,0x3d,0x3d,0x6c,0x26,0x26,0x54, 0x72,0x28,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x72,0x29,0x29,0x3b,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x69,0x6e, 0x70,0x75,0x74,0x22,0x3a,0x51,0x28,0x72,0x29,0x2c,0x72,0x65,0x28,0x72,0x2c,0x75, 0x2c,0x21,0x30,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3a,0x51,0x28,0x72,0x29,0x2c,0x73, 0x65,0x28,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x22,0x3a,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x75,0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b, 0x26,0x26,0x28,0x72,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x7a,0x72,0x29, 0x7d,0x72,0x3d,0x65,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65, 0x75,0x65,0x3d,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26,0x28, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x7d,0x65,0x6c,0x73,0x65, 0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6c,0x3d,0x39,0x3d,0x3d,0x3d,0x69,0x2e, 0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x69,0x3a,0x69,0x2e,0x6f,0x77,0x6e, 0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x65,0x3d,0x3d,0x3d,0x66, 0x65,0x26,0x26,0x28,0x65,0x3d,0x70,0x65,0x28,0x6e,0x29,0x29,0x2c,0x65,0x3d,0x3d, 0x3d,0x66,0x65,0x3f,0x22,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x3d,0x3d,0x3d,0x6e, 0x3f,0x28,0x28,0x65,0x3d,0x6c,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x28,0x22,0x64,0x69,0x76,0x22,0x29,0x29,0x2e,0x69,0x6e,0x6e, 0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x22,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e, 0x3c,0x5c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x22,0x2c,0x65,0x3d,0x65,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x65,0x2e,0x66,0x69, 0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x29,0x3a,0x22,0x73,0x74,0x72,0x69, 0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x2e,0x69, 0x73,0x3f,0x65,0x3d,0x6c,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x6e,0x2c,0x7b,0x69,0x73,0x3a,0x72,0x2e,0x69,0x73,0x7d,0x29, 0x3a,0x28,0x65,0x3d,0x6c,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x6e,0x29,0x2c,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6c,0x3d,0x65,0x2c,0x72,0x2e,0x6d,0x75,0x6c,0x74, 0x69,0x70,0x6c,0x65,0x3f,0x6c,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x3d, 0x21,0x30,0x3a,0x72,0x2e,0x73,0x69,0x7a,0x65,0x26,0x26,0x28,0x6c,0x2e,0x73,0x69, 0x7a,0x65,0x3d,0x72,0x2e,0x73,0x69,0x7a,0x65,0x29,0x29,0x29,0x3a,0x65,0x3d,0x6c, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x4e,0x53, 0x28,0x65,0x2c,0x6e,0x29,0x2c,0x65,0x5b,0x4a,0x72,0x5d,0x3d,0x74,0x2c,0x65,0x5b, 0x5a,0x72,0x5d,0x3d,0x72,0x2c,0x4b,0x61,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x65,0x2c,0x6c,0x3d,0x6a,0x65, 0x28,0x6e,0x2c,0x72,0x29,0x2c,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x64,0x69, 0x61,0x6c,0x6f,0x67,0x22,0x3a,0x54,0x72,0x28,0x22,0x63,0x61,0x6e,0x63,0x65,0x6c, 0x22,0x2c,0x65,0x29,0x2c,0x54,0x72,0x28,0x22,0x63,0x6c,0x6f,0x73,0x65,0x22,0x2c, 0x65,0x29,0x2c,0x69,0x3d,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x22,0x69,0x66,0x72,0x61,0x6d,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6d,0x62,0x65, 0x64,0x22,0x3a,0x54,0x72,0x28,0x22,0x6c,0x6f,0x61,0x64,0x22,0x2c,0x65,0x29,0x2c, 0x69,0x3d,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x76, 0x69,0x64,0x65,0x6f,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x61,0x75,0x64,0x69,0x6f, 0x22,0x3a,0x66,0x6f,0x72,0x28,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x6b,0x72,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x54,0x72,0x28,0x6b,0x72,0x5b, 0x69,0x5d,0x2c,0x65,0x29,0x3b,0x69,0x3d,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x22,0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3a,0x54,0x72,0x28, 0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x2c,0x65,0x29,0x2c,0x69,0x3d,0x72,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x69,0x6d,0x67,0x22,0x3a,0x63, 0x61,0x73,0x65,0x22,0x69,0x6d,0x61,0x67,0x65,0x22,0x3a,0x63,0x61,0x73,0x65,0x22, 0x6c,0x69,0x6e,0x6b,0x22,0x3a,0x54,0x72,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22, 0x2c,0x65,0x29,0x2c,0x54,0x72,0x28,0x22,0x6c,0x6f,0x61,0x64,0x22,0x2c,0x65,0x29, 0x2c,0x69,0x3d,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x22,0x3a,0x54,0x72,0x28,0x22,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x22,0x2c,0x65,0x29,0x2c,0x69,0x3d,0x72,0x3b,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x65,0x65, 0x28,0x65,0x2c,0x72,0x29,0x2c,0x69,0x3d,0x5a,0x28,0x65,0x2c,0x72,0x29,0x2c,0x54, 0x72,0x28,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x65,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x22,0x3a,0x69,0x3d,0x69,0x65,0x28,0x65,0x2c,0x72,0x29,0x3b,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a,0x65, 0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x7b, 0x77,0x61,0x73,0x4d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x3a,0x21,0x21,0x72,0x2e, 0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x7d,0x2c,0x69,0x3d,0x6f,0x28,0x7b,0x7d, 0x2c,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30, 0x7d,0x29,0x2c,0x54,0x72,0x28,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c, 0x65,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x65, 0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3a,0x63,0x65,0x28,0x65,0x2c,0x72,0x29,0x2c, 0x69,0x3d,0x75,0x65,0x28,0x65,0x2c,0x72,0x29,0x2c,0x54,0x72,0x28,0x22,0x69,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x65,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x69,0x3d,0x72,0x7d,0x45,0x65,0x28,0x6e, 0x2c,0x69,0x29,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x69,0x3b,0x66,0x6f,0x72,0x28, 0x75,0x20,0x69,0x6e,0x20,0x73,0x29,0x69,0x66,0x28,0x73,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x75,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x66,0x3d,0x73,0x5b,0x75,0x5d,0x3b,0x22,0x73,0x74,0x79,0x6c,0x65, 0x22,0x3d,0x3d,0x3d,0x75,0x3f,0x4f,0x65,0x28,0x65,0x2c,0x66,0x29,0x3a,0x22,0x64, 0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e, 0x65,0x72,0x48,0x54,0x4d,0x4c,0x22,0x3d,0x3d,0x3d,0x75,0x3f,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x28,0x66,0x3d,0x66,0x3f,0x66,0x2e,0x5f,0x5f,0x68,0x74,0x6d,0x6c,0x3a, 0x76,0x6f,0x69,0x64,0x20,0x30,0x29,0x26,0x26,0x6d,0x65,0x28,0x65,0x2c,0x66,0x29, 0x3a,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x3d,0x3d,0x3d,0x75,0x3f, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x66,0x3f,0x28,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x21, 0x3d,0x3d,0x6e,0x7c,0x7c,0x22,0x22,0x21,0x3d,0x3d,0x66,0x29,0x26,0x26,0x62,0x65, 0x28,0x65,0x2c,0x66,0x29,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x66,0x26,0x26,0x62,0x65,0x28,0x65,0x2c, 0x22,0x22,0x2b,0x66,0x29,0x3a,0x22,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73,0x43, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x45,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x57,0x61, 0x72,0x6e,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x75,0x26,0x26,0x22,0x73,0x75,0x70, 0x70,0x72,0x65,0x73,0x73,0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x57,0x61, 0x72,0x6e,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x75,0x26,0x26,0x22,0x61,0x75,0x74, 0x6f,0x46,0x6f,0x63,0x75,0x73,0x22,0x21,0x3d,0x3d,0x75,0x26,0x26,0x28,0x63,0x2e, 0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x75, 0x29,0x3f,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x66,0x26,0x26,0x22,0x6f,0x6e,0x53,0x63, 0x72,0x6f,0x6c,0x6c,0x22,0x3d,0x3d,0x3d,0x75,0x26,0x26,0x54,0x72,0x28,0x22,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x65,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x66,0x26,0x26,0x5f,0x28,0x65,0x2c,0x75,0x2c,0x66,0x2c,0x6c,0x29,0x29,0x7d,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x69,0x6e, 0x70,0x75,0x74,0x22,0x3a,0x51,0x28,0x65,0x29,0x2c,0x72,0x65,0x28,0x65,0x2c,0x72, 0x2c,0x21,0x31,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3a,0x51,0x28,0x65,0x29,0x2c,0x73, 0x65,0x28,0x65,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x26,0x26,0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x2c,0x22,0x22, 0x2b,0x4b,0x28,0x72,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x29,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a, 0x65,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x3d,0x21,0x21,0x72,0x2e,0x6d, 0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x75, 0x3d,0x72,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3f,0x61,0x65,0x28,0x65,0x2c,0x21, 0x21,0x72,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x75,0x2c,0x21,0x31, 0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x56,0x61,0x6c,0x75,0x65,0x26,0x26,0x61,0x65,0x28,0x65,0x2c,0x21,0x21,0x72, 0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x72,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x2c,0x21,0x30,0x29,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69, 0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x26,0x26,0x28,0x65,0x2e,0x6f,0x6e,0x63, 0x6c,0x69,0x63,0x6b,0x3d,0x7a,0x72,0x29,0x7d,0x24,0x72,0x28,0x6e,0x2c,0x72,0x29, 0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x7d,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x72,0x65,0x66,0x26,0x26,0x28,0x74,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x32,0x38,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x36,0x3a,0x69, 0x66,0x28,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x73,0x74,0x61, 0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x51,0x61,0x28,0x30,0x2c,0x74,0x2c,0x65,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c,0x72,0x29, 0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31, 0x36,0x36,0x29,0x29,0x3b,0x6e,0x3d,0x4e,0x69,0x28,0x44,0x69,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x29,0x2c,0x4e,0x69,0x28,0x54,0x69,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x29,0x2c,0x71,0x69,0x28,0x74,0x29,0x3f,0x28,0x72,0x3d,0x74,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x6e,0x3d,0x74,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c,0x72,0x5b,0x4a,0x72, 0x5d,0x3d,0x74,0x2c,0x72,0x2e,0x6e,0x6f,0x64,0x65,0x56,0x61,0x6c,0x75,0x65,0x21, 0x3d,0x3d,0x6e,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34, 0x29,0x29,0x3a,0x28,0x28,0x72,0x3d,0x28,0x39,0x3d,0x3d,0x3d,0x6e,0x2e,0x6e,0x6f, 0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x6e,0x3a,0x6e,0x2e,0x6f,0x77,0x6e,0x65,0x72, 0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x2e,0x63,0x72,0x65,0x61,0x74,0x65, 0x54,0x65,0x78,0x74,0x4e,0x6f,0x64,0x65,0x28,0x72,0x29,0x29,0x5b,0x4a,0x72,0x5d, 0x3d,0x74,0x2c,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x72, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61, 0x73,0x65,0x20,0x31,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x6f,0x28, 0x4d,0x69,0x29,0x2c,0x72,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x2c,0x30,0x21,0x3d,0x3d,0x28,0x36,0x34,0x26,0x74,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x29,0x3f,0x28,0x74,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d, 0x6e,0x2c,0x74,0x29,0x3a,0x28,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72, 0x2c,0x6e,0x3d,0x21,0x31,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x26,0x26,0x71,0x69,0x28,0x74,0x29,0x3a,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x2c,0x72,0x26,0x26,0x21,0x6e,0x26,0x26,0x30,0x21,0x3d,0x3d,0x28,0x32,0x26,0x74, 0x2e,0x6d,0x6f,0x64,0x65,0x29,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x65,0x26,0x26,0x21,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x61,0x76,0x6f,0x69,0x64,0x54,0x68,0x69,0x73,0x46,0x61,0x6c,0x6c,0x62,0x61, 0x63,0x6b,0x7c,0x7c,0x30,0x21,0x3d,0x3d,0x28,0x31,0x26,0x4d,0x69,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x29,0x3f,0x30,0x3d,0x3d,0x3d,0x4d,0x75,0x26,0x26,0x28, 0x4d,0x75,0x3d,0x33,0x29,0x3a,0x28,0x30,0x21,0x3d,0x3d,0x4d,0x75,0x26,0x26,0x33, 0x21,0x3d,0x3d,0x4d,0x75,0x7c,0x7c,0x28,0x4d,0x75,0x3d,0x34,0x29,0x2c,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x4e,0x75,0x7c,0x7c,0x30,0x3d,0x3d,0x3d,0x28,0x31,0x33, 0x34,0x32,0x31,0x37,0x37,0x32,0x37,0x26,0x55,0x75,0x29,0x26,0x26,0x30,0x3d,0x3d, 0x3d,0x28,0x31,0x33,0x34,0x32,0x31,0x37,0x37,0x32,0x37,0x26,0x57,0x75,0x29,0x7c, 0x7c,0x62,0x63,0x28,0x4e,0x75,0x2c,0x52,0x75,0x29,0x29,0x29,0x2c,0x28,0x72,0x7c, 0x7c,0x6e,0x29,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34, 0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x69,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x65,0x26,0x26,0x44,0x72,0x28,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66, 0x6f,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x69,0x28,0x74,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x39,0x3a,0x69,0x66,0x28,0x73,0x6f,0x28, 0x4d,0x69,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x72,0x3d,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x75,0x3d, 0x30,0x21,0x3d,0x3d,0x28,0x36,0x34,0x26,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29, 0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6c,0x3d,0x72,0x2e,0x72,0x65,0x6e, 0x64,0x65,0x72,0x69,0x6e,0x67,0x29,0x29,0x69,0x66,0x28,0x75,0x29,0x61,0x75,0x28, 0x72,0x2c,0x21,0x31,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x30,0x21, 0x3d,0x3d,0x4d,0x75,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26, 0x30,0x21,0x3d,0x3d,0x28,0x36,0x34,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29, 0x29,0x66,0x6f,0x72,0x28,0x65,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x28,0x6c,0x3d,0x42,0x69,0x28,0x65,0x29,0x29,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x36,0x34,0x2c,0x61, 0x75,0x28,0x72,0x2c,0x21,0x31,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28, 0x75,0x3d,0x6c,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x29, 0x26,0x26,0x28,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x3d,0x75,0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x72,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x26,0x26,0x28,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45, 0x66,0x66,0x65,0x63,0x74,0x3d,0x72,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x2c,0x72,0x3d,0x6e,0x2c,0x6e,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x3b,0x29,0x65,0x3d,0x72,0x2c,0x28, 0x75,0x3d,0x6e,0x29,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x3d,0x32,0x2c,0x75,0x2e, 0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x75,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x75,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x6c,0x3d,0x75, 0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x29,0x3f,0x28,0x75,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x75,0x2e,0x6c,0x61, 0x6e,0x65,0x73,0x3d,0x65,0x2c,0x75,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x75,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f, 0x70,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x2e,0x75, 0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x75,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x75,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x29,0x3a,0x28,0x75,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x3d,0x6c,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73, 0x2c,0x75,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x6c,0x2e,0x6c,0x61,0x6e,0x65,0x73, 0x2c,0x75,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6c,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x2c,0x75,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73, 0x3d,0x6c,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73, 0x2c,0x75,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x3d,0x6c,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x2c,0x75,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6c, 0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x2c,0x75,0x2e,0x74, 0x79,0x70,0x65,0x3d,0x6c,0x2e,0x74,0x79,0x70,0x65,0x2c,0x65,0x3d,0x6c,0x2e,0x64, 0x65,0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x2c,0x75,0x2e,0x64,0x65, 0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x65,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x7b,0x6c,0x61,0x6e,0x65,0x73,0x3a, 0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x2c,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3a,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x7d,0x29,0x2c,0x6e,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x6f,0x28,0x4d,0x69,0x2c,0x31, 0x26,0x4d,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x32,0x29,0x2c,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x7d,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c,0x69, 0x6e,0x67,0x7d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x2e,0x74,0x61,0x69,0x6c, 0x26,0x26,0x48,0x6f,0x28,0x29,0x3e,0x47,0x75,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x7c,0x3d,0x36,0x34,0x2c,0x75,0x3d,0x21,0x30,0x2c,0x61,0x75,0x28, 0x72,0x2c,0x21,0x31,0x29,0x2c,0x74,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x33,0x33, 0x35,0x35,0x34,0x34,0x33,0x32,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28, 0x21,0x75,0x29,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d, 0x42,0x69,0x28,0x6c,0x29,0x29,0x29,0x7b,0x69,0x66,0x28,0x74,0x2e,0x66,0x6c,0x61, 0x67,0x73,0x7c,0x3d,0x36,0x34,0x2c,0x75,0x3d,0x21,0x30,0x2c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75, 0x65,0x75,0x65,0x29,0x26,0x26,0x28,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51, 0x75,0x65,0x75,0x65,0x3d,0x6e,0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d, 0x34,0x29,0x2c,0x61,0x75,0x28,0x72,0x2c,0x21,0x30,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x61,0x69,0x6c,0x26,0x26,0x22,0x68,0x69,0x64,0x64, 0x65,0x6e,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x61,0x69,0x6c,0x4d,0x6f,0x64,0x65, 0x26,0x26,0x21,0x6c,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x26,0x26, 0x21,0x57,0x69,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x28,0x74,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63, 0x74,0x3d,0x72,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x26, 0x26,0x28,0x74,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e, 0x75,0x6c,0x6c,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d,0x65,0x6c,0x73,0x65,0x20,0x32, 0x2a,0x48,0x6f,0x28,0x29,0x2d,0x72,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e, 0x67,0x53,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3e,0x47,0x75,0x26,0x26,0x31, 0x30,0x37,0x33,0x37,0x34,0x31,0x38,0x32,0x34,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x36,0x34,0x2c,0x75,0x3d,0x21,0x30, 0x2c,0x61,0x75,0x28,0x72,0x2c,0x21,0x31,0x29,0x2c,0x74,0x2e,0x6c,0x61,0x6e,0x65, 0x73,0x3d,0x33,0x33,0x35,0x35,0x34,0x34,0x33,0x32,0x29,0x3b,0x72,0x2e,0x69,0x73, 0x42,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x73,0x3f,0x28,0x6c,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x74,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x3d,0x6c,0x29,0x3a,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x28,0x6e,0x3d,0x72,0x2e,0x6c,0x61,0x73,0x74,0x29,0x3f,0x6e,0x2e,0x73,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3d,0x6c,0x3a,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3d,0x6c, 0x2c,0x72,0x2e,0x6c,0x61,0x73,0x74,0x3d,0x6c,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x2e,0x74,0x61,0x69,0x6c,0x3f, 0x28,0x6e,0x3d,0x72,0x2e,0x74,0x61,0x69,0x6c,0x2c,0x72,0x2e,0x72,0x65,0x6e,0x64, 0x65,0x72,0x69,0x6e,0x67,0x3d,0x6e,0x2c,0x72,0x2e,0x74,0x61,0x69,0x6c,0x3d,0x6e, 0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2c,0x72,0x2e,0x6c,0x61,0x73,0x74,0x45, 0x66,0x66,0x65,0x63,0x74,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x2c,0x72,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x53,0x74, 0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3d,0x48,0x6f,0x28,0x29,0x2c,0x6e,0x2e,0x73, 0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x3d,0x4d,0x69, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x66,0x6f,0x28,0x4d,0x69,0x2c,0x75, 0x3f,0x31,0x26,0x74,0x7c,0x32,0x3a,0x31,0x26,0x74,0x29,0x2c,0x6e,0x29,0x3a,0x6e, 0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x33,0x3a,0x63,0x61,0x73,0x65, 0x20,0x32,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x78,0x63,0x28,0x29,0x2c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x21,0x3d,0x3d,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x26,0x26,0x22,0x75,0x6e, 0x73,0x74,0x61,0x62,0x6c,0x65,0x2d,0x64,0x65,0x66,0x65,0x72,0x2d,0x77,0x69,0x74, 0x68,0x6f,0x75,0x74,0x2d,0x68,0x69,0x64,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x72, 0x2e,0x6d,0x6f,0x64,0x65,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c, 0x3d,0x34,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x45, 0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x35,0x36,0x2c,0x74,0x2e,0x74,0x61,0x67, 0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x75,0x28,0x65, 0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x74,0x61,0x67,0x29,0x7b, 0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x62,0x6f,0x28,0x65,0x2e,0x74,0x79,0x70,0x65, 0x29,0x26,0x26,0x79,0x6f,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x34,0x30,0x39, 0x36,0x26,0x74,0x3f,0x28,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x2d,0x34,0x30, 0x39,0x37,0x26,0x74,0x7c,0x36,0x34,0x2c,0x65,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b, 0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x69,0x66,0x28,0x52,0x69,0x28,0x29,0x2c,0x73, 0x6f,0x28,0x76,0x6f,0x29,0x2c,0x73,0x6f,0x28,0x68,0x6f,0x29,0x2c,0x51,0x69,0x28, 0x29,0x2c,0x30,0x21,0x3d,0x3d,0x28,0x36,0x34,0x26,0x28,0x74,0x3d,0x65,0x2e,0x66, 0x6c,0x61,0x67,0x73,0x29,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x32,0x38,0x35,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x2d,0x34,0x30,0x39,0x37,0x26, 0x74,0x7c,0x36,0x34,0x2c,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x46,0x69,0x28,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b, 0x63,0x61,0x73,0x65,0x20,0x31,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73, 0x6f,0x28,0x4d,0x69,0x29,0x2c,0x34,0x30,0x39,0x36,0x26,0x28,0x74,0x3d,0x65,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x29,0x3f,0x28,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d, 0x2d,0x34,0x30,0x39,0x37,0x26,0x74,0x7c,0x36,0x34,0x2c,0x65,0x29,0x3a,0x6e,0x75, 0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x39,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x73,0x6f,0x28,0x4d,0x69,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61, 0x73,0x65,0x20,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x69,0x28,0x29, 0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x69,0x28,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b, 0x63,0x61,0x73,0x65,0x20,0x32,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x34,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x78,0x63,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c, 0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x22,0x22,0x2c,0x72,0x3d,0x74,0x3b,0x64,0x6f,0x7b,0x6e,0x2b,0x3d,0x47,0x28, 0x72,0x29,0x2c,0x72,0x3d,0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x77,0x68, 0x69,0x6c,0x65,0x28,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x69,0x29,0x7b,0x6f,0x3d,0x22,0x5c,0x6e,0x45,0x72,0x72, 0x6f,0x72,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x74, 0x61,0x63,0x6b,0x3a,0x20,0x22,0x2b,0x69,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65, 0x2b,0x22,0x5c,0x6e,0x22,0x2b,0x69,0x2e,0x73,0x74,0x61,0x63,0x6b,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2c,0x73,0x6f,0x75, 0x72,0x63,0x65,0x3a,0x74,0x2c,0x73,0x74,0x61,0x63,0x6b,0x3a,0x6f,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x74,0x72,0x79,0x7b,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f, 0x72,0x28,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x6e,0x29,0x7b,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77, 0x20,0x6e,0x7d,0x29,0x29,0x7d,0x7d,0x4b,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6e,0x3b,0x29,0x7b,0x69,0x66,0x28,0x35,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61, 0x67,0x7c,0x7c,0x36,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x65,0x2e,0x61, 0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6e,0x2e,0x73,0x74,0x61, 0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28, 0x34,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x6e,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x6e,0x2c,0x6e,0x3d,0x6e,0x2e, 0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7d,0x69, 0x66,0x28,0x6e,0x3d,0x3d,0x3d,0x74,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x66,0x6f, 0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c, 0x69,0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x6e,0x2e,0x72,0x65,0x74,0x75, 0x72,0x6e,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x3d, 0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69, 0x6e,0x67,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75, 0x72,0x6e,0x2c,0x6e,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x7d, 0x2c,0x59,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3b,0x69,0x66,0x28,0x69, 0x21,0x3d,0x3d,0x72,0x29,0x7b,0x65,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x2c,0x4e,0x69,0x28,0x54,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x2c,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x3b, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x69, 0x6e,0x70,0x75,0x74,0x22,0x3a,0x69,0x3d,0x5a,0x28,0x65,0x2c,0x69,0x29,0x2c,0x72, 0x3d,0x5a,0x28,0x65,0x2c,0x72,0x29,0x2c,0x75,0x3d,0x5b,0x5d,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3a, 0x69,0x3d,0x69,0x65,0x28,0x65,0x2c,0x69,0x29,0x2c,0x72,0x3d,0x69,0x65,0x28,0x65, 0x2c,0x72,0x29,0x2c,0x75,0x3d,0x5b,0x5d,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63, 0x61,0x73,0x65,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a,0x69,0x3d,0x6f,0x28, 0x7b,0x7d,0x2c,0x69,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x76,0x6f,0x69,0x64, 0x20,0x30,0x7d,0x29,0x2c,0x72,0x3d,0x6f,0x28,0x7b,0x7d,0x2c,0x72,0x2c,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x29,0x2c,0x75,0x3d, 0x5b,0x5d,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x65, 0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3a,0x69,0x3d,0x75,0x65,0x28,0x65,0x2c,0x69, 0x29,0x2c,0x72,0x3d,0x75,0x65,0x28,0x65,0x2c,0x72,0x29,0x2c,0x75,0x3d,0x5b,0x5d, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x69,0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x26,0x26,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x72,0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x26,0x26,0x28,0x65,0x2e, 0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x7a,0x72,0x29,0x7d,0x66,0x6f,0x72,0x28, 0x66,0x20,0x69,0x6e,0x20,0x45,0x65,0x28,0x6e,0x2c,0x72,0x29,0x2c,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x69,0x29,0x69,0x66,0x28,0x21,0x72,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x66,0x29,0x26,0x26,0x69, 0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28, 0x66,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x69,0x5b,0x66,0x5d,0x29,0x69, 0x66,0x28,0x22,0x73,0x74,0x79,0x6c,0x65,0x22,0x3d,0x3d,0x3d,0x66,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6c,0x3d,0x69,0x5b,0x66,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x61,0x20, 0x69,0x6e,0x20,0x6c,0x29,0x6c,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x28,0x61,0x29,0x26,0x26,0x28,0x6e,0x7c,0x7c,0x28,0x6e, 0x3d,0x7b,0x7d,0x29,0x2c,0x6e,0x5b,0x61,0x5d,0x3d,0x22,0x22,0x29,0x7d,0x65,0x6c, 0x73,0x65,0x22,0x64,0x61,0x6e,0x67,0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65, 0x74,0x49,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x22,0x21,0x3d,0x3d,0x66,0x26, 0x26,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x21,0x3d,0x3d,0x66,0x26, 0x26,0x22,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73,0x43,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x45,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x22,0x21,0x3d,0x3d,0x66,0x26,0x26,0x22,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73, 0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67, 0x22,0x21,0x3d,0x3d,0x66,0x26,0x26,0x22,0x61,0x75,0x74,0x6f,0x46,0x6f,0x63,0x75, 0x73,0x22,0x21,0x3d,0x3d,0x66,0x26,0x26,0x28,0x63,0x2e,0x68,0x61,0x73,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x66,0x29,0x3f,0x75,0x7c,0x7c, 0x28,0x75,0x3d,0x5b,0x5d,0x29,0x3a,0x28,0x75,0x3d,0x75,0x7c,0x7c,0x5b,0x5d,0x29, 0x2e,0x70,0x75,0x73,0x68,0x28,0x66,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x66,0x20,0x69,0x6e,0x20,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x73, 0x3d,0x72,0x5b,0x66,0x5d,0x3b,0x69,0x66,0x28,0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x69,0x3f,0x69,0x5b,0x66,0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x72, 0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28, 0x66,0x29,0x26,0x26,0x73,0x21,0x3d,0x3d,0x6c,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x73,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6c,0x29,0x29,0x69,0x66, 0x28,0x22,0x73,0x74,0x79,0x6c,0x65,0x22,0x3d,0x3d,0x3d,0x66,0x29,0x69,0x66,0x28, 0x6c,0x29,0x7b,0x66,0x6f,0x72,0x28,0x61,0x20,0x69,0x6e,0x20,0x6c,0x29,0x21,0x6c, 0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28, 0x61,0x29,0x7c,0x7c,0x73,0x26,0x26,0x73,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x61,0x29,0x7c,0x7c,0x28,0x6e,0x7c,0x7c, 0x28,0x6e,0x3d,0x7b,0x7d,0x29,0x2c,0x6e,0x5b,0x61,0x5d,0x3d,0x22,0x22,0x29,0x3b, 0x66,0x6f,0x72,0x28,0x61,0x20,0x69,0x6e,0x20,0x73,0x29,0x73,0x2e,0x68,0x61,0x73, 0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x61,0x29,0x26,0x26, 0x6c,0x5b,0x61,0x5d,0x21,0x3d,0x3d,0x73,0x5b,0x61,0x5d,0x26,0x26,0x28,0x6e,0x7c, 0x7c,0x28,0x6e,0x3d,0x7b,0x7d,0x29,0x2c,0x6e,0x5b,0x61,0x5d,0x3d,0x73,0x5b,0x61, 0x5d,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x7c,0x7c,0x28,0x75,0x7c,0x7c,0x28, 0x75,0x3d,0x5b,0x5d,0x29,0x2c,0x75,0x2e,0x70,0x75,0x73,0x68,0x28,0x66,0x2c,0x6e, 0x29,0x29,0x2c,0x6e,0x3d,0x73,0x3b,0x65,0x6c,0x73,0x65,0x22,0x64,0x61,0x6e,0x67, 0x65,0x72,0x6f,0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48, 0x54,0x4d,0x4c,0x22,0x3d,0x3d,0x3d,0x66,0x3f,0x28,0x73,0x3d,0x73,0x3f,0x73,0x2e, 0x5f,0x5f,0x68,0x74,0x6d,0x6c,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6c,0x3d, 0x6c,0x3f,0x6c,0x2e,0x5f,0x5f,0x68,0x74,0x6d,0x6c,0x3a,0x76,0x6f,0x69,0x64,0x20, 0x30,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x73,0x26,0x26,0x6c,0x21,0x3d,0x3d,0x73, 0x26,0x26,0x28,0x75,0x3d,0x75,0x7c,0x7c,0x5b,0x5d,0x29,0x2e,0x70,0x75,0x73,0x68, 0x28,0x66,0x2c,0x73,0x29,0x29,0x3a,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x22,0x3d,0x3d,0x3d,0x66,0x3f,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x26,0x26,0x22,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x7c,0x7c, 0x28,0x75,0x3d,0x75,0x7c,0x7c,0x5b,0x5d,0x29,0x2e,0x70,0x75,0x73,0x68,0x28,0x66, 0x2c,0x22,0x22,0x2b,0x73,0x29,0x3a,0x22,0x73,0x75,0x70,0x70,0x72,0x65,0x73,0x73, 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x45,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x57, 0x61,0x72,0x6e,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x66,0x26,0x26,0x22,0x73,0x75, 0x70,0x70,0x72,0x65,0x73,0x73,0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x57, 0x61,0x72,0x6e,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x66,0x26,0x26,0x28,0x63,0x2e, 0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x66, 0x29,0x3f,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x73,0x26,0x26,0x22,0x6f,0x6e,0x53, 0x63,0x72,0x6f,0x6c,0x6c,0x22,0x3d,0x3d,0x3d,0x66,0x26,0x26,0x54,0x72,0x28,0x22, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x65,0x29,0x2c,0x75,0x7c,0x7c,0x6c,0x3d, 0x3d,0x3d,0x73,0x7c,0x7c,0x28,0x75,0x3d,0x5b,0x5d,0x29,0x29,0x3a,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73, 0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x73,0x26,0x26,0x73,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x52,0x3f,0x73,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3a,0x28,0x75,0x3d,0x75,0x7c,0x7c,0x5b,0x5d, 0x29,0x2e,0x70,0x75,0x73,0x68,0x28,0x66,0x2c,0x73,0x29,0x29,0x7d,0x6e,0x26,0x26, 0x28,0x75,0x3d,0x75,0x7c,0x7c,0x5b,0x5d,0x29,0x2e,0x70,0x75,0x73,0x68,0x28,0x22, 0x73,0x74,0x79,0x6c,0x65,0x22,0x2c,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d, 0x75,0x3b,0x28,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x3d,0x66,0x29,0x26,0x26,0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34, 0x29,0x7d,0x7d,0x2c,0x51,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x6e,0x21,0x3d,0x3d,0x72,0x26,0x26, 0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x29,0x7d,0x3b,0x76,0x61, 0x72,0x20,0x66,0x75,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70, 0x3f,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x3a,0x4d,0x61,0x70,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x28,0x6e,0x3d,0x66,0x69,0x28,0x2d,0x31,0x2c,0x6e,0x29,0x29,0x2e,0x74,0x61,0x67, 0x3d,0x33,0x2c,0x6e,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64,0x3d,0x7b,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x51,0x75,0x7c,0x7c,0x28,0x51,0x75,0x3d,0x21, 0x30,0x2c,0x58,0x75,0x3d,0x72,0x29,0x2c,0x73,0x75,0x28,0x30,0x2c,0x74,0x29,0x7d, 0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x75,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x28,0x6e,0x3d,0x66,0x69,0x28,0x2d,0x31,0x2c,0x6e, 0x29,0x29,0x2e,0x74,0x61,0x67,0x3d,0x33,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65, 0x2e,0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x45,0x72,0x72,0x6f,0x72,0x3b,0x69, 0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74, 0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x6e,0x2e,0x70,0x61,0x79,0x6c,0x6f,0x61,0x64, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x75,0x28,0x30,0x2c,0x74,0x29,0x2c,0x72,0x28,0x6f,0x29,0x7d, 0x7d,0x76,0x61,0x72,0x20,0x69,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x69,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61,0x74,0x63,0x68,0x26,0x26,0x28,0x6e,0x2e, 0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x4a,0x75,0x3f,0x4a,0x75,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74, 0x28,0x5b,0x74,0x68,0x69,0x73,0x5d,0x29,0x3a,0x4a,0x75,0x2e,0x61,0x64,0x64,0x28, 0x74,0x68,0x69,0x73,0x29,0x2c,0x73,0x75,0x28,0x30,0x2c,0x74,0x29,0x29,0x3b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x73,0x74,0x61,0x63,0x6b,0x3b,0x74,0x68,0x69, 0x73,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61, 0x74,0x63,0x68,0x28,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x7b,0x63,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x53,0x74,0x61,0x63,0x6b,0x3a,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x22,0x22,0x7d,0x29,0x7d,0x29,0x2c,0x6e,0x7d, 0x76,0x61,0x72,0x20,0x68,0x75,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x57,0x65,0x61,0x6b,0x53, 0x65,0x74,0x3f,0x57,0x65,0x61,0x6b,0x53,0x65,0x74,0x3a,0x53,0x65,0x74,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x75,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x72,0x65,0x66,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x74,0x29,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x74, 0x72,0x79,0x7b,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x6e,0x29,0x7b,0x7a,0x63,0x28,0x65,0x2c,0x6e,0x29,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x75,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63, 0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x31,0x3a,0x63,0x61, 0x73,0x65,0x20,0x31,0x35,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x32,0x3a,0x63,0x61, 0x73,0x65,0x20,0x35,0x3a,0x63,0x61,0x73,0x65,0x20,0x36,0x3a,0x63,0x61,0x73,0x65, 0x20,0x34,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x37,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x69,0x66,0x28,0x32,0x35,0x36,0x26, 0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b,0x74,0x3d,0x28,0x65,0x3d, 0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x67,0x65,0x74, 0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x55,0x70, 0x64,0x61,0x74,0x65,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79, 0x70,0x65,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3f,0x6e,0x3a,0x4a,0x6f, 0x28,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6e,0x29,0x2c,0x72,0x29,0x2c,0x65,0x2e, 0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x53, 0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x55,0x70,0x64, 0x61,0x74,0x65,0x3d,0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61,0x73, 0x65,0x20,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x28, 0x32,0x35,0x36,0x26,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x26,0x71,0x72,0x28, 0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x29,0x29,0x7d,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x33,0x29,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x75,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x2e,0x74,0x61,0x67,0x29, 0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x31,0x3a, 0x63,0x61,0x73,0x65,0x20,0x31,0x35,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x32,0x3a, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51, 0x75,0x65,0x75,0x65,0x29,0x3f,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x29,0x7b,0x65,0x3d,0x74,0x3d,0x74,0x2e, 0x6e,0x65,0x78,0x74,0x3b,0x64,0x6f,0x7b,0x69,0x66,0x28,0x33,0x3d,0x3d,0x3d,0x28, 0x33,0x26,0x65,0x2e,0x74,0x61,0x67,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x65,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x3b,0x65,0x2e,0x64,0x65,0x73,0x74,0x72, 0x6f,0x79,0x3d,0x72,0x28,0x29,0x7d,0x65,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x7d, 0x77,0x68,0x69,0x6c,0x65,0x28,0x65,0x21,0x3d,0x3d,0x74,0x29,0x7d,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x28,0x74,0x3d,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75, 0x65,0x29,0x3f,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3a, 0x6e,0x75,0x6c,0x6c,0x29,0x29,0x7b,0x65,0x3d,0x74,0x3d,0x74,0x2e,0x6e,0x65,0x78, 0x74,0x3b,0x64,0x6f,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x3b,0x72,0x3d,0x6f, 0x2e,0x6e,0x65,0x78,0x74,0x2c,0x30,0x21,0x3d,0x3d,0x28,0x34,0x26,0x28,0x6f,0x3d, 0x6f,0x2e,0x74,0x61,0x67,0x29,0x29,0x26,0x26,0x30,0x21,0x3d,0x3d,0x28,0x31,0x26, 0x6f,0x29,0x26,0x26,0x28,0x46,0x63,0x28,0x6e,0x2c,0x65,0x29,0x2c,0x4c,0x63,0x28, 0x6e,0x2c,0x65,0x29,0x29,0x2c,0x65,0x3d,0x72,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28, 0x65,0x21,0x3d,0x3d,0x74,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61, 0x73,0x65,0x20,0x31,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x6e,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x34,0x26,0x6e,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x3f,0x65, 0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x4d,0x6f,0x75, 0x6e,0x74,0x28,0x29,0x3a,0x28,0x72,0x3d,0x6e,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x54,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x3f,0x74, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3a,0x4a, 0x6f,0x28,0x6e,0x2e,0x74,0x79,0x70,0x65,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x29,0x2c,0x65,0x2e,0x63,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x55,0x70,0x64,0x61,0x74,0x65,0x28,0x72, 0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x2c,0x65,0x2e,0x5f,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e, 0x61,0x6c,0x53,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x42,0x65,0x66,0x6f,0x72,0x65, 0x55,0x70,0x64,0x61,0x74,0x65,0x29,0x29,0x29,0x2c,0x76,0x6f,0x69,0x64,0x28,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74, 0x65,0x51,0x75,0x65,0x75,0x65,0x29,0x26,0x26,0x76,0x69,0x28,0x6e,0x2c,0x74,0x2c, 0x65,0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65, 0x51,0x75,0x65,0x75,0x65,0x29,0x29,0x7b,0x69,0x66,0x28,0x65,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2e, 0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x63,0x61,0x73,0x65, 0x20,0x31,0x3a,0x65,0x3d,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2e,0x73,0x74,0x61, 0x74,0x65,0x4e,0x6f,0x64,0x65,0x7d,0x76,0x69,0x28,0x6e,0x2c,0x74,0x2c,0x65,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x2c,0x76,0x6f,0x69,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x74,0x26,0x26,0x34,0x26,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x26,0x24,0x72, 0x28,0x6e,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6e,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a, 0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x29,0x26,0x26,0x65,0x2e,0x66,0x6f,0x63,0x75, 0x73,0x28,0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x36,0x3a,0x63,0x61,0x73,0x65, 0x20,0x34,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x32,0x3a,0x63,0x61,0x73,0x65,0x20, 0x31,0x39,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x37,0x3a,0x63,0x61,0x73,0x65,0x20, 0x32,0x30,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x31,0x3a,0x63,0x61,0x73,0x65,0x20, 0x32,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x34,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x76,0x6f,0x69,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x26,0x26,0x28,0x6e, 0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x2c,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x6e,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x6e,0x2e,0x64,0x65,0x68,0x79,0x64,0x72,0x61, 0x74,0x65,0x64,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x4f,0x74, 0x28,0x6e,0x29,0x29,0x29,0x29,0x29,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x33,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x62,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x3b,0x3b,0x29,0x7b,0x69,0x66,0x28,0x35, 0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x74, 0x29,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x28,0x72,0x3d,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x29,0x2e, 0x73,0x65,0x74,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3f,0x72,0x2e,0x73,0x65, 0x74,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x22,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x22,0x2c,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x2c,0x22,0x69,0x6d,0x70,0x6f, 0x72,0x74,0x61,0x6e,0x74,0x22,0x29,0x3a,0x72,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x72,0x3d, 0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x6e,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70, 0x73,0x2e,0x73,0x74,0x79,0x6c,0x65,0x3b,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x6f,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x26,0x26, 0x6f,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x28,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x29,0x3f,0x6f,0x2e,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,0x77,0x65,0x28,0x22,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x2c,0x6f,0x29,0x7d,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x69,0x66,0x28,0x36,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x6e,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x56,0x61, 0x6c,0x75,0x65,0x3d,0x74,0x3f,0x22,0x22,0x3a,0x6e,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66, 0x28,0x28,0x32,0x33,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x26,0x26,0x32,0x34, 0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x3d,0x6e,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x7c,0x7c,0x6e,0x3d,0x3d,0x3d,0x65,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x6e,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x6e,0x2c,0x6e,0x3d,0x6e,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7d,0x69,0x66, 0x28,0x6e,0x3d,0x3d,0x3d,0x65,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x66,0x6f,0x72, 0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69, 0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x3d,0x6e, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x2c,0x6e,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x69,0x66,0x28,0x6a,0x6f,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6a,0x6f,0x2e,0x6f,0x6e, 0x43,0x6f,0x6d,0x6d,0x69,0x74,0x46,0x69,0x62,0x65,0x72,0x55,0x6e,0x6d,0x6f,0x75, 0x6e,0x74,0x29,0x74,0x72,0x79,0x7b,0x6a,0x6f,0x2e,0x6f,0x6e,0x43,0x6f,0x6d,0x6d, 0x69,0x74,0x46,0x69,0x62,0x65,0x72,0x55,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x28,0x45, 0x6f,0x2c,0x74,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x69,0x29,0x7b,0x7d,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x30,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x31,0x3a,0x63,0x61,0x73,0x65, 0x20,0x31,0x34,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x35,0x3a,0x63,0x61,0x73,0x65, 0x20,0x32,0x32,0x3a,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65, 0x3d,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x29,0x26, 0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x6c,0x61,0x73, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3b,0x64,0x6f,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x2c,0x6f,0x3d,0x72,0x2e,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x3b, 0x69,0x66,0x28,0x72,0x3d,0x72,0x2e,0x74,0x61,0x67,0x2c,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x6f,0x29,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x28,0x34,0x26, 0x72,0x29,0x29,0x46,0x63,0x28,0x74,0x2c,0x6e,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b, 0x72,0x3d,0x74,0x3b,0x74,0x72,0x79,0x7b,0x6f,0x28,0x29,0x7d,0x63,0x61,0x74,0x63, 0x68,0x28,0x69,0x29,0x7b,0x7a,0x63,0x28,0x72,0x2c,0x69,0x29,0x7d,0x7d,0x6e,0x3d, 0x6e,0x2e,0x6e,0x65,0x78,0x74,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x21,0x3d, 0x3d,0x65,0x29,0x7d,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x31, 0x3a,0x69,0x66,0x28,0x76,0x75,0x28,0x74,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x65,0x3d, 0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x63,0x6f,0x6d, 0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55,0x6e,0x6d,0x6f,0x75,0x6e, 0x74,0x29,0x74,0x72,0x79,0x7b,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x3d,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x2c,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, 0x74,0x57,0x69,0x6c,0x6c,0x55,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x28,0x29,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x69,0x29,0x7b,0x7a,0x63,0x28,0x74,0x2c,0x69,0x29,0x7d, 0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x76,0x75,0x28, 0x74,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a, 0x6a,0x75,0x28,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x5f,0x75,0x28,0x65,0x29,0x7b,0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e, 0x63,0x69,0x65,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x66,0x69,0x72,0x73, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x6c, 0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69, 0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x72, 0x65,0x74,0x75,0x72,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x75,0x70,0x64, 0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x75,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x35,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x7c,0x7c,0x33, 0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x7c,0x7c,0x34,0x3d,0x3d,0x3d,0x65,0x2e, 0x74,0x61,0x67,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x75,0x28, 0x65,0x29,0x7b,0x65,0x3a,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x74,0x3b,0x29,0x7b,0x69,0x66,0x28,0x77,0x75,0x28,0x74,0x29,0x29,0x62,0x72,0x65, 0x61,0x6b,0x20,0x65,0x3b,0x74,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d, 0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36, 0x30,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x3b,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x74,0x3d,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x2c,0x6e,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x76, 0x61,0x72,0x20,0x72,0x3d,0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x20,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x74,0x3d,0x74,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x2c,0x72,0x3d, 0x21,0x30,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x3a,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31, 0x36,0x31,0x29,0x29,0x7d,0x31,0x36,0x26,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26, 0x26,0x28,0x62,0x65,0x28,0x74,0x2c,0x22,0x22,0x29,0x2c,0x6e,0x2e,0x66,0x6c,0x61, 0x67,0x73,0x26,0x3d,0x2d,0x31,0x37,0x29,0x3b,0x65,0x3a,0x74,0x3a,0x66,0x6f,0x72, 0x28,0x6e,0x3d,0x65,0x3b,0x3b,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x7b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7c,0x7c,0x77,0x75,0x28,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x29, 0x29,0x7b,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65, 0x7d,0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x66,0x6f,0x72,0x28, 0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x6e,0x3d,0x6e,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x3b,0x35,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x26, 0x26,0x36,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x26,0x26,0x31,0x38,0x21,0x3d, 0x3d,0x6e,0x2e,0x74,0x61,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x32,0x26,0x6e,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x20,0x74, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x7c,0x7c,0x34,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x63,0x6f, 0x6e,0x74,0x69,0x6e,0x75,0x65,0x20,0x74,0x3b,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x6e,0x2c,0x6e,0x3d,0x6e,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x7d,0x69,0x66,0x28,0x21,0x28,0x32,0x26,0x6e,0x2e,0x66,0x6c,0x61, 0x67,0x73,0x29,0x29,0x7b,0x6e,0x3d,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x7d,0x72,0x3f,0x78,0x75, 0x28,0x65,0x2c,0x6e,0x2c,0x74,0x29,0x3a,0x45,0x75,0x28,0x65,0x2c,0x6e,0x2c,0x74, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x75,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x74,0x61,0x67, 0x2c,0x6f,0x3d,0x35,0x3d,0x3d,0x3d,0x72,0x7c,0x7c,0x36,0x3d,0x3d,0x3d,0x72,0x3b, 0x69,0x66,0x28,0x6f,0x29,0x65,0x3d,0x6f,0x3f,0x65,0x2e,0x73,0x74,0x61,0x74,0x65, 0x4e,0x6f,0x64,0x65,0x3a,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x2e,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2c,0x74,0x3f,0x38,0x3d,0x3d,0x3d, 0x6e,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x6e,0x2e,0x70,0x61,0x72, 0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x2e,0x69,0x6e,0x73,0x65,0x72,0x74,0x42,0x65, 0x66,0x6f,0x72,0x65,0x28,0x65,0x2c,0x74,0x29,0x3a,0x6e,0x2e,0x69,0x6e,0x73,0x65, 0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x65,0x2c,0x74,0x29,0x3a,0x28,0x38, 0x3d,0x3d,0x3d,0x6e,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x28,0x74, 0x3d,0x6e,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x69, 0x6e,0x73,0x65,0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x65,0x2c,0x6e,0x29, 0x3a,0x28,0x74,0x3d,0x6e,0x29,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69, 0x6c,0x64,0x28,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6e,0x3d, 0x6e,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x52,0x6f,0x6f,0x74,0x43,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x65,0x72,0x29,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x6e,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x6f,0x6e,0x63, 0x6c,0x69,0x63,0x6b,0x7c,0x7c,0x28,0x74,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b, 0x3d,0x7a,0x72,0x29,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x34,0x21, 0x3d,0x3d,0x72,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x29,0x66,0x6f,0x72,0x28,0x78,0x75,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3b,0x29,0x78,0x75,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e, 0x67,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x75,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x74,0x61,0x67, 0x2c,0x6f,0x3d,0x35,0x3d,0x3d,0x3d,0x72,0x7c,0x7c,0x36,0x3d,0x3d,0x3d,0x72,0x3b, 0x69,0x66,0x28,0x6f,0x29,0x65,0x3d,0x6f,0x3f,0x65,0x2e,0x73,0x74,0x61,0x74,0x65, 0x4e,0x6f,0x64,0x65,0x3a,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x2e,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2c,0x74,0x3f,0x6e,0x2e,0x69,0x6e, 0x73,0x65,0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x65,0x2c,0x74,0x29,0x3a, 0x6e,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x65,0x29, 0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x34,0x21,0x3d,0x3d,0x72,0x26,0x26, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x29,0x29,0x66,0x6f,0x72,0x28,0x45,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x2c,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x3b,0x29,0x45,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x2c,0x65,0x3d,0x65,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x74,0x2c,0x69,0x3d, 0x21,0x31,0x3b,0x3b,0x29,0x7b,0x69,0x66,0x28,0x21,0x69,0x29,0x7b,0x69,0x3d,0x6f, 0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x65,0x3a,0x66,0x6f,0x72,0x28,0x3b,0x3b, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x30,0x29, 0x29,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x6e,0x3d,0x69,0x2e,0x73,0x74,0x61, 0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x69,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61, 0x73,0x65,0x20,0x35,0x3a,0x72,0x3d,0x21,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20, 0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x34,0x3a, 0x6e,0x3d,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66, 0x6f,0x2c,0x72,0x3d,0x21,0x30,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x69, 0x3d,0x69,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x69,0x3d,0x21,0x30,0x7d,0x69, 0x66,0x28,0x35,0x3d,0x3d,0x3d,0x6f,0x2e,0x74,0x61,0x67,0x7c,0x7c,0x36,0x3d,0x3d, 0x3d,0x6f,0x2e,0x74,0x61,0x67,0x29,0x7b,0x65,0x3a,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x75,0x3d,0x65,0x2c,0x63,0x3d,0x6f,0x2c,0x6c,0x3d,0x63,0x3b,0x3b,0x29, 0x69,0x66,0x28,0x79,0x75,0x28,0x75,0x2c,0x6c,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x6c,0x2e,0x63,0x68,0x69,0x6c,0x64,0x26,0x26,0x34,0x21,0x3d,0x3d,0x6c, 0x2e,0x74,0x61,0x67,0x29,0x6c,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2e,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3d,0x6c,0x2c,0x6c,0x3d,0x6c,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b, 0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x6c,0x3d,0x3d,0x3d,0x63,0x29,0x62,0x72, 0x65,0x61,0x6b,0x20,0x65,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x6c,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6c,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7c,0x7c,0x6c,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x3d,0x3d,0x63,0x29,0x62, 0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x6c,0x3d,0x6c,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7d,0x6c,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2e,0x72,0x65,0x74,0x75, 0x72,0x6e,0x3d,0x6c,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x6c,0x3d,0x6c,0x2e, 0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x72,0x3f,0x28,0x75,0x3d,0x6e,0x2c,0x63, 0x3d,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x38,0x3d,0x3d, 0x3d,0x75,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3f,0x75,0x2e,0x70,0x61, 0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43, 0x68,0x69,0x6c,0x64,0x28,0x63,0x29,0x3a,0x75,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x43,0x68,0x69,0x6c,0x64,0x28,0x63,0x29,0x29,0x3a,0x6e,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x34,0x3d,0x3d, 0x3d,0x6f,0x2e,0x74,0x61,0x67,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29,0x7b,0x6e,0x3d,0x6f,0x2e,0x73, 0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x49,0x6e,0x66,0x6f,0x2c,0x72,0x3d,0x21,0x30,0x2c,0x6f,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x6f,0x2c,0x6f,0x3d,0x6f, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7d, 0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x79,0x75,0x28,0x65,0x2c,0x6f,0x29, 0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x29, 0x7b,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d, 0x6f,0x2c,0x6f,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x6f,0x6e,0x74, 0x69,0x6e,0x75,0x65,0x7d,0x69,0x66,0x28,0x6f,0x3d,0x3d,0x3d,0x74,0x29,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x6f,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6f,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c, 0x6f,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3b,0x34,0x3d,0x3d,0x3d,0x28,0x6f,0x3d,0x6f,0x2e,0x72,0x65,0x74, 0x75,0x72,0x6e,0x29,0x2e,0x74,0x61,0x67,0x26,0x26,0x28,0x69,0x3d,0x21,0x31,0x29, 0x7d,0x6f,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3d,0x6f,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x6f,0x3d,0x6f,0x2e,0x73, 0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6b,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61, 0x73,0x65,0x20,0x31,0x31,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x34,0x3a,0x63,0x61, 0x73,0x65,0x20,0x31,0x35,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x32,0x3a,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75, 0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x3f,0x6e,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74,0x3b,0x64,0x6f,0x7b,0x33,0x3d, 0x3d,0x3d,0x28,0x33,0x26,0x72,0x2e,0x74,0x61,0x67,0x29,0x26,0x26,0x28,0x65,0x3d, 0x72,0x2e,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x2c,0x72,0x2e,0x64,0x65,0x73,0x74, 0x72,0x6f,0x79,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x65,0x26,0x26,0x65,0x28,0x29,0x29,0x2c,0x72,0x3d,0x72,0x2e, 0x6e,0x65,0x78,0x74,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x72,0x21,0x3d,0x3d,0x6e, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a, 0x63,0x61,0x73,0x65,0x20,0x31,0x32,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x37,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x69,0x66, 0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x6e,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74, 0x65,0x4e,0x6f,0x64,0x65,0x29,0x29,0x7b,0x72,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3f,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3a,0x72,0x3b,0x65,0x3d,0x74,0x2e,0x74, 0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3b,0x69,0x66,0x28,0x74,0x2e,0x75,0x70,0x64, 0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x29,0x7b,0x66,0x6f,0x72,0x28,0x6e,0x5b,0x5a,0x72, 0x5d,0x3d,0x72,0x2c,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x26, 0x26,0x22,0x72,0x61,0x64,0x69,0x6f,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x74,0x79,0x70, 0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x2e,0x6e,0x61,0x6d,0x65,0x26, 0x26,0x74,0x65,0x28,0x6e,0x2c,0x72,0x29,0x2c,0x6a,0x65,0x28,0x65,0x2c,0x6f,0x29, 0x2c,0x74,0x3d,0x6a,0x65,0x28,0x65,0x2c,0x72,0x29,0x2c,0x6f,0x3d,0x30,0x3b,0x6f, 0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x3d,0x32,0x29,0x7b, 0x76,0x61,0x72,0x20,0x75,0x3d,0x69,0x5b,0x6f,0x5d,0x2c,0x63,0x3d,0x69,0x5b,0x6f, 0x2b,0x31,0x5d,0x3b,0x22,0x73,0x74,0x79,0x6c,0x65,0x22,0x3d,0x3d,0x3d,0x75,0x3f, 0x4f,0x65,0x28,0x6e,0x2c,0x63,0x29,0x3a,0x22,0x64,0x61,0x6e,0x67,0x65,0x72,0x6f, 0x75,0x73,0x6c,0x79,0x53,0x65,0x74,0x49,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c, 0x22,0x3d,0x3d,0x3d,0x75,0x3f,0x6d,0x65,0x28,0x6e,0x2c,0x63,0x29,0x3a,0x22,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x3d,0x3d,0x3d,0x75,0x3f,0x62,0x65,0x28, 0x6e,0x2c,0x63,0x29,0x3a,0x5f,0x28,0x6e,0x2c,0x75,0x2c,0x63,0x2c,0x74,0x29,0x7d, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x69, 0x6e,0x70,0x75,0x74,0x22,0x3a,0x6e,0x65,0x28,0x6e,0x2c,0x72,0x29,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65, 0x61,0x22,0x3a,0x6c,0x65,0x28,0x6e,0x2c,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x3b,0x63,0x61,0x73,0x65,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a,0x65,0x3d, 0x6e,0x2e,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e, 0x77,0x61,0x73,0x4d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x6e,0x2e,0x5f,0x77, 0x72,0x61,0x70,0x70,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x2e,0x77,0x61,0x73,0x4d, 0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x3d,0x21,0x21,0x72,0x2e,0x6d,0x75,0x6c,0x74, 0x69,0x70,0x6c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x69,0x3d,0x72,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x29,0x3f,0x61,0x65,0x28,0x6e,0x2c,0x21,0x21,0x72,0x2e, 0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x69,0x2c,0x21,0x31,0x29,0x3a,0x65, 0x21,0x3d,0x3d,0x21,0x21,0x72,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x26, 0x26,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x56,0x61,0x6c,0x75,0x65,0x3f,0x61,0x65,0x28,0x6e,0x2c,0x21,0x21,0x72,0x2e, 0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x72,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x56,0x61,0x6c,0x75,0x65,0x2c,0x21,0x30,0x29,0x3a,0x61,0x65,0x28,0x6e, 0x2c,0x21,0x21,0x72,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x72,0x2e, 0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x3f,0x5b,0x5d,0x3a,0x22,0x22,0x2c,0x21, 0x31,0x29,0x29,0x7d,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61,0x73, 0x65,0x20,0x36,0x3a,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x32,0x29,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x28,0x74,0x2e,0x73,0x74,0x61,0x74, 0x65,0x4e,0x6f,0x64,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x56,0x61,0x6c,0x75,0x65,0x3d, 0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x6f,0x69,0x64,0x28,0x28,0x6e,0x3d,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x29,0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x26,0x26,0x28,0x6e,0x2e, 0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x3d,0x21,0x31,0x2c,0x4f,0x74,0x28,0x6e,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x29,0x29,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65, 0x64,0x53,0x74,0x61,0x74,0x65,0x26,0x26,0x28,0x56,0x75,0x3d,0x48,0x6f,0x28,0x29, 0x2c,0x62,0x75,0x28,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x21,0x30,0x29,0x29, 0x2c,0x76,0x6f,0x69,0x64,0x20,0x53,0x75,0x28,0x74,0x29,0x3b,0x63,0x61,0x73,0x65, 0x20,0x31,0x39,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20, 0x53,0x75,0x28,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x33,0x3a,0x63,0x61, 0x73,0x65,0x20,0x32,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69, 0x64,0x20,0x62,0x75,0x28,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x7d,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x36,0x33, 0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x75,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65, 0x51,0x75,0x65,0x75,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x74,0x29,0x7b,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e, 0x26,0x26,0x28,0x6e,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x3d,0x6e,0x65,0x77,0x20,0x68,0x75,0x29,0x2c,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x57,0x63,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75, 0x6c,0x6c,0x2c,0x65,0x2c,0x74,0x29,0x3b,0x6e,0x2e,0x68,0x61,0x73,0x28,0x74,0x29, 0x7c,0x7c,0x28,0x6e,0x2e,0x61,0x64,0x64,0x28,0x74,0x29,0x2c,0x74,0x2e,0x74,0x68, 0x65,0x6e,0x28,0x72,0x2c,0x72,0x29,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x75,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x2e,0x64,0x65,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x64,0x29, 0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x74,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x64,0x65,0x68,0x79,0x64,0x72,0x61,0x74, 0x65,0x64,0x29,0x7d,0x76,0x61,0x72,0x20,0x41,0x75,0x3d,0x4d,0x61,0x74,0x68,0x2e, 0x63,0x65,0x69,0x6c,0x2c,0x54,0x75,0x3d,0x77,0x2e,0x52,0x65,0x61,0x63,0x74,0x43, 0x75,0x72,0x72,0x65,0x6e,0x74,0x44,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x65,0x72, 0x2c,0x50,0x75,0x3d,0x77,0x2e,0x52,0x65,0x61,0x63,0x74,0x43,0x75,0x72,0x72,0x65, 0x6e,0x74,0x4f,0x77,0x6e,0x65,0x72,0x2c,0x44,0x75,0x3d,0x30,0x2c,0x4e,0x75,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x49,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x52,0x75,0x3d, 0x30,0x2c,0x4c,0x75,0x3d,0x30,0x2c,0x46,0x75,0x3d,0x6c,0x6f,0x28,0x30,0x29,0x2c, 0x4d,0x75,0x3d,0x30,0x2c,0x42,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x7a,0x75,0x3d, 0x30,0x2c,0x55,0x75,0x3d,0x30,0x2c,0x57,0x75,0x3d,0x30,0x2c,0x24,0x75,0x3d,0x30, 0x2c,0x48,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x56,0x75,0x3d,0x30,0x2c,0x47,0x75, 0x3d,0x31,0x2f,0x30,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x75, 0x28,0x29,0x7b,0x47,0x75,0x3d,0x48,0x6f,0x28,0x29,0x2b,0x35,0x30,0x30,0x7d,0x76, 0x61,0x72,0x20,0x4b,0x75,0x2c,0x59,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x51,0x75, 0x3d,0x21,0x31,0x2c,0x58,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x4a,0x75,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x5a,0x75,0x3d,0x21,0x31,0x2c,0x65,0x63,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x74,0x63,0x3d,0x39,0x30,0x2c,0x6e,0x63,0x3d,0x5b,0x5d,0x2c,0x72,0x63, 0x3d,0x5b,0x5d,0x2c,0x6f,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x63,0x3d,0x30, 0x2c,0x61,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x63,0x3d,0x2d,0x31,0x2c,0x63, 0x63,0x3d,0x30,0x2c,0x6c,0x63,0x3d,0x30,0x2c,0x73,0x63,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x66,0x63,0x3d,0x21,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x64,0x63,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x21,0x3d,0x3d, 0x28,0x34,0x38,0x26,0x44,0x75,0x29,0x3f,0x48,0x6f,0x28,0x29,0x3a,0x2d,0x31,0x21, 0x3d,0x3d,0x75,0x63,0x3f,0x75,0x63,0x3a,0x75,0x63,0x3d,0x48,0x6f,0x28,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x63,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x28,0x65,0x3d,0x65,0x2e,0x6d,0x6f, 0x64,0x65,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b,0x69,0x66, 0x28,0x30,0x3d,0x3d,0x3d,0x28,0x34,0x26,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x39,0x39,0x3d,0x3d,0x3d,0x56,0x6f,0x28,0x29,0x3f,0x31,0x3a,0x32,0x3b, 0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x63,0x63,0x26,0x26,0x28,0x63,0x63,0x3d,0x7a, 0x75,0x29,0x2c,0x30,0x21,0x3d,0x3d,0x58,0x6f,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x29,0x7b,0x30,0x21,0x3d,0x3d,0x6c,0x63,0x26,0x26,0x28,0x6c, 0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x48,0x75,0x3f,0x48,0x75,0x2e,0x70, 0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x3a,0x30,0x29,0x2c,0x65, 0x3d,0x63,0x63,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x34,0x31,0x38,0x36,0x31,0x31, 0x32,0x26,0x7e,0x6c,0x63,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d, 0x3d,0x28,0x74,0x26,0x3d,0x2d,0x74,0x29,0x26,0x26,0x28,0x30,0x3d,0x3d,0x3d,0x28, 0x74,0x3d,0x28,0x65,0x3d,0x34,0x31,0x38,0x36,0x31,0x31,0x32,0x26,0x7e,0x65,0x29, 0x26,0x2d,0x65,0x29,0x26,0x26,0x28,0x74,0x3d,0x38,0x31,0x39,0x32,0x29,0x29,0x2c, 0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x56,0x6f,0x28,0x29,0x2c, 0x30,0x21,0x3d,0x3d,0x28,0x34,0x26,0x44,0x75,0x29,0x26,0x26,0x39,0x38,0x3d,0x3d, 0x3d,0x65,0x3f,0x65,0x3d,0x7a,0x74,0x28,0x31,0x32,0x2c,0x63,0x63,0x29,0x3a,0x65, 0x3d,0x7a,0x74,0x28,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65, 0x20,0x39,0x39,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x35,0x3b,0x63,0x61, 0x73,0x65,0x20,0x39,0x38,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x30,0x3b, 0x63,0x61,0x73,0x65,0x20,0x39,0x37,0x3a,0x63,0x61,0x73,0x65,0x20,0x39,0x36,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x38,0x3b,0x63,0x61,0x73,0x65,0x20,0x39,0x35, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x32,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x7d,0x7d,0x28,0x65,0x29,0x2c, 0x63,0x63,0x29,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68, 0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x35,0x30,0x3c,0x69, 0x63,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x69,0x63,0x3d,0x30,0x2c,0x61,0x63,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x38,0x35, 0x29,0x29,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x65,0x3d, 0x76,0x63,0x28,0x65,0x2c,0x74,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x3b,0x24,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x65, 0x3d,0x3d,0x3d,0x4e,0x75,0x26,0x26,0x28,0x57,0x75,0x7c,0x3d,0x74,0x2c,0x34,0x3d, 0x3d,0x3d,0x4d,0x75,0x26,0x26,0x62,0x63,0x28,0x65,0x2c,0x52,0x75,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x56,0x6f,0x28,0x29,0x3b,0x31,0x3d,0x3d,0x3d,0x74, 0x3f,0x30,0x21,0x3d,0x3d,0x28,0x38,0x26,0x44,0x75,0x29,0x26,0x26,0x30,0x3d,0x3d, 0x3d,0x28,0x34,0x38,0x26,0x44,0x75,0x29,0x3f,0x79,0x63,0x28,0x65,0x29,0x3a,0x28, 0x67,0x63,0x28,0x65,0x2c,0x6e,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x44,0x75,0x26,0x26, 0x28,0x71,0x75,0x28,0x29,0x2c,0x59,0x6f,0x28,0x29,0x29,0x29,0x3a,0x28,0x30,0x3d, 0x3d,0x3d,0x28,0x34,0x26,0x44,0x75,0x29,0x7c,0x7c,0x39,0x38,0x21,0x3d,0x3d,0x72, 0x26,0x26,0x39,0x39,0x21,0x3d,0x3d,0x72,0x7c,0x7c,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x6f,0x63,0x3f,0x6f,0x63,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28, 0x5b,0x65,0x5d,0x29,0x3a,0x6f,0x63,0x2e,0x61,0x64,0x64,0x28,0x65,0x29,0x29,0x2c, 0x67,0x63,0x28,0x65,0x2c,0x6e,0x29,0x29,0x2c,0x48,0x75,0x3d,0x65,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65, 0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x74,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3b,0x66,0x6f,0x72,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x2e,0x6c,0x61,0x6e, 0x65,0x73,0x7c,0x3d,0x74,0x29,0x2c,0x6e,0x3d,0x65,0x2c,0x65,0x3d,0x65,0x2e,0x72, 0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3b,0x29, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x74,0x2c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65, 0x72,0x6e,0x61,0x74,0x65,0x29,0x26,0x26,0x28,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x74,0x29,0x2c,0x6e,0x3d,0x65,0x2c,0x65,0x3d, 0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x33,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x3f,0x6e,0x2e,0x73,0x74,0x61,0x74, 0x65,0x4e,0x6f,0x64,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x67,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x4e,0x6f,0x64,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x64, 0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x2c,0x6f,0x3d,0x65,0x2e,0x70,0x69,0x6e,0x67, 0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x2c,0x69,0x3d,0x65,0x2e,0x65,0x78,0x70,0x69, 0x72,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x73,0x2c,0x75,0x3d,0x65,0x2e, 0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x3b,0x30,0x3c,0x75, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28,0x75, 0x29,0x2c,0x6c,0x3d,0x31,0x3c,0x3c,0x63,0x2c,0x73,0x3d,0x69,0x5b,0x63,0x5d,0x3b, 0x69,0x66,0x28,0x2d,0x31,0x3d,0x3d,0x3d,0x73,0x29,0x7b,0x69,0x66,0x28,0x30,0x3d, 0x3d,0x3d,0x28,0x6c,0x26,0x72,0x29,0x7c,0x7c,0x30,0x21,0x3d,0x3d,0x28,0x6c,0x26, 0x6f,0x29,0x29,0x7b,0x73,0x3d,0x74,0x2c,0x46,0x74,0x28,0x6c,0x29,0x3b,0x76,0x61, 0x72,0x20,0x66,0x3d,0x4c,0x74,0x3b,0x69,0x5b,0x63,0x5d,0x3d,0x31,0x30,0x3c,0x3d, 0x66,0x3f,0x73,0x2b,0x32,0x35,0x30,0x3a,0x36,0x3c,0x3d,0x66,0x3f,0x73,0x2b,0x35, 0x65,0x33,0x3a,0x2d,0x31,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x73,0x3c,0x3d,0x74, 0x26,0x26,0x28,0x65,0x2e,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x7c,0x3d,0x6c,0x29,0x3b,0x75,0x26,0x3d,0x7e,0x6c,0x7d,0x69,0x66,0x28,0x72, 0x3d,0x4d,0x74,0x28,0x65,0x2c,0x65,0x3d,0x3d,0x3d,0x4e,0x75,0x3f,0x52,0x75,0x3a, 0x30,0x29,0x2c,0x74,0x3d,0x4c,0x74,0x2c,0x30,0x3d,0x3d,0x3d,0x72,0x29,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x21,0x3d,0x3d,0x4d,0x6f,0x26, 0x26,0x43,0x6f,0x28,0x6e,0x29,0x2c,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x4e,0x6f,0x64,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x30,0x29, 0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x6e,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x3b,0x6e,0x21,0x3d,0x3d,0x4d,0x6f,0x26,0x26,0x43,0x6f,0x28,0x6e, 0x29,0x7d,0x31,0x35,0x3d,0x3d,0x3d,0x74,0x3f,0x28,0x6e,0x3d,0x79,0x63,0x2e,0x62, 0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x7a,0x6f,0x3f,0x28,0x7a,0x6f,0x3d,0x5b,0x6e,0x5d,0x2c,0x55,0x6f, 0x3d,0x53,0x6f,0x28,0x4e,0x6f,0x2c,0x51,0x6f,0x29,0x29,0x3a,0x7a,0x6f,0x2e,0x70, 0x75,0x73,0x68,0x28,0x6e,0x29,0x2c,0x6e,0x3d,0x4d,0x6f,0x29,0x3a,0x31,0x34,0x3d, 0x3d,0x3d,0x74,0x3f,0x6e,0x3d,0x4b,0x6f,0x28,0x39,0x39,0x2c,0x79,0x63,0x2e,0x62, 0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x29,0x3a,0x28,0x6e,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x31,0x35,0x3a,0x63,0x61, 0x73,0x65,0x20,0x31,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x39,0x3b, 0x63,0x61,0x73,0x65,0x20,0x31,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x32,0x3a, 0x63,0x61,0x73,0x65,0x20,0x31,0x31,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x38,0x3b,0x63,0x61,0x73,0x65,0x20,0x39, 0x3a,0x63,0x61,0x73,0x65,0x20,0x38,0x3a,0x63,0x61,0x73,0x65,0x20,0x37,0x3a,0x63, 0x61,0x73,0x65,0x20,0x36,0x3a,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x63,0x61,0x73, 0x65,0x20,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x37,0x3b,0x63,0x61, 0x73,0x65,0x20,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x61,0x73,0x65, 0x20,0x31,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x35,0x3b,0x63,0x61,0x73, 0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x39,0x30,0x3b,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x61,0x28,0x33,0x35,0x38,0x2c,0x65,0x29,0x29,0x7d,0x7d,0x28,0x74,0x29, 0x2c,0x6e,0x3d,0x4b,0x6f,0x28,0x6e,0x2c,0x6d,0x63,0x2e,0x62,0x69,0x6e,0x64,0x28, 0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x29,0x29,0x2c,0x65,0x2e,0x63,0x61,0x6c,0x6c, 0x62,0x61,0x63,0x6b,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x74,0x2c,0x65, 0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x4e,0x6f,0x64,0x65,0x3d,0x6e,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x63,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x75,0x63,0x3d,0x2d,0x31,0x2c,0x6c,0x63,0x3d,0x63,0x63,0x3d,0x30, 0x2c,0x30,0x21,0x3d,0x3d,0x28,0x34,0x38,0x26,0x44,0x75,0x29,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x32,0x37,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x4e,0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x52,0x63,0x28,0x29,0x26,0x26,0x65, 0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x4e,0x6f,0x64,0x65,0x21,0x3d,0x3d, 0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x4d,0x74,0x28,0x65,0x2c,0x65,0x3d,0x3d,0x3d,0x4e,0x75,0x3f, 0x52,0x75,0x3a,0x30,0x29,0x3b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x6e,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x2c,0x6f,0x3d,0x44,0x75,0x3b,0x44,0x75,0x7c,0x3d,0x31,0x36,0x3b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x6b,0x63,0x28,0x29,0x3b,0x66,0x6f,0x72,0x28,0x4e,0x75, 0x3d,0x3d,0x3d,0x65,0x26,0x26,0x52,0x75,0x3d,0x3d,0x3d,0x72,0x7c,0x7c,0x28,0x71, 0x75,0x28,0x29,0x2c,0x45,0x63,0x28,0x65,0x2c,0x72,0x29,0x29,0x3b,0x3b,0x29,0x74, 0x72,0x79,0x7b,0x41,0x63,0x28,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x63,0x29,0x7b,0x6a,0x63,0x28,0x65,0x2c,0x63,0x29,0x7d,0x69, 0x66,0x28,0x72,0x69,0x28,0x29,0x2c,0x54,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x69,0x2c,0x44,0x75,0x3d,0x6f,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x49,0x75,0x3f,0x72,0x3d,0x30,0x3a,0x28,0x4e,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x52,0x75,0x3d,0x30,0x2c,0x72,0x3d,0x4d,0x75,0x29,0x2c,0x30,0x21,0x3d,0x3d,0x28, 0x7a,0x75,0x26,0x57,0x75,0x29,0x29,0x45,0x63,0x28,0x65,0x2c,0x30,0x29,0x3b,0x65, 0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x72,0x29,0x7b,0x69,0x66, 0x28,0x32,0x3d,0x3d,0x3d,0x72,0x26,0x26,0x28,0x44,0x75,0x7c,0x3d,0x36,0x34,0x2c, 0x65,0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x26,0x26,0x28,0x65,0x2e,0x68,0x79, 0x64,0x72,0x61,0x74,0x65,0x3d,0x21,0x31,0x2c,0x71,0x72,0x28,0x65,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x29,0x29,0x2c,0x30,0x21, 0x3d,0x3d,0x28,0x6e,0x3d,0x42,0x74,0x28,0x65,0x29,0x29,0x26,0x26,0x28,0x72,0x3d, 0x53,0x63,0x28,0x65,0x2c,0x6e,0x29,0x29,0x29,0x2c,0x31,0x3d,0x3d,0x3d,0x72,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x74,0x3d,0x42,0x75,0x2c,0x45,0x63,0x28,0x65,0x2c, 0x30,0x29,0x2c,0x62,0x63,0x28,0x65,0x2c,0x6e,0x29,0x2c,0x67,0x63,0x28,0x65,0x2c, 0x48,0x6f,0x28,0x29,0x29,0x2c,0x74,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65, 0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x57,0x6f,0x72,0x6b,0x3d,0x65,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74, 0x65,0x2c,0x65,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x3d,0x6e,0x2c,0x72,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x63,0x61, 0x73,0x65,0x20,0x31,0x3a,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x61,0x28,0x33,0x34,0x35,0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a, 0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x44,0x63,0x28,0x65,0x29,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x69,0x66,0x28,0x62,0x63,0x28, 0x65,0x2c,0x6e,0x29,0x2c,0x28,0x36,0x32,0x39,0x31,0x34,0x35,0x36,0x30,0x26,0x6e, 0x29,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x31,0x30,0x3c,0x28,0x72,0x3d,0x56,0x75,0x2b, 0x35,0x30,0x30,0x2d,0x48,0x6f,0x28,0x29,0x29,0x29,0x7b,0x69,0x66,0x28,0x30,0x21, 0x3d,0x3d,0x4d,0x74,0x28,0x65,0x2c,0x30,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x69,0x66,0x28,0x28,0x28,0x6f,0x3d,0x65,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x64, 0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x29,0x26,0x6e,0x29,0x21,0x3d,0x3d,0x6e,0x29, 0x7b,0x64,0x63,0x28,0x29,0x2c,0x65,0x2e,0x70,0x69,0x6e,0x67,0x65,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x7c,0x3d,0x65,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64, 0x4c,0x61,0x6e,0x65,0x73,0x26,0x6f,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x65,0x2e, 0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3d,0x56,0x72, 0x28,0x44,0x63,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29, 0x2c,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x44,0x63,0x28,0x65,0x29,0x3b, 0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x69,0x66,0x28, 0x62,0x63,0x28,0x65,0x2c,0x6e,0x29,0x2c,0x28,0x34,0x31,0x38,0x36,0x31,0x31,0x32, 0x26,0x6e,0x29,0x3d,0x3d,0x3d,0x6e,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x66,0x6f, 0x72,0x28,0x72,0x3d,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x54,0x69,0x6d,0x65,0x73, 0x2c,0x6f,0x3d,0x2d,0x31,0x3b,0x30,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x75,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28,0x6e,0x29,0x3b,0x69,0x3d,0x31,0x3c,0x3c, 0x75,0x2c,0x28,0x75,0x3d,0x72,0x5b,0x75,0x5d,0x29,0x3e,0x6f,0x26,0x26,0x28,0x6f, 0x3d,0x75,0x29,0x2c,0x6e,0x26,0x3d,0x7e,0x69,0x7d,0x69,0x66,0x28,0x6e,0x3d,0x6f, 0x2c,0x31,0x30,0x3c,0x28,0x6e,0x3d,0x28,0x31,0x32,0x30,0x3e,0x28,0x6e,0x3d,0x48, 0x6f,0x28,0x29,0x2d,0x6e,0x29,0x3f,0x31,0x32,0x30,0x3a,0x34,0x38,0x30,0x3e,0x6e, 0x3f,0x34,0x38,0x30,0x3a,0x31,0x30,0x38,0x30,0x3e,0x6e,0x3f,0x31,0x30,0x38,0x30, 0x3a,0x31,0x39,0x32,0x30,0x3e,0x6e,0x3f,0x31,0x39,0x32,0x30,0x3a,0x33,0x65,0x33, 0x3e,0x6e,0x3f,0x33,0x65,0x33,0x3a,0x34,0x33,0x32,0x30,0x3e,0x6e,0x3f,0x34,0x33, 0x32,0x30,0x3a,0x31,0x39,0x36,0x30,0x2a,0x41,0x75,0x28,0x6e,0x2f,0x31,0x39,0x36, 0x30,0x29,0x29,0x2d,0x6e,0x29,0x29,0x7b,0x65,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3d,0x56,0x72,0x28,0x44,0x63,0x2e,0x62,0x69, 0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x2c,0x6e,0x29,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x7d,0x44,0x63,0x28,0x65,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x32,0x39,0x29,0x29,0x7d,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x67,0x63,0x28,0x65,0x2c,0x48,0x6f,0x28,0x29,0x29,0x2c,0x65, 0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x4e,0x6f,0x64,0x65,0x3d,0x3d,0x3d, 0x74,0x3f,0x6d,0x63,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x62,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x74,0x26,0x3d,0x7e, 0x24,0x75,0x2c,0x74,0x26,0x3d,0x7e,0x57,0x75,0x2c,0x65,0x2e,0x73,0x75,0x73,0x70, 0x65,0x6e,0x64,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x74,0x2c,0x65,0x2e, 0x70,0x69,0x6e,0x67,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x26,0x3d,0x7e,0x74,0x2c, 0x65,0x3d,0x65,0x2e,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69, 0x6d,0x65,0x73,0x3b,0x30,0x3c,0x74,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x33,0x31,0x2d,0x48,0x74,0x28,0x74,0x29,0x2c,0x72,0x3d,0x31,0x3c,0x3c,0x6e,0x3b, 0x65,0x5b,0x6e,0x5d,0x3d,0x2d,0x31,0x2c,0x74,0x26,0x3d,0x7e,0x72,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x63,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x30,0x21,0x3d,0x3d,0x28,0x34,0x38,0x26,0x44,0x75,0x29,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x32,0x37,0x29,0x29, 0x3b,0x69,0x66,0x28,0x52,0x63,0x28,0x29,0x2c,0x65,0x3d,0x3d,0x3d,0x4e,0x75,0x26, 0x26,0x30,0x21,0x3d,0x3d,0x28,0x65,0x2e,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x4c, 0x61,0x6e,0x65,0x73,0x26,0x52,0x75,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x52,0x75,0x2c,0x6e,0x3d,0x53,0x63,0x28,0x65,0x2c,0x74,0x29,0x3b,0x30,0x21,0x3d, 0x3d,0x28,0x7a,0x75,0x26,0x57,0x75,0x29,0x26,0x26,0x28,0x6e,0x3d,0x53,0x63,0x28, 0x65,0x2c,0x74,0x3d,0x4d,0x74,0x28,0x65,0x2c,0x74,0x29,0x29,0x29,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x6e,0x3d,0x53,0x63,0x28,0x65,0x2c,0x74,0x3d,0x4d,0x74,0x28,0x65, 0x2c,0x30,0x29,0x29,0x3b,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x61, 0x67,0x26,0x26,0x32,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x44,0x75,0x7c,0x3d,0x36, 0x34,0x2c,0x65,0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x26,0x26,0x28,0x65,0x2e, 0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x3d,0x21,0x31,0x2c,0x71,0x72,0x28,0x65,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x29,0x29,0x2c, 0x30,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x42,0x74,0x28,0x65,0x29,0x29,0x26,0x26,0x28, 0x6e,0x3d,0x53,0x63,0x28,0x65,0x2c,0x74,0x29,0x29,0x29,0x2c,0x31,0x3d,0x3d,0x3d, 0x6e,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x3d,0x42,0x75,0x2c,0x45,0x63,0x28, 0x65,0x2c,0x30,0x29,0x2c,0x62,0x63,0x28,0x65,0x2c,0x74,0x29,0x2c,0x67,0x63,0x28, 0x65,0x2c,0x48,0x6f,0x28,0x29,0x29,0x2c,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x57,0x6f,0x72,0x6b,0x3d, 0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x2c,0x65,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x3d,0x74,0x2c,0x44,0x63,0x28,0x65,0x29,0x2c,0x67,0x63,0x28,0x65, 0x2c,0x48,0x6f,0x28,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x5f,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x44,0x75,0x3b,0x44,0x75,0x7c,0x3d,0x31,0x3b,0x74,0x72,0x79,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x29,0x7d,0x66,0x69,0x6e,0x61, 0x6c,0x6c,0x79,0x7b,0x30,0x3d,0x3d,0x3d,0x28,0x44,0x75,0x3d,0x6e,0x29,0x26,0x26, 0x28,0x71,0x75,0x28,0x29,0x2c,0x59,0x6f,0x28,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x44,0x75,0x3b,0x44,0x75,0x26,0x3d,0x2d,0x32,0x2c,0x44,0x75, 0x7c,0x3d,0x38,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x28,0x74,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x30,0x3d,0x3d,0x3d, 0x28,0x44,0x75,0x3d,0x6e,0x29,0x26,0x26,0x28,0x71,0x75,0x28,0x29,0x2c,0x59,0x6f, 0x28,0x29,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x63, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x28,0x46,0x75,0x2c,0x4c,0x75,0x29,0x2c, 0x4c,0x75,0x7c,0x3d,0x74,0x2c,0x7a,0x75,0x7c,0x3d,0x74,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x78,0x63,0x28,0x29,0x7b,0x4c,0x75,0x3d,0x46,0x75,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x73,0x6f,0x28,0x46,0x75,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x65,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x57,0x6f,0x72,0x6b,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x4c,0x61, 0x6e,0x65,0x73,0x3d,0x30,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x74,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3b,0x69,0x66,0x28,0x2d, 0x31,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x65,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x48,0x61,0x6e,0x64,0x6c,0x65,0x3d,0x2d,0x31,0x2c,0x47,0x72,0x28,0x6e,0x29, 0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x49,0x75,0x29,0x66,0x6f,0x72,0x28, 0x6e,0x3d,0x49,0x75,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x3b,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x72,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x31,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x72,0x3d,0x72,0x2e, 0x74,0x79,0x70,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x54,0x79,0x70,0x65,0x73,0x29,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x72,0x26,0x26,0x79,0x6f,0x28,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x52,0x69,0x28,0x29,0x2c,0x73,0x6f,0x28,0x76, 0x6f,0x29,0x2c,0x73,0x6f,0x28,0x68,0x6f,0x29,0x2c,0x51,0x69,0x28,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x46,0x69,0x28,0x72, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x52, 0x69,0x28,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x31, 0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x39,0x3a,0x73,0x6f,0x28,0x4d,0x69,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x3a,0x6f, 0x69,0x28,0x72,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20, 0x32,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x32,0x34,0x3a,0x78,0x63,0x28,0x29,0x7d, 0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x4e,0x75,0x3d,0x65,0x2c, 0x49,0x75,0x3d,0x47,0x63,0x28,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c, 0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x52,0x75,0x3d,0x4c,0x75,0x3d,0x7a,0x75,0x3d,0x74, 0x2c,0x4d,0x75,0x3d,0x30,0x2c,0x42,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x24,0x75, 0x3d,0x57,0x75,0x3d,0x55,0x75,0x3d,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6a,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x49,0x75,0x3b,0x74,0x72,0x79,0x7b,0x69, 0x66,0x28,0x72,0x69,0x28,0x29,0x2c,0x58,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x44,0x61,0x2c,0x72,0x61,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x72,0x3d,0x65,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x72,0x2e,0x71,0x75,0x65,0x75,0x65,0x3b,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x6f,0x26,0x26,0x28,0x6f,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e, 0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x72,0x3d,0x72,0x2e,0x6e,0x65,0x78,0x74, 0x7d,0x72,0x61,0x3d,0x21,0x31,0x7d,0x69,0x66,0x28,0x5a,0x69,0x3d,0x30,0x2c,0x6e, 0x61,0x3d,0x74,0x61,0x3d,0x65,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x61,0x3d, 0x21,0x31,0x2c,0x50,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x29,0x7b,0x4d,0x75, 0x3d,0x31,0x2c,0x42,0x75,0x3d,0x74,0x2c,0x49,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x3b, 0x62,0x72,0x65,0x61,0x6b,0x7d,0x65,0x3a,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65, 0x2c,0x61,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x75,0x3d,0x6e,0x2c, 0x63,0x3d,0x74,0x3b,0x69,0x66,0x28,0x74,0x3d,0x52,0x75,0x2c,0x75,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x7c,0x3d,0x32,0x30,0x34,0x38,0x2c,0x75,0x2e,0x66,0x69,0x72,0x73, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x75,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x63,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x2e,0x74, 0x68,0x65,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x63,0x3b,0x69,0x66,0x28, 0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x75,0x2e,0x6d,0x6f,0x64,0x65,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x73,0x3d,0x75,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74, 0x65,0x3b,0x73,0x3f,0x28,0x75,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65, 0x75,0x65,0x3d,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x2c,0x75,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x3d,0x73,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65, 0x2c,0x75,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x73,0x2e,0x6c,0x61,0x6e,0x65,0x73, 0x29,0x3a,0x28,0x75,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x76,0x61,0x72,0x20, 0x66,0x3d,0x30,0x21,0x3d,0x3d,0x28,0x31,0x26,0x4d,0x69,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x29,0x2c,0x64,0x3d,0x61,0x3b,0x64,0x6f,0x7b,0x76,0x61,0x72,0x20, 0x70,0x3b,0x69,0x66,0x28,0x70,0x3d,0x31,0x33,0x3d,0x3d,0x3d,0x64,0x2e,0x74,0x61, 0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x68,0x3d,0x64,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x68,0x29,0x70,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x68,0x2e, 0x64,0x65,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x64,0x3b,0x65,0x6c,0x73,0x65,0x7b, 0x76,0x61,0x72,0x20,0x76,0x3d,0x64,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64, 0x50,0x72,0x6f,0x70,0x73,0x3b,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x76,0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x26,0x26,0x28,0x21,0x30, 0x21,0x3d,0x3d,0x76,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x61,0x76, 0x6f,0x69,0x64,0x54,0x68,0x69,0x73,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x7c, 0x7c,0x21,0x66,0x29,0x7d,0x7d,0x69,0x66,0x28,0x70,0x29,0x7b,0x76,0x61,0x72,0x20, 0x67,0x3d,0x64,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x67,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6d,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x3b,0x6d,0x2e,0x61,0x64,0x64, 0x28,0x6c,0x29,0x2c,0x64,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75, 0x65,0x3d,0x6d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x67,0x2e,0x61,0x64,0x64,0x28,0x6c, 0x29,0x3b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x64,0x2e,0x6d,0x6f, 0x64,0x65,0x29,0x29,0x7b,0x69,0x66,0x28,0x64,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c, 0x3d,0x36,0x34,0x2c,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x36,0x33, 0x38,0x34,0x2c,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x3d,0x2d,0x32,0x39,0x38, 0x31,0x2c,0x31,0x3d,0x3d,0x3d,0x75,0x2e,0x74,0x61,0x67,0x29,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x75,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74, 0x65,0x29,0x75,0x2e,0x74,0x61,0x67,0x3d,0x31,0x37,0x3b,0x65,0x6c,0x73,0x65,0x7b, 0x76,0x61,0x72,0x20,0x62,0x3d,0x66,0x69,0x28,0x2d,0x31,0x2c,0x31,0x29,0x3b,0x62, 0x2e,0x74,0x61,0x67,0x3d,0x32,0x2c,0x64,0x69,0x28,0x75,0x2c,0x62,0x29,0x7d,0x75, 0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20, 0x65,0x7d,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x75,0x3d,0x74,0x3b,0x76, 0x61,0x72,0x20,0x79,0x3d,0x69,0x2e,0x70,0x69,0x6e,0x67,0x43,0x61,0x63,0x68,0x65, 0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x79,0x3f,0x28,0x79,0x3d, 0x69,0x2e,0x70,0x69,0x6e,0x67,0x43,0x61,0x63,0x68,0x65,0x3d,0x6e,0x65,0x77,0x20, 0x66,0x75,0x2c,0x63,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x2c,0x79,0x2e,0x73, 0x65,0x74,0x28,0x6c,0x2c,0x63,0x29,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x28,0x63,0x3d,0x79,0x2e,0x67,0x65,0x74,0x28,0x6c,0x29,0x29,0x26,0x26, 0x28,0x63,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x2c,0x79,0x2e,0x73,0x65,0x74, 0x28,0x6c,0x2c,0x63,0x29,0x29,0x2c,0x21,0x63,0x2e,0x68,0x61,0x73,0x28,0x75,0x29, 0x29,0x7b,0x63,0x2e,0x61,0x64,0x64,0x28,0x75,0x29,0x3b,0x76,0x61,0x72,0x20,0x5f, 0x3d,0x55,0x63,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x69,0x2c, 0x6c,0x2c,0x75,0x29,0x3b,0x6c,0x2e,0x74,0x68,0x65,0x6e,0x28,0x5f,0x2c,0x5f,0x29, 0x7d,0x64,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x34,0x30,0x39,0x36,0x2c,0x64, 0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65, 0x7d,0x64,0x3d,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x77,0x68,0x69,0x6c, 0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x64,0x29,0x3b,0x63,0x3d,0x45,0x72, 0x72,0x6f,0x72,0x28,0x28,0x71,0x28,0x75,0x2e,0x74,0x79,0x70,0x65,0x29,0x7c,0x7c, 0x22,0x41,0x20,0x52,0x65,0x61,0x63,0x74,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65, 0x6e,0x74,0x22,0x29,0x2b,0x22,0x20,0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64, 0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67, 0x2c,0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x20,0x55,0x49,0x20,0x77,0x61,0x73,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x69, 0x65,0x64,0x2e,0x5c,0x6e,0x5c,0x6e,0x41,0x64,0x64,0x20,0x61,0x20,0x3c,0x53,0x75, 0x73,0x70,0x65,0x6e,0x73,0x65,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d, 0x2e,0x2e,0x2e,0x3e,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x20,0x68, 0x69,0x67,0x68,0x65,0x72,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x74,0x72,0x65, 0x65,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x20,0x61,0x20,0x6c, 0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72, 0x20,0x6f,0x72,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20, 0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x22,0x29,0x7d,0x35,0x21, 0x3d,0x3d,0x4d,0x75,0x26,0x26,0x28,0x4d,0x75,0x3d,0x32,0x29,0x2c,0x63,0x3d,0x6c, 0x75,0x28,0x63,0x2c,0x75,0x29,0x2c,0x64,0x3d,0x61,0x3b,0x64,0x6f,0x7b,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x64,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65, 0x20,0x33,0x3a,0x69,0x3d,0x63,0x2c,0x64,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d, 0x34,0x30,0x39,0x36,0x2c,0x74,0x26,0x3d,0x2d,0x74,0x2c,0x64,0x2e,0x6c,0x61,0x6e, 0x65,0x73,0x7c,0x3d,0x74,0x2c,0x70,0x69,0x28,0x64,0x2c,0x64,0x75,0x28,0x30,0x2c, 0x69,0x2c,0x74,0x29,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61, 0x73,0x65,0x20,0x31,0x3a,0x69,0x3d,0x63,0x3b,0x76,0x61,0x72,0x20,0x77,0x3d,0x64, 0x2e,0x74,0x79,0x70,0x65,0x2c,0x4f,0x3d,0x64,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x36,0x34,0x26,0x64, 0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x26,0x26,0x28,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x2e, 0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x46, 0x72,0x6f,0x6d,0x45,0x72,0x72,0x6f,0x72,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x4f,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x4f,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e, 0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61,0x74,0x63,0x68,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x4a,0x75,0x7c,0x7c,0x21,0x4a,0x75,0x2e,0x68,0x61,0x73, 0x28,0x4f,0x29,0x29,0x29,0x29,0x7b,0x64,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d, 0x34,0x30,0x39,0x36,0x2c,0x74,0x26,0x3d,0x2d,0x74,0x2c,0x64,0x2e,0x6c,0x61,0x6e, 0x65,0x73,0x7c,0x3d,0x74,0x2c,0x70,0x69,0x28,0x64,0x2c,0x70,0x75,0x28,0x64,0x2c, 0x69,0x2c,0x74,0x29,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x7d,0x64, 0x3d,0x64,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x64,0x29,0x7d,0x50,0x63,0x28,0x6e,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x78,0x29,0x7b,0x74,0x3d,0x78,0x2c,0x49,0x75,0x3d, 0x3d,0x3d,0x6e,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28, 0x49,0x75,0x3d,0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x29,0x3b,0x63, 0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7d,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x63,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x54,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x54,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d, 0x44,0x61,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x44,0x61,0x3a,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x63,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x44,0x75,0x3b,0x44,0x75,0x7c,0x3d,0x31, 0x36,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6b,0x63,0x28,0x29,0x3b,0x66,0x6f,0x72, 0x28,0x4e,0x75,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x52,0x75,0x3d,0x3d,0x3d,0x74,0x7c, 0x7c,0x45,0x63,0x28,0x65,0x2c,0x74,0x29,0x3b,0x3b,0x29,0x74,0x72,0x79,0x7b,0x43, 0x63,0x28,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x6f,0x29,0x7b,0x6a,0x63,0x28,0x65,0x2c,0x6f,0x29,0x7d,0x69,0x66,0x28,0x72,0x69, 0x28,0x29,0x2c,0x44,0x75,0x3d,0x6e,0x2c,0x54,0x75,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x49,0x75,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x36,0x31, 0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4e,0x75,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x52,0x75,0x3d,0x30,0x2c,0x4d,0x75,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x43,0x63,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x49,0x75,0x3b,0x29,0x54,0x63,0x28,0x49,0x75,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x63,0x28,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x49,0x75,0x26,0x26,0x21,0x41,0x6f, 0x28,0x29,0x3b,0x29,0x54,0x63,0x28,0x49,0x75,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x54,0x63,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x4b,0x75,0x28,0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x2c,0x65, 0x2c,0x4c,0x75,0x29,0x3b,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50, 0x72,0x6f,0x70,0x73,0x3d,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72, 0x6f,0x70,0x73,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x3f,0x50,0x63,0x28, 0x65,0x29,0x3a,0x49,0x75,0x3d,0x74,0x2c,0x50,0x75,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x50,0x63,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x3b,0x64, 0x6f,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x65,0x3d,0x74,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x30,0x34,0x38,0x26,0x74,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x29,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x28,0x6e,0x3d,0x75,0x75,0x28,0x6e,0x2c,0x74,0x2c,0x4c,0x75,0x29,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x28,0x49,0x75,0x3d,0x6e,0x29, 0x3b,0x69,0x66,0x28,0x32,0x34,0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x74,0x29,0x2e,0x74, 0x61,0x67,0x26,0x26,0x32,0x33,0x21,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x7c,0x7c, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65, 0x64,0x53,0x74,0x61,0x74,0x65,0x7c,0x7c,0x30,0x21,0x3d,0x3d,0x28,0x31,0x30,0x37, 0x33,0x37,0x34,0x31,0x38,0x32,0x34,0x26,0x4c,0x75,0x29,0x7c,0x7c,0x30,0x3d,0x3d, 0x3d,0x28,0x34,0x26,0x6e,0x2e,0x6d,0x6f,0x64,0x65,0x29,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x6e,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x3b,0x29,0x72,0x7c,0x3d, 0x6f,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c, 0x61,0x6e,0x65,0x73,0x2c,0x6f,0x3d,0x6f,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67, 0x3b,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x72,0x7d, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x28,0x32, 0x30,0x34,0x38,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x26,0x26,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66, 0x65,0x63,0x74,0x26,0x26,0x28,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66, 0x65,0x63,0x74,0x3d,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63, 0x74,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74, 0x45,0x66,0x66,0x65,0x63,0x74,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x26,0x26,0x28,0x65, 0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x2e,0x6e,0x65,0x78,0x74, 0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x29,0x2c,0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x3d,0x74,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x29, 0x2c,0x31,0x3c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x26,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74, 0x3f,0x65,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x2e,0x6e,0x65, 0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x74,0x3a,0x65,0x2e,0x66,0x69,0x72, 0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x74,0x2c,0x65,0x2e,0x6c,0x61,0x73, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x74,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6e,0x3d,0x63,0x75, 0x28,0x74,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x26,0x3d,0x32,0x30,0x34,0x37,0x2c,0x76,0x6f,0x69,0x64,0x28,0x49, 0x75,0x3d,0x6e,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28, 0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x65,0x2e, 0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x30,0x34,0x38,0x29,0x7d,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x74,0x3d,0x74,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f, 0x69,0x64,0x28,0x49,0x75,0x3d,0x74,0x29,0x3b,0x49,0x75,0x3d,0x74,0x3d,0x65,0x7d, 0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x29,0x3b, 0x30,0x3d,0x3d,0x3d,0x4d,0x75,0x26,0x26,0x28,0x4d,0x75,0x3d,0x35,0x29,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x63,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x56,0x6f,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x71,0x6f,0x28,0x39,0x39,0x2c,0x4e,0x63,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75, 0x6c,0x6c,0x2c,0x65,0x2c,0x74,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x64, 0x6f,0x7b,0x52,0x63,0x28,0x29,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x63,0x29,0x3b,0x69,0x66,0x28,0x30,0x21,0x3d,0x3d,0x28, 0x34,0x38,0x26,0x44,0x75,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x33,0x32,0x37,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x57,0x6f,0x72,0x6b,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x65,0x2e,0x66,0x69,0x6e, 0x69,0x73,0x68,0x65,0x64,0x57,0x6f,0x72,0x6b,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x30, 0x2c,0x6e,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x37,0x37, 0x29,0x29,0x3b,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x4e,0x6f,0x64, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x6c, 0x61,0x6e,0x65,0x73,0x7c,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x2c,0x6f,0x3d,0x72,0x2c,0x69,0x3d,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e, 0x67,0x4c,0x61,0x6e,0x65,0x73,0x26,0x7e,0x6f,0x3b,0x65,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x6f,0x2c,0x65,0x2e,0x73,0x75,0x73, 0x70,0x65,0x6e,0x64,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x65,0x2e, 0x70,0x69,0x6e,0x67,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x65,0x2e, 0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x26,0x3d,0x6f,0x2c, 0x65,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4c,0x61,0x6e, 0x65,0x73,0x26,0x3d,0x6f,0x2c,0x65,0x2e,0x65,0x6e,0x74,0x61,0x6e,0x67,0x6c,0x65, 0x64,0x4c,0x61,0x6e,0x65,0x73,0x26,0x3d,0x6f,0x2c,0x6f,0x3d,0x65,0x2e,0x65,0x6e, 0x74,0x61,0x6e,0x67,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x75,0x3d,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x54,0x69,0x6d, 0x65,0x73,0x2c,0x63,0x3d,0x65,0x2e,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f, 0x6e,0x54,0x69,0x6d,0x65,0x73,0x3b,0x30,0x3c,0x69,0x3b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6c,0x3d,0x33,0x31,0x2d,0x48,0x74,0x28,0x69,0x29,0x2c,0x73,0x3d,0x31,0x3c, 0x3c,0x6c,0x3b,0x6f,0x5b,0x6c,0x5d,0x3d,0x30,0x2c,0x75,0x5b,0x6c,0x5d,0x3d,0x2d, 0x31,0x2c,0x63,0x5b,0x6c,0x5d,0x3d,0x2d,0x31,0x2c,0x69,0x26,0x3d,0x7e,0x73,0x7d, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x63,0x26,0x26,0x30,0x3d, 0x3d,0x3d,0x28,0x32,0x34,0x26,0x72,0x29,0x26,0x26,0x6f,0x63,0x2e,0x68,0x61,0x73, 0x28,0x65,0x29,0x26,0x26,0x6f,0x63,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65, 0x29,0x2c,0x65,0x3d,0x3d,0x3d,0x4e,0x75,0x26,0x26,0x28,0x49,0x75,0x3d,0x4e,0x75, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x52,0x75,0x3d,0x30,0x29,0x2c,0x31,0x3c,0x6e,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x3f,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x2e,0x6c, 0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3f,0x28,0x6e,0x2e,0x6c,0x61,0x73, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x3d,0x6e,0x2c,0x72,0x3d,0x6e,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x29,0x3a,0x72,0x3d,0x6e,0x3a,0x72,0x3d,0x6e,0x2e,0x66,0x69, 0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x72,0x29,0x7b,0x69,0x66,0x28,0x6f,0x3d,0x44,0x75,0x2c,0x44,0x75,0x7c,0x3d, 0x33,0x32,0x2c,0x50,0x75,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x55,0x72,0x3d,0x59,0x74,0x2c,0x6d,0x72,0x28,0x75,0x3d,0x67,0x72, 0x28,0x29,0x29,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x69,0x6e,0x20,0x75,0x29,0x63,0x3d,0x7b, 0x73,0x74,0x61,0x72,0x74,0x3a,0x75,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x53,0x74,0x61,0x72,0x74,0x2c,0x65,0x6e,0x64,0x3a,0x75,0x2e,0x73,0x65,0x6c, 0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x7d,0x3b,0x65,0x6c,0x73,0x65,0x20, 0x65,0x3a,0x69,0x66,0x28,0x63,0x3d,0x28,0x63,0x3d,0x75,0x2e,0x6f,0x77,0x6e,0x65, 0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x26,0x26,0x63,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x56,0x69,0x65,0x77,0x7c,0x7c,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x2c,0x28,0x73,0x3d,0x63,0x2e,0x67,0x65,0x74,0x53,0x65,0x6c,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x26,0x26,0x63,0x2e,0x67,0x65,0x74,0x53,0x65,0x6c,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x29,0x26,0x26,0x30,0x21,0x3d,0x3d,0x73,0x2e,0x72,0x61, 0x6e,0x67,0x65,0x43,0x6f,0x75,0x6e,0x74,0x29,0x7b,0x63,0x3d,0x73,0x2e,0x61,0x6e, 0x63,0x68,0x6f,0x72,0x4e,0x6f,0x64,0x65,0x2c,0x69,0x3d,0x73,0x2e,0x61,0x6e,0x63, 0x68,0x6f,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x6c,0x3d,0x73,0x2e,0x66,0x6f, 0x63,0x75,0x73,0x4e,0x6f,0x64,0x65,0x2c,0x73,0x3d,0x73,0x2e,0x66,0x6f,0x63,0x75, 0x73,0x4f,0x66,0x66,0x73,0x65,0x74,0x3b,0x74,0x72,0x79,0x7b,0x63,0x2e,0x6e,0x6f, 0x64,0x65,0x54,0x79,0x70,0x65,0x2c,0x6c,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70, 0x65,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6b,0x29,0x7b,0x63,0x3d,0x6e,0x75,0x6c, 0x6c,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x76,0x61,0x72,0x20,0x66,0x3d, 0x30,0x2c,0x64,0x3d,0x2d,0x31,0x2c,0x70,0x3d,0x2d,0x31,0x2c,0x68,0x3d,0x30,0x2c, 0x76,0x3d,0x30,0x2c,0x67,0x3d,0x75,0x2c,0x6d,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x74, 0x3a,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x62,0x3b,0x67,0x21,0x3d,0x3d,0x63,0x7c,0x7c,0x30,0x21,0x3d,0x3d,0x69,0x26, 0x26,0x33,0x21,0x3d,0x3d,0x67,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x7c, 0x7c,0x28,0x64,0x3d,0x66,0x2b,0x69,0x29,0x2c,0x67,0x21,0x3d,0x3d,0x6c,0x7c,0x7c, 0x30,0x21,0x3d,0x3d,0x73,0x26,0x26,0x33,0x21,0x3d,0x3d,0x67,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x7c,0x7c,0x28,0x70,0x3d,0x66,0x2b,0x73,0x29,0x2c,0x33, 0x3d,0x3d,0x3d,0x67,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x28, 0x66,0x2b,0x3d,0x67,0x2e,0x6e,0x6f,0x64,0x65,0x56,0x61,0x6c,0x75,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x62, 0x3d,0x67,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x29, 0x6d,0x3d,0x67,0x2c,0x67,0x3d,0x62,0x3b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x7b, 0x69,0x66,0x28,0x67,0x3d,0x3d,0x3d,0x75,0x29,0x62,0x72,0x65,0x61,0x6b,0x20,0x74, 0x3b,0x69,0x66,0x28,0x6d,0x3d,0x3d,0x3d,0x63,0x26,0x26,0x2b,0x2b,0x68,0x3d,0x3d, 0x3d,0x69,0x26,0x26,0x28,0x64,0x3d,0x66,0x29,0x2c,0x6d,0x3d,0x3d,0x3d,0x6c,0x26, 0x26,0x2b,0x2b,0x76,0x3d,0x3d,0x3d,0x73,0x26,0x26,0x28,0x70,0x3d,0x66,0x29,0x2c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x62,0x3d,0x67,0x2e,0x6e,0x65,0x78,0x74, 0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x6d, 0x3d,0x28,0x67,0x3d,0x6d,0x29,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64, 0x65,0x7d,0x67,0x3d,0x62,0x7d,0x63,0x3d,0x2d,0x31,0x3d,0x3d,0x3d,0x64,0x7c,0x7c, 0x2d,0x31,0x3d,0x3d,0x3d,0x70,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x7b,0x73,0x74,0x61, 0x72,0x74,0x3a,0x64,0x2c,0x65,0x6e,0x64,0x3a,0x70,0x7d,0x7d,0x65,0x6c,0x73,0x65, 0x20,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x3d,0x63,0x7c,0x7c,0x7b,0x73,0x74, 0x61,0x72,0x74,0x3a,0x30,0x2c,0x65,0x6e,0x64,0x3a,0x30,0x7d,0x7d,0x65,0x6c,0x73, 0x65,0x20,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x57,0x72,0x3d,0x7b,0x66,0x6f,0x63, 0x75,0x73,0x65,0x64,0x45,0x6c,0x65,0x6d,0x3a,0x75,0x2c,0x73,0x65,0x6c,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x52,0x61,0x6e,0x67,0x65,0x3a,0x63,0x7d,0x2c,0x59,0x74,0x3d, 0x21,0x31,0x2c,0x73,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x63,0x3d,0x21,0x31, 0x2c,0x59,0x75,0x3d,0x72,0x3b,0x64,0x6f,0x7b,0x74,0x72,0x79,0x7b,0x49,0x63,0x28, 0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x59,0x75,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x30,0x29,0x29,0x3b,0x7a,0x63,0x28,0x59, 0x75,0x2c,0x6b,0x29,0x2c,0x59,0x75,0x3d,0x59,0x75,0x2e,0x6e,0x65,0x78,0x74,0x45, 0x66,0x66,0x65,0x63,0x74,0x7d,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x59,0x75,0x29,0x3b,0x73,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x59,0x75,0x3d,0x72,0x3b,0x64,0x6f,0x7b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28, 0x75,0x3d,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x59,0x75,0x3b,0x29,0x7b, 0x76,0x61,0x72,0x20,0x79,0x3d,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3b,0x69, 0x66,0x28,0x31,0x36,0x26,0x79,0x26,0x26,0x62,0x65,0x28,0x59,0x75,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2c,0x22,0x22,0x29,0x2c,0x31,0x32,0x38,0x26, 0x79,0x29,0x7b,0x76,0x61,0x72,0x20,0x5f,0x3d,0x59,0x75,0x2e,0x61,0x6c,0x74,0x65, 0x72,0x6e,0x61,0x74,0x65,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x5f,0x29,0x7b,0x76,0x61,0x72,0x20,0x77,0x3d,0x5f,0x2e,0x72,0x65,0x66,0x3b,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x77,0x26,0x26,0x28,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x3f, 0x77,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3a,0x77,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x31,0x30,0x33,0x38,0x26,0x79,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x4f, 0x75,0x28,0x59,0x75,0x29,0x2c,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x3d, 0x2d,0x33,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x36,0x3a, 0x4f,0x75,0x28,0x59,0x75,0x29,0x2c,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26, 0x3d,0x2d,0x33,0x2c,0x6b,0x75,0x28,0x59,0x75,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x2c,0x59,0x75,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x20,0x31,0x30,0x32,0x34,0x3a,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73, 0x26,0x3d,0x2d,0x31,0x30,0x32,0x35,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x20,0x31,0x30,0x32,0x38,0x3a,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73, 0x26,0x3d,0x2d,0x31,0x30,0x32,0x35,0x2c,0x6b,0x75,0x28,0x59,0x75,0x2e,0x61,0x6c, 0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x2c,0x59,0x75,0x29,0x3b,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x6b,0x75,0x28,0x59,0x75,0x2e,0x61, 0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x2c,0x59,0x75,0x29,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x38,0x3a,0x6a,0x75,0x28,0x75,0x2c,0x63, 0x3d,0x59,0x75,0x29,0x3b,0x76,0x61,0x72,0x20,0x4f,0x3d,0x63,0x2e,0x61,0x6c,0x74, 0x65,0x72,0x6e,0x61,0x74,0x65,0x3b,0x5f,0x75,0x28,0x63,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x4f,0x26,0x26,0x5f,0x75,0x28,0x4f,0x29,0x7d,0x59,0x75,0x3d, 0x59,0x75,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x7d,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x6b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x3d,0x59,0x75,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x61,0x28,0x33,0x33,0x30,0x29,0x29,0x3b,0x7a,0x63,0x28,0x59,0x75,0x2c,0x6b, 0x29,0x2c,0x59,0x75,0x3d,0x59,0x75,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x7d,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x59,0x75,0x29,0x3b,0x69,0x66,0x28,0x77,0x3d,0x57,0x72,0x2c,0x5f,0x3d,0x67, 0x72,0x28,0x29,0x2c,0x79,0x3d,0x77,0x2e,0x66,0x6f,0x63,0x75,0x73,0x65,0x64,0x45, 0x6c,0x65,0x6d,0x2c,0x75,0x3d,0x77,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f, 0x6e,0x52,0x61,0x6e,0x67,0x65,0x2c,0x5f,0x21,0x3d,0x3d,0x79,0x26,0x26,0x79,0x26, 0x26,0x79,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x26,0x26,0x76,0x72,0x28,0x79,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x79,0x29,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x75,0x26,0x26,0x6d,0x72,0x28,0x79,0x29,0x26,0x26,0x28,0x5f,0x3d,0x75,0x2e,0x73, 0x74,0x61,0x72,0x74,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x77, 0x3d,0x75,0x2e,0x65,0x6e,0x64,0x29,0x26,0x26,0x28,0x77,0x3d,0x5f,0x29,0x2c,0x22, 0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x69, 0x6e,0x20,0x79,0x3f,0x28,0x79,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e, 0x53,0x74,0x61,0x72,0x74,0x3d,0x5f,0x2c,0x79,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74, 0x69,0x6f,0x6e,0x45,0x6e,0x64,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28, 0x77,0x2c,0x79,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x29,0x29,0x3a,0x28,0x77,0x3d,0x28,0x5f,0x3d,0x79,0x2e,0x6f,0x77,0x6e,0x65,0x72, 0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x29,0x26,0x26,0x5f,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x69, 0x65,0x77,0x7c,0x7c,0x77,0x69,0x6e,0x64,0x6f,0x77,0x29,0x2e,0x67,0x65,0x74,0x53, 0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x26,0x26,0x28,0x77,0x3d,0x77,0x2e,0x67, 0x65,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2c,0x63,0x3d, 0x79,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x4f,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28, 0x75,0x2e,0x73,0x74,0x61,0x72,0x74,0x2c,0x63,0x29,0x2c,0x75,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x2e,0x65,0x6e,0x64,0x3f,0x4f,0x3a,0x4d,0x61, 0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x75,0x2e,0x65,0x6e,0x64,0x2c,0x63,0x29,0x2c, 0x21,0x77,0x2e,0x65,0x78,0x74,0x65,0x6e,0x64,0x26,0x26,0x4f,0x3e,0x75,0x26,0x26, 0x28,0x63,0x3d,0x75,0x2c,0x75,0x3d,0x4f,0x2c,0x4f,0x3d,0x63,0x29,0x2c,0x63,0x3d, 0x68,0x72,0x28,0x79,0x2c,0x4f,0x29,0x2c,0x69,0x3d,0x68,0x72,0x28,0x79,0x2c,0x75, 0x29,0x2c,0x63,0x26,0x26,0x69,0x26,0x26,0x28,0x31,0x21,0x3d,0x3d,0x77,0x2e,0x72, 0x61,0x6e,0x67,0x65,0x43,0x6f,0x75,0x6e,0x74,0x7c,0x7c,0x77,0x2e,0x61,0x6e,0x63, 0x68,0x6f,0x72,0x4e,0x6f,0x64,0x65,0x21,0x3d,0x3d,0x63,0x2e,0x6e,0x6f,0x64,0x65, 0x7c,0x7c,0x77,0x2e,0x61,0x6e,0x63,0x68,0x6f,0x72,0x4f,0x66,0x66,0x73,0x65,0x74, 0x21,0x3d,0x3d,0x63,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x7c,0x7c,0x77,0x2e,0x66, 0x6f,0x63,0x75,0x73,0x4e,0x6f,0x64,0x65,0x21,0x3d,0x3d,0x69,0x2e,0x6e,0x6f,0x64, 0x65,0x7c,0x7c,0x77,0x2e,0x66,0x6f,0x63,0x75,0x73,0x4f,0x66,0x66,0x73,0x65,0x74, 0x21,0x3d,0x3d,0x69,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x29,0x26,0x26,0x28,0x28, 0x5f,0x3d,0x5f,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x52,0x61,0x6e,0x67,0x65,0x28, 0x29,0x29,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x72,0x74,0x28,0x63,0x2e,0x6e,0x6f, 0x64,0x65,0x2c,0x63,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x29,0x2c,0x77,0x2e,0x72, 0x65,0x6d,0x6f,0x76,0x65,0x41,0x6c,0x6c,0x52,0x61,0x6e,0x67,0x65,0x73,0x28,0x29, 0x2c,0x4f,0x3e,0x75,0x3f,0x28,0x77,0x2e,0x61,0x64,0x64,0x52,0x61,0x6e,0x67,0x65, 0x28,0x5f,0x29,0x2c,0x77,0x2e,0x65,0x78,0x74,0x65,0x6e,0x64,0x28,0x69,0x2e,0x6e, 0x6f,0x64,0x65,0x2c,0x69,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x29,0x29,0x3a,0x28, 0x5f,0x2e,0x73,0x65,0x74,0x45,0x6e,0x64,0x28,0x69,0x2e,0x6e,0x6f,0x64,0x65,0x2c, 0x69,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x29,0x2c,0x77,0x2e,0x61,0x64,0x64,0x52, 0x61,0x6e,0x67,0x65,0x28,0x5f,0x29,0x29,0x29,0x29,0x29,0x2c,0x5f,0x3d,0x5b,0x5d, 0x3b,0x66,0x6f,0x72,0x28,0x77,0x3d,0x79,0x3b,0x77,0x3d,0x77,0x2e,0x70,0x61,0x72, 0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b,0x29,0x31,0x3d,0x3d,0x3d,0x77,0x2e,0x6e, 0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x5f,0x2e,0x70,0x75,0x73,0x68,0x28, 0x7b,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x77,0x2c,0x6c,0x65,0x66,0x74,0x3a, 0x77,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2c,0x74,0x6f,0x70, 0x3a,0x77,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x7d,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x79,0x2e,0x66,0x6f,0x63,0x75,0x73,0x26,0x26, 0x79,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x2c,0x79,0x3d,0x30,0x3b,0x79,0x3c, 0x5f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x79,0x2b,0x2b,0x29,0x28,0x77,0x3d, 0x5f,0x5b,0x79,0x5d,0x29,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x3d,0x77,0x2e,0x6c,0x65,0x66,0x74,0x2c, 0x77,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x54,0x6f,0x70,0x3d,0x77,0x2e,0x74,0x6f,0x70,0x7d,0x59,0x74,0x3d,0x21,0x21,0x55, 0x72,0x2c,0x57,0x72,0x3d,0x55,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x2c,0x59,0x75,0x3d,0x72,0x3b,0x64,0x6f, 0x7b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x79,0x3d,0x65,0x3b,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x59,0x75,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x78,0x3d,0x59, 0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3b,0x69,0x66,0x28,0x33,0x36,0x26,0x78,0x26, 0x26,0x6d,0x75,0x28,0x79,0x2c,0x59,0x75,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61, 0x74,0x65,0x2c,0x59,0x75,0x29,0x2c,0x31,0x32,0x38,0x26,0x78,0x29,0x7b,0x5f,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x61,0x72,0x20,0x45,0x3d,0x59,0x75,0x2e, 0x72,0x65,0x66,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x45,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6a,0x3d,0x59,0x75,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x3b,0x59,0x75,0x2e,0x74,0x61,0x67,0x2c,0x5f,0x3d,0x6a,0x2c,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x45,0x3f,0x45,0x28,0x5f,0x29,0x3a,0x45,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x5f,0x7d,0x7d,0x59,0x75,0x3d,0x59,0x75,0x2e,0x6e,0x65,0x78, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6b, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x59,0x75,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x30, 0x29,0x29,0x3b,0x7a,0x63,0x28,0x59,0x75,0x2c,0x6b,0x29,0x2c,0x59,0x75,0x3d,0x59, 0x75,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x7d,0x7d,0x77,0x68, 0x69,0x6c,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x59,0x75,0x29,0x3b,0x59, 0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x42,0x6f,0x28,0x29,0x2c,0x44,0x75,0x3d,0x6f, 0x7d,0x65,0x6c,0x73,0x65,0x20,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d, 0x6e,0x3b,0x69,0x66,0x28,0x5a,0x75,0x29,0x5a,0x75,0x3d,0x21,0x31,0x2c,0x65,0x63, 0x3d,0x65,0x2c,0x74,0x63,0x3d,0x74,0x3b,0x65,0x6c,0x73,0x65,0x20,0x66,0x6f,0x72, 0x28,0x59,0x75,0x3d,0x72,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x59,0x75,0x3b, 0x29,0x74,0x3d,0x59,0x75,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74, 0x2c,0x59,0x75,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x38,0x26,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67,0x73,0x26,0x26, 0x28,0x28,0x78,0x3d,0x59,0x75,0x29,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x78,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x59,0x75,0x3d,0x74,0x3b,0x69,0x66,0x28,0x30, 0x3d,0x3d,0x3d,0x28,0x72,0x3d,0x65,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c, 0x61,0x6e,0x65,0x73,0x29,0x26,0x26,0x28,0x4a,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x31,0x3d,0x3d,0x3d,0x72,0x3f,0x65,0x3d,0x3d,0x3d,0x61,0x63,0x3f,0x69,0x63, 0x2b,0x2b,0x3a,0x28,0x69,0x63,0x3d,0x30,0x2c,0x61,0x63,0x3d,0x65,0x29,0x3a,0x69, 0x63,0x3d,0x30,0x2c,0x6e,0x3d,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64, 0x65,0x2c,0x6a,0x6f,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6a,0x6f,0x2e,0x6f,0x6e,0x43, 0x6f,0x6d,0x6d,0x69,0x74,0x46,0x69,0x62,0x65,0x72,0x52,0x6f,0x6f,0x74,0x29,0x74, 0x72,0x79,0x7b,0x6a,0x6f,0x2e,0x6f,0x6e,0x43,0x6f,0x6d,0x6d,0x69,0x74,0x46,0x69, 0x62,0x65,0x72,0x52,0x6f,0x6f,0x74,0x28,0x45,0x6f,0x2c,0x6e,0x2c,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x36,0x34,0x3d,0x3d,0x3d,0x28,0x36,0x34,0x26,0x6e,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x29,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x6b,0x29,0x7b,0x7d,0x69,0x66,0x28,0x67,0x63,0x28,0x65, 0x2c,0x48,0x6f,0x28,0x29,0x29,0x2c,0x51,0x75,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x51,0x75,0x3d,0x21,0x31,0x2c,0x65,0x3d,0x58,0x75,0x2c,0x58,0x75,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x21,0x3d,0x3d, 0x28,0x38,0x26,0x44,0x75,0x29,0x7c,0x7c,0x59,0x6f,0x28,0x29,0x2c,0x6e,0x75,0x6c, 0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x63,0x28,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x59,0x75,0x3b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x59,0x75,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x3b,0x66,0x63,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x73, 0x63,0x7c,0x7c,0x28,0x30,0x21,0x3d,0x3d,0x28,0x38,0x26,0x59,0x75,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x29,0x3f,0x65,0x74,0x28,0x59,0x75,0x2c,0x73,0x63,0x29,0x26,0x26, 0x28,0x66,0x63,0x3d,0x21,0x30,0x29,0x3a,0x31,0x33,0x3d,0x3d,0x3d,0x59,0x75,0x2e, 0x74,0x61,0x67,0x26,0x26,0x43,0x75,0x28,0x65,0x2c,0x59,0x75,0x29,0x26,0x26,0x65, 0x74,0x28,0x59,0x75,0x2c,0x73,0x63,0x29,0x26,0x26,0x28,0x66,0x63,0x3d,0x21,0x30, 0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x59,0x75,0x2e,0x66,0x6c,0x61,0x67, 0x73,0x3b,0x30,0x21,0x3d,0x3d,0x28,0x32,0x35,0x36,0x26,0x74,0x29,0x26,0x26,0x67, 0x75,0x28,0x65,0x2c,0x59,0x75,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x35,0x31,0x32, 0x26,0x74,0x29,0x7c,0x7c,0x5a,0x75,0x7c,0x7c,0x28,0x5a,0x75,0x3d,0x21,0x30,0x2c, 0x4b,0x6f,0x28,0x39,0x37,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x63,0x28,0x29,0x2c,0x6e,0x75, 0x6c,0x6c,0x7d,0x29,0x29,0x29,0x2c,0x59,0x75,0x3d,0x59,0x75,0x2e,0x6e,0x65,0x78, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x52,0x63,0x28,0x29,0x7b,0x69,0x66,0x28,0x39,0x30,0x21,0x3d,0x3d,0x74, 0x63,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x39,0x37,0x3c,0x74,0x63,0x3f,0x39, 0x37,0x3a,0x74,0x63,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x63,0x3d,0x39, 0x30,0x2c,0x71,0x6f,0x28,0x65,0x2c,0x4d,0x63,0x29,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x63,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x6e,0x63,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x2c,0x65, 0x29,0x2c,0x5a,0x75,0x7c,0x7c,0x28,0x5a,0x75,0x3d,0x21,0x30,0x2c,0x4b,0x6f,0x28, 0x39,0x37,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x63,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d, 0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x63,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x63,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x2c,0x65, 0x29,0x2c,0x5a,0x75,0x7c,0x7c,0x28,0x5a,0x75,0x3d,0x21,0x30,0x2c,0x4b,0x6f,0x28, 0x39,0x37,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x63,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d, 0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x63,0x28, 0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x63,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x65,0x63, 0x3b,0x69,0x66,0x28,0x65,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x30,0x21,0x3d,0x3d, 0x28,0x34,0x38,0x26,0x44,0x75,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x31,0x29,0x29,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x44,0x75,0x3b,0x44,0x75,0x7c,0x3d,0x33,0x32,0x3b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x72,0x63,0x3b,0x72,0x63,0x3d,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x72,0x2b,0x3d,0x32,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x5b, 0x72,0x5d,0x2c,0x69,0x3d,0x6e,0x5b,0x72,0x2b,0x31,0x5d,0x2c,0x75,0x3d,0x6f,0x2e, 0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x3b,0x69,0x66,0x28,0x6f,0x2e,0x64,0x65,0x73, 0x74,0x72,0x6f,0x79,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x75,0x29,0x74,0x72,0x79,0x7b,0x75,0x28,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x6c,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x69,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x33,0x30, 0x29,0x29,0x3b,0x7a,0x63,0x28,0x69,0x2c,0x6c,0x29,0x7d,0x7d,0x66,0x6f,0x72,0x28, 0x6e,0x3d,0x6e,0x63,0x2c,0x6e,0x63,0x3d,0x5b,0x5d,0x2c,0x72,0x3d,0x30,0x3b,0x72, 0x3c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x3d,0x32,0x29,0x7b, 0x6f,0x3d,0x6e,0x5b,0x72,0x5d,0x2c,0x69,0x3d,0x6e,0x5b,0x72,0x2b,0x31,0x5d,0x3b, 0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x6f,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x3b,0x6f,0x2e,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x3d,0x63,0x28,0x29, 0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6c,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x69,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x61,0x28,0x33,0x33,0x30,0x29,0x29,0x3b,0x7a,0x63,0x28,0x69,0x2c,0x6c, 0x29,0x7d,0x7d,0x66,0x6f,0x72,0x28,0x63,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3b,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x63,0x3b,0x29,0x65,0x3d,0x63,0x2e,0x6e,0x65,0x78, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x2c,0x63,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66, 0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x38,0x26,0x63,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x26,0x26,0x28,0x63,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x63,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65, 0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x63,0x3d,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x44,0x75,0x3d,0x74,0x2c,0x59,0x6f,0x28,0x29,0x2c,0x21,0x30,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x64,0x69,0x28,0x65,0x2c,0x74,0x3d,0x64,0x75,0x28,0x30,0x2c,0x74,0x3d, 0x6c,0x75,0x28,0x6e,0x2c,0x74,0x29,0x2c,0x31,0x29,0x29,0x2c,0x74,0x3d,0x64,0x63, 0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x76,0x63,0x28, 0x65,0x2c,0x31,0x29,0x29,0x26,0x26,0x28,0x24,0x74,0x28,0x65,0x2c,0x31,0x2c,0x74, 0x29,0x2c,0x67,0x63,0x28,0x65,0x2c,0x74,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x7a,0x63,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x33, 0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x42,0x63,0x28,0x65,0x2c,0x65,0x2c, 0x74,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x6e,0x3b,0x29,0x7b,0x69,0x66,0x28,0x33,0x3d,0x3d,0x3d,0x6e,0x2e,0x74, 0x61,0x67,0x29,0x7b,0x42,0x63,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x7d,0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x2e,0x74,0x79,0x70, 0x65,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x46,0x72,0x6f,0x6d,0x45,0x72,0x72,0x6f,0x72,0x7c,0x7c,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61, 0x74,0x63,0x68,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x4a,0x75,0x7c, 0x7c,0x21,0x4a,0x75,0x2e,0x68,0x61,0x73,0x28,0x72,0x29,0x29,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x70,0x75,0x28,0x6e,0x2c,0x65,0x3d,0x6c,0x75,0x28,0x74,0x2c, 0x65,0x29,0x2c,0x31,0x29,0x3b,0x69,0x66,0x28,0x64,0x69,0x28,0x6e,0x2c,0x6f,0x29, 0x2c,0x6f,0x3d,0x64,0x63,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28, 0x6e,0x3d,0x76,0x63,0x28,0x6e,0x2c,0x31,0x29,0x29,0x29,0x24,0x74,0x28,0x6e,0x2c, 0x31,0x2c,0x6f,0x29,0x2c,0x67,0x63,0x28,0x6e,0x2c,0x6f,0x29,0x3b,0x65,0x6c,0x73, 0x65,0x20,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6f, 0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61,0x74,0x63,0x68,0x26,0x26,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x4a,0x75,0x7c,0x7c,0x21,0x4a,0x75,0x2e,0x68,0x61, 0x73,0x28,0x72,0x29,0x29,0x29,0x74,0x72,0x79,0x7b,0x72,0x2e,0x63,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x43,0x61,0x74,0x63,0x68,0x28,0x74,0x2c, 0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x69,0x29,0x7b,0x7d,0x62,0x72,0x65, 0x61,0x6b,0x7d,0x7d,0x6e,0x3d,0x6e,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x63,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x70,0x69,0x6e,0x67,0x43, 0x61,0x63,0x68,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x72,0x26,0x26,0x72, 0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x29,0x2c,0x74,0x3d,0x64,0x63,0x28, 0x29,0x2c,0x65,0x2e,0x70,0x69,0x6e,0x67,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x7c, 0x3d,0x65,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64,0x4c,0x61,0x6e,0x65, 0x73,0x26,0x6e,0x2c,0x4e,0x75,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x52,0x75,0x26, 0x6e,0x29,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x34,0x3d,0x3d,0x3d,0x4d,0x75,0x7c, 0x7c,0x33,0x3d,0x3d,0x3d,0x4d,0x75,0x26,0x26,0x28,0x36,0x32,0x39,0x31,0x34,0x35, 0x36,0x30,0x26,0x52,0x75,0x29,0x3d,0x3d,0x3d,0x52,0x75,0x26,0x26,0x35,0x30,0x30, 0x3e,0x48,0x6f,0x28,0x29,0x2d,0x56,0x75,0x3f,0x45,0x63,0x28,0x65,0x2c,0x30,0x29, 0x3a,0x24,0x75,0x7c,0x3d,0x6e,0x29,0x2c,0x67,0x63,0x28,0x65,0x2c,0x74,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x63,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f, 0x64,0x65,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x6e,0x2e,0x64, 0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x74,0x3d, 0x30,0x29,0x26,0x26,0x28,0x30,0x3d,0x3d,0x3d,0x28,0x32,0x26,0x28,0x74,0x3d,0x65, 0x2e,0x6d,0x6f,0x64,0x65,0x29,0x29,0x3f,0x74,0x3d,0x31,0x3a,0x30,0x3d,0x3d,0x3d, 0x28,0x34,0x26,0x74,0x29,0x3f,0x74,0x3d,0x39,0x39,0x3d,0x3d,0x3d,0x56,0x6f,0x28, 0x29,0x3f,0x31,0x3a,0x32,0x3a,0x28,0x30,0x3d,0x3d,0x3d,0x63,0x63,0x26,0x26,0x28, 0x63,0x63,0x3d,0x7a,0x75,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x28,0x74,0x3d,0x55,0x74, 0x28,0x36,0x32,0x39,0x31,0x34,0x35,0x36,0x30,0x26,0x7e,0x63,0x63,0x29,0x29,0x26, 0x26,0x28,0x74,0x3d,0x34,0x31,0x39,0x34,0x33,0x30,0x34,0x29,0x29,0x29,0x2c,0x6e, 0x3d,0x64,0x63,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d, 0x76,0x63,0x28,0x65,0x2c,0x74,0x29,0x29,0x26,0x26,0x28,0x24,0x74,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x2c,0x67,0x63,0x28,0x65,0x2c,0x6e,0x29,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x67,0x3d,0x65,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x6b,0x65,0x79,0x3d,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69, 0x62,0x6c,0x69,0x6e,0x67,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x74,0x79,0x70,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72,0x65, 0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72, 0x6f,0x70,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f, 0x64,0x65,0x3d,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d, 0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x45,0x66,0x66,0x65, 0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6c,0x61,0x6e, 0x65,0x73,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e, 0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x48,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x24,0x63,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x63, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x21,0x28,0x65,0x3d, 0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x7c,0x7c,0x21,0x65, 0x2e,0x69,0x73,0x52,0x65,0x61,0x63,0x74,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, 0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x63,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x6c,0x74,0x65, 0x72,0x6e,0x61,0x74,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x6e,0x3f,0x28,0x28,0x6e,0x3d,0x48,0x63,0x28,0x65,0x2e,0x74, 0x61,0x67,0x2c,0x74,0x2c,0x65,0x2e,0x6b,0x65,0x79,0x2c,0x65,0x2e,0x6d,0x6f,0x64, 0x65,0x29,0x29,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d, 0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x2c,0x6e,0x2e, 0x74,0x79,0x70,0x65,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6e,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e, 0x6f,0x64,0x65,0x2c,0x6e,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d, 0x65,0x2c,0x65,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x29, 0x3a,0x28,0x6e,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73, 0x3d,0x74,0x2c,0x6e,0x2e,0x74,0x79,0x70,0x65,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x2c,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x30,0x2c,0x6e,0x2e,0x6e,0x65,0x78, 0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x2e,0x66, 0x69,0x72,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x6e,0x2e,0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x29,0x2c,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x2c,0x6e,0x2e,0x6c, 0x61,0x6e,0x65,0x73,0x3d,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x2c,0x6e,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2c,0x6e,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3d,0x65,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c,0x6e,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x65,0x2e,0x6d, 0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x2c,0x6e,0x2e,0x75, 0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x3d,0x65,0x2e,0x75,0x70,0x64, 0x61,0x74,0x65,0x51,0x75,0x65,0x75,0x65,0x2c,0x74,0x3d,0x65,0x2e,0x64,0x65,0x70, 0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x2c,0x6e,0x2e,0x64,0x65,0x70,0x65, 0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x74,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x7b,0x6c,0x61,0x6e,0x65,0x73,0x3a,0x74,0x2e, 0x6c,0x61,0x6e,0x65,0x73,0x2c,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x3a,0x74,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x7d,0x2c,0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3d,0x65,0x2e,0x73, 0x69,0x62,0x6c,0x69,0x6e,0x67,0x2c,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x3d,0x65, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x6e,0x2e,0x72,0x65,0x66,0x3d,0x65,0x2e,0x72, 0x65,0x66,0x2c,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x63, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x32,0x3b,0x69,0x66,0x28,0x72,0x3d,0x65,0x2c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x29,0x56,0x63,0x28,0x65,0x29,0x26,0x26,0x28,0x75,0x3d,0x31,0x29,0x3b, 0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x75,0x3d,0x35,0x3b, 0x65,0x6c,0x73,0x65,0x20,0x65,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x29, 0x7b,0x63,0x61,0x73,0x65,0x20,0x45,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4b, 0x63,0x28,0x6e,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6f,0x2c,0x69, 0x2c,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x4c,0x3a,0x75,0x3d,0x38,0x2c,0x6f, 0x7c,0x3d,0x31,0x36,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20, 0x6a,0x3a,0x75,0x3d,0x38,0x2c,0x6f,0x7c,0x3d,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x3b,0x63,0x61,0x73,0x65,0x20,0x6b,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65, 0x3d,0x48,0x63,0x28,0x31,0x32,0x2c,0x6e,0x2c,0x74,0x2c,0x38,0x7c,0x6f,0x29,0x29, 0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x6b,0x2c,0x65, 0x2e,0x74,0x79,0x70,0x65,0x3d,0x6b,0x2c,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d, 0x69,0x2c,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x54,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x65,0x3d,0x48,0x63,0x28,0x31,0x33,0x2c,0x6e,0x2c,0x74,0x2c,0x6f,0x29, 0x29,0x2e,0x74,0x79,0x70,0x65,0x3d,0x54,0x2c,0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x54,0x2c,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73, 0x3d,0x69,0x2c,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x50,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x65,0x3d,0x48,0x63,0x28,0x31,0x39,0x2c,0x6e,0x2c,0x74,0x2c,0x6f, 0x29,0x29,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x50, 0x2c,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x69,0x2c,0x65,0x3b,0x63,0x61,0x73, 0x65,0x20,0x46,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x63,0x28,0x6e,0x2c, 0x6f,0x2c,0x69,0x2c,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x4d,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x48,0x63,0x28,0x32,0x34,0x2c,0x6e,0x2c,0x74, 0x2c,0x6f,0x29,0x29,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65, 0x3d,0x4d,0x2c,0x65,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x69,0x2c,0x65,0x3b,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65, 0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x53,0x3a,0x75,0x3d,0x31,0x30,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63, 0x61,0x73,0x65,0x20,0x43,0x3a,0x75,0x3d,0x39,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20, 0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x41,0x3a,0x75,0x3d,0x31,0x31,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x44,0x3a,0x75,0x3d,0x31, 0x34,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x4e, 0x3a,0x75,0x3d,0x31,0x36,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x49,0x3a,0x75,0x3d,0x32,0x32, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x45, 0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x33,0x30,0x2c,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x65,0x3f,0x65,0x3a,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2c,0x22,0x22, 0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x48,0x63,0x28,0x75, 0x2c,0x6e,0x2c,0x74,0x2c,0x6f,0x29,0x29,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x54,0x79,0x70,0x65,0x3d,0x65,0x2c,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d,0x72,0x2c, 0x74,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x69,0x2c,0x74,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x4b,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x48,0x63,0x28,0x37,0x2c,0x65, 0x2c,0x72,0x2c,0x74,0x29,0x29,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x6e,0x2c,0x65, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x63,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x48, 0x63,0x28,0x32,0x33,0x2c,0x65,0x2c,0x72,0x2c,0x74,0x29,0x29,0x2e,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x46,0x2c,0x65,0x2e,0x6c,0x61,0x6e, 0x65,0x73,0x3d,0x6e,0x2c,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x51,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x65,0x3d,0x48,0x63,0x28,0x36,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x74, 0x29,0x29,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x6e,0x2c,0x65,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x74,0x3d,0x48,0x63,0x28,0x34,0x2c,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3f, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x5d,0x2c,0x65,0x2e, 0x6b,0x65,0x79,0x2c,0x74,0x29,0x29,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x3d,0x6e,0x2c, 0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x7b,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x3a,0x65,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x2c,0x70,0x65,0x6e,0x64,0x69, 0x6e,0x67,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x65, 0x2e,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x7d, 0x2c,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x63,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x67,0x3d,0x74, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49, 0x6e,0x66,0x6f,0x3d,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x66,0x69,0x6e,0x69,0x73, 0x68,0x65,0x64,0x57,0x6f,0x72,0x6b,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x69,0x6e, 0x67,0x43,0x61,0x63,0x68,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67, 0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x48,0x61,0x6e,0x64,0x6c,0x65, 0x3d,0x2d,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x68, 0x79,0x64,0x72,0x61,0x74,0x65,0x3d,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x4e,0x6f,0x64,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x50,0x72,0x69, 0x6f,0x72,0x69,0x74,0x79,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x65,0x76,0x65, 0x6e,0x74,0x54,0x69,0x6d,0x65,0x73,0x3d,0x57,0x74,0x28,0x30,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d, 0x65,0x73,0x3d,0x57,0x74,0x28,0x2d,0x31,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x65, 0x6e,0x74,0x61,0x6e,0x67,0x6c,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x66,0x69,0x6e,0x69,0x73,0x68,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x52,0x65,0x61, 0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x65,0x78,0x70,0x69, 0x72,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x69, 0x6e,0x67,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x73, 0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64,0x4c,0x61,0x6e,0x65,0x73,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x3d, 0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x65,0x6e,0x74,0x61,0x6e,0x67,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x3d,0x57,0x74,0x28,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63,0x65,0x45,0x61,0x67, 0x65,0x72,0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x44,0x61,0x74,0x61,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5a,0x63, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x33,0x3c, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x33,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x33,0x5d,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3a,0x78,0x2c,0x6b,0x65,0x79,0x3a, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x72,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x22,0x22,0x2b, 0x72,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2c,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x3a,0x74,0x2c,0x69,0x6d,0x70, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6e,0x7d,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2c,0x69,0x3d,0x64,0x63,0x28,0x29,0x2c,0x75,0x3d,0x70,0x63,0x28, 0x6f,0x29,0x3b,0x65,0x3a,0x69,0x66,0x28,0x6e,0x29,0x7b,0x74,0x3a,0x7b,0x69,0x66, 0x28,0x51,0x65,0x28,0x6e,0x3d,0x6e,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e, 0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x29,0x21,0x3d,0x3d,0x6e,0x7c,0x7c,0x31,0x21, 0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x37,0x30,0x29,0x29,0x3b,0x76,0x61,0x72,0x20, 0x63,0x3d,0x6e,0x3b,0x64,0x6f,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x63,0x2e, 0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x63,0x3d,0x63,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x74,0x3b,0x63,0x61,0x73,0x65,0x20,0x31, 0x3a,0x69,0x66,0x28,0x62,0x6f,0x28,0x63,0x2e,0x74,0x79,0x70,0x65,0x29,0x29,0x7b, 0x63,0x3d,0x63,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x5f,0x5f, 0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x4d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x4d,0x65,0x72,0x67,0x65,0x64,0x43,0x68,0x69,0x6c,0x64, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x74,0x7d, 0x7d,0x63,0x3d,0x63,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x77,0x68,0x69,0x6c, 0x65,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x63,0x29,0x3b,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x37,0x31,0x29,0x29,0x7d, 0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x61,0x67,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6c,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x3b,0x69,0x66,0x28,0x62,0x6f, 0x28,0x6c,0x29,0x29,0x7b,0x6e,0x3d,0x77,0x6f,0x28,0x6e,0x2c,0x6c,0x2c,0x63,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x7d,0x6e,0x3d,0x63,0x7d,0x65,0x6c, 0x73,0x65,0x20,0x6e,0x3d,0x70,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3f, 0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x6e,0x3a,0x74,0x2e,0x70,0x65, 0x6e,0x64,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x6e,0x2c,0x28, 0x74,0x3d,0x66,0x69,0x28,0x69,0x2c,0x75,0x29,0x29,0x2e,0x70,0x61,0x79,0x6c,0x6f, 0x61,0x64,0x3d,0x7b,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x7d,0x2c,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x72,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x72,0x29,0x26,0x26,0x28,0x74,0x2e, 0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x72,0x29,0x2c,0x64,0x69,0x28,0x6f, 0x2c,0x74,0x29,0x2c,0x68,0x63,0x28,0x6f,0x2c,0x75,0x2c,0x69,0x29,0x2c,0x75,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6c,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x29,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3f,0x28,0x65,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x2e,0x74,0x61,0x67,0x2c,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x2e,0x73,0x74, 0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6c,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x65,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x2e,0x64,0x65,0x68,0x79,0x64,0x72,0x61,0x74,0x65, 0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x72,0x65,0x74,0x72,0x79, 0x4c,0x61,0x6e,0x65,0x3b,0x65,0x2e,0x72,0x65,0x74,0x72,0x79,0x4c,0x61,0x6e,0x65, 0x3d,0x30,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x6e,0x3c,0x74,0x3f,0x6e,0x3a,0x74,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x6c,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x6e,0x6c,0x28,0x65,0x2c,0x74,0x29,0x2c,0x28,0x65,0x3d,0x65,0x2e,0x61, 0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x29,0x26,0x26,0x6e,0x6c,0x28,0x65,0x2c, 0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6c,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x6e,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x2e,0x68,0x79,0x64, 0x72,0x61,0x74,0x69,0x6f,0x6e,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x26,0x26,0x6e, 0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x4f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63,0x65,0x73, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x6e,0x3d,0x6e,0x65,0x77,0x20, 0x4a,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x26,0x26, 0x21,0x30,0x3d,0x3d,0x3d,0x6e,0x2e,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x29,0x2c, 0x74,0x3d,0x48,0x63,0x28,0x33,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c, 0x2c,0x32,0x3d,0x3d,0x3d,0x74,0x3f,0x37,0x3a,0x31,0x3d,0x3d,0x3d,0x74,0x3f,0x33, 0x3a,0x30,0x29,0x2c,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x74,0x2c, 0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x6e,0x2c,0x6c,0x69, 0x28,0x74,0x29,0x2c,0x65,0x5b,0x65,0x6f,0x5d,0x3d,0x6e,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2c,0x44,0x72,0x28,0x38,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x3f,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f, 0x64,0x65,0x3a,0x65,0x29,0x2c,0x72,0x29,0x66,0x6f,0x72,0x28,0x65,0x3d,0x30,0x3b, 0x65,0x3c,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x65,0x2b,0x2b,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3d,0x28,0x74,0x3d,0x72,0x5b,0x65,0x5d,0x29,0x2e,0x5f, 0x67,0x65,0x74,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3b,0x6f,0x3d,0x6f,0x28,0x74, 0x2e,0x5f,0x73,0x6f,0x75,0x72,0x63,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x6e,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63,0x65,0x45, 0x61,0x67,0x65,0x72,0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x44,0x61,0x74, 0x61,0x3f,0x6e,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63, 0x65,0x45,0x61,0x67,0x65,0x72,0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x44, 0x61,0x74,0x61,0x3d,0x5b,0x74,0x2c,0x6f,0x5d,0x3a,0x6e,0x2e,0x6d,0x75,0x74,0x61, 0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63,0x65,0x45,0x61,0x67,0x65,0x72,0x48,0x79, 0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x73,0x68, 0x28,0x74,0x2c,0x6f,0x29,0x7d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x74,0x65, 0x72,0x6e,0x61,0x6c,0x52,0x6f,0x6f,0x74,0x3d,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x69,0x6c,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x28,0x21,0x65,0x7c,0x7c,0x31,0x21,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65, 0x54,0x79,0x70,0x65,0x26,0x26,0x39,0x21,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65, 0x54,0x79,0x70,0x65,0x26,0x26,0x31,0x31,0x21,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x28,0x38,0x21,0x3d,0x3d,0x65,0x2e,0x6e,0x6f, 0x64,0x65,0x54,0x79,0x70,0x65,0x7c,0x7c,0x22,0x20,0x72,0x65,0x61,0x63,0x74,0x2d, 0x6d,0x6f,0x75,0x6e,0x74,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x2d,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x20,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x56, 0x61,0x6c,0x75,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x61,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x76,0x61, 0x72,0x20,0x69,0x3d,0x6e,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x52,0x6f,0x6f,0x74, 0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3b,0x69,0x66,0x28,0x69,0x29,0x7b, 0x76,0x61,0x72,0x20,0x61,0x3d,0x69,0x2e,0x5f,0x69,0x6e,0x74,0x65,0x72,0x6e,0x61, 0x6c,0x52,0x6f,0x6f,0x74,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x29,0x7b, 0x76,0x61,0x72,0x20,0x75,0x3d,0x6f,0x3b,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x6c,0x28,0x61,0x29, 0x3b,0x75,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x7d,0x65,0x6c,0x28,0x74, 0x2c,0x61,0x2c,0x65,0x2c,0x6f,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28, 0x69,0x3d,0x6e,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x52,0x6f,0x6f,0x74,0x43,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x74,0x7c,0x7c,0x28,0x74,0x3d,0x21, 0x28,0x21,0x28,0x74,0x3d,0x65,0x3f,0x39,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x54,0x79,0x70,0x65,0x3f,0x65,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x2e,0x66,0x69,0x72,0x73,0x74,0x43, 0x68,0x69,0x6c,0x64,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x7c,0x7c,0x31,0x21,0x3d,0x3d, 0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x7c,0x7c,0x21,0x74,0x2e,0x68, 0x61,0x73,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74, 0x61,0x2d,0x72,0x65,0x61,0x63,0x74,0x72,0x6f,0x6f,0x74,0x22,0x29,0x29,0x29,0x2c, 0x21,0x74,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3b,0x6e,0x3d,0x65, 0x2e,0x6c,0x61,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x29,0x65,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x6f,0x6c,0x28,0x65,0x2c,0x30,0x2c,0x74, 0x3f,0x7b,0x68,0x79,0x64,0x72,0x61,0x74,0x65,0x3a,0x21,0x30,0x7d,0x3a,0x76,0x6f, 0x69,0x64,0x20,0x30,0x29,0x7d,0x28,0x6e,0x2c,0x72,0x29,0x2c,0x61,0x3d,0x69,0x2e, 0x5f,0x69,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x52,0x6f,0x6f,0x74,0x2c,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x6f,0x3b,0x6f,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x74,0x6c,0x28,0x61,0x29,0x3b,0x63,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d, 0x7d,0x77,0x63,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x65,0x6c,0x28,0x74,0x2c,0x61,0x2c,0x65,0x2c,0x6f,0x29,0x7d,0x29,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6c,0x28,0x61,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x75,0x6c,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x32,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3f,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69, 0x66,0x28,0x21,0x69,0x6c,0x28,0x74,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45, 0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x30,0x30,0x29,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x5a,0x63,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x6e,0x29,0x7d,0x4b,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x6c,0x61, 0x6e,0x65,0x73,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x29, 0x69,0x66,0x28,0x65,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f, 0x70,0x73,0x21,0x3d,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72, 0x6f,0x70,0x73,0x7c,0x7c,0x76,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29, 0x46,0x61,0x3d,0x21,0x30,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x30,0x3d, 0x3d,0x3d,0x28,0x6e,0x26,0x72,0x29,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x46,0x61,0x3d,0x21,0x31,0x2c,0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x33,0x3a,0x71,0x61,0x28,0x74,0x29,0x2c,0x4b,0x69,0x28,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x4c,0x69,0x28,0x74, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x62, 0x6f,0x28,0x74,0x2e,0x74,0x79,0x70,0x65,0x29,0x26,0x26,0x4f,0x6f,0x28,0x74,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x49,0x69, 0x28,0x74,0x2c,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x29,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x3a,0x72,0x3d,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65, 0x2e,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3b,0x66,0x6f,0x28,0x5a,0x6f,0x2c, 0x6f,0x2e,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x29, 0x2c,0x6f,0x2e,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65, 0x3d,0x72,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x33, 0x3a,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x30,0x21,0x3d,0x3d,0x28,0x6e,0x26,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x29,0x3f,0x4a,0x61,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3a,0x28,0x66,0x6f,0x28,0x4d,0x69,0x2c,0x31,0x26, 0x4d,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x28,0x74,0x3d,0x69,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x29, 0x3f,0x74,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3a,0x6e,0x75,0x6c,0x6c,0x29, 0x3b,0x66,0x6f,0x28,0x4d,0x69,0x2c,0x31,0x26,0x4d,0x69,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20, 0x31,0x39,0x3a,0x69,0x66,0x28,0x72,0x3d,0x30,0x21,0x3d,0x3d,0x28,0x6e,0x26,0x74, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x4c,0x61,0x6e,0x65,0x73,0x29,0x2c,0x30,0x21,0x3d, 0x3d,0x28,0x36,0x34,0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x29,0x7b,0x69, 0x66,0x28,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x75,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x3b,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x36,0x34, 0x7d,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6f,0x3d,0x74,0x2e, 0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x26,0x26, 0x28,0x6f,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x6f,0x2e,0x74,0x61,0x69,0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x2e, 0x6c,0x61,0x73,0x74,0x45,0x66,0x66,0x65,0x63,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x66,0x6f,0x28,0x4d,0x69,0x2c,0x4d,0x69,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x29,0x2c,0x72,0x29,0x62,0x72,0x65,0x61,0x6b,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x33,0x3a,0x63, 0x61,0x73,0x65,0x20,0x32,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x6c,0x61,0x6e,0x65,0x73,0x3d,0x30,0x2c,0x57,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x75,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7d,0x46,0x61,0x3d,0x30,0x21,0x3d,0x3d,0x28,0x31,0x36,0x33,0x38,0x34, 0x26,0x65,0x2e,0x66,0x6c,0x61,0x67,0x73,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x46, 0x61,0x3d,0x21,0x31,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x2e,0x6c,0x61, 0x6e,0x65,0x73,0x3d,0x30,0x2c,0x74,0x2e,0x74,0x61,0x67,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x32,0x3a,0x69,0x66,0x28,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x2e,0x61,0x6c,0x74, 0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x61,0x6c, 0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x66, 0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x29,0x2c,0x65,0x3d,0x74,0x2e,0x70,0x65,0x6e, 0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c,0x6f,0x3d,0x6d,0x6f,0x28,0x74, 0x2c,0x68,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x61,0x69,0x28, 0x74,0x2c,0x6e,0x29,0x2c,0x6f,0x3d,0x75,0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74, 0x2c,0x72,0x2c,0x65,0x2c,0x6f,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67, 0x73,0x7c,0x3d,0x31,0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6f,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72, 0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x2e,0x24,0x24,0x74, 0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x69,0x66,0x28,0x74,0x2e,0x74,0x61,0x67,0x3d, 0x31,0x2c,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51, 0x75,0x65,0x75,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x62,0x6f,0x28,0x72,0x29,0x29, 0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x21,0x30,0x3b,0x4f,0x6f,0x28,0x74,0x29,0x7d, 0x65,0x6c,0x73,0x65,0x20,0x69,0x3d,0x21,0x31,0x3b,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x69,0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x6f,0x2e,0x73,0x74,0x61,0x74,0x65,0x3f,0x6f,0x2e,0x73,0x74,0x61, 0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6c,0x69,0x28,0x74,0x29,0x3b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x72,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64, 0x53,0x74,0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70,0x73,0x3b,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x75,0x26,0x26,0x6d,0x69,0x28,0x74,0x2c,0x72,0x2c,0x75,0x2c,0x65, 0x29,0x2c,0x6f,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x72,0x3d,0x62,0x69,0x2c,0x74, 0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x3d,0x6f,0x2c,0x6f,0x2e,0x5f, 0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x3d,0x74, 0x2c,0x4f,0x69,0x28,0x74,0x2c,0x72,0x2c,0x65,0x2c,0x6e,0x29,0x2c,0x74,0x3d,0x47, 0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c,0x72,0x2c,0x21,0x30,0x2c,0x69,0x2c, 0x6e,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x74,0x2e,0x74,0x61,0x67,0x3d,0x30,0x2c, 0x4d,0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c,0x6f,0x2c,0x6e,0x29,0x2c,0x74, 0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x36,0x3a,0x6f,0x3d,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3b,0x65,0x3a,0x7b,0x73,0x77,0x69, 0x74,0x63,0x68,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65, 0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x74,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x32,0x29,0x2c,0x65,0x3d,0x74, 0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c,0x6f,0x3d, 0x28,0x69,0x3d,0x6f,0x2e,0x5f,0x69,0x6e,0x69,0x74,0x29,0x28,0x6f,0x2e,0x5f,0x70, 0x61,0x79,0x6c,0x6f,0x61,0x64,0x29,0x2c,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d,0x6f, 0x2c,0x69,0x3d,0x74,0x2e,0x74,0x61,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x56,0x63,0x28,0x65,0x29,0x3f,0x31,0x3a,0x30,0x3b,0x69, 0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x26,0x26,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x29,0x7b,0x69,0x66,0x28,0x28,0x65,0x3d,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x3d,0x3d,0x3d,0x41,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x31,0x31,0x3b,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x44, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x34,0x7d,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x32,0x7d,0x28,0x6f,0x29,0x2c,0x65,0x3d,0x4a,0x6f,0x28,0x6f,0x2c,0x65, 0x29,0x2c,0x69,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x74,0x3d,0x48,0x61, 0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c,0x6f,0x2c,0x65,0x2c,0x6e,0x29,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x74,0x3d, 0x56,0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c,0x6f,0x2c,0x65,0x2c,0x6e,0x29, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x31, 0x3a,0x74,0x3d,0x42,0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c,0x6f,0x2c,0x65, 0x2c,0x6e,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x63,0x61,0x73,0x65, 0x20,0x31,0x34,0x3a,0x74,0x3d,0x7a,0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c, 0x6f,0x2c,0x4a,0x6f,0x28,0x6f,0x2e,0x74,0x79,0x70,0x65,0x2c,0x65,0x29,0x2c,0x72, 0x2c,0x6e,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x7d,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x33,0x30,0x36,0x2c,0x6f,0x2c, 0x22,0x22,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b,0x63,0x61, 0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x74,0x2e, 0x74,0x79,0x70,0x65,0x2c,0x6f,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67, 0x50,0x72,0x6f,0x70,0x73,0x2c,0x48,0x61,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f, 0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x3d, 0x3d,0x72,0x3f,0x6f,0x3a,0x4a,0x6f,0x28,0x72,0x2c,0x6f,0x29,0x2c,0x6e,0x29,0x3b, 0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d, 0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6f,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69, 0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c,0x56,0x61,0x28,0x65,0x2c,0x74,0x2c,0x72, 0x2c,0x6f,0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65, 0x3d,0x3d,0x3d,0x72,0x3f,0x6f,0x3a,0x4a,0x6f,0x28,0x72,0x2c,0x6f,0x29,0x2c,0x6e, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x69,0x66,0x28,0x71,0x61,0x28,0x74, 0x29,0x2c,0x72,0x3d,0x74,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x75, 0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x3d,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72, 0x28,0x61,0x28,0x32,0x38,0x32,0x29,0x29,0x3b,0x69,0x66,0x28,0x72,0x3d,0x74,0x2e, 0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c,0x6f,0x3d,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x6f,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69, 0x7a,0x65,0x64,0x53,0x74,0x61,0x74,0x65,0x29,0x3f,0x6f,0x2e,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x69,0x28,0x65,0x2c,0x74,0x29, 0x2c,0x68,0x69,0x28,0x74,0x2c,0x72,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x29,0x2c, 0x28,0x72,0x3d,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x69,0x7a,0x65,0x64,0x53,0x74,0x61, 0x74,0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3d,0x3d,0x3d,0x6f,0x29, 0x4b,0x69,0x28,0x29,0x2c,0x74,0x3d,0x69,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x28,0x69,0x3d,0x28,0x6f,0x3d,0x74, 0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x29,0x2e,0x68,0x79,0x64,0x72, 0x61,0x74,0x65,0x29,0x26,0x26,0x28,0x55,0x69,0x3d,0x4b,0x72,0x28,0x74,0x2e,0x73, 0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x49,0x6e,0x66,0x6f,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c, 0x64,0x29,0x2c,0x7a,0x69,0x3d,0x74,0x2c,0x69,0x3d,0x57,0x69,0x3d,0x21,0x30,0x29, 0x2c,0x69,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x65,0x3d, 0x6f,0x2e,0x6d,0x75,0x74,0x61,0x62,0x6c,0x65,0x53,0x6f,0x75,0x72,0x63,0x65,0x45, 0x61,0x67,0x65,0x72,0x48,0x79,0x64,0x72,0x61,0x74,0x69,0x6f,0x6e,0x44,0x61,0x74, 0x61,0x29,0x29,0x66,0x6f,0x72,0x28,0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2b,0x3d,0x32,0x29,0x28,0x69,0x3d,0x65,0x5b, 0x6f,0x5d,0x29,0x2e,0x5f,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x50,0x72,0x6f,0x67,0x72, 0x65,0x73,0x73,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x50,0x72,0x69,0x6d,0x61,0x72, 0x79,0x3d,0x65,0x5b,0x6f,0x2b,0x31,0x5d,0x2c,0x59,0x69,0x2e,0x70,0x75,0x73,0x68, 0x28,0x69,0x29,0x3b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x43,0x69,0x28,0x74,0x2c,0x6e, 0x75,0x6c,0x6c,0x2c,0x72,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x3d,0x6e,0x3b,0x6e,0x3b,0x29,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73,0x3d,0x2d,0x33, 0x26,0x6e,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x31,0x30,0x32,0x34,0x2c,0x6e,0x3d, 0x6e,0x2e,0x73,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x65,0x6c,0x73,0x65,0x20,0x4d, 0x61,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6e,0x29,0x2c,0x4b,0x69,0x28,0x29,0x3b, 0x74,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4c,0x69,0x28,0x74,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x26, 0x26,0x56,0x69,0x28,0x74,0x29,0x2c,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c, 0x6f,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73, 0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x3f,0x65,0x2e,0x6d,0x65, 0x6d,0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x75,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x48,0x72, 0x28,0x72,0x2c,0x6f,0x29,0x3f,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x3a,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x69,0x26,0x26,0x48,0x72,0x28,0x72,0x2c,0x69,0x29,0x26,0x26, 0x28,0x74,0x2e,0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x36,0x29,0x2c,0x24,0x61, 0x28,0x65,0x2c,0x74,0x29,0x2c,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c,0x75,0x2c,0x6e, 0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x61,0x73,0x65,0x20,0x36, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65, 0x26,0x26,0x56,0x69,0x28,0x74,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3b,0x63,0x61,0x73, 0x65,0x20,0x31,0x33,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x61,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x34,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x49,0x69,0x28,0x74,0x2c,0x74,0x2e,0x73,0x74,0x61,0x74,0x65, 0x4e,0x6f,0x64,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e, 0x66,0x6f,0x29,0x2c,0x72,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50, 0x72,0x6f,0x70,0x73,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x74,0x2e, 0x63,0x68,0x69,0x6c,0x64,0x3d,0x53,0x69,0x28,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x2c, 0x72,0x2c,0x6e,0x29,0x3a,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6e,0x29, 0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x31, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65, 0x2c,0x6f,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70, 0x73,0x2c,0x42,0x61,0x28,0x65,0x2c,0x74,0x2c,0x72,0x2c,0x6f,0x3d,0x74,0x2e,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x72,0x3f,0x6f, 0x3a,0x4a,0x6f,0x28,0x72,0x2c,0x6f,0x29,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65, 0x20,0x37,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x28,0x65,0x2c,0x74, 0x2c,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c, 0x6e,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x61,0x73,0x65,0x20, 0x38,0x3a,0x63,0x61,0x73,0x65,0x20,0x31,0x32,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e, 0x67,0x50,0x72,0x6f,0x70,0x73,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c, 0x6e,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x61,0x73,0x65,0x20, 0x31,0x30,0x3a,0x65,0x3a,0x7b,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x2e,0x5f, 0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2c,0x6f,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x2c,0x75,0x3d,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x69,0x7a,0x65,0x64,0x50,0x72,0x6f,0x70,0x73,0x2c,0x69,0x3d,0x6f,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x74,0x2e,0x74,0x79,0x70, 0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3b,0x69,0x66,0x28,0x66,0x6f, 0x28,0x5a,0x6f,0x2c,0x63,0x2e,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61, 0x6c,0x75,0x65,0x29,0x2c,0x63,0x2e,0x5f,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56, 0x61,0x6c,0x75,0x65,0x3d,0x69,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x75,0x29, 0x69,0x66,0x28,0x63,0x3d,0x75,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x30,0x3d,0x3d, 0x3d,0x28,0x69,0x3d,0x73,0x72,0x28,0x63,0x2c,0x69,0x29,0x3f,0x30,0x3a,0x30,0x7c, 0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x72,0x2e,0x5f,0x63,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74, 0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x42,0x69,0x74,0x73,0x3f,0x72,0x2e,0x5f, 0x63,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64, 0x42,0x69,0x74,0x73,0x28,0x63,0x2c,0x69,0x29,0x3a,0x31,0x30,0x37,0x33,0x37,0x34, 0x31,0x38,0x32,0x33,0x29,0x29,0x29,0x7b,0x69,0x66,0x28,0x75,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3d,0x3d,0x3d,0x6f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x26,0x26,0x21,0x76,0x6f,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29, 0x7b,0x74,0x3d,0x69,0x75,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x20,0x65,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x66,0x6f,0x72,0x28,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x63,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x29,0x26,0x26,0x28,0x63,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x74,0x29,0x3b, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x63,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c, 0x3d,0x63,0x2e,0x64,0x65,0x70,0x65,0x6e,0x64,0x65,0x6e,0x63,0x69,0x65,0x73,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6c,0x29,0x7b,0x75,0x3d,0x63, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x73, 0x3d,0x6c,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3b, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x73,0x3b,0x29,0x7b,0x69,0x66,0x28,0x73,0x2e, 0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3d,0x3d,0x3d,0x72,0x26,0x26,0x30,0x21,0x3d, 0x3d,0x28,0x73,0x2e,0x6f,0x62,0x73,0x65,0x72,0x76,0x65,0x64,0x42,0x69,0x74,0x73, 0x26,0x69,0x29,0x29,0x7b,0x31,0x3d,0x3d,0x3d,0x63,0x2e,0x74,0x61,0x67,0x26,0x26, 0x28,0x28,0x73,0x3d,0x66,0x69,0x28,0x2d,0x31,0x2c,0x6e,0x26,0x2d,0x6e,0x29,0x29, 0x2e,0x74,0x61,0x67,0x3d,0x32,0x2c,0x64,0x69,0x28,0x63,0x2c,0x73,0x29,0x29,0x2c, 0x63,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x6e,0x2c,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x3d,0x28,0x73,0x3d,0x63,0x2e,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x65, 0x29,0x26,0x26,0x28,0x73,0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x6e,0x29,0x2c, 0x69,0x69,0x28,0x63,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x6e,0x29,0x2c,0x6c, 0x2e,0x6c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x6e,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d, 0x73,0x3d,0x73,0x2e,0x6e,0x65,0x78,0x74,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x75, 0x3d,0x31,0x30,0x3d,0x3d,0x3d,0x63,0x2e,0x74,0x61,0x67,0x26,0x26,0x63,0x2e,0x74, 0x79,0x70,0x65,0x3d,0x3d,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x3f,0x6e,0x75,0x6c, 0x6c,0x3a,0x63,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x75,0x29,0x75,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x3d,0x63, 0x3b,0x65,0x6c,0x73,0x65,0x20,0x66,0x6f,0x72,0x28,0x75,0x3d,0x63,0x3b,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x75,0x3b,0x29,0x7b,0x69,0x66,0x28,0x75,0x3d,0x3d,0x3d, 0x74,0x29,0x7b,0x75,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x63,0x3d,0x75,0x2e,0x73, 0x69,0x62,0x6c,0x69,0x6e,0x67,0x29,0x29,0x7b,0x63,0x2e,0x72,0x65,0x74,0x75,0x72, 0x6e,0x3d,0x75,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x2c,0x75,0x3d,0x63,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x7d,0x75,0x3d,0x75,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d, 0x63,0x3d,0x75,0x7d,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c,0x6f,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6e,0x29,0x2c,0x74,0x3d,0x74,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3b,0x63,0x61,0x73,0x65, 0x20,0x39,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3d,0x74,0x2e,0x74,0x79, 0x70,0x65,0x2c,0x72,0x3d,0x28,0x69,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e, 0x67,0x50,0x72,0x6f,0x70,0x73,0x29,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x2c,0x61,0x69,0x28,0x74,0x2c,0x6e,0x29,0x2c,0x72,0x3d,0x72,0x28,0x6f,0x3d,0x75, 0x69,0x28,0x6f,0x2c,0x69,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6f, 0x62,0x73,0x65,0x72,0x76,0x65,0x64,0x42,0x69,0x74,0x73,0x29,0x29,0x2c,0x74,0x2e, 0x66,0x6c,0x61,0x67,0x73,0x7c,0x3d,0x31,0x2c,0x4d,0x61,0x28,0x65,0x2c,0x74,0x2c, 0x72,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64,0x3b,0x63,0x61,0x73, 0x65,0x20,0x31,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3d,0x4a,0x6f, 0x28,0x6f,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x74,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73,0x29,0x2c,0x7a,0x61,0x28,0x65,0x2c,0x74, 0x2c,0x6f,0x2c,0x69,0x3d,0x4a,0x6f,0x28,0x6f,0x2e,0x74,0x79,0x70,0x65,0x2c,0x69, 0x29,0x2c,0x72,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x35,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x61,0x28,0x65,0x2c,0x74,0x2c,0x74,0x2e,0x74, 0x79,0x70,0x65,0x2c,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f, 0x70,0x73,0x2c,0x72,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x37,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x3d,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c, 0x6f,0x3d,0x74,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x50,0x72,0x6f,0x70,0x73, 0x2c,0x6f,0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65, 0x3d,0x3d,0x3d,0x72,0x3f,0x6f,0x3a,0x4a,0x6f,0x28,0x72,0x2c,0x6f,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x2e,0x61,0x6c,0x74,0x65, 0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x61,0x6c,0x74, 0x65,0x72,0x6e,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e,0x66,0x6c, 0x61,0x67,0x73,0x7c,0x3d,0x32,0x29,0x2c,0x74,0x2e,0x74,0x61,0x67,0x3d,0x31,0x2c, 0x62,0x6f,0x28,0x72,0x29,0x3f,0x28,0x65,0x3d,0x21,0x30,0x2c,0x4f,0x6f,0x28,0x74, 0x29,0x29,0x3a,0x65,0x3d,0x21,0x31,0x2c,0x61,0x69,0x28,0x74,0x2c,0x6e,0x29,0x2c, 0x5f,0x69,0x28,0x74,0x2c,0x72,0x2c,0x6f,0x29,0x2c,0x4f,0x69,0x28,0x74,0x2c,0x72, 0x2c,0x6f,0x2c,0x6e,0x29,0x2c,0x47,0x61,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c, 0x72,0x2c,0x21,0x30,0x2c,0x65,0x2c,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31, 0x39,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x75,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x33,0x3a,0x63,0x61,0x73,0x65,0x20, 0x32,0x34,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x61,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x61,0x28,0x31,0x35,0x36,0x2c,0x74,0x2e,0x74,0x61,0x67,0x29,0x29,0x7d,0x2c,0x6f, 0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x6e,0x64, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65, 0x6c,0x28,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x74,0x65,0x72,0x6e, 0x61,0x6c,0x52,0x6f,0x6f,0x74,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c, 0x29,0x7d,0x2c,0x6f,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x75,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69, 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x52,0x6f,0x6f,0x74,0x2c,0x74,0x3d,0x65,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x49,0x6e,0x66,0x6f,0x3b,0x65,0x6c, 0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x5b,0x65,0x6f,0x5d,0x3d,0x6e, 0x75,0x6c,0x6c,0x7d,0x29,0x29,0x7d,0x2c,0x74,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x31,0x33,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61, 0x67,0x26,0x26,0x28,0x68,0x63,0x28,0x65,0x2c,0x34,0x2c,0x64,0x63,0x28,0x29,0x29, 0x2c,0x72,0x6c,0x28,0x65,0x2c,0x34,0x29,0x29,0x7d,0x2c,0x6e,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x31,0x33,0x3d,0x3d,0x3d,0x65, 0x2e,0x74,0x61,0x67,0x26,0x26,0x28,0x68,0x63,0x28,0x65,0x2c,0x36,0x37,0x31,0x30, 0x38,0x38,0x36,0x34,0x2c,0x64,0x63,0x28,0x29,0x29,0x2c,0x72,0x6c,0x28,0x65,0x2c, 0x36,0x37,0x31,0x30,0x38,0x38,0x36,0x34,0x29,0x29,0x7d,0x2c,0x72,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x31,0x33, 0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61,0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x64,0x63,0x28,0x29,0x2c,0x6e,0x3d,0x70,0x63,0x28,0x65,0x29,0x3b,0x68,0x63,0x28, 0x65,0x2c,0x6e,0x2c,0x74,0x29,0x2c,0x72,0x6c,0x28,0x65,0x2c,0x6e,0x29,0x7d,0x7d, 0x2c,0x6f,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x28,0x29,0x7d,0x2c,0x53,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x22, 0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x69,0x66,0x28,0x6e,0x65,0x28,0x65,0x2c,0x6e, 0x29,0x2c,0x74,0x3d,0x6e,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x22,0x72,0x61,0x64,0x69, 0x6f,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x6e,0x3d,0x65,0x3b,0x6e,0x2e, 0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b,0x29,0x6e,0x3d,0x6e,0x2e, 0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b,0x66,0x6f,0x72,0x28,0x6e, 0x3d,0x6e,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72, 0x41,0x6c,0x6c,0x28,0x22,0x69,0x6e,0x70,0x75,0x74,0x5b,0x6e,0x61,0x6d,0x65,0x3d, 0x22,0x2b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79, 0x28,0x22,0x22,0x2b,0x74,0x29,0x2b,0x27,0x5d,0x5b,0x74,0x79,0x70,0x65,0x3d,0x22, 0x72,0x61,0x64,0x69,0x6f,0x22,0x5d,0x27,0x29,0x2c,0x74,0x3d,0x30,0x3b,0x74,0x3c, 0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x5b,0x74,0x5d,0x3b,0x69,0x66,0x28,0x72,0x21,0x3d,0x3d, 0x65,0x26,0x26,0x72,0x2e,0x66,0x6f,0x72,0x6d,0x3d,0x3d,0x3d,0x65,0x2e,0x66,0x6f, 0x72,0x6d,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x69,0x6f,0x28,0x72,0x29,0x3b, 0x69,0x66,0x28,0x21,0x6f,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x61,0x28,0x39,0x30,0x29,0x29,0x3b,0x58,0x28,0x72,0x29,0x2c,0x6e,0x65, 0x28,0x72,0x2c,0x6f,0x29,0x7d,0x7d,0x7d,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x3a,0x6c,0x65,0x28, 0x65,0x2c,0x6e,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22, 0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x74, 0x3d,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x26,0x26,0x61,0x65,0x28,0x65,0x2c, 0x21,0x21,0x6e,0x2e,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x2c,0x74,0x2c,0x21, 0x31,0x29,0x7d,0x7d,0x2c,0x4e,0x65,0x3d,0x5f,0x63,0x2c,0x49,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f, 0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x44,0x75,0x3b,0x44,0x75,0x7c,0x3d,0x34, 0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71,0x6f,0x28,0x39, 0x38,0x2c,0x65,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b, 0x30,0x3d,0x3d,0x3d,0x28,0x44,0x75,0x3d,0x69,0x29,0x26,0x26,0x28,0x71,0x75,0x28, 0x29,0x2c,0x59,0x6f,0x28,0x29,0x29,0x7d,0x7d,0x2c,0x52,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x30,0x3d,0x3d,0x3d,0x28,0x34,0x39,0x26, 0x44,0x75,0x29,0x26,0x26,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6f,0x63,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x6f,0x63,0x3b,0x6f,0x63,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x69,0x72,0x65,0x64, 0x4c,0x61,0x6e,0x65,0x73,0x7c,0x3d,0x32,0x34,0x26,0x65,0x2e,0x70,0x65,0x6e,0x64, 0x69,0x6e,0x67,0x4c,0x61,0x6e,0x65,0x73,0x2c,0x67,0x63,0x28,0x65,0x2c,0x48,0x6f, 0x28,0x29,0x29,0x7d,0x29,0x29,0x7d,0x59,0x6f,0x28,0x29,0x7d,0x28,0x29,0x2c,0x52, 0x63,0x28,0x29,0x29,0x7d,0x2c,0x4c,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x44,0x75,0x3b, 0x44,0x75,0x7c,0x3d,0x32,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x28,0x74,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x30,0x3d, 0x3d,0x3d,0x28,0x44,0x75,0x3d,0x6e,0x29,0x26,0x26,0x28,0x71,0x75,0x28,0x29,0x2c, 0x59,0x6f,0x28,0x29,0x29,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x63,0x6c,0x3d,0x7b, 0x45,0x76,0x65,0x6e,0x74,0x73,0x3a,0x5b,0x72,0x6f,0x2c,0x6f,0x6f,0x2c,0x69,0x6f, 0x2c,0x50,0x65,0x2c,0x44,0x65,0x2c,0x52,0x63,0x2c,0x7b,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3a,0x21,0x31,0x7d,0x5d,0x7d,0x2c,0x6c,0x6c,0x3d,0x7b,0x66,0x69,0x6e, 0x64,0x46,0x69,0x62,0x65,0x72,0x42,0x79,0x48,0x6f,0x73,0x74,0x49,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x3a,0x6e,0x6f,0x2c,0x62,0x75,0x6e,0x64,0x6c,0x65,0x54,0x79, 0x70,0x65,0x3a,0x30,0x2c,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x22,0x31,0x37, 0x2e,0x30,0x2e,0x32,0x22,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x50,0x61, 0x63,0x6b,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x72,0x65,0x61,0x63,0x74, 0x2d,0x64,0x6f,0x6d,0x22,0x7d,0x2c,0x73,0x6c,0x3d,0x7b,0x62,0x75,0x6e,0x64,0x6c, 0x65,0x54,0x79,0x70,0x65,0x3a,0x6c,0x6c,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x54, 0x79,0x70,0x65,0x2c,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x6c,0x6c,0x2e,0x76, 0x65,0x72,0x73,0x69,0x6f,0x6e,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x50, 0x61,0x63,0x6b,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x3a,0x6c,0x6c,0x2e,0x72,0x65, 0x6e,0x64,0x65,0x72,0x65,0x72,0x50,0x61,0x63,0x6b,0x61,0x67,0x65,0x4e,0x61,0x6d, 0x65,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67, 0x3a,0x6c,0x6c,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x43,0x6f,0x6e,0x66, 0x69,0x67,0x2c,0x6f,0x76,0x65,0x72,0x72,0x69,0x64,0x65,0x48,0x6f,0x6f,0x6b,0x53, 0x74,0x61,0x74,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x76,0x65,0x72,0x72,0x69, 0x64,0x65,0x48,0x6f,0x6f,0x6b,0x53,0x74,0x61,0x74,0x65,0x44,0x65,0x6c,0x65,0x74, 0x65,0x50,0x61,0x74,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x76,0x65,0x72,0x72, 0x69,0x64,0x65,0x48,0x6f,0x6f,0x6b,0x53,0x74,0x61,0x74,0x65,0x52,0x65,0x6e,0x61, 0x6d,0x65,0x50,0x61,0x74,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x76,0x65,0x72, 0x72,0x69,0x64,0x65,0x50,0x72,0x6f,0x70,0x73,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6f, 0x76,0x65,0x72,0x72,0x69,0x64,0x65,0x50,0x72,0x6f,0x70,0x73,0x44,0x65,0x6c,0x65, 0x74,0x65,0x50,0x61,0x74,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x76,0x65,0x72, 0x72,0x69,0x64,0x65,0x50,0x72,0x6f,0x70,0x73,0x52,0x65,0x6e,0x61,0x6d,0x65,0x50, 0x61,0x74,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x65,0x74,0x53,0x75,0x73,0x70, 0x65,0x6e,0x73,0x65,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x73,0x63,0x68,0x65,0x64,0x75,0x6c,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3a, 0x6e,0x75,0x6c,0x6c,0x2c,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x44,0x69,0x73,0x70, 0x61,0x74,0x63,0x68,0x65,0x72,0x52,0x65,0x66,0x3a,0x77,0x2e,0x52,0x65,0x61,0x63, 0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x44,0x69,0x73,0x70,0x61,0x74,0x63,0x68, 0x65,0x72,0x2c,0x66,0x69,0x6e,0x64,0x48,0x6f,0x73,0x74,0x49,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x42,0x79,0x46,0x69,0x62,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x5a,0x65,0x28,0x65,0x29,0x29,0x3f,0x6e, 0x75,0x6c,0x6c,0x3a,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x7d, 0x2c,0x66,0x69,0x6e,0x64,0x46,0x69,0x62,0x65,0x72,0x42,0x79,0x48,0x6f,0x73,0x74, 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x3a,0x6c,0x6c,0x2e,0x66,0x69,0x6e,0x64, 0x46,0x69,0x62,0x65,0x72,0x42,0x79,0x48,0x6f,0x73,0x74,0x49,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x66,0x69,0x6e, 0x64,0x48,0x6f,0x73,0x74,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x73,0x46,0x6f, 0x72,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x63, 0x68,0x65,0x64,0x75,0x6c,0x65,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x3a,0x6e,0x75, 0x6c,0x6c,0x2c,0x73,0x63,0x68,0x65,0x64,0x75,0x6c,0x65,0x52,0x6f,0x6f,0x74,0x3a, 0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x65,0x74,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x48, 0x61,0x6e,0x64,0x6c,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x67,0x65,0x74,0x43, 0x75,0x72,0x72,0x65,0x6e,0x74,0x46,0x69,0x62,0x65,0x72,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x3b,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x5f,0x5f,0x52,0x45,0x41,0x43, 0x54,0x5f,0x44,0x45,0x56,0x54,0x4f,0x4f,0x4c,0x53,0x5f,0x47,0x4c,0x4f,0x42,0x41, 0x4c,0x5f,0x48,0x4f,0x4f,0x4b,0x5f,0x5f,0x29,0x7b,0x76,0x61,0x72,0x20,0x66,0x6c, 0x3d,0x5f,0x5f,0x52,0x45,0x41,0x43,0x54,0x5f,0x44,0x45,0x56,0x54,0x4f,0x4f,0x4c, 0x53,0x5f,0x47,0x4c,0x4f,0x42,0x41,0x4c,0x5f,0x48,0x4f,0x4f,0x4b,0x5f,0x5f,0x3b, 0x69,0x66,0x28,0x21,0x66,0x6c,0x2e,0x69,0x73,0x44,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x26,0x26,0x66,0x6c,0x2e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x73,0x46,0x69, 0x62,0x65,0x72,0x29,0x74,0x72,0x79,0x7b,0x45,0x6f,0x3d,0x66,0x6c,0x2e,0x69,0x6e, 0x6a,0x65,0x63,0x74,0x28,0x73,0x6c,0x29,0x2c,0x6a,0x6f,0x3d,0x66,0x6c,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x67,0x65,0x29,0x7b,0x7d,0x7d,0x74,0x2e,0x5f,0x5f,0x53, 0x45,0x43,0x52,0x45,0x54,0x5f,0x49,0x4e,0x54,0x45,0x52,0x4e,0x41,0x4c,0x53,0x5f, 0x44,0x4f,0x5f,0x4e,0x4f,0x54,0x5f,0x55,0x53,0x45,0x5f,0x4f,0x52,0x5f,0x59,0x4f, 0x55,0x5f,0x57,0x49,0x4c,0x4c,0x5f,0x42,0x45,0x5f,0x46,0x49,0x52,0x45,0x44,0x3d, 0x63,0x6c,0x2c,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x72,0x74,0x61, 0x6c,0x3d,0x75,0x6c,0x2c,0x74,0x2e,0x66,0x69,0x6e,0x64,0x44,0x4f,0x4d,0x4e,0x6f, 0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x31,0x3d,0x3d,0x3d,0x65,0x2e,0x6e, 0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x49, 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x61,0x28,0x31,0x38,0x38,0x29,0x29,0x3b,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x36,0x38,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x29,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28, 0x65,0x3d,0x5a,0x65,0x28,0x74,0x29,0x29,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x4e,0x6f,0x64,0x65,0x7d,0x2c,0x74,0x2e,0x66,0x6c,0x75, 0x73,0x68,0x53,0x79,0x6e,0x63,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x44,0x75,0x3b,0x69,0x66, 0x28,0x30,0x21,0x3d,0x3d,0x28,0x34,0x38,0x26,0x6e,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x28,0x74,0x29,0x3b,0x44,0x75,0x7c,0x3d,0x31,0x3b,0x74,0x72, 0x79,0x7b,0x69,0x66,0x28,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x71,0x6f, 0x28,0x39,0x39,0x2c,0x65,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c, 0x74,0x29,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x44,0x75,0x3d,0x6e, 0x2c,0x59,0x6f,0x28,0x29,0x7d,0x7d,0x2c,0x74,0x2e,0x68,0x79,0x64,0x72,0x61,0x74, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x69,0x66,0x28,0x21,0x69,0x6c,0x28,0x74,0x29,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x30,0x30,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x6c,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65, 0x2c,0x74,0x2c,0x21,0x30,0x2c,0x6e,0x29,0x7d,0x2c,0x74,0x2e,0x72,0x65,0x6e,0x64, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x69,0x66,0x28,0x21,0x69,0x6c,0x28,0x74,0x29,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x30,0x30,0x29,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x6c,0x28,0x6e,0x75,0x6c,0x6c,0x2c, 0x65,0x2c,0x74,0x2c,0x21,0x31,0x2c,0x6e,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x6d, 0x6f,0x75,0x6e,0x74,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x41,0x74,0x4e, 0x6f,0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x21,0x69,0x6c,0x28,0x65,0x29,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x34,0x30,0x29,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x21,0x65,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x52,0x6f,0x6f, 0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x26,0x26,0x28,0x77,0x63,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x61,0x6c,0x28,0x6e, 0x75,0x6c,0x6c,0x2c,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2c,0x21,0x31,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x5f,0x72,0x65,0x61, 0x63,0x74,0x52,0x6f,0x6f,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x5b,0x65,0x6f,0x5d,0x3d,0x6e,0x75,0x6c,0x6c,0x7d, 0x29,0x29,0x7d,0x29,0x29,0x2c,0x21,0x30,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73, 0x74,0x61,0x62,0x6c,0x65,0x5f,0x62,0x61,0x74,0x63,0x68,0x65,0x64,0x55,0x70,0x64, 0x61,0x74,0x65,0x73,0x3d,0x5f,0x63,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62, 0x6c,0x65,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x72,0x74,0x61,0x6c,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x75,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x32,0x3c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x32,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x32,0x5d,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x72,0x65,0x6e,0x64,0x65,0x72,0x53,0x75,0x62,0x74,0x72, 0x65,0x65,0x49,0x6e,0x74,0x6f,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x7b,0x69,0x66,0x28,0x21,0x69,0x6c,0x28,0x6e,0x29,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x61,0x28,0x32,0x30,0x30,0x29,0x29,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x7c,0x7c,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x65,0x2e,0x5f,0x72,0x65,0x61,0x63,0x74,0x49,0x6e,0x74, 0x65,0x72,0x6e,0x61,0x6c,0x73,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x61,0x28,0x33,0x38,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x61,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x21,0x31,0x2c,0x72,0x29,0x7d, 0x2c,0x74,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,0x31,0x37,0x2e,0x30, 0x2e,0x32,0x22,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x28,0x31,0x35, 0x33,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x3b,0x69,0x66,0x28, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65,0x26,0x26,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65,0x2e,0x6e, 0x6f,0x77,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x70,0x65,0x72,0x66,0x6f,0x72, 0x6d,0x61,0x6e,0x63,0x65,0x3b,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x6e,0x6f,0x77,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x7d,0x7d, 0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x44,0x61,0x74,0x65,0x2c, 0x6c,0x3d,0x63,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x3b,0x74,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x6e,0x6f,0x77,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x2e,0x6e,0x6f,0x77, 0x28,0x29,0x2d,0x6c,0x7d,0x7d,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x4d,0x65,0x73,0x73,0x61,0x67, 0x65,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x64,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x73,0x29,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6e,0x6f,0x77,0x28, 0x29,0x3b,0x73,0x28,0x21,0x30,0x2c,0x6e,0x29,0x2c,0x73,0x3d,0x6e,0x75,0x6c,0x6c, 0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x72,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20, 0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x2c,0x30,0x29,0x2c, 0x72,0x7d,0x7d,0x3b,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x73,0x3f,0x73,0x65,0x74,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x2c,0x30,0x2c,0x65,0x29,0x3a,0x28,0x73,0x3d, 0x65,0x2c,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x64,0x2c,0x30, 0x29,0x29,0x7d,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x66,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x28,0x65,0x2c,0x74,0x29,0x7d,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x28,0x66,0x29,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f, 0x73,0x68,0x6f,0x75,0x6c,0x64,0x59,0x69,0x65,0x6c,0x64,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d, 0x2c,0x61,0x3d,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x66,0x6f, 0x72,0x63,0x65,0x46,0x72,0x61,0x6d,0x65,0x52,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x76, 0x61,0x72,0x20,0x70,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x73,0x65,0x74,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x2c,0x68,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3b,0x69,0x66,0x28, 0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x76,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x63,0x61,0x6e,0x63,0x65, 0x6c,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x3b, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x72,0x65,0x71,0x75,0x65, 0x73,0x74,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65, 0x26,0x26,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28, 0x22,0x54,0x68,0x69,0x73,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x64,0x6f, 0x65,0x73,0x6e,0x27,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x72,0x65, 0x71,0x75,0x65,0x73,0x74,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72, 0x61,0x6d,0x65,0x2e,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, 0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x20,0x70, 0x6f,0x6c,0x79,0x66,0x69,0x6c,0x6c,0x20,0x69,0x6e,0x20,0x6f,0x6c,0x64,0x65,0x72, 0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x73,0x2e,0x20,0x68,0x74,0x74,0x70,0x73, 0x3a,0x2f,0x2f,0x72,0x65,0x61,0x63,0x74,0x6a,0x73,0x2e,0x6f,0x72,0x67,0x2f,0x6c, 0x69,0x6e,0x6b,0x2f,0x72,0x65,0x61,0x63,0x74,0x2d,0x70,0x6f,0x6c,0x79,0x66,0x69, 0x6c,0x6c,0x73,0x22,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x76,0x26,0x26,0x63,0x6f,0x6e, 0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x22,0x54,0x68,0x69,0x73, 0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74, 0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x46,0x72,0x61,0x6d,0x65,0x2e,0x20,0x4d, 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f, 0x75,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x20,0x70,0x6f,0x6c,0x79,0x66,0x69,0x6c, 0x6c,0x20,0x69,0x6e,0x20,0x6f,0x6c,0x64,0x65,0x72,0x20,0x62,0x72,0x6f,0x77,0x73, 0x65,0x72,0x73,0x2e,0x20,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x61, 0x63,0x74,0x6a,0x73,0x2e,0x6f,0x72,0x67,0x2f,0x6c,0x69,0x6e,0x6b,0x2f,0x72,0x65, 0x61,0x63,0x74,0x2d,0x70,0x6f,0x6c,0x79,0x66,0x69,0x6c,0x6c,0x73,0x22,0x29,0x7d, 0x76,0x61,0x72,0x20,0x67,0x3d,0x21,0x31,0x2c,0x6d,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x62,0x3d,0x2d,0x31,0x2c,0x79,0x3d,0x35,0x2c,0x5f,0x3d,0x30,0x3b,0x74,0x2e,0x75, 0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x73,0x68,0x6f,0x75,0x6c,0x64,0x59,0x69, 0x65,0x6c,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x6e,0x6f,0x77,0x28,0x29,0x3e,0x3d,0x5f,0x7d,0x2c,0x61,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x66,0x6f,0x72,0x63,0x65,0x46,0x72,0x61,0x6d,0x65,0x52, 0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x30,0x3e,0x65,0x7c,0x7c,0x31,0x32,0x35,0x3c,0x65,0x3f,0x63,0x6f,0x6e,0x73,0x6f, 0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x22,0x66,0x6f,0x72,0x63,0x65,0x46, 0x72,0x61,0x6d,0x65,0x52,0x61,0x74,0x65,0x20,0x74,0x61,0x6b,0x65,0x73,0x20,0x61, 0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x20,0x69,0x6e,0x74,0x20,0x62,0x65, 0x74,0x77,0x65,0x65,0x6e,0x20,0x30,0x20,0x61,0x6e,0x64,0x20,0x31,0x32,0x35,0x2c, 0x20,0x66,0x6f,0x72,0x63,0x69,0x6e,0x67,0x20,0x66,0x72,0x61,0x6d,0x65,0x20,0x72, 0x61,0x74,0x65,0x73,0x20,0x68,0x69,0x67,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e, 0x20,0x31,0x32,0x35,0x20,0x66,0x70,0x73,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20, 0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x22,0x29,0x3a,0x79,0x3d,0x30,0x3c, 0x65,0x3f,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x31,0x65,0x33, 0x2f,0x65,0x29,0x3a,0x35,0x7d,0x3b,0x76,0x61,0x72,0x20,0x77,0x3d,0x6e,0x65,0x77, 0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x2c, 0x4f,0x3d,0x77,0x2e,0x70,0x6f,0x72,0x74,0x32,0x3b,0x77,0x2e,0x70,0x6f,0x72,0x74, 0x31,0x2e,0x6f,0x6e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6d,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x6e,0x6f,0x77,0x28,0x29,0x3b,0x5f,0x3d,0x65,0x2b,0x79, 0x3b,0x74,0x72,0x79,0x7b,0x6d,0x28,0x21,0x30,0x2c,0x65,0x29,0x3f,0x4f,0x2e,0x70, 0x6f,0x73,0x74,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29, 0x3a,0x28,0x67,0x3d,0x21,0x31,0x2c,0x6d,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x4f,0x2e, 0x70,0x6f,0x73,0x74,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x28,0x6e,0x75,0x6c,0x6c, 0x29,0x2c,0x6e,0x7d,0x7d,0x65,0x6c,0x73,0x65,0x20,0x67,0x3d,0x21,0x31,0x7d,0x2c, 0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6d,0x3d, 0x65,0x2c,0x67,0x7c,0x7c,0x28,0x67,0x3d,0x21,0x30,0x2c,0x4f,0x2e,0x70,0x6f,0x73, 0x74,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x29,0x7d, 0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29, 0x7b,0x62,0x3d,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x65,0x28,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6e,0x6f, 0x77,0x28,0x29,0x29,0x7d,0x29,0x2c,0x6e,0x29,0x7d,0x2c,0x69,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x68,0x28,0x62,0x29,0x2c,0x62,0x3d,0x2d, 0x31,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x3b,0x65,0x3a,0x66,0x6f, 0x72,0x28,0x3b,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2d,0x31,0x3e, 0x3e,0x3e,0x31,0x2c,0x6f,0x3d,0x65,0x5b,0x72,0x5d,0x3b,0x69,0x66,0x28,0x21,0x28, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6f,0x26,0x26,0x30,0x3c,0x6b,0x28, 0x6f,0x2c,0x74,0x29,0x29,0x29,0x62,0x72,0x65,0x61,0x6b,0x20,0x65,0x3b,0x65,0x5b, 0x72,0x5d,0x3d,0x74,0x2c,0x65,0x5b,0x6e,0x5d,0x3d,0x6f,0x2c,0x6e,0x3d,0x72,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x28, 0x65,0x3d,0x65,0x5b,0x30,0x5d,0x29,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x65,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x5b,0x30,0x5d,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x70, 0x6f,0x70,0x28,0x29,0x3b,0x69,0x66,0x28,0x6e,0x21,0x3d,0x3d,0x74,0x29,0x7b,0x65, 0x5b,0x30,0x5d,0x3d,0x6e,0x3b,0x65,0x3a,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x3c,0x6f,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x32,0x2a,0x28,0x72,0x2b, 0x31,0x29,0x2d,0x31,0x2c,0x61,0x3d,0x65,0x5b,0x69,0x5d,0x2c,0x75,0x3d,0x69,0x2b, 0x31,0x2c,0x63,0x3d,0x65,0x5b,0x75,0x5d,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x61,0x26,0x26,0x30,0x3e,0x6b,0x28,0x61,0x2c,0x6e,0x29, 0x29,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x63,0x26,0x26,0x30,0x3e,0x6b, 0x28,0x63,0x2c,0x61,0x29,0x3f,0x28,0x65,0x5b,0x72,0x5d,0x3d,0x63,0x2c,0x65,0x5b, 0x75,0x5d,0x3d,0x6e,0x2c,0x72,0x3d,0x75,0x29,0x3a,0x28,0x65,0x5b,0x72,0x5d,0x3d, 0x61,0x2c,0x65,0x5b,0x69,0x5d,0x3d,0x6e,0x2c,0x72,0x3d,0x69,0x29,0x3b,0x65,0x6c, 0x73,0x65,0x7b,0x69,0x66,0x28,0x21,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x63,0x26,0x26,0x30,0x3e,0x6b,0x28,0x63,0x2c,0x6e,0x29,0x29,0x29,0x62,0x72, 0x65,0x61,0x6b,0x20,0x65,0x3b,0x65,0x5b,0x72,0x5d,0x3d,0x63,0x2c,0x65,0x5b,0x75, 0x5d,0x3d,0x6e,0x2c,0x72,0x3d,0x75,0x7d,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x73,0x6f,0x72,0x74,0x49,0x6e,0x64,0x65,0x78, 0x2d,0x74,0x2e,0x73,0x6f,0x72,0x74,0x49,0x6e,0x64,0x65,0x78,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x3f,0x6e,0x3a,0x65,0x2e,0x69,0x64, 0x2d,0x74,0x2e,0x69,0x64,0x7d,0x76,0x61,0x72,0x20,0x53,0x3d,0x5b,0x5d,0x2c,0x43, 0x3d,0x5b,0x5d,0x2c,0x41,0x3d,0x31,0x2c,0x54,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x50, 0x3d,0x33,0x2c,0x44,0x3d,0x21,0x31,0x2c,0x4e,0x3d,0x21,0x31,0x2c,0x49,0x3d,0x21, 0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x28,0x65,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x45,0x28,0x43,0x29,0x3b,0x6e, 0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x6a, 0x28,0x43,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x21,0x28,0x74,0x2e, 0x73,0x74,0x61,0x72,0x74,0x54,0x69,0x6d,0x65,0x3c,0x3d,0x65,0x29,0x29,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x6a,0x28,0x43,0x29,0x2c,0x74,0x2e,0x73,0x6f,0x72,0x74,0x49, 0x6e,0x64,0x65,0x78,0x3d,0x74,0x2e,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f, 0x6e,0x54,0x69,0x6d,0x65,0x2c,0x78,0x28,0x53,0x2c,0x74,0x29,0x7d,0x74,0x3d,0x45, 0x28,0x43,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x28, 0x65,0x29,0x7b,0x69,0x66,0x28,0x49,0x3d,0x21,0x31,0x2c,0x52,0x28,0x65,0x29,0x2c, 0x21,0x4e,0x29,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x45,0x28,0x53, 0x29,0x29,0x4e,0x3d,0x21,0x30,0x2c,0x72,0x28,0x46,0x29,0x3b,0x65,0x6c,0x73,0x65, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x45,0x28,0x43,0x29,0x3b,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x74,0x26,0x26,0x6f,0x28,0x4c,0x2c,0x74,0x2e,0x73,0x74,0x61,0x72, 0x74,0x54,0x69,0x6d,0x65,0x2d,0x65,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x46,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x4e,0x3d,0x21,0x31,0x2c,0x49, 0x26,0x26,0x28,0x49,0x3d,0x21,0x31,0x2c,0x69,0x28,0x29,0x29,0x2c,0x44,0x3d,0x21, 0x30,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x50,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f, 0x72,0x28,0x52,0x28,0x6e,0x29,0x2c,0x54,0x3d,0x45,0x28,0x53,0x29,0x3b,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x54,0x26,0x26,0x28,0x21,0x28,0x54,0x2e,0x65,0x78,0x70, 0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x3e,0x6e,0x29,0x7c,0x7c, 0x65,0x26,0x26,0x21,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x73, 0x68,0x6f,0x75,0x6c,0x64,0x59,0x69,0x65,0x6c,0x64,0x28,0x29,0x29,0x3b,0x29,0x7b, 0x76,0x61,0x72,0x20,0x61,0x3d,0x54,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x29,0x7b,0x54,0x2e,0x63,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x50,0x3d,0x54,0x2e,0x70, 0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x4c,0x65,0x76,0x65,0x6c,0x3b,0x76,0x61,0x72, 0x20,0x75,0x3d,0x61,0x28,0x54,0x2e,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f, 0x6e,0x54,0x69,0x6d,0x65,0x3c,0x3d,0x6e,0x29,0x3b,0x6e,0x3d,0x74,0x2e,0x75,0x6e, 0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6e,0x6f,0x77,0x28,0x29,0x2c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x75,0x3f,0x54,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x75,0x3a, 0x54,0x3d,0x3d,0x3d,0x45,0x28,0x53,0x29,0x26,0x26,0x6a,0x28,0x53,0x29,0x2c,0x52, 0x28,0x6e,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6a,0x28,0x53,0x29,0x3b,0x54,0x3d, 0x45,0x28,0x53,0x29,0x7d,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x54, 0x29,0x76,0x61,0x72,0x20,0x63,0x3d,0x21,0x30,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76, 0x61,0x72,0x20,0x6c,0x3d,0x45,0x28,0x43,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x3d,0x6c,0x26,0x26,0x6f,0x28,0x4c,0x2c,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x54, 0x69,0x6d,0x65,0x2d,0x6e,0x29,0x2c,0x63,0x3d,0x21,0x31,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x63,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x54,0x3d,0x6e, 0x75,0x6c,0x6c,0x2c,0x50,0x3d,0x72,0x2c,0x44,0x3d,0x21,0x31,0x7d,0x7d,0x76,0x61, 0x72,0x20,0x4d,0x3d,0x61,0x3b,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65, 0x5f,0x49,0x64,0x6c,0x65,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x35,0x2c, 0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x49,0x6d,0x6d,0x65,0x64, 0x69,0x61,0x74,0x65,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x31,0x2c,0x74, 0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x4c,0x6f,0x77,0x50,0x72,0x69, 0x6f,0x72,0x69,0x74,0x79,0x3d,0x34,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62, 0x6c,0x65,0x5f,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x50,0x72,0x69,0x6f,0x72,0x69,0x74, 0x79,0x3d,0x33,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x50, 0x72,0x6f,0x66,0x69,0x6c,0x69,0x6e,0x67,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x2e, 0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x55,0x73,0x65,0x72,0x42,0x6c,0x6f, 0x63,0x6b,0x69,0x6e,0x67,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x32,0x2c, 0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x63,0x61,0x6e,0x63,0x65, 0x6c,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c, 0x65,0x5f,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x45,0x78,0x65,0x63,0x75,0x74, 0x69,0x6f,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4e, 0x7c,0x7c,0x44,0x7c,0x7c,0x28,0x4e,0x3d,0x21,0x30,0x2c,0x72,0x28,0x46,0x29,0x29, 0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x67,0x65,0x74, 0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x4c, 0x65,0x76,0x65,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74, 0x61,0x62,0x6c,0x65,0x5f,0x67,0x65,0x74,0x46,0x69,0x72,0x73,0x74,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x4e,0x6f,0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x28,0x53,0x29, 0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6e,0x65,0x78, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x50,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63, 0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x76,0x61,0x72, 0x20,0x74,0x3d,0x33,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x3a,0x74,0x3d,0x50,0x7d,0x76,0x61,0x72,0x20,0x6e,0x3d,0x50,0x3b,0x50, 0x3d,0x74,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28, 0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x50,0x3d,0x6e,0x7d,0x7d,0x2c, 0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x70,0x61,0x75,0x73,0x65, 0x45,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c, 0x65,0x5f,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x50,0x61,0x69,0x6e,0x74,0x3d,0x4d, 0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x72,0x75,0x6e,0x57, 0x69,0x74,0x68,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x73,0x77,0x69,0x74,0x63,0x68, 0x28,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x20, 0x32,0x3a,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x63,0x61,0x73,0x65,0x20,0x34,0x3a, 0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x3a,0x65,0x3d,0x33,0x7d,0x76,0x61,0x72,0x20,0x6e,0x3d,0x50, 0x3b,0x50,0x3d,0x65,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x28,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x50,0x3d,0x6e,0x7d, 0x7d,0x2c,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x73,0x63,0x68, 0x65,0x64,0x75,0x6c,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x61,0x29,0x7b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x74,0x2e,0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x6e, 0x6f,0x77,0x28,0x29,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x22,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x61,0x26, 0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x61,0x3f,0x61,0x3d,0x22,0x6e,0x75,0x6d, 0x62,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x61,0x3d, 0x61,0x2e,0x64,0x65,0x6c,0x61,0x79,0x29,0x26,0x26,0x30,0x3c,0x61,0x3f,0x75,0x2b, 0x61,0x3a,0x75,0x3a,0x61,0x3d,0x75,0x2c,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20, 0x31,0x3a,0x76,0x61,0x72,0x20,0x63,0x3d,0x2d,0x31,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x3d,0x32,0x35,0x30,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x63,0x3d,0x31,0x30,0x37, 0x33,0x37,0x34,0x31,0x38,0x32,0x33,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x20,0x34,0x3a,0x63,0x3d,0x31,0x65,0x34,0x3b,0x62,0x72,0x65,0x61,0x6b, 0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x63,0x3d,0x35,0x65,0x33,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x7b,0x69,0x64,0x3a,0x41,0x2b,0x2b,0x2c, 0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x6e,0x2c,0x70,0x72,0x69,0x6f,0x72, 0x69,0x74,0x79,0x4c,0x65,0x76,0x65,0x6c,0x3a,0x65,0x2c,0x73,0x74,0x61,0x72,0x74, 0x54,0x69,0x6d,0x65,0x3a,0x61,0x2c,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f, 0x6e,0x54,0x69,0x6d,0x65,0x3a,0x63,0x3d,0x61,0x2b,0x63,0x2c,0x73,0x6f,0x72,0x74, 0x49,0x6e,0x64,0x65,0x78,0x3a,0x2d,0x31,0x7d,0x2c,0x61,0x3e,0x75,0x3f,0x28,0x65, 0x2e,0x73,0x6f,0x72,0x74,0x49,0x6e,0x64,0x65,0x78,0x3d,0x61,0x2c,0x78,0x28,0x43, 0x2c,0x65,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x45,0x28,0x53,0x29,0x26, 0x26,0x65,0x3d,0x3d,0x3d,0x45,0x28,0x43,0x29,0x26,0x26,0x28,0x49,0x3f,0x69,0x28, 0x29,0x3a,0x49,0x3d,0x21,0x30,0x2c,0x6f,0x28,0x4c,0x2c,0x61,0x2d,0x75,0x29,0x29, 0x29,0x3a,0x28,0x65,0x2e,0x73,0x6f,0x72,0x74,0x49,0x6e,0x64,0x65,0x78,0x3d,0x63, 0x2c,0x78,0x28,0x53,0x2c,0x65,0x29,0x2c,0x4e,0x7c,0x7c,0x44,0x7c,0x7c,0x28,0x4e, 0x3d,0x21,0x30,0x2c,0x72,0x28,0x46,0x29,0x29,0x29,0x2c,0x65,0x7d,0x2c,0x74,0x2e, 0x75,0x6e,0x73,0x74,0x61,0x62,0x6c,0x65,0x5f,0x77,0x72,0x61,0x70,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x50,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x50,0x3b,0x50,0x3d,0x74,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c, 0x6c,0x79,0x7b,0x50,0x3d,0x6e,0x7d,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x28,0x39,0x34,0x29,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x6f,0x3d,0x36,0x30,0x31,0x30,0x33, 0x3b,0x69,0x66,0x28,0x74,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x36, 0x30,0x31,0x30,0x37,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26, 0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x29,0x7b,0x76,0x61,0x72, 0x20,0x69,0x3d,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x3b,0x6f,0x3d, 0x69,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x22,0x29,0x2c,0x74,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x69,0x28, 0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x22, 0x29,0x7d,0x76,0x61,0x72,0x20,0x61,0x3d,0x72,0x2e,0x5f,0x5f,0x53,0x45,0x43,0x52, 0x45,0x54,0x5f,0x49,0x4e,0x54,0x45,0x52,0x4e,0x41,0x4c,0x53,0x5f,0x44,0x4f,0x5f, 0x4e,0x4f,0x54,0x5f,0x55,0x53,0x45,0x5f,0x4f,0x52,0x5f,0x59,0x4f,0x55,0x5f,0x57, 0x49,0x4c,0x4c,0x5f,0x42,0x45,0x5f,0x46,0x49,0x52,0x45,0x44,0x2e,0x52,0x65,0x61, 0x63,0x74,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x4f,0x77,0x6e,0x65,0x72,0x2c,0x75, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x2c,0x63,0x3d,0x7b,0x6b,0x65,0x79,0x3a,0x21,0x30,0x2c,0x72,0x65,0x66,0x3a,0x21, 0x30,0x2c,0x5f,0x5f,0x73,0x65,0x6c,0x66,0x3a,0x21,0x30,0x2c,0x5f,0x5f,0x73,0x6f, 0x75,0x72,0x63,0x65,0x3a,0x21,0x30,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x2c,0x69,0x3d,0x7b,0x7d,0x2c,0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x73,0x3d,0x6e, 0x75,0x6c,0x6c,0x3b,0x66,0x6f,0x72,0x28,0x72,0x20,0x69,0x6e,0x20,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6c,0x3d,0x22,0x22,0x2b,0x6e, 0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x6b,0x65,0x79, 0x26,0x26,0x28,0x6c,0x3d,0x22,0x22,0x2b,0x74,0x2e,0x6b,0x65,0x79,0x29,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x2e,0x72,0x65,0x66,0x26,0x26,0x28, 0x73,0x3d,0x74,0x2e,0x72,0x65,0x66,0x29,0x2c,0x74,0x29,0x75,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x74,0x2c,0x72,0x29,0x26,0x26,0x21,0x63,0x2e,0x68,0x61,0x73,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x72,0x29,0x26,0x26,0x28,0x69, 0x5b,0x72,0x5d,0x3d,0x74,0x5b,0x72,0x5d,0x29,0x3b,0x69,0x66,0x28,0x65,0x26,0x26, 0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x29,0x66, 0x6f,0x72,0x28,0x72,0x20,0x69,0x6e,0x20,0x74,0x3d,0x65,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x29,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x69,0x5b,0x72,0x5d,0x26,0x26,0x28,0x69,0x5b,0x72,0x5d,0x3d,0x74,0x5b, 0x72,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x24,0x24,0x74,0x79,0x70, 0x65,0x6f,0x66,0x3a,0x6f,0x2c,0x74,0x79,0x70,0x65,0x3a,0x65,0x2c,0x6b,0x65,0x79, 0x3a,0x6c,0x2c,0x72,0x65,0x66,0x3a,0x73,0x2c,0x70,0x72,0x6f,0x70,0x73,0x3a,0x69, 0x2c,0x5f,0x6f,0x77,0x6e,0x65,0x72,0x3a,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x7d,0x7d,0x74,0x2e,0x6a,0x73,0x78,0x3d,0x6c,0x2c,0x74,0x2e,0x6a,0x73,0x78, 0x73,0x3d,0x6c,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x35,0x36,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29,0x7b,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x29,0x7b,0x7d,0x69,0x2e,0x72,0x65,0x73, 0x65,0x74,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x43,0x61,0x63,0x68,0x65,0x3d,0x6f, 0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x7b,0x69,0x66, 0x28,0x61,0x21,0x3d,0x3d,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x6e,0x65, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x43,0x61,0x6c,0x6c,0x69,0x6e,0x67, 0x20,0x50,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x20,0x76,0x61,0x6c,0x69,0x64, 0x61,0x74,0x6f,0x72,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x69, 0x73,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, 0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x60,0x70,0x72,0x6f,0x70,0x2d,0x74,0x79,0x70, 0x65,0x73,0x60,0x20,0x70,0x61,0x63,0x6b,0x61,0x67,0x65,0x2e,0x20,0x55,0x73,0x65, 0x20,0x50,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x2e,0x63,0x68,0x65,0x63,0x6b, 0x50,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x28,0x29,0x20,0x74,0x6f,0x20,0x63, 0x61,0x6c,0x6c,0x20,0x74,0x68,0x65,0x6d,0x2e,0x20,0x52,0x65,0x61,0x64,0x20,0x6d, 0x6f,0x72,0x65,0x20,0x61,0x74,0x20,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x66,0x62, 0x2e,0x6d,0x65,0x2f,0x75,0x73,0x65,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x70,0x72, 0x6f,0x70,0x2d,0x74,0x79,0x70,0x65,0x73,0x22,0x29,0x3b,0x74,0x68,0x72,0x6f,0x77, 0x20,0x75,0x2e,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x49,0x6e,0x76,0x61,0x72,0x69,0x61, 0x6e,0x74,0x20,0x56,0x69,0x6f,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x75,0x7d, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x65,0x2e,0x69,0x73,0x52,0x65,0x71,0x75,0x69, 0x72,0x65,0x64,0x3d,0x65,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x61,0x72,0x72, 0x61,0x79,0x3a,0x65,0x2c,0x62,0x6f,0x6f,0x6c,0x3a,0x65,0x2c,0x66,0x75,0x6e,0x63, 0x3a,0x65,0x2c,0x6e,0x75,0x6d,0x62,0x65,0x72,0x3a,0x65,0x2c,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x3a,0x65,0x2c,0x73,0x74,0x72,0x69,0x6e,0x67,0x3a,0x65,0x2c,0x73,0x79, 0x6d,0x62,0x6f,0x6c,0x3a,0x65,0x2c,0x61,0x6e,0x79,0x3a,0x65,0x2c,0x61,0x72,0x72, 0x61,0x79,0x4f,0x66,0x3a,0x74,0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65, 0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3a,0x65,0x2c,0x69, 0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x4f,0x66,0x3a,0x74,0x2c,0x6e,0x6f,0x64,0x65, 0x3a,0x65,0x2c,0x6f,0x62,0x6a,0x65,0x63,0x74,0x4f,0x66,0x3a,0x74,0x2c,0x6f,0x6e, 0x65,0x4f,0x66,0x3a,0x74,0x2c,0x6f,0x6e,0x65,0x4f,0x66,0x54,0x79,0x70,0x65,0x3a, 0x74,0x2c,0x73,0x68,0x61,0x70,0x65,0x3a,0x74,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a, 0x74,0x2c,0x63,0x68,0x65,0x63,0x6b,0x50,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73, 0x3a,0x69,0x2c,0x72,0x65,0x73,0x65,0x74,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x43, 0x61,0x63,0x68,0x65,0x3a,0x6f,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x2e,0x50,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x3d,0x6e,0x2c,0x6e,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x22,0x53,0x45,0x43,0x52,0x45,0x54,0x5f, 0x44,0x4f,0x5f,0x4e,0x4f,0x54,0x5f,0x50,0x41,0x53,0x53,0x5f,0x54,0x48,0x49,0x53, 0x5f,0x4f,0x52,0x5f,0x59,0x4f,0x55,0x5f,0x57,0x49,0x4c,0x4c,0x5f,0x42,0x45,0x5f, 0x46,0x49,0x52,0x45,0x44,0x22,0x7d,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66, 0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x2c,0x22,0x5f, 0x5f,0x65,0x73,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x21,0x30,0x7d,0x29,0x2c,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x65, 0x29,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b, 0x6e,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x41,0x72,0x72,0x61,0x79,0x28, 0x65,0x29,0x2c,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x65,0x3b,0x72,0x2b,0x2b,0x29,0x6e, 0x5b,0x72,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x72,0x5d, 0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e,0x29,0x3b,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26,0x28,0x6f,0x3d,0x74,0x29,0x7d,0x7d,0x29,0x29, 0x2c,0x6f,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x30,0x2c,0x69,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x29,0x28,0x72,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x72, 0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x35,0x39,0x29,0x2c,0x69,0x3d,0x28,0x72,0x3d,0x6f, 0x29,0x26,0x26,0x72,0x2e,0x5f,0x5f,0x65,0x73,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x3f, 0x72,0x3a,0x7b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x7d,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x2c,0x22,0x5f,0x5f,0x65,0x73,0x4d,0x6f,0x64, 0x75,0x6c,0x65,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x21,0x30,0x7d,0x29, 0x2c,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x74,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29,0x7b,0x76, 0x61,0x72,0x20,0x75,0x3d,0x6f,0x7c,0x7c,0x22,0x3c,0x3c,0x61,0x6e,0x6f,0x6e,0x79, 0x6d,0x6f,0x75,0x73,0x3e,0x3e,0x22,0x2c,0x63,0x3d,0x61,0x7c,0x7c,0x72,0x3b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x5b,0x72,0x5d,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3f,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28, 0x22,0x52,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x22,0x2b,0x69,0x2b,0x22,0x20, 0x60,0x22,0x2b,0x63,0x2b,0x22,0x60,0x20,0x77,0x61,0x73,0x20,0x6e,0x6f,0x74,0x20, 0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x65,0x64,0x20,0x69,0x6e,0x20,0x60,0x22,0x2b, 0x75,0x2b,0x22,0x60,0x2e,0x22,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6c,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x73,0x3d,0x41,0x72,0x72,0x61,0x79,0x28, 0x6c,0x3e,0x36,0x3f,0x6c,0x2d,0x36,0x3a,0x30,0x29,0x2c,0x66,0x3d,0x36,0x3b,0x66, 0x3c,0x6c,0x3b,0x66,0x2b,0x2b,0x29,0x73,0x5b,0x66,0x2d,0x36,0x5d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x66,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30, 0x2c,0x5b,0x6e,0x2c,0x72,0x2c,0x75,0x2c,0x69,0x2c,0x63,0x5d,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x73,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e, 0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x21,0x31,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x69,0x73,0x52,0x65,0x71,0x75,0x69,0x72,0x65, 0x64,0x3d,0x74,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x21,0x30, 0x29,0x2c,0x6e,0x7d,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x74, 0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x7c, 0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61, 0x79,0x5d,0x22,0x3d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x6e,0x28,0x31,0x36,0x32,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f, 0x72,0x2c,0x6f,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72, 0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22, 0x29,0x3a,0x36,0x30,0x31,0x30,0x33,0x2c,0x69,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x6f, 0x72,0x74,0x61,0x6c,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x36,0x2c,0x61,0x3d,0x72, 0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61, 0x63,0x74,0x2e,0x66,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x22,0x29,0x3a,0x36,0x30, 0x31,0x30,0x37,0x2c,0x75,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66, 0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x74,0x72,0x69,0x63,0x74, 0x5f,0x6d,0x6f,0x64,0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x38,0x2c,0x63,0x3d, 0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65, 0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x22,0x29,0x3a,0x36, 0x30,0x31,0x31,0x34,0x2c,0x6c,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e, 0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x76,0x69, 0x64,0x65,0x72,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x39,0x2c,0x73,0x3d,0x72,0x3f, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63, 0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x22,0x29,0x3a,0x36,0x30,0x31,0x31, 0x30,0x2c,0x66,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72, 0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x61,0x73,0x79,0x6e,0x63,0x5f,0x6d,0x6f, 0x64,0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x31,0x2c,0x64,0x3d,0x72,0x3f,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74, 0x2e,0x63,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5f,0x6d,0x6f,0x64,0x65, 0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x31,0x2c,0x70,0x3d,0x72,0x3f,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x66, 0x6f,0x72,0x77,0x61,0x72,0x64,0x5f,0x72,0x65,0x66,0x22,0x29,0x3a,0x36,0x30,0x31, 0x31,0x32,0x2c,0x68,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f, 0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x73, 0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x33,0x2c,0x76,0x3d,0x72,0x3f,0x53,0x79, 0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x73,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x5f,0x6c,0x69,0x73,0x74,0x22,0x29,0x3a, 0x36,0x30,0x31,0x32,0x30,0x2c,0x67,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6d,0x65,0x6d,0x6f, 0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x35,0x2c,0x6d,0x3d,0x72,0x3f,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6c, 0x61,0x7a,0x79,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x36,0x2c,0x62,0x3d,0x72,0x3f, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63, 0x74,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x29,0x3a,0x36,0x30,0x31,0x32,0x31,0x2c, 0x79,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22, 0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x75,0x6e,0x64,0x61,0x6d,0x65,0x6e,0x74,0x61, 0x6c,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x37,0x2c,0x5f,0x3d,0x72,0x3f,0x53,0x79, 0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,0x22,0x29,0x3a,0x36,0x30,0x31,0x31, 0x38,0x2c,0x77,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72, 0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x63,0x6f,0x70,0x65,0x22,0x29,0x3a, 0x36,0x30,0x31,0x31,0x39,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x29, 0x7b,0x63,0x61,0x73,0x65,0x20,0x6f,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65, 0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x66,0x3a, 0x63,0x61,0x73,0x65,0x20,0x64,0x3a,0x63,0x61,0x73,0x65,0x20,0x61,0x3a,0x63,0x61, 0x73,0x65,0x20,0x63,0x3a,0x63,0x61,0x73,0x65,0x20,0x75,0x3a,0x63,0x61,0x73,0x65, 0x20,0x68,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x3d,0x65,0x26,0x26, 0x65,0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73,0x65, 0x20,0x73,0x3a,0x63,0x61,0x73,0x65,0x20,0x70,0x3a,0x63,0x61,0x73,0x65,0x20,0x6d, 0x3a,0x63,0x61,0x73,0x65,0x20,0x67,0x3a,0x63,0x61,0x73,0x65,0x20,0x6c,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x63,0x61,0x73,0x65,0x20,0x69, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x78,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x64,0x7d,0x74,0x2e,0x41,0x73,0x79,0x6e, 0x63,0x4d,0x6f,0x64,0x65,0x3d,0x66,0x2c,0x74,0x2e,0x43,0x6f,0x6e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x64,0x2c,0x74,0x2e,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3d,0x73,0x2c,0x74, 0x2e,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72, 0x3d,0x6c,0x2c,0x74,0x2e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x6f,0x2c,0x74, 0x2e,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x3d,0x70,0x2c,0x74,0x2e, 0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x61,0x2c,0x74,0x2e,0x4c,0x61,0x7a, 0x79,0x3d,0x6d,0x2c,0x74,0x2e,0x4d,0x65,0x6d,0x6f,0x3d,0x67,0x2c,0x74,0x2e,0x50, 0x6f,0x72,0x74,0x61,0x6c,0x3d,0x69,0x2c,0x74,0x2e,0x50,0x72,0x6f,0x66,0x69,0x6c, 0x65,0x72,0x3d,0x63,0x2c,0x74,0x2e,0x53,0x74,0x72,0x69,0x63,0x74,0x4d,0x6f,0x64, 0x65,0x3d,0x75,0x2c,0x74,0x2e,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x3d,0x68, 0x2c,0x74,0x2e,0x69,0x73,0x41,0x73,0x79,0x6e,0x63,0x4d,0x6f,0x64,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x78,0x28,0x65,0x29,0x7c,0x7c,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x66, 0x7d,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x4d,0x6f,0x64,0x65,0x3d,0x78,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28, 0x65,0x29,0x3d,0x3d,0x3d,0x73,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x28,0x65,0x29,0x3d,0x3d,0x3d,0x6c,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x26,0x26,0x65,0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66, 0x3d,0x3d,0x3d,0x6f,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x46,0x6f,0x72,0x77,0x61,0x72, 0x64,0x52,0x65,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x70, 0x7d,0x2c,0x74,0x2e,0x69,0x73,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x61,0x7d,0x2c,0x74,0x2e,0x69,0x73, 0x4c,0x61,0x7a,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x6d, 0x7d,0x2c,0x74,0x2e,0x69,0x73,0x4d,0x65,0x6d,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28, 0x65,0x29,0x3d,0x3d,0x3d,0x67,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x50,0x6f,0x72,0x74, 0x61,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x69,0x7d,0x2c, 0x74,0x2e,0x69,0x73,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x63,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x53,0x74, 0x72,0x69,0x63,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29, 0x3d,0x3d,0x3d,0x75,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x53,0x75,0x73,0x70,0x65,0x6e, 0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x68,0x7d,0x2c, 0x74,0x2e,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x54,0x79,0x70,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x64,0x7c, 0x7c,0x65,0x3d,0x3d,0x3d,0x63,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x75,0x7c,0x7c,0x65, 0x3d,0x3d,0x3d,0x68,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x76,0x7c,0x7c,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6d,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x67,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6c,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x73,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x70,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x79,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x5f,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x77,0x7c,0x7c,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x62,0x29,0x7d,0x2c,0x74,0x2e, 0x74,0x79,0x70,0x65,0x4f,0x66,0x3d,0x4f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x6e,0x28,0x31,0x36,0x34,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66, 0x6f,0x72,0x2c,0x6f,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f, 0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x33,0x2c,0x69,0x3d,0x72,0x3f,0x53,0x79,0x6d, 0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70, 0x6f,0x72,0x74,0x61,0x6c,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x36,0x2c,0x61,0x3d, 0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65, 0x61,0x63,0x74,0x2e,0x66,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x22,0x29,0x3a,0x36, 0x30,0x31,0x30,0x37,0x2c,0x75,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e, 0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x74,0x72,0x69,0x63, 0x74,0x5f,0x6d,0x6f,0x64,0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x38,0x2c,0x63, 0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72, 0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x22,0x29,0x3a, 0x36,0x30,0x31,0x31,0x34,0x2c,0x6c,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x76, 0x69,0x64,0x65,0x72,0x22,0x29,0x3a,0x36,0x30,0x31,0x30,0x39,0x2c,0x73,0x3d,0x72, 0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61, 0x63,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x22,0x29,0x3a,0x36,0x30,0x31, 0x31,0x30,0x2c,0x66,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f, 0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x61,0x73,0x79,0x6e,0x63,0x5f,0x6d, 0x6f,0x64,0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x31,0x2c,0x64,0x3d,0x72,0x3f, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63, 0x74,0x2e,0x63,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5f,0x6d,0x6f,0x64, 0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x31,0x2c,0x70,0x3d,0x72,0x3f,0x53,0x79, 0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x5f,0x72,0x65,0x66,0x22,0x29,0x3a,0x36,0x30, 0x31,0x31,0x32,0x2c,0x68,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66, 0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e, 0x73,0x65,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x33,0x2c,0x76,0x3d,0x72,0x3f,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74, 0x2e,0x73,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x5f,0x6c,0x69,0x73,0x74,0x22,0x29, 0x3a,0x36,0x30,0x31,0x32,0x30,0x2c,0x67,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f, 0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6d,0x65,0x6d, 0x6f,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x35,0x2c,0x6d,0x3d,0x72,0x3f,0x53,0x79, 0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x6c,0x61,0x7a,0x79,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x36,0x2c,0x62,0x3d,0x72, 0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61, 0x63,0x74,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x29,0x3a,0x36,0x30,0x31,0x32,0x31, 0x2c,0x79,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28, 0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x75,0x6e,0x64,0x61,0x6d,0x65,0x6e,0x74, 0x61,0x6c,0x22,0x29,0x3a,0x36,0x30,0x31,0x31,0x37,0x2c,0x5f,0x3d,0x72,0x3f,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74, 0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,0x22,0x29,0x3a,0x36,0x30,0x31, 0x31,0x38,0x2c,0x77,0x3d,0x72,0x3f,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f, 0x72,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x63,0x6f,0x70,0x65,0x22,0x29, 0x3a,0x36,0x30,0x31,0x31,0x39,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x4f,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x24, 0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74, 0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x6f,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x65,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x66, 0x3a,0x63,0x61,0x73,0x65,0x20,0x64,0x3a,0x63,0x61,0x73,0x65,0x20,0x61,0x3a,0x63, 0x61,0x73,0x65,0x20,0x63,0x3a,0x63,0x61,0x73,0x65,0x20,0x75,0x3a,0x63,0x61,0x73, 0x65,0x20,0x68,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x3d,0x65,0x26, 0x26,0x65,0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x73,0x3a,0x63,0x61,0x73,0x65,0x20,0x70,0x3a,0x63,0x61,0x73,0x65,0x20, 0x6d,0x3a,0x63,0x61,0x73,0x65,0x20,0x67,0x3a,0x63,0x61,0x73,0x65,0x20,0x6c,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x63,0x61,0x73,0x65,0x20, 0x69,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x64,0x7d,0x74,0x2e,0x41,0x73,0x79, 0x6e,0x63,0x4d,0x6f,0x64,0x65,0x3d,0x66,0x2c,0x74,0x2e,0x43,0x6f,0x6e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x64,0x2c,0x74,0x2e,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3d,0x73,0x2c, 0x74,0x2e,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65, 0x72,0x3d,0x6c,0x2c,0x74,0x2e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x6f,0x2c, 0x74,0x2e,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x3d,0x70,0x2c,0x74, 0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x61,0x2c,0x74,0x2e,0x4c,0x61, 0x7a,0x79,0x3d,0x6d,0x2c,0x74,0x2e,0x4d,0x65,0x6d,0x6f,0x3d,0x67,0x2c,0x74,0x2e, 0x50,0x6f,0x72,0x74,0x61,0x6c,0x3d,0x69,0x2c,0x74,0x2e,0x50,0x72,0x6f,0x66,0x69, 0x6c,0x65,0x72,0x3d,0x63,0x2c,0x74,0x2e,0x53,0x74,0x72,0x69,0x63,0x74,0x4d,0x6f, 0x64,0x65,0x3d,0x75,0x2c,0x74,0x2e,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x3d, 0x68,0x2c,0x74,0x2e,0x69,0x73,0x41,0x73,0x79,0x6e,0x63,0x4d,0x6f,0x64,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x78,0x28,0x65,0x29,0x7c,0x7c,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d, 0x66,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x4d,0x6f,0x64,0x65,0x3d,0x78,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x28,0x65,0x29,0x3d,0x3d,0x3d,0x73,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x6c,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x65,0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f, 0x66,0x3d,0x3d,0x3d,0x6f,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x46,0x6f,0x72,0x77,0x61, 0x72,0x64,0x52,0x65,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d, 0x70,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x61,0x7d,0x2c,0x74,0x2e,0x69, 0x73,0x4c,0x61,0x7a,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d, 0x6d,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x4d,0x65,0x6d,0x6f,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x28,0x65,0x29,0x3d,0x3d,0x3d,0x67,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x50,0x6f,0x72, 0x74,0x61,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x69,0x7d, 0x2c,0x74,0x2e,0x69,0x73,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x63,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x53, 0x74,0x72,0x69,0x63,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65, 0x29,0x3d,0x3d,0x3d,0x75,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x53,0x75,0x73,0x70,0x65, 0x6e,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x68,0x7d, 0x2c,0x74,0x2e,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x54,0x79,0x70,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x64, 0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x63,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x75,0x7c,0x7c, 0x65,0x3d,0x3d,0x3d,0x68,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x76,0x7c,0x7c,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6d,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x67,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6c,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x73,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x70,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x79,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x5f,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x77,0x7c,0x7c,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x62,0x29,0x7d,0x2c,0x74, 0x2e,0x74,0x79,0x70,0x65,0x4f,0x66,0x3d,0x4f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x33,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30,0x37,0x29,0x2c,0x69,0x3d,0x6e, 0x28,0x31,0x36,0x36,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x31,0x31,0x33,0x29,0x3b,0x76, 0x61,0x72,0x20,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x69,0x28,0x74, 0x29,0x2c,0x75,0x3d,0x6f,0x28,0x69,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x2c,0x6e,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x72,0x2e,0x65,0x78,0x74,0x65,0x6e,0x64,0x28,0x75,0x2c,0x69, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x6e,0x29,0x2c,0x72,0x2e, 0x65,0x78,0x74,0x65,0x6e,0x64,0x28,0x75,0x2c,0x6e,0x29,0x2c,0x75,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x61,0x28,0x74,0x2c,0x6e,0x29, 0x29,0x7d,0x2c,0x75,0x7d,0x28,0x6e,0x28,0x37,0x30,0x29,0x29,0x3b,0x75,0x2e,0x41, 0x78,0x69,0x6f,0x73,0x3d,0x69,0x2c,0x75,0x2e,0x43,0x61,0x6e,0x63,0x65,0x6c,0x3d, 0x6e,0x28,0x37,0x31,0x29,0x2c,0x75,0x2e,0x43,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f, 0x6b,0x65,0x6e,0x3d,0x6e,0x28,0x31,0x38,0x30,0x29,0x2c,0x75,0x2e,0x69,0x73,0x43, 0x61,0x6e,0x63,0x65,0x6c,0x3d,0x6e,0x28,0x31,0x31,0x32,0x29,0x2c,0x75,0x2e,0x56, 0x45,0x52,0x53,0x49,0x4f,0x4e,0x3d,0x6e,0x28,0x31,0x31,0x34,0x29,0x2e,0x76,0x65, 0x72,0x73,0x69,0x6f,0x6e,0x2c,0x75,0x2e,0x61,0x6c,0x6c,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x50, 0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x28,0x65,0x29,0x7d,0x2c,0x75, 0x2e,0x73,0x70,0x72,0x65,0x61,0x64,0x3d,0x6e,0x28,0x31,0x38,0x31,0x29,0x2c,0x75, 0x2e,0x69,0x73,0x41,0x78,0x69,0x6f,0x73,0x45,0x72,0x72,0x6f,0x72,0x3d,0x6e,0x28, 0x31,0x38,0x32,0x29,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x75, 0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x3d,0x75,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x29,0x2c,0x6f, 0x3d,0x6e,0x28,0x31,0x30,0x38,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x36,0x37,0x29, 0x2c,0x61,0x3d,0x6e,0x28,0x31,0x36,0x38,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x31,0x31, 0x33,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x31,0x37,0x39,0x29,0x2c,0x6c,0x3d,0x63,0x2e, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x6f,0x72,0x73,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x73,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x73,0x3d,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e, 0x74,0x65,0x72,0x63,0x65,0x70,0x74,0x6f,0x72,0x73,0x3d,0x7b,0x72,0x65,0x71,0x75, 0x65,0x73,0x74,0x3a,0x6e,0x65,0x77,0x20,0x69,0x2c,0x72,0x65,0x73,0x70,0x6f,0x6e, 0x73,0x65,0x3a,0x6e,0x65,0x77,0x20,0x69,0x7d,0x7d,0x73,0x2e,0x70,0x72,0x6f,0x74, 0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x28,0x65, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x7c,0x7c,0x7b, 0x7d,0x29,0x2e,0x75,0x72,0x6c,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x30,0x5d,0x3a,0x65,0x3d,0x65,0x7c,0x7c,0x7b,0x7d,0x2c,0x28,0x65,0x3d,0x75, 0x28,0x74,0x68,0x69,0x73,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x2c,0x65, 0x29,0x29,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3f,0x65,0x2e,0x6d,0x65,0x74,0x68, 0x6f,0x64,0x3d,0x65,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x74,0x6f,0x4c,0x6f, 0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3f,0x65, 0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x74,0x68,0x69,0x73,0x2e,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x74,0x6f,0x4c, 0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3a,0x65,0x2e,0x6d,0x65,0x74, 0x68,0x6f,0x64,0x3d,0x22,0x67,0x65,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x3b,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x26,0x26,0x63,0x2e,0x61,0x73,0x73, 0x65,0x72,0x74,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x28,0x74,0x2c,0x7b,0x73,0x69, 0x6c,0x65,0x6e,0x74,0x4a,0x53,0x4f,0x4e,0x50,0x61,0x72,0x73,0x69,0x6e,0x67,0x3a, 0x6c,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x28,0x6c, 0x2e,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x29,0x2c,0x66,0x6f,0x72,0x63,0x65,0x64, 0x4a,0x53,0x4f,0x4e,0x50,0x61,0x72,0x73,0x69,0x6e,0x67,0x3a,0x6c,0x2e,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x28,0x6c,0x2e,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x29,0x2c,0x63,0x6c,0x61,0x72,0x69,0x66,0x79,0x54,0x69,0x6d, 0x65,0x6f,0x75,0x74,0x45,0x72,0x72,0x6f,0x72,0x3a,0x6c,0x2e,0x74,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x28,0x6c,0x2e,0x62,0x6f,0x6f,0x6c,0x65, 0x61,0x6e,0x29,0x7d,0x2c,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5b, 0x5d,0x2c,0x72,0x3d,0x21,0x30,0x3b,0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x74,0x65, 0x72,0x63,0x65,0x70,0x74,0x6f,0x72,0x73,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x72,0x75,0x6e,0x57, 0x68,0x65,0x6e,0x26,0x26,0x21,0x31,0x3d,0x3d,0x3d,0x74,0x2e,0x72,0x75,0x6e,0x57, 0x68,0x65,0x6e,0x28,0x65,0x29,0x7c,0x7c,0x28,0x72,0x3d,0x72,0x26,0x26,0x74,0x2e, 0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x6f,0x75,0x73,0x2c,0x6e,0x2e,0x75,0x6e, 0x73,0x68,0x69,0x66,0x74,0x28,0x74,0x2e,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65, 0x64,0x2c,0x74,0x2e,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x29,0x29,0x7d,0x29, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x2c,0x69,0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28, 0x74,0x68,0x69,0x73,0x2e,0x69,0x6e,0x74,0x65,0x72,0x63,0x65,0x70,0x74,0x6f,0x72, 0x73,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x69,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x2e,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c, 0x65,0x64,0x2c,0x65,0x2e,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x29,0x7d,0x29, 0x29,0x2c,0x21,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x5b,0x61,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x30,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x41,0x72,0x72,0x61,0x79, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x75,0x6e,0x73,0x68,0x69, 0x66,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x73,0x2c,0x6e,0x29,0x2c,0x73,0x3d, 0x73,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x69,0x29,0x2c,0x6f,0x3d,0x50,0x72, 0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x65,0x29, 0x3b,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x6f,0x3d,0x6f,0x2e,0x74, 0x68,0x65,0x6e,0x28,0x73,0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x2c,0x73,0x2e, 0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x66,0x3d,0x65,0x3b,0x6e,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x6e, 0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x2c,0x70,0x3d,0x6e,0x2e,0x73,0x68,0x69, 0x66,0x74,0x28,0x29,0x3b,0x74,0x72,0x79,0x7b,0x66,0x3d,0x64,0x28,0x66,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x68,0x29,0x7b,0x70,0x28,0x68,0x29,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x7d,0x7d,0x74,0x72,0x79,0x7b,0x6f,0x3d,0x61,0x28,0x66,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x68,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x68, 0x29,0x7d,0x66,0x6f,0x72,0x28,0x3b,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x29,0x6f,0x3d,0x6f,0x2e,0x74,0x68,0x65,0x6e,0x28,0x69,0x2e,0x73,0x68,0x69,0x66, 0x74,0x28,0x29,0x2c,0x69,0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x2c,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x67,0x65,0x74,0x55,0x72,0x69,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x75,0x28,0x74,0x68,0x69,0x73,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73, 0x2c,0x65,0x29,0x2c,0x6f,0x28,0x65,0x2e,0x75,0x72,0x6c,0x2c,0x65,0x2e,0x70,0x61, 0x72,0x61,0x6d,0x73,0x2c,0x65,0x2e,0x70,0x61,0x72,0x61,0x6d,0x73,0x53,0x65,0x72, 0x69,0x61,0x6c,0x69,0x7a,0x65,0x72,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65, 0x28,0x2f,0x5e,0x5c,0x3f,0x2f,0x2c,0x22,0x22,0x29,0x7d,0x2c,0x72,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x5b,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x22,0x2c, 0x22,0x67,0x65,0x74,0x22,0x2c,0x22,0x68,0x65,0x61,0x64,0x22,0x2c,0x22,0x6f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x5b,0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65, 0x71,0x75,0x65,0x73,0x74,0x28,0x75,0x28,0x6e,0x7c,0x7c,0x7b,0x7d,0x2c,0x7b,0x6d, 0x65,0x74,0x68,0x6f,0x64,0x3a,0x65,0x2c,0x75,0x72,0x6c,0x3a,0x74,0x2c,0x64,0x61, 0x74,0x61,0x3a,0x28,0x6e,0x7c,0x7c,0x7b,0x7d,0x29,0x2e,0x64,0x61,0x74,0x61,0x7d, 0x29,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x72,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x5b,0x22,0x70,0x6f,0x73,0x74,0x22,0x2c,0x22,0x70,0x75,0x74,0x22,0x2c,0x22, 0x70,0x61,0x74,0x63,0x68,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x5b,0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x28,0x75,0x28,0x72,0x7c,0x7c,0x7b,0x7d,0x2c, 0x7b,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x65,0x2c,0x75,0x72,0x6c,0x3a,0x74,0x2c, 0x64,0x61,0x74,0x61,0x3a,0x6e,0x7d,0x29,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x73,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20, 0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x33,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x3d,0x5b, 0x5d,0x7d,0x6f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x75,0x73, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x68,0x61, 0x6e,0x64,0x6c,0x65,0x72,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x66,0x75,0x6c, 0x66,0x69,0x6c,0x6c,0x65,0x64,0x3a,0x65,0x2c,0x72,0x65,0x6a,0x65,0x63,0x74,0x65, 0x64,0x3a,0x74,0x2c,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x6f,0x75,0x73,0x3a, 0x21,0x21,0x6e,0x26,0x26,0x6e,0x2e,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x6f, 0x75,0x73,0x2c,0x72,0x75,0x6e,0x57,0x68,0x65,0x6e,0x3a,0x6e,0x3f,0x6e,0x2e,0x72, 0x75,0x6e,0x57,0x68,0x65,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2d,0x31,0x7d,0x2c,0x6f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x65,0x6a,0x65,0x63,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72, 0x73,0x5b,0x65,0x5d,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x72,0x73,0x5b,0x65,0x5d,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c,0x6f, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x74,0x68,0x69,0x73,0x2e,0x68,0x61, 0x6e,0x64,0x6c,0x65,0x72,0x73,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x26,0x26,0x65,0x28, 0x74,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x6f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x31,0x36,0x39,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x31,0x32,0x29,0x2c,0x61, 0x3d,0x6e,0x28,0x37,0x30,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x37,0x31,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x65,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b,0x65,0x6e,0x26,0x26,0x65, 0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x54,0x6f,0x6b,0x65,0x6e,0x2e,0x74,0x68,0x72, 0x6f,0x77,0x49,0x66,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x65,0x64,0x28,0x29,0x2c, 0x65,0x2e,0x73,0x69,0x67,0x6e,0x61,0x6c,0x26,0x26,0x65,0x2e,0x73,0x69,0x67,0x6e, 0x61,0x6c,0x2e,0x61,0x62,0x6f,0x72,0x74,0x65,0x64,0x29,0x74,0x68,0x72,0x6f,0x77, 0x20,0x6e,0x65,0x77,0x20,0x75,0x28,0x22,0x63,0x61,0x6e,0x63,0x65,0x6c,0x65,0x64, 0x22,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x63,0x28,0x65,0x29,0x2c,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x3d,0x65, 0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x7c,0x7c,0x7b,0x7d,0x2c,0x65,0x2e,0x64, 0x61,0x74,0x61,0x3d,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x65,0x2e,0x64, 0x61,0x74,0x61,0x2c,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x2c,0x65,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x52,0x65,0x71,0x75,0x65,0x73,0x74, 0x29,0x2c,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x3d,0x72,0x2e,0x6d,0x65, 0x72,0x67,0x65,0x28,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x2e,0x63,0x6f, 0x6d,0x6d,0x6f,0x6e,0x7c,0x7c,0x7b,0x7d,0x2c,0x65,0x2e,0x68,0x65,0x61,0x64,0x65, 0x72,0x73,0x5b,0x65,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x5d,0x7c,0x7c,0x7b,0x7d, 0x2c,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x29,0x2c,0x72,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x5b,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x22,0x2c, 0x22,0x67,0x65,0x74,0x22,0x2c,0x22,0x68,0x65,0x61,0x64,0x22,0x2c,0x22,0x70,0x6f, 0x73,0x74,0x22,0x2c,0x22,0x70,0x75,0x74,0x22,0x2c,0x22,0x70,0x61,0x74,0x63,0x68, 0x22,0x2c,0x22,0x63,0x6f,0x6d,0x6d,0x6f,0x6e,0x22,0x5d,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x64,0x65,0x6c,0x65,0x74,0x65,0x20, 0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x5b,0x74,0x5d,0x7d,0x29,0x29,0x2c, 0x28,0x65,0x2e,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x7c,0x7c,0x61,0x2e,0x61,0x64, 0x61,0x70,0x74,0x65,0x72,0x29,0x28,0x65,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x63,0x28,0x65,0x29,0x2c,0x74,0x2e,0x64,0x61,0x74,0x61,0x3d,0x6f, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74,0x2e,0x64,0x61,0x74,0x61,0x2c,0x74, 0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x2c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x2c,0x74,0x7d, 0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x74,0x29,0x7c,0x7c,0x28,0x63,0x28,0x65, 0x29,0x2c,0x74,0x26,0x26,0x74,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x26, 0x26,0x28,0x74,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x64,0x61,0x74, 0x61,0x3d,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74,0x2e,0x72,0x65,0x73, 0x70,0x6f,0x6e,0x73,0x65,0x2e,0x64,0x61,0x74,0x61,0x2c,0x74,0x2e,0x72,0x65,0x73, 0x70,0x6f,0x6e,0x73,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x2c,0x65,0x2e, 0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73, 0x65,0x29,0x29,0x29,0x2c,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x65,0x6a, 0x65,0x63,0x74,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65, 0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x33,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x37,0x30,0x29,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x68,0x69, 0x73,0x7c,0x7c,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x6e,0x29,0x7b,0x65,0x3d,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x69,0x2c, 0x65,0x2c,0x74,0x29,0x7d,0x29,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c, 0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x7b,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x29,0x7b,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x73, 0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x68,0x61,0x73,0x20,0x6e,0x6f, 0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x28,0x29,0x7b,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x63, 0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x68,0x61,0x73,0x20, 0x6e,0x6f,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64, 0x22,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x3d,0x3d,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d, 0x65,0x6f,0x75,0x74,0x28,0x65,0x2c,0x30,0x29,0x3b,0x69,0x66,0x28,0x28,0x6e,0x3d, 0x3d,0x3d,0x69,0x7c,0x7c,0x21,0x6e,0x29,0x26,0x26,0x73,0x65,0x74,0x54,0x69,0x6d, 0x65,0x6f,0x75,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x73,0x65, 0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2c,0x73,0x65,0x74,0x54,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x28,0x65,0x2c,0x30,0x29,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x28,0x65,0x2c,0x30,0x29,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x74,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x2c,0x30,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x2c,0x30,0x29, 0x7d,0x7d,0x7d,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x72,0x79,0x7b,0x6e,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x3f,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x69, 0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x6e,0x3d,0x69,0x7d,0x74,0x72, 0x79,0x7b,0x72,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d, 0x65,0x6f,0x75,0x74,0x3f,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x3a,0x61,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x29,0x7b,0x72,0x3d,0x61, 0x7d,0x7d,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x63,0x2c,0x6c,0x3d,0x5b,0x5d,0x2c, 0x73,0x3d,0x21,0x31,0x2c,0x66,0x3d,0x2d,0x31,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x64,0x28,0x29,0x7b,0x73,0x26,0x26,0x63,0x26,0x26,0x28,0x73,0x3d, 0x21,0x31,0x2c,0x63,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x6c,0x3d,0x63,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6c,0x29,0x3a,0x66,0x3d,0x2d,0x31,0x2c,0x6c, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x70,0x28,0x29,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x73, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x75,0x28,0x64,0x29,0x3b,0x73,0x3d,0x21, 0x30,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x6c,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x74,0x3b,0x29,0x7b,0x66,0x6f,0x72,0x28,0x63,0x3d,0x6c, 0x2c,0x6c,0x3d,0x5b,0x5d,0x3b,0x2b,0x2b,0x66,0x3c,0x74,0x3b,0x29,0x63,0x26,0x26, 0x63,0x5b,0x66,0x5d,0x2e,0x72,0x75,0x6e,0x28,0x29,0x3b,0x66,0x3d,0x2d,0x31,0x2c, 0x74,0x3d,0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x63,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x73,0x3d,0x21,0x31,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x69,0x66,0x28,0x72,0x3d,0x3d,0x3d,0x63,0x6c,0x65,0x61,0x72,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6c, 0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x29,0x3b,0x69,0x66, 0x28,0x28,0x72,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x21,0x72,0x29,0x26,0x26,0x63,0x6c, 0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x3d,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x2c,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x29, 0x3b,0x74,0x72,0x79,0x7b,0x72,0x28,0x65,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28, 0x74,0x29,0x7b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x7d,0x63,0x61,0x74, 0x63,0x68,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x7d,0x7d,0x7d,0x28,0x65, 0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x66,0x75,0x6e,0x3d,0x65,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x61,0x72,0x72,0x61,0x79,0x3d,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x76,0x28,0x29,0x7b,0x7d,0x6f,0x2e,0x6e,0x65,0x78,0x74,0x54, 0x69,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x2d,0x31,0x29,0x3b,0x69,0x66,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x29,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x31,0x3b,0x6e,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b,0x6e, 0x2d,0x31,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d, 0x3b,0x6c,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x65,0x77,0x20,0x68,0x28,0x65,0x2c, 0x74,0x29,0x29,0x2c,0x31,0x21,0x3d,0x3d,0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x7c,0x7c,0x73,0x7c,0x7c,0x75,0x28,0x70,0x29,0x7d,0x2c,0x68,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x72,0x75,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x66,0x75,0x6e,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x61, 0x72,0x72,0x61,0x79,0x29,0x7d,0x2c,0x6f,0x2e,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22, 0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x22,0x2c,0x6f,0x2e,0x62,0x72,0x6f,0x77,0x73, 0x65,0x72,0x3d,0x21,0x30,0x2c,0x6f,0x2e,0x65,0x6e,0x76,0x3d,0x7b,0x7d,0x2c,0x6f, 0x2e,0x61,0x72,0x67,0x76,0x3d,0x5b,0x5d,0x2c,0x6f,0x2e,0x76,0x65,0x72,0x73,0x69, 0x6f,0x6e,0x3d,0x22,0x22,0x2c,0x6f,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x73, 0x3d,0x7b,0x7d,0x2c,0x6f,0x2e,0x6f,0x6e,0x3d,0x76,0x2c,0x6f,0x2e,0x61,0x64,0x64, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3d,0x76,0x2c,0x6f,0x2e,0x6f,0x6e,0x63, 0x65,0x3d,0x76,0x2c,0x6f,0x2e,0x6f,0x66,0x66,0x3d,0x76,0x2c,0x6f,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3d,0x76,0x2c,0x6f, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x6c,0x6c,0x4c,0x69,0x73,0x74,0x65,0x6e, 0x65,0x72,0x73,0x3d,0x76,0x2c,0x6f,0x2e,0x65,0x6d,0x69,0x74,0x3d,0x76,0x2c,0x6f, 0x2e,0x70,0x72,0x65,0x70,0x65,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72, 0x3d,0x76,0x2c,0x6f,0x2e,0x70,0x72,0x65,0x70,0x65,0x6e,0x64,0x4f,0x6e,0x63,0x65, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3d,0x76,0x2c,0x6f,0x2e,0x6c,0x69,0x73, 0x74,0x65,0x6e,0x65,0x72,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x2c,0x6f,0x2e,0x62, 0x69,0x6e,0x64,0x69,0x6e,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x22,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2e,0x62,0x69,0x6e,0x64, 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, 0x72,0x74,0x65,0x64,0x22,0x29,0x7d,0x2c,0x6f,0x2e,0x63,0x77,0x64,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x2f,0x22,0x7d,0x2c,0x6f,0x2e,0x63,0x68,0x64,0x69,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x70,0x72,0x6f,0x63,0x65,0x73,0x73, 0x2e,0x63,0x68,0x64,0x69,0x72,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75, 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x22,0x29,0x7d,0x2c,0x6f,0x2e,0x75,0x6d,0x61, 0x73,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x30,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30, 0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x6e,0x2c,0x72,0x29,0x7b,0x72,0x21,0x3d,0x3d,0x74,0x26,0x26,0x72,0x2e,0x74,0x6f, 0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3d,0x3d,0x3d,0x74,0x2e, 0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x26,0x26,0x28, 0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x2c,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x5b, 0x72,0x5d,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x31, 0x31,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x6e,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x69, 0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x3b,0x6e,0x2e,0x73,0x74,0x61, 0x74,0x75,0x73,0x26,0x26,0x6f,0x26,0x26,0x21,0x6f,0x28,0x6e,0x2e,0x73,0x74,0x61, 0x74,0x75,0x73,0x29,0x3f,0x74,0x28,0x72,0x28,0x22,0x52,0x65,0x71,0x75,0x65,0x73, 0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x73,0x74, 0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x64,0x65,0x20,0x22,0x2b,0x6e,0x2e,0x73,0x74, 0x61,0x74,0x75,0x73,0x2c,0x6e,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x6e,0x75, 0x6c,0x6c,0x2c,0x6e,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x2c,0x6e,0x29,0x29, 0x3a,0x65,0x28,0x6e,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x29, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x2e,0x69,0x73,0x53, 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x42,0x72,0x6f,0x77,0x73,0x65,0x72,0x45,0x6e, 0x76,0x28,0x29,0x3f,0x7b,0x77,0x72,0x69,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x6f,0x2c,0x69,0x2c,0x61,0x29, 0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x5b,0x5d,0x3b,0x75,0x2e,0x70,0x75,0x73,0x68, 0x28,0x65,0x2b,0x22,0x3d,0x22,0x2b,0x65,0x6e,0x63,0x6f,0x64,0x65,0x55,0x52,0x49, 0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x28,0x74,0x29,0x29,0x2c,0x72,0x2e, 0x69,0x73,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x6e,0x29,0x26,0x26,0x75,0x2e,0x70, 0x75,0x73,0x68,0x28,0x22,0x65,0x78,0x70,0x69,0x72,0x65,0x73,0x3d,0x22,0x2b,0x6e, 0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x6e,0x29,0x2e,0x74,0x6f,0x47,0x4d,0x54, 0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x2c,0x72,0x2e,0x69,0x73,0x53,0x74, 0x72,0x69,0x6e,0x67,0x28,0x6f,0x29,0x26,0x26,0x75,0x2e,0x70,0x75,0x73,0x68,0x28, 0x22,0x70,0x61,0x74,0x68,0x3d,0x22,0x2b,0x6f,0x29,0x2c,0x72,0x2e,0x69,0x73,0x53, 0x74,0x72,0x69,0x6e,0x67,0x28,0x69,0x29,0x26,0x26,0x75,0x2e,0x70,0x75,0x73,0x68, 0x28,0x22,0x64,0x6f,0x6d,0x61,0x69,0x6e,0x3d,0x22,0x2b,0x69,0x29,0x2c,0x21,0x30, 0x3d,0x3d,0x3d,0x61,0x26,0x26,0x75,0x2e,0x70,0x75,0x73,0x68,0x28,0x22,0x73,0x65, 0x63,0x75,0x72,0x65,0x22,0x29,0x2c,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x63,0x6f,0x6f,0x6b,0x69,0x65,0x3d,0x75,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x3b, 0x20,0x22,0x29,0x7d,0x2c,0x72,0x65,0x61,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6f,0x6b,0x69,0x65,0x2e,0x6d,0x61,0x74,0x63, 0x68,0x28,0x6e,0x65,0x77,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x28,0x5e, 0x7c,0x3b,0x5c,0x5c,0x73,0x2a,0x29,0x28,0x22,0x2b,0x65,0x2b,0x22,0x29,0x3d,0x28, 0x5b,0x5e,0x3b,0x5d,0x2a,0x29,0x22,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x3f,0x64,0x65,0x63,0x6f,0x64,0x65,0x55,0x52,0x49,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x28,0x74,0x5b,0x33,0x5d,0x29,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x77,0x72,0x69,0x74,0x65,0x28, 0x65,0x2c,0x22,0x22,0x2c,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x2d, 0x38,0x36,0x34,0x65,0x35,0x29,0x7d,0x7d,0x3a,0x7b,0x77,0x72,0x69,0x74,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x72,0x65,0x61, 0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x31,0x37,0x35,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x37, 0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x26,0x26,0x21,0x72,0x28,0x74,0x29,0x3f,0x6f,0x28,0x65,0x2c,0x74, 0x29,0x3a,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63, 0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2f, 0x5e,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x5b,0x61,0x2d,0x7a,0x5c,0x64,0x5c,0x2b,0x5c, 0x2d,0x5c,0x2e,0x5d,0x2a,0x3a,0x29,0x3f,0x5c,0x2f,0x5c,0x2f,0x2f,0x69,0x2e,0x74, 0x65,0x73,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x3f,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65, 0x28,0x2f,0x5c,0x2f,0x2b,0x24,0x2f,0x2c,0x22,0x22,0x29,0x2b,0x22,0x2f,0x22,0x2b, 0x74,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5e,0x5c,0x2f,0x2b,0x2f, 0x2c,0x22,0x22,0x29,0x3a,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30, 0x29,0x2c,0x6f,0x3d,0x5b,0x22,0x61,0x67,0x65,0x22,0x2c,0x22,0x61,0x75,0x74,0x68, 0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x63,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x2d,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x2c,0x22,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x22,0x2c,0x22,0x65,0x74,0x61,0x67, 0x22,0x2c,0x22,0x65,0x78,0x70,0x69,0x72,0x65,0x73,0x22,0x2c,0x22,0x66,0x72,0x6f, 0x6d,0x22,0x2c,0x22,0x68,0x6f,0x73,0x74,0x22,0x2c,0x22,0x69,0x66,0x2d,0x6d,0x6f, 0x64,0x69,0x66,0x69,0x65,0x64,0x2d,0x73,0x69,0x6e,0x63,0x65,0x22,0x2c,0x22,0x69, 0x66,0x2d,0x75,0x6e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x2d,0x73,0x69,0x6e, 0x63,0x65,0x22,0x2c,0x22,0x6c,0x61,0x73,0x74,0x2d,0x6d,0x6f,0x64,0x69,0x66,0x69, 0x65,0x64,0x22,0x2c,0x22,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22, 0x6d,0x61,0x78,0x2d,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x73,0x22,0x2c,0x22,0x70, 0x72,0x6f,0x78,0x79,0x2d,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69, 0x6f,0x6e,0x22,0x2c,0x22,0x72,0x65,0x66,0x65,0x72,0x65,0x72,0x22,0x2c,0x22,0x72, 0x65,0x74,0x72,0x79,0x2d,0x61,0x66,0x74,0x65,0x72,0x22,0x2c,0x22,0x75,0x73,0x65, 0x72,0x2d,0x61,0x67,0x65,0x6e,0x74,0x22,0x5d,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x2c,0x69,0x2c,0x61,0x3d,0x7b,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x28,0x72,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x5c,0x6e,0x22,0x29, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x69,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x3a,0x22, 0x29,0x2c,0x74,0x3d,0x72,0x2e,0x74,0x72,0x69,0x6d,0x28,0x65,0x2e,0x73,0x75,0x62, 0x73,0x74,0x72,0x28,0x30,0x2c,0x69,0x29,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65, 0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x6e,0x3d,0x72,0x2e,0x74,0x72,0x69,0x6d, 0x28,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x69,0x2b,0x31,0x29,0x29,0x2c, 0x74,0x29,0x7b,0x69,0x66,0x28,0x61,0x5b,0x74,0x5d,0x26,0x26,0x6f,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x74,0x29,0x3e,0x3d,0x30,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x3b,0x61,0x5b,0x74,0x5d,0x3d,0x22,0x73,0x65,0x74,0x2d,0x63,0x6f,0x6f, 0x6b,0x69,0x65,0x22,0x3d,0x3d,0x3d,0x74,0x3f,0x28,0x61,0x5b,0x74,0x5d,0x3f,0x61, 0x5b,0x74,0x5d,0x3a,0x5b,0x5d,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x5b, 0x6e,0x5d,0x29,0x3a,0x61,0x5b,0x74,0x5d,0x3f,0x61,0x5b,0x74,0x5d,0x2b,0x22,0x2c, 0x20,0x22,0x2b,0x6e,0x3a,0x6e,0x7d,0x7d,0x29,0x29,0x2c,0x61,0x29,0x3a,0x61,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x72,0x2e,0x69,0x73,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, 0x64,0x42,0x72,0x6f,0x77,0x73,0x65,0x72,0x45,0x6e,0x76,0x28,0x29,0x3f,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x2c,0x74, 0x3d,0x2f,0x28,0x6d,0x73,0x69,0x65,0x7c,0x74,0x72,0x69,0x64,0x65,0x6e,0x74,0x29, 0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f, 0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x29,0x2c,0x6e,0x3d,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x28,0x22,0x61,0x22,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x28,0x6e,0x2e,0x73,0x65, 0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x68,0x72,0x65,0x66, 0x22,0x2c,0x72,0x29,0x2c,0x72,0x3d,0x6e,0x2e,0x68,0x72,0x65,0x66,0x29,0x2c,0x6e, 0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x68, 0x72,0x65,0x66,0x22,0x2c,0x72,0x29,0x2c,0x7b,0x68,0x72,0x65,0x66,0x3a,0x6e,0x2e, 0x68,0x72,0x65,0x66,0x2c,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x6e,0x2e, 0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x63,0x6f,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x3a,0x24,0x2f, 0x2c,0x22,0x22,0x29,0x3a,0x22,0x22,0x2c,0x68,0x6f,0x73,0x74,0x3a,0x6e,0x2e,0x68, 0x6f,0x73,0x74,0x2c,0x73,0x65,0x61,0x72,0x63,0x68,0x3a,0x6e,0x2e,0x73,0x65,0x61, 0x72,0x63,0x68,0x3f,0x6e,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x2f,0x5e,0x5c,0x3f,0x2f,0x2c,0x22,0x22,0x29,0x3a,0x22, 0x22,0x2c,0x68,0x61,0x73,0x68,0x3a,0x6e,0x2e,0x68,0x61,0x73,0x68,0x3f,0x6e,0x2e, 0x68,0x61,0x73,0x68,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5e,0x23, 0x2f,0x2c,0x22,0x22,0x29,0x3a,0x22,0x22,0x2c,0x68,0x6f,0x73,0x74,0x6e,0x61,0x6d, 0x65,0x3a,0x6e,0x2e,0x68,0x6f,0x73,0x74,0x6e,0x61,0x6d,0x65,0x2c,0x70,0x6f,0x72, 0x74,0x3a,0x6e,0x2e,0x70,0x6f,0x72,0x74,0x2c,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d, 0x65,0x3a,0x22,0x2f,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61, 0x6d,0x65,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x3f,0x6e,0x2e,0x70, 0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x2f,0x22,0x2b,0x6e,0x2e,0x70,0x61, 0x74,0x68,0x6e,0x61,0x6d,0x65,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3d,0x6f,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69, 0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x2e,0x69,0x73,0x53, 0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x29,0x3f,0x6f,0x28,0x74,0x29,0x3a,0x74,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f, 0x6c,0x3d,0x3d,0x3d,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x26,0x26, 0x6e,0x2e,0x68,0x6f,0x73,0x74,0x3d,0x3d,0x3d,0x65,0x2e,0x68,0x6f,0x73,0x74,0x7d, 0x7d,0x28,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73, 0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31, 0x31,0x34,0x29,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x2c,0x6f,0x3d,0x7b,0x7d, 0x3b,0x5b,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x2c,0x22,0x62,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x22,0x2c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x2c,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x6f,0x5b,0x65,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x6e,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x61,0x22,0x2b,0x28,0x74,0x3c, 0x31,0x3f,0x22,0x6e,0x20,0x22,0x3a,0x22,0x20,0x22,0x29,0x2b,0x65,0x7d,0x7d,0x29, 0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x7b,0x7d,0x3b,0x6f,0x2e,0x74,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x5b,0x41,0x78,0x69,0x6f,0x73,0x20,0x76,0x22,0x2b,0x72,0x2b,0x22,0x5d,0x20, 0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x20,0x27,0x22,0x2b,0x65,0x2b,0x22,0x27,0x22,0x2b,0x74,0x2b,0x28, 0x6e,0x3f,0x22,0x2e,0x20,0x22,0x2b,0x6e,0x3a,0x22,0x22,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2c,0x72, 0x2c,0x61,0x29,0x7b,0x69,0x66,0x28,0x21,0x31,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x6f,0x28, 0x72,0x2c,0x22,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x64,0x22,0x2b,0x28,0x74,0x3f,0x22,0x20,0x69,0x6e,0x20,0x22,0x2b, 0x74,0x3a,0x22,0x22,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x26,0x26,0x21,0x69,0x5b,0x72,0x5d,0x26,0x26,0x28,0x69,0x5b,0x72,0x5d,0x3d,0x21, 0x30,0x2c,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x6f, 0x28,0x72,0x2c,0x22,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x64,0x65, 0x70,0x72,0x65,0x63,0x61,0x74,0x65,0x64,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x76, 0x22,0x2b,0x74,0x2b,0x22,0x20,0x61,0x6e,0x64,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62, 0x65,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65, 0x20,0x6e,0x65,0x61,0x72,0x20,0x66,0x75,0x74,0x75,0x72,0x65,0x22,0x29,0x29,0x29, 0x2c,0x21,0x65,0x7c,0x7c,0x65,0x28,0x6e,0x2c,0x72,0x2c,0x61,0x29,0x7d,0x7d,0x2c, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x7b,0x61,0x73,0x73,0x65,0x72, 0x74,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72, 0x72,0x6f,0x72,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x6d,0x75,0x73, 0x74,0x20,0x62,0x65,0x20,0x61,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x29, 0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3b,0x6f,0x2d,0x2d,0x20,0x3e,0x30,0x3b,0x29,0x7b,0x76,0x61, 0x72,0x20,0x69,0x3d,0x72,0x5b,0x6f,0x5d,0x2c,0x61,0x3d,0x74,0x5b,0x69,0x5d,0x3b, 0x69,0x66,0x28,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x65,0x5b,0x69,0x5d, 0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x7c,0x7c,0x61, 0x28,0x75,0x2c,0x69,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x21,0x30,0x21,0x3d,0x3d, 0x63,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65, 0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x22,0x2b, 0x69,0x2b,0x22,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x22,0x2b,0x63,0x29, 0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x21,0x30,0x21,0x3d,0x3d,0x6e,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x55,0x6e,0x6b, 0x6e,0x6f,0x77,0x6e,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x22,0x2b,0x69,0x29, 0x7d,0x7d,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x6f,0x72,0x73,0x3a,0x6f,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x31,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65, 0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x65,0x78,0x65,0x63,0x75,0x74,0x6f,0x72,0x20, 0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x2e,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3b,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x6d,0x69,0x73,0x65,0x3d,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f, 0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x74,0x3d,0x65,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74, 0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x6d,0x69,0x73,0x65, 0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x2e,0x5f,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65, 0x72,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x72,0x3d,0x6e,0x2e,0x5f,0x6c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x66,0x6f,0x72,0x28,0x74,0x3d,0x30,0x3b,0x74,0x3c,0x72,0x3b,0x74,0x2b,0x2b,0x29, 0x6e,0x2e,0x5f,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x5b,0x74,0x5d,0x28, 0x65,0x29,0x3b,0x6e,0x2e,0x5f,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3d, 0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x70,0x72, 0x6f,0x6d,0x69,0x73,0x65,0x2e,0x74,0x68,0x65,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x72,0x3d,0x6e, 0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x2e,0x73,0x75,0x62,0x73,0x63,0x72, 0x69,0x62,0x65,0x28,0x65,0x29,0x2c,0x74,0x3d,0x65,0x7d,0x29,0x29,0x2e,0x74,0x68, 0x65,0x6e,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x63, 0x61,0x6e,0x63,0x65,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x6e,0x2e,0x75,0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x28,0x74, 0x29,0x7d,0x2c,0x72,0x7d,0x2c,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x6e,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7c,0x7c,0x28, 0x6e,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x72,0x28,0x65, 0x29,0x2c,0x74,0x28,0x6e,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x29,0x7d,0x29, 0x29,0x7d,0x6f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x68, 0x72,0x6f,0x77,0x49,0x66,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x65,0x64,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69, 0x73,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x74, 0x68,0x69,0x73,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x2c,0x6f,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68, 0x69,0x73,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x65,0x28,0x74,0x68,0x69,0x73, 0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73, 0x3d,0x5b,0x65,0x5d,0x7d,0x2c,0x6f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x75,0x6e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c,0x69,0x73,0x74,0x65,0x6e, 0x65,0x72,0x73,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x3b,0x2d, 0x31,0x21,0x3d,0x3d,0x74,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c,0x69,0x73, 0x74,0x65,0x6e,0x65,0x72,0x73,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x74,0x2c, 0x31,0x29,0x7d,0x7d,0x2c,0x6f,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x6f,0x6b,0x65,0x6e,0x3a,0x6e,0x65,0x77,0x20, 0x6f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65, 0x3d,0x74,0x7d,0x29,0x29,0x2c,0x63,0x61,0x6e,0x63,0x65,0x6c,0x3a,0x65,0x7d,0x7d, 0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6f,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75, 0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x21,0x30,0x3d,0x3d, 0x3d,0x65,0x2e,0x69,0x73,0x41,0x78,0x69,0x6f,0x73,0x45,0x72,0x72,0x6f,0x72,0x7d, 0x7d,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x72,0x3d,0x6e,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2c,0x6f,0x3d, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x3f,0x53,0x79,0x6d,0x62,0x6f, 0x6c,0x3a,0x7b,0x7d,0x2c,0x69,0x3d,0x6f,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f, 0x72,0x7c,0x7c,0x22,0x40,0x40,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x22,0x2c, 0x61,0x3d,0x6f,0x2e,0x61,0x73,0x79,0x6e,0x63,0x49,0x74,0x65,0x72,0x61,0x74,0x6f, 0x72,0x7c,0x7c,0x22,0x40,0x40,0x61,0x73,0x79,0x6e,0x63,0x49,0x74,0x65,0x72,0x61, 0x74,0x6f,0x72,0x22,0x2c,0x75,0x3d,0x6f,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x54,0x61,0x67,0x7c,0x7c,0x22,0x40,0x40,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x54,0x61,0x67,0x22,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x6e,0x2c,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c, 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c, 0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29,0x2c,0x65,0x5b, 0x74,0x5d,0x7d,0x74,0x72,0x79,0x7b,0x63,0x28,0x7b,0x7d,0x2c,0x22,0x22,0x29,0x7d, 0x63,0x61,0x74,0x63,0x68,0x28,0x50,0x29,0x7b,0x63,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6c,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x74,0x26,0x26,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x67,0x3f, 0x74,0x3a,0x67,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x28,0x6f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29, 0x2c,0x61,0x3d,0x6e,0x65,0x77,0x20,0x43,0x28,0x72,0x7c,0x7c,0x5b,0x5d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x2e,0x5f,0x69,0x6e,0x76,0x6f,0x6b,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x66,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x2c,0x69,0x29,0x7b,0x69,0x66, 0x28,0x72,0x3d,0x3d,0x3d,0x70,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f, 0x72,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x72,0x75,0x6e, 0x6e,0x69,0x6e,0x67,0x22,0x29,0x3b,0x69,0x66,0x28,0x72,0x3d,0x3d,0x3d,0x68,0x29, 0x7b,0x69,0x66,0x28,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x6f,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x69,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x54, 0x28,0x29,0x7d,0x66,0x6f,0x72,0x28,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d, 0x6f,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x69,0x3b,0x3b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x6e,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65,0x3b,0x69,0x66, 0x28,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x6a,0x28,0x61,0x2c,0x6e,0x29, 0x3b,0x69,0x66,0x28,0x75,0x29,0x7b,0x69,0x66,0x28,0x75,0x3d,0x3d,0x3d,0x76,0x29, 0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x75,0x7d,0x7d,0x69,0x66,0x28,0x22,0x6e,0x65,0x78,0x74,0x22,0x3d,0x3d,0x3d,0x6e, 0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x29,0x6e,0x2e,0x73,0x65,0x6e,0x74,0x3d,0x6e, 0x2e,0x5f,0x73,0x65,0x6e,0x74,0x3d,0x6e,0x2e,0x61,0x72,0x67,0x3b,0x65,0x6c,0x73, 0x65,0x20,0x69,0x66,0x28,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x6e, 0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x29,0x7b,0x69,0x66,0x28,0x72,0x3d,0x3d,0x3d, 0x66,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x72,0x3d,0x68,0x2c,0x6e,0x2e,0x61,0x72, 0x67,0x3b,0x6e,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x45,0x78,0x63,0x65, 0x70,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x2e,0x61,0x72,0x67,0x29,0x7d,0x65,0x6c,0x73, 0x65,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x6d,0x65, 0x74,0x68,0x6f,0x64,0x26,0x26,0x6e,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28,0x22, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x29,0x3b,0x72, 0x3d,0x70,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x73,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x3b,0x69,0x66,0x28,0x22,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x22,0x3d,0x3d,0x3d, 0x63,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x69,0x66,0x28,0x72,0x3d,0x6e,0x2e,0x64, 0x6f,0x6e,0x65,0x3f,0x68,0x3a,0x64,0x2c,0x63,0x2e,0x61,0x72,0x67,0x3d,0x3d,0x3d, 0x76,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x63,0x2e,0x61,0x72,0x67,0x2c,0x64,0x6f, 0x6e,0x65,0x3a,0x6e,0x2e,0x64,0x6f,0x6e,0x65,0x7d,0x7d,0x22,0x74,0x68,0x72,0x6f, 0x77,0x22,0x3d,0x3d,0x3d,0x63,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x28,0x72,0x3d, 0x68,0x2c,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x74,0x68,0x72,0x6f, 0x77,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x63,0x2e,0x61,0x72,0x67,0x29,0x7d, 0x7d,0x7d,0x28,0x65,0x2c,0x6e,0x2c,0x61,0x29,0x2c,0x69,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x73,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x74,0x72, 0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x6e, 0x6f,0x72,0x6d,0x61,0x6c,0x22,0x2c,0x61,0x72,0x67,0x3a,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x74,0x2c,0x6e,0x29,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x50,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x74,0x68, 0x72,0x6f,0x77,0x22,0x2c,0x61,0x72,0x67,0x3a,0x50,0x7d,0x7d,0x7d,0x65,0x2e,0x77, 0x72,0x61,0x70,0x3d,0x6c,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x22,0x73,0x75,0x73, 0x70,0x65,0x6e,0x64,0x65,0x64,0x53,0x74,0x61,0x72,0x74,0x22,0x2c,0x64,0x3d,0x22, 0x73,0x75,0x73,0x70,0x65,0x6e,0x64,0x65,0x64,0x59,0x69,0x65,0x6c,0x64,0x22,0x2c, 0x70,0x3d,0x22,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6e,0x67,0x22,0x2c,0x68,0x3d, 0x22,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x22,0x2c,0x76,0x3d,0x7b,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x28,0x29,0x7b,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x28,0x29,0x7b,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x28,0x29,0x7b,0x7d,0x76,0x61,0x72,0x20,0x79, 0x3d,0x7b,0x7d,0x3b,0x63,0x28,0x79,0x2c,0x69,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x5f,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66, 0x2c,0x77,0x3d,0x5f,0x26,0x26,0x5f,0x28,0x5f,0x28,0x41,0x28,0x5b,0x5d,0x29,0x29, 0x29,0x3b,0x77,0x26,0x26,0x77,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x72,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x77,0x2c,0x69,0x29,0x26,0x26,0x28,0x79,0x3d,0x77,0x29,0x3b,0x76, 0x61,0x72,0x20,0x4f,0x3d,0x62,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x3d,0x67,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x79,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x28,0x65,0x29,0x7b,0x5b,0x22,0x6e,0x65, 0x78,0x74,0x22,0x2c,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x2c,0x22,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x63,0x28,0x65,0x2c,0x74, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x76,0x6f,0x6b, 0x65,0x28,0x74,0x2c,0x65,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x45,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x6f,0x2c,0x69,0x2c,0x61,0x2c,0x75,0x29, 0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x73,0x28,0x65,0x5b,0x6f,0x5d,0x2c,0x65,0x2c, 0x69,0x29,0x3b,0x69,0x66,0x28,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x21,0x3d,0x3d, 0x63,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x63,0x2e, 0x61,0x72,0x67,0x2c,0x66,0x3d,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x66,0x26,0x26,0x72,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x66,0x2c,0x22,0x5f,0x5f,0x61,0x77,0x61,0x69,0x74,0x22,0x29, 0x3f,0x74,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x66,0x2e,0x5f,0x5f,0x61, 0x77,0x61,0x69,0x74,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x28,0x22,0x6e,0x65,0x78,0x74,0x22, 0x2c,0x65,0x2c,0x61,0x2c,0x75,0x29,0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x28,0x22,0x74,0x68,0x72,0x6f,0x77,0x22, 0x2c,0x65,0x2c,0x61,0x2c,0x75,0x29,0x7d,0x29,0x29,0x3a,0x74,0x2e,0x72,0x65,0x73, 0x6f,0x6c,0x76,0x65,0x28,0x66,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6c,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x3d,0x65,0x2c,0x61,0x28,0x6c,0x29,0x7d,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x28,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x2c,0x65,0x2c,0x61,0x2c,0x75,0x29,0x7d, 0x29,0x29,0x7d,0x75,0x28,0x63,0x2e,0x61,0x72,0x67,0x29,0x7d,0x76,0x61,0x72,0x20, 0x6f,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x76,0x6f,0x6b,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x65,0x77,0x20,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x2c,0x6f,0x29,0x7b,0x6e,0x28,0x65,0x2c,0x72,0x2c,0x74,0x2c,0x6f,0x29, 0x7d,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3d,0x6f,0x3f,0x6f, 0x2e,0x74,0x68,0x65,0x6e,0x28,0x69,0x2c,0x69,0x29,0x3a,0x69,0x28,0x29,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x28,0x65,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72, 0x5b,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x5d,0x3b,0x69,0x66,0x28,0x72,0x3d, 0x3d,0x3d,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61, 0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d, 0x3d,0x3d,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x29,0x7b,0x69,0x66,0x28,0x65, 0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e, 0x26,0x26,0x28,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x74,0x2c,0x6a,0x28,0x65, 0x2c,0x6e,0x29,0x2c,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x6e,0x2e, 0x6d,0x65,0x74,0x68,0x6f,0x64,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x3b,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x74,0x68,0x72,0x6f,0x77, 0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65, 0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x54,0x68,0x65,0x20,0x69,0x74,0x65,0x72,0x61, 0x74,0x6f,0x72,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x70,0x72,0x6f, 0x76,0x69,0x64,0x65,0x20,0x61,0x20,0x27,0x74,0x68,0x72,0x6f,0x77,0x27,0x20,0x6d, 0x65,0x74,0x68,0x6f,0x64,0x22,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x7d,0x76,0x61,0x72,0x20,0x6f,0x3d,0x73,0x28,0x72,0x2c,0x65,0x2e,0x69,0x74,0x65, 0x72,0x61,0x74,0x6f,0x72,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x29,0x3b,0x69,0x66,0x28, 0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x74,0x79,0x70,0x65, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64, 0x3d,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x6f, 0x2e,0x61,0x72,0x67,0x2c,0x6e,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x76,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x2e,0x61, 0x72,0x67,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3f,0x69,0x2e,0x64,0x6f, 0x6e,0x65,0x3f,0x28,0x6e,0x5b,0x65,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x4e,0x61, 0x6d,0x65,0x5d,0x3d,0x69,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x6e,0x2e,0x6e,0x65, 0x78,0x74,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x4c,0x6f,0x63,0x2c,0x22,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x21,0x3d,0x3d,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64, 0x26,0x26,0x28,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x6e,0x65,0x78, 0x74,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x74,0x29,0x2c,0x6e,0x2e,0x64,0x65, 0x6c,0x65,0x67,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x76,0x29,0x3a,0x69, 0x3a,0x28,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x74,0x68,0x72,0x6f, 0x77,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x6e,0x65,0x77,0x20,0x54,0x79,0x70, 0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72, 0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, 0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x29,0x2c,0x6e,0x2e,0x64,0x65,0x6c, 0x65,0x67,0x61,0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x76,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x7b,0x74,0x72,0x79,0x4c,0x6f,0x63,0x3a,0x65,0x5b,0x30,0x5d,0x7d,0x3b, 0x31,0x20,0x69,0x6e,0x20,0x65,0x26,0x26,0x28,0x74,0x2e,0x63,0x61,0x74,0x63,0x68, 0x4c,0x6f,0x63,0x3d,0x65,0x5b,0x31,0x5d,0x29,0x2c,0x32,0x20,0x69,0x6e,0x20,0x65, 0x26,0x26,0x28,0x74,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x3d, 0x65,0x5b,0x32,0x5d,0x2c,0x74,0x2e,0x61,0x66,0x74,0x65,0x72,0x4c,0x6f,0x63,0x3d, 0x65,0x5b,0x33,0x5d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e, 0x74,0x72,0x69,0x65,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f,0x6e,0x7c,0x7c, 0x7b,0x7d,0x3b,0x74,0x2e,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x6f,0x72,0x6d,0x61, 0x6c,0x22,0x2c,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x2e,0x61,0x72,0x67,0x2c, 0x65,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f,0x6e,0x3d,0x74,0x7d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x28,0x65,0x29,0x7b,0x74,0x68,0x69, 0x73,0x2e,0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x3d,0x5b,0x7b,0x74, 0x72,0x79,0x4c,0x6f,0x63,0x3a,0x22,0x72,0x6f,0x6f,0x74,0x22,0x7d,0x5d,0x2c,0x65, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x2c,0x74,0x68,0x69,0x73,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x73,0x65,0x74,0x28,0x21,0x30,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x69,0x5d,0x3b,0x69, 0x66,0x28,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x6e,0x65, 0x78,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x21, 0x69,0x73,0x4e,0x61,0x4e,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x2d,0x31,0x2c,0x61,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x2b,0x2b, 0x6f,0x3c,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x69,0x66,0x28,0x72, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6f,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x65,0x5b,0x6f,0x5d,0x2c,0x6e, 0x2e,0x64,0x6f,0x6e,0x65,0x3d,0x21,0x31,0x2c,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x74,0x2c,0x6e,0x2e,0x64,0x6f, 0x6e,0x65,0x3d,0x21,0x30,0x2c,0x6e,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x61,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x61,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x6e,0x65,0x78,0x74,0x3a,0x54,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x54,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x74,0x2c,0x64,0x6f,0x6e,0x65,0x3a,0x21,0x30,0x7d,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6d,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x3d,0x62,0x2c,0x63,0x28,0x4f,0x2c,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63, 0x74,0x6f,0x72,0x22,0x2c,0x62,0x29,0x2c,0x63,0x28,0x62,0x2c,0x22,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x2c,0x6d,0x29,0x2c,0x6d,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x63,0x28,0x62,0x2c,0x75, 0x2c,0x22,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72,0x46,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x29,0x2c,0x65,0x2e,0x69,0x73,0x47,0x65,0x6e,0x65,0x72,0x61, 0x74,0x6f,0x72,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x74,0x26,0x26,0x28,0x74, 0x3d,0x3d,0x3d,0x6d,0x7c,0x7c,0x22,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72, 0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x28,0x74,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x74,0x2e,0x6e,0x61, 0x6d,0x65,0x29,0x29,0x7d,0x2c,0x65,0x2e,0x6d,0x61,0x72,0x6b,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x73,0x65,0x74,0x50,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x4f,0x66,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x73,0x65,0x74, 0x50,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x28,0x65,0x2c,0x62,0x29, 0x3a,0x28,0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x3d,0x62,0x2c, 0x63,0x28,0x65,0x2c,0x75,0x2c,0x22,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72, 0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x29,0x29,0x2c,0x65,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63, 0x72,0x65,0x61,0x74,0x65,0x28,0x4f,0x29,0x2c,0x65,0x7d,0x2c,0x65,0x2e,0x61,0x77, 0x72,0x61,0x70,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x5f,0x5f,0x61,0x77,0x61,0x69,0x74,0x3a,0x65, 0x7d,0x7d,0x2c,0x78,0x28,0x45,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x29,0x2c,0x63,0x28,0x45,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c, 0x61,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x41, 0x73,0x79,0x6e,0x63,0x49,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x3d,0x45,0x2c,0x65, 0x2e,0x61,0x73,0x79,0x6e,0x63,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x69,0x26,0x26,0x28,0x69,0x3d,0x50,0x72,0x6f,0x6d,0x69,0x73, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x65,0x77,0x20,0x45,0x28,0x6c, 0x28,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x2c,0x69,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x2e,0x69,0x73,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f, 0x72,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x3f,0x61,0x3a,0x61, 0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x64,0x6f,0x6e,0x65,0x3f,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x61,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x78,0x28,0x4f, 0x29,0x2c,0x63,0x28,0x4f,0x2c,0x75,0x2c,0x22,0x47,0x65,0x6e,0x65,0x72,0x61,0x74, 0x6f,0x72,0x22,0x29,0x2c,0x63,0x28,0x4f,0x2c,0x69,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x7d,0x29,0x29,0x2c,0x63,0x28,0x4f,0x2c,0x22,0x74,0x6f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x22,0x7d,0x29,0x29,0x2c,0x65, 0x2e,0x6b,0x65,0x79,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x65,0x29,0x74,0x2e,0x70,0x75,0x73,0x68, 0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65,0x76, 0x65,0x72,0x73,0x65,0x28,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x70,0x6f,0x70,0x28, 0x29,0x3b,0x69,0x66,0x28,0x72,0x20,0x69,0x6e,0x20,0x65,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3d,0x72,0x2c,0x6e,0x2e,0x64, 0x6f,0x6e,0x65,0x3d,0x21,0x31,0x2c,0x6e,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x2e,0x64,0x6f,0x6e,0x65,0x3d,0x21,0x30,0x2c,0x6e,0x7d,0x7d,0x2c,0x65,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x73,0x3d,0x41,0x2c,0x43,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x3d,0x7b,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x3a,0x43,0x2c,0x72,0x65,0x73,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72, 0x65,0x76,0x3d,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x30, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x6e,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x73,0x65,0x6e,0x74,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x64,0x6f,0x6e, 0x65,0x3d,0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61, 0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x74, 0x68,0x6f,0x64,0x3d,0x22,0x6e,0x65,0x78,0x74,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x61,0x72,0x67,0x3d,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e, 0x74,0x72,0x69,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x53,0x29, 0x2c,0x21,0x65,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e, 0x20,0x74,0x68,0x69,0x73,0x29,0x22,0x74,0x22,0x3d,0x3d,0x3d,0x6e,0x2e,0x63,0x68, 0x61,0x72,0x41,0x74,0x28,0x30,0x29,0x26,0x26,0x72,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x26,0x26,0x21,0x69,0x73,0x4e,0x61,0x4e,0x28, 0x2b,0x6e,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29,0x29,0x26,0x26,0x28,0x74, 0x68,0x69,0x73,0x5b,0x6e,0x5d,0x3d,0x74,0x29,0x7d,0x2c,0x73,0x74,0x6f,0x70,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e, 0x64,0x6f,0x6e,0x65,0x3d,0x21,0x30,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x5b,0x30,0x5d, 0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f,0x6e,0x3b,0x69,0x66,0x28,0x22, 0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x2e,0x61,0x72,0x67,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x76,0x61,0x6c,0x7d,0x2c,0x64,0x69, 0x73,0x70,0x61,0x74,0x63,0x68,0x45,0x78,0x63,0x65,0x70,0x74,0x69,0x6f,0x6e,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x74, 0x68,0x69,0x73,0x2e,0x64,0x6f,0x6e,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x65, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x72,0x2c,0x6f,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x75,0x2e,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x68,0x72,0x6f,0x77, 0x22,0x2c,0x75,0x2e,0x61,0x72,0x67,0x3d,0x65,0x2c,0x6e,0x2e,0x6e,0x65,0x78,0x74, 0x3d,0x72,0x2c,0x6f,0x26,0x26,0x28,0x6e,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d, 0x22,0x6e,0x65,0x78,0x74,0x22,0x2c,0x6e,0x2e,0x61,0x72,0x67,0x3d,0x74,0x29,0x2c, 0x21,0x21,0x6f,0x7d,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2d,0x31,0x3b,0x69,0x3e,0x3d,0x30,0x3b,0x2d,0x2d,0x69,0x29, 0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79,0x45, 0x6e,0x74,0x72,0x69,0x65,0x73,0x5b,0x69,0x5d,0x2c,0x75,0x3d,0x61,0x2e,0x63,0x6f, 0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f,0x6e,0x3b,0x69,0x66,0x28,0x22,0x72,0x6f,0x6f, 0x74,0x22,0x3d,0x3d,0x3d,0x61,0x2e,0x74,0x72,0x79,0x4c,0x6f,0x63,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x22,0x65,0x6e,0x64,0x22,0x29,0x3b,0x69,0x66, 0x28,0x61,0x2e,0x74,0x72,0x79,0x4c,0x6f,0x63,0x3c,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x70,0x72,0x65,0x76,0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x3d,0x72,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x61,0x2c,0x22,0x63,0x61,0x74,0x63,0x68,0x4c,0x6f,0x63,0x22,0x29, 0x2c,0x6c,0x3d,0x72,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x61,0x2c,0x22,0x66,0x69,0x6e, 0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x22,0x29,0x3b,0x69,0x66,0x28,0x63,0x26,0x26, 0x6c,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x76,0x3c, 0x61,0x2e,0x63,0x61,0x74,0x63,0x68,0x4c,0x6f,0x63,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x28,0x61,0x2e,0x63,0x61,0x74,0x63,0x68,0x4c,0x6f,0x63,0x2c,0x21, 0x30,0x29,0x3b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x76,0x3c, 0x61,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6f,0x28,0x61,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c, 0x6f,0x63,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x63,0x29,0x7b,0x69, 0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x76,0x3c,0x61,0x2e,0x63,0x61, 0x74,0x63,0x68,0x4c,0x6f,0x63,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x61,0x2e,0x63,0x61,0x74,0x63,0x68,0x4c,0x6f,0x63,0x2c,0x21,0x30,0x29,0x7d,0x65, 0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x21,0x6c,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x74,0x72,0x79,0x20,0x73, 0x74,0x61,0x74,0x65,0x6d,0x65,0x6e,0x74,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74, 0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x6f,0x72,0x20,0x66,0x69,0x6e,0x61,0x6c,0x6c, 0x79,0x22,0x29,0x3b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x76, 0x3c,0x61,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x61,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79, 0x4c,0x6f,0x63,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x61,0x62,0x72,0x75,0x70,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79, 0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31, 0x3b,0x6e,0x3e,0x3d,0x30,0x3b,0x2d,0x2d,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65,0x73, 0x5b,0x6e,0x5d,0x3b,0x69,0x66,0x28,0x6f,0x2e,0x74,0x72,0x79,0x4c,0x6f,0x63,0x3c, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x76,0x26,0x26,0x72,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x6f,0x2c,0x22,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63, 0x22,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x65,0x76,0x3c,0x6f,0x2e, 0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x29,0x7b,0x76,0x61,0x72,0x20, 0x69,0x3d,0x6f,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d,0x69,0x26,0x26,0x28,0x22, 0x62,0x72,0x65,0x61,0x6b,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x63,0x6f,0x6e, 0x74,0x69,0x6e,0x75,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x29,0x26,0x26,0x69,0x2e,0x74, 0x72,0x79,0x4c,0x6f,0x63,0x3c,0x3d,0x74,0x26,0x26,0x74,0x3c,0x3d,0x69,0x2e,0x66, 0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x26,0x26,0x28,0x69,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x69,0x3f,0x69,0x2e,0x63,0x6f, 0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f,0x6e,0x3a,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x61,0x2e,0x74,0x79,0x70,0x65,0x3d,0x65,0x2c,0x61,0x2e,0x61,0x72, 0x67,0x3d,0x74,0x2c,0x69,0x3f,0x28,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x74,0x68, 0x6f,0x64,0x3d,0x22,0x6e,0x65,0x78,0x74,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e, 0x65,0x78,0x74,0x3d,0x69,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63, 0x2c,0x76,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74, 0x65,0x28,0x61,0x29,0x7d,0x2c,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28, 0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x2e,0x61,0x72,0x67,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x62,0x72,0x65,0x61,0x6b,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74, 0x79,0x70,0x65,0x7c,0x7c,0x22,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x22,0x3d, 0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65, 0x78,0x74,0x3d,0x65,0x2e,0x61,0x72,0x67,0x3a,0x22,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x28,0x74,0x68,0x69,0x73, 0x2e,0x72,0x76,0x61,0x6c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x61,0x72,0x67,0x3d,0x65, 0x2e,0x61,0x72,0x67,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64, 0x3d,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e, 0x65,0x78,0x74,0x3d,0x22,0x65,0x6e,0x64,0x22,0x29,0x3a,0x22,0x6e,0x6f,0x72,0x6d, 0x61,0x6c,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x74,0x26, 0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x74,0x29,0x2c,0x76, 0x7d,0x2c,0x66,0x69,0x6e,0x69,0x73,0x68,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x3b,0x74,0x3e,0x3d,0x30,0x3b,0x2d,0x2d,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79, 0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x5b,0x74,0x5d,0x3b,0x69,0x66,0x28,0x6e,0x2e, 0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x4c,0x6f,0x63,0x3d,0x3d,0x3d,0x65,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6d,0x70,0x6c, 0x65,0x74,0x65,0x28,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f,0x6e, 0x2c,0x6e,0x2e,0x61,0x66,0x74,0x65,0x72,0x4c,0x6f,0x63,0x29,0x2c,0x53,0x28,0x6e, 0x29,0x2c,0x76,0x7d,0x7d,0x2c,0x63,0x61,0x74,0x63,0x68,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x3b,0x74,0x3e,0x3d,0x30,0x3b, 0x2d,0x2d,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x74,0x72,0x79,0x45,0x6e,0x74,0x72,0x69,0x65,0x73,0x5b,0x74,0x5d,0x3b,0x69,0x66, 0x28,0x6e,0x2e,0x74,0x72,0x79,0x4c,0x6f,0x63,0x3d,0x3d,0x3d,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x69,0x6f, 0x6e,0x3b,0x69,0x66,0x28,0x22,0x74,0x68,0x72,0x6f,0x77,0x22,0x3d,0x3d,0x3d,0x72, 0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x2e,0x61, 0x72,0x67,0x3b,0x53,0x28,0x6e,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x7d,0x7d,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f, 0x72,0x28,0x22,0x69,0x6c,0x6c,0x65,0x67,0x61,0x6c,0x20,0x63,0x61,0x74,0x63,0x68, 0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x22,0x29,0x7d,0x2c,0x64,0x65,0x6c,0x65, 0x67,0x61,0x74,0x65,0x59,0x69,0x65,0x6c,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x74,0x68,0x69,0x73,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65,0x3d,0x7b, 0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x3a,0x41,0x28,0x65,0x29,0x2c,0x72,0x65, 0x73,0x75,0x6c,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x6e,0x2c,0x6e,0x65,0x78,0x74,0x4c, 0x6f,0x63,0x3a,0x72,0x7d,0x2c,0x22,0x6e,0x65,0x78,0x74,0x22,0x3d,0x3d,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x26,0x26,0x28,0x74,0x68,0x69, 0x73,0x2e,0x61,0x72,0x67,0x3d,0x74,0x29,0x2c,0x76,0x7d,0x7d,0x2c,0x65,0x7d,0x28, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x29,0x3b,0x74,0x72,0x79,0x7b,0x72, 0x65,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72,0x52,0x75,0x6e,0x74,0x69,0x6d, 0x65,0x3d,0x72,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6f,0x29,0x7b,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x67, 0x6c,0x6f,0x62,0x61,0x6c,0x54,0x68,0x69,0x73,0x3f,0x67,0x6c,0x6f,0x62,0x61,0x6c, 0x54,0x68,0x69,0x73,0x2e,0x72,0x65,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72, 0x52,0x75,0x6e,0x74,0x69,0x6d,0x65,0x3d,0x72,0x3a,0x46,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x22,0x72,0x22,0x2c,0x22,0x72,0x65,0x67,0x65,0x6e,0x65,0x72,0x61, 0x74,0x6f,0x72,0x52,0x75,0x6e,0x74,0x69,0x6d,0x65,0x20,0x3d,0x20,0x72,0x22,0x29, 0x28,0x72,0x29,0x7d,0x7d,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x65,0x26,0x26,0x6e,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x74,0x29,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x32,0x29,0x2c,0x6f,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c, 0x69,0x3d,0x6f,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x2c,0x61,0x3d,0x6f,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c, 0x75,0x3d,0x72,0x3f,0x72,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x54,0x61, 0x67,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x69,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x75,0x29, 0x2c,0x6e,0x3d,0x65,0x5b,0x75,0x5d,0x3b,0x74,0x72,0x79,0x7b,0x65,0x5b,0x75,0x5d, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x21,0x30, 0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x63,0x29,0x7b,0x7d,0x76,0x61,0x72,0x20,0x6f, 0x3d,0x61,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x72,0x26,0x26,0x28,0x74,0x3f,0x65,0x5b,0x75,0x5d,0x3d,0x6e,0x3a,0x64, 0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x5b,0x75,0x5d,0x29,0x2c,0x6f,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31, 0x39,0x30,0x29,0x2c,0x6f,0x3d,0x2f,0x5b,0x5e,0x2e,0x5b,0x5c,0x5d,0x5d,0x2b,0x7c, 0x5c,0x5b,0x28,0x3f,0x3a,0x28,0x2d,0x3f,0x5c,0x64,0x2b,0x28,0x3f,0x3a,0x5c,0x2e, 0x5c,0x64,0x2b,0x29,0x3f,0x29,0x7c,0x28,0x5b,0x22,0x27,0x5d,0x29,0x28,0x28,0x3f, 0x3a,0x28,0x3f,0x21,0x5c,0x32,0x29,0x5b,0x5e,0x5c,0x5c,0x5d,0x7c,0x5c,0x5c,0x2e, 0x29,0x2a,0x3f,0x29,0x5c,0x32,0x29,0x5c,0x5d,0x7c,0x28,0x3f,0x3d,0x28,0x3f,0x3a, 0x5c,0x2e,0x7c,0x5c,0x5b,0x5c,0x5d,0x29,0x28,0x3f,0x3a,0x5c,0x2e,0x7c,0x5c,0x5b, 0x5c,0x5d,0x7c,0x24,0x29,0x29,0x2f,0x67,0x2c,0x69,0x3d,0x2f,0x5c,0x5c,0x28,0x5c, 0x5c,0x29,0x3f,0x2f,0x67,0x2c,0x61,0x3d,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x34,0x36,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x68, 0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74,0x28,0x30,0x29,0x26,0x26,0x74,0x2e,0x70, 0x75,0x73,0x68,0x28,0x22,0x22,0x29,0x2c,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63, 0x65,0x28,0x6f,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x72,0x3f, 0x6f,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x69,0x2c,0x22,0x24,0x31,0x22, 0x29,0x3a,0x6e,0x7c,0x7c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x74,0x7d,0x29,0x29,0x3b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x61,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x31,0x39,0x31,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x72,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x35,0x30, 0x30,0x3d,0x3d,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x26,0x26,0x6e,0x2e,0x63,0x6c, 0x65,0x61,0x72,0x28,0x29,0x2c,0x65,0x7d,0x29,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x63, 0x61,0x63,0x68,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x39,0x39,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x26,0x26,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70, 0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x45,0x78,0x70,0x65,0x63,0x74,0x65,0x64, 0x20,0x61,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x29,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2c,0x6f,0x3d,0x74,0x3f,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69, 0x73,0x2c,0x72,0x29,0x3a,0x72,0x5b,0x30,0x5d,0x2c,0x69,0x3d,0x6e,0x2e,0x63,0x61, 0x63,0x68,0x65,0x3b,0x69,0x66,0x28,0x69,0x2e,0x68,0x61,0x73,0x28,0x6f,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x2e,0x67,0x65,0x74,0x28,0x6f,0x29,0x3b, 0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63, 0x61,0x63,0x68,0x65,0x3d,0x69,0x2e,0x73,0x65,0x74,0x28,0x6f,0x2c,0x61,0x29,0x7c, 0x7c,0x69,0x2c,0x61,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x63, 0x61,0x63,0x68,0x65,0x3d,0x6e,0x65,0x77,0x28,0x6f,0x2e,0x43,0x61,0x63,0x68,0x65, 0x7c,0x7c,0x72,0x29,0x2c,0x6e,0x7d,0x6f,0x2e,0x43,0x61,0x63,0x68,0x65,0x3d,0x72, 0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6f,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x39,0x33,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x37, 0x34,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x30,0x31,0x29,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x7b,0x68,0x61,0x73,0x68, 0x3a,0x6e,0x65,0x77,0x20,0x72,0x2c,0x6d,0x61,0x70,0x3a,0x6e,0x65,0x77,0x28,0x69, 0x7c,0x7c,0x6f,0x29,0x2c,0x73,0x74,0x72,0x69,0x6e,0x67,0x3a,0x6e,0x65,0x77,0x20, 0x72,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x39,0x34, 0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x39,0x39,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32, 0x30,0x30,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x32,0x30,0x31,0x29,0x2c,0x75,0x3d,0x6e, 0x28,0x32,0x30,0x32,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x6c,0x65,0x61,0x72, 0x28,0x29,0x3b,0x2b,0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x65,0x5b,0x74,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x28,0x72, 0x5b,0x30,0x5d,0x2c,0x72,0x5b,0x31,0x5d,0x29,0x7d,0x7d,0x63,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x63,0x6c,0x65,0x61,0x72,0x3d,0x72,0x2c,0x63, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x64,0x65,0x6c,0x65,0x74, 0x65,0x3d,0x6f,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x67,0x65,0x74,0x3d,0x69,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2e,0x68,0x61,0x73,0x3d,0x61,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x73,0x65,0x74,0x3d,0x75,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x63,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37, 0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64, 0x61,0x74,0x61,0x5f,0x5f,0x3d,0x72,0x3f,0x72,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3a, 0x7b,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x31,0x38,0x29,0x2c,0x6f,0x3d, 0x6e,0x28,0x31,0x39,0x36,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x30,0x30,0x29,0x2c, 0x61,0x3d,0x6e,0x28,0x31,0x31,0x39,0x29,0x2c,0x75,0x3d,0x2f,0x5e,0x5c,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x2e,0x2b,0x3f,0x43,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x5c,0x5d,0x24,0x2f,0x2c,0x63,0x3d,0x46,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x6c,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2c,0x73,0x3d,0x63,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2c,0x66,0x3d, 0x6c,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x2c,0x64,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x5e,0x22,0x2b,0x73,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x66,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x2f,0x5b,0x5c,0x5c,0x5e,0x24,0x2e,0x2a,0x2b,0x3f,0x28,0x29,0x5b,0x5c,0x5d,0x7b, 0x7d,0x7c,0x5d,0x2f,0x67,0x2c,0x22,0x5c,0x5c,0x24,0x26,0x22,0x29,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x7c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29, 0x2e,0x2a,0x3f,0x28,0x3f,0x3d,0x5c,0x5c,0x5c,0x28,0x29,0x7c,0x20,0x66,0x6f,0x72, 0x20,0x2e,0x2b,0x3f,0x28,0x3f,0x3d,0x5c,0x5c,0x5c,0x5d,0x29,0x2f,0x67,0x2c,0x22, 0x24,0x31,0x2e,0x2a,0x3f,0x22,0x29,0x2b,0x22,0x24,0x22,0x29,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x21,0x69,0x28,0x65,0x29, 0x7c,0x7c,0x6f,0x28,0x65,0x29,0x29,0x26,0x26,0x28,0x72,0x28,0x65,0x29,0x3f,0x64, 0x3a,0x75,0x29,0x2e,0x74,0x65,0x73,0x74,0x28,0x61,0x28,0x65,0x29,0x29,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x39,0x37,0x29,0x2c,0x6f,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x2f,0x5b,0x5e,0x2e,0x5d,0x2b,0x24,0x2f,0x2e,0x65,0x78,0x65,0x63,0x28,0x72, 0x26,0x26,0x72,0x2e,0x6b,0x65,0x79,0x73,0x26,0x26,0x72,0x2e,0x6b,0x65,0x79,0x73, 0x2e,0x49,0x45,0x5f,0x50,0x52,0x4f,0x54,0x4f,0x7c,0x7c,0x22,0x22,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x22,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x28, 0x73,0x72,0x63,0x29,0x5f,0x31,0x2e,0x22,0x2b,0x65,0x3a,0x22,0x22,0x7d,0x28,0x29, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x6f, 0x26,0x26,0x6f,0x20,0x69,0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x34,0x30,0x29,0x5b,0x22,0x5f,0x5f,0x63,0x6f,0x72,0x65,0x2d,0x6a, 0x73,0x5f,0x73,0x68,0x61,0x72,0x65,0x64,0x5f,0x5f,0x22,0x5d,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3a,0x65,0x5b,0x74,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x73,0x28, 0x65,0x29,0x26,0x26,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x5b,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2d,0x3d,0x74,0x3f, 0x31,0x3a,0x30,0x2c,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x37,0x33,0x29,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b, 0x69,0x66,0x28,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x5b,0x65,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x5f,0x5f,0x6c,0x6f,0x64,0x61,0x73,0x68, 0x5f,0x68,0x61,0x73,0x68,0x5f,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5f, 0x5f,0x22,0x3d,0x3d,0x3d,0x6e,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6e,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c, 0x65,0x29,0x3f,0x74,0x5b,0x65,0x5d,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x33,0x29,0x2c,0x6f,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x74,0x5b,0x65,0x5d,0x3a, 0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64, 0x61,0x74,0x61,0x5f,0x5f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x73,0x69,0x7a,0x65,0x2b,0x3d,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x73, 0x28,0x65,0x29,0x3f,0x30,0x3a,0x31,0x2c,0x6e,0x5b,0x65,0x5d,0x3d,0x72,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x22,0x5f,0x5f,0x6c,0x6f, 0x64,0x61,0x73,0x68,0x5f,0x68,0x61,0x73,0x68,0x5f,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x5f,0x5f,0x22,0x3a,0x74,0x2c,0x74,0x68,0x69,0x73,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f, 0x3d,0x5b,0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x30,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x35,0x29,0x2c,0x6f,0x3d, 0x41,0x72,0x72,0x61,0x79,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e, 0x73,0x70,0x6c,0x69,0x63,0x65,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f, 0x2c,0x6e,0x3d,0x72,0x28,0x74,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x28,0x6e,0x3c,0x30,0x29,0x26,0x26,0x28,0x6e,0x3d,0x3d,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2d,0x31,0x3f,0x74,0x2e,0x70,0x6f,0x70,0x28,0x29,0x3a,0x6f, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x6e,0x2c,0x31,0x29,0x2c,0x2d,0x2d,0x74, 0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x21,0x30,0x29,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61, 0x74,0x61,0x5f,0x5f,0x2c,0x6e,0x3d,0x72,0x28,0x74,0x2c,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x3c,0x30,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a, 0x74,0x5b,0x6e,0x5d,0x5b,0x31,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x37,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x2c,0x65,0x29,0x3e,0x2d,0x31,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x37,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x2c,0x6f,0x3d,0x72,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x3c,0x30,0x3f,0x28,0x2b,0x2b,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x2c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x65,0x2c,0x74,0x5d, 0x29,0x29,0x3a,0x6e,0x5b,0x6f,0x5d,0x5b,0x31,0x5d,0x3d,0x74,0x2c,0x74,0x68,0x69, 0x73,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x36,0x29,0x3b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x72,0x28,0x74,0x68, 0x69,0x73,0x2c,0x65,0x29,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65, 0x2d,0x3d,0x74,0x3f,0x31,0x3a,0x30,0x2c,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74, 0x7c,0x7c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22, 0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x74,0x7c,0x7c,0x22,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x22,0x3d,0x3d,0x74,0x3f,0x22,0x5f,0x5f,0x70,0x72,0x6f,0x74, 0x6f,0x5f,0x5f,0x22,0x21,0x3d,0x3d,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d, 0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x36,0x29,0x3b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x74, 0x68,0x69,0x73,0x2c,0x65,0x29,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x36,0x29,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x74,0x68,0x69,0x73,0x2c, 0x65,0x29,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x37,0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c, 0x6f,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x73,0x69,0x7a,0x65,0x2b,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x3d,0x6f,0x3f, 0x30,0x3a,0x31,0x2c,0x74,0x68,0x69,0x73,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x37,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x31,0x34,0x29,0x2c, 0x69,0x3d,0x6e,0x28,0x34,0x34,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x39,0x38,0x29,0x2c, 0x75,0x3d,0x72,0x3f,0x72,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3a, 0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x63,0x3d,0x75,0x3f,0x75,0x2e,0x74,0x6f,0x53, 0x74,0x72,0x69,0x6e,0x67,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3b,0x69,0x66,0x28,0x69,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x28,0x74,0x2c,0x65,0x29,0x2b,0x22,0x22,0x3b,0x69,0x66,0x28, 0x61,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x3f,0x63,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x29,0x3a,0x22,0x22,0x3b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x2b,0x22,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x30,0x22,0x3d, 0x3d,0x6e,0x26,0x26,0x31,0x2f,0x74,0x3d,0x3d,0x2d,0x49,0x6e,0x66,0x69,0x6e,0x69, 0x74,0x79,0x3f,0x22,0x2d,0x30,0x22,0x3a,0x6e,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72, 0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x6f,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x29,0x3b,0x2b, 0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x6f,0x5b,0x6e,0x5d,0x3d,0x74,0x28,0x65,0x5b,0x6e, 0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x32,0x29,0x2c,0x6f,0x3d, 0x6e,0x28,0x36,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x28,0x65,0x29,0x26,0x26,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5d,0x22,0x3d,0x3d,0x72, 0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x35,0x33, 0x29,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x72,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2c,0x22,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x7b,0x7d,0x2c, 0x22,0x22,0x2c,0x7b,0x7d,0x29,0x2c,0x65,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x74, 0x29,0x7b,0x7d,0x7d,0x28,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x6f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x31,0x38,0x29, 0x28,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x2d,0x31,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x74,0x29,0x2c,0x61,0x3d,0x72,0x28,0x74,0x29,0x2c,0x75,0x3d,0x61,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x75,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x63,0x3d,0x61,0x5b,0x65,0x3f,0x75,0x3a,0x2b,0x2b,0x6f,0x5d,0x3b,0x69,0x66,0x28, 0x21,0x31,0x3d,0x3d,0x3d,0x6e,0x28,0x69,0x5b,0x63,0x5d,0x2c,0x63,0x2c,0x69,0x29, 0x29,0x62,0x72,0x65,0x61,0x6b,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x32,0x30,0x29,0x2c, 0x6f,0x3d,0x6e,0x28,0x31,0x32,0x31,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x34,0x34,0x29, 0x2c,0x61,0x3d,0x6e,0x28,0x31,0x32,0x35,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x31,0x32, 0x32,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x31,0x32,0x36,0x29,0x2c,0x6c,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x69,0x28,0x65,0x29, 0x2c,0x73,0x3d,0x21,0x6e,0x26,0x26,0x6f,0x28,0x65,0x29,0x2c,0x66,0x3d,0x21,0x6e, 0x26,0x26,0x21,0x73,0x26,0x26,0x61,0x28,0x65,0x29,0x2c,0x64,0x3d,0x21,0x6e,0x26, 0x26,0x21,0x73,0x26,0x26,0x21,0x66,0x26,0x26,0x63,0x28,0x65,0x29,0x2c,0x70,0x3d, 0x6e,0x7c,0x7c,0x73,0x7c,0x7c,0x66,0x7c,0x7c,0x64,0x2c,0x68,0x3d,0x70,0x3f,0x72, 0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x53,0x74,0x72,0x69,0x6e,0x67, 0x29,0x3a,0x5b,0x5d,0x2c,0x76,0x3d,0x68,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x67,0x20,0x69,0x6e,0x20,0x65,0x29,0x21, 0x74,0x26,0x26,0x21,0x6c,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x67,0x29,0x7c, 0x7c,0x70,0x26,0x26,0x28,0x22,0x6c,0x65,0x6e,0x67,0x74,0x68,0x22,0x3d,0x3d,0x67, 0x7c,0x7c,0x66,0x26,0x26,0x28,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x3d,0x3d, 0x67,0x7c,0x7c,0x22,0x70,0x61,0x72,0x65,0x6e,0x74,0x22,0x3d,0x3d,0x67,0x29,0x7c, 0x7c,0x64,0x26,0x26,0x28,0x22,0x62,0x75,0x66,0x66,0x65,0x72,0x22,0x3d,0x3d,0x67, 0x7c,0x7c,0x22,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x22,0x3d,0x3d, 0x67,0x7c,0x7c,0x22,0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x22,0x3d, 0x3d,0x67,0x29,0x7c,0x7c,0x75,0x28,0x67,0x2c,0x76,0x29,0x29,0x7c,0x7c,0x68,0x2e, 0x70,0x75,0x73,0x68,0x28,0x67,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29, 0x3b,0x2b,0x2b,0x6e,0x3c,0x65,0x3b,0x29,0x72,0x5b,0x6e,0x5d,0x3d,0x74,0x28,0x6e, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x36,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30,0x32,0x29,0x2c, 0x69,0x3d,0x6e,0x28,0x36,0x33,0x29,0x2c,0x61,0x3d,0x7b,0x7d,0x3b,0x61,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x46,0x6c,0x6f,0x61,0x74,0x33,0x32,0x41, 0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x46,0x6c,0x6f,0x61,0x74,0x36,0x34,0x41,0x72,0x72,0x61,0x79,0x5d, 0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e, 0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x49,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79, 0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x49, 0x6e,0x74,0x33,0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72, 0x61,0x79,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x55,0x69,0x6e,0x74,0x38,0x43,0x6c,0x61,0x6d,0x70,0x65,0x64,0x41,0x72,0x72, 0x61,0x79,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x55,0x69,0x6e,0x74,0x31,0x36,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d, 0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x55,0x69,0x6e,0x74,0x33, 0x32,0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x21,0x30,0x2c,0x61,0x5b,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x41,0x72,0x72,0x61,0x79,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x5d, 0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x42,0x6f, 0x6f,0x6c,0x65,0x61,0x6e,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x5d,0x22,0x5d,0x3d, 0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x65,0x5d, 0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x45,0x72, 0x72,0x6f,0x72,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x5d,0x22,0x5d,0x3d,0x61,0x5b, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x5d,0x3d, 0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4e,0x75,0x6d,0x62,0x65, 0x72,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x5d,0x22,0x5d,0x3d,0x61, 0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x65,0x74,0x5d,0x22,0x5d, 0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x74,0x72,0x69, 0x6e,0x67,0x5d,0x22,0x5d,0x3d,0x61,0x5b,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x5d,0x22,0x5d,0x3d,0x21,0x31,0x2c,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x65,0x29, 0x26,0x26,0x6f,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x21, 0x21,0x61,0x5b,0x72,0x28,0x65,0x29,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x29,0x7d,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x31,0x37,0x29,0x2c,0x6f,0x3d,0x74,0x26,0x26, 0x21,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x74,0x2c,0x69, 0x3d,0x6f,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x21,0x65,0x2e,0x6e,0x6f, 0x64,0x65,0x54,0x79,0x70,0x65,0x26,0x26,0x65,0x2c,0x61,0x3d,0x69,0x26,0x26,0x69, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x3d,0x3d,0x6f,0x26,0x26,0x72,0x2e, 0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2c,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x69, 0x26,0x26,0x69,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x26,0x26,0x69,0x2e,0x72, 0x65,0x71,0x75,0x69,0x72,0x65,0x28,0x22,0x75,0x74,0x69,0x6c,0x22,0x29,0x2e,0x74, 0x79,0x70,0x65,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c,0x61, 0x26,0x26,0x61,0x2e,0x62,0x69,0x6e,0x64,0x69,0x6e,0x67,0x26,0x26,0x61,0x2e,0x62, 0x69,0x6e,0x64,0x69,0x6e,0x67,0x28,0x22,0x75,0x74,0x69,0x6c,0x22,0x29,0x7d,0x63, 0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x7d,0x7d,0x28,0x29,0x3b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x75,0x7d,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x6e,0x28,0x39,0x35,0x29,0x28,0x65,0x29,0x29,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x32,0x36,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x32,0x32,0x37,0x29,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66, 0x28,0x21,0x72,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x5d,0x3b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x65,0x29,0x29,0x69,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26, 0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x21,0x3d,0x6e, 0x26,0x26,0x74,0x2e,0x70,0x75,0x73,0x68,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x26,0x26,0x65,0x2e,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x3d,0x3d,0x3d,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x74,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x7c,0x7c,0x6e,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x32,0x32,0x38,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x29,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x74,0x28,0x6e, 0x29,0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x31, 0x38,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30,0x32,0x29,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65, 0x26,0x26,0x6f,0x28,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x21, 0x72,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32, 0x33,0x31,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x35,0x39,0x29,0x2c,0x69,0x3d,0x6e, 0x28,0x31,0x33,0x32,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x6f,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3d, 0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x74,0x5b,0x30,0x5d,0x5b, 0x32,0x5d,0x3f,0x69,0x28,0x74,0x5b,0x30,0x5d,0x5b,0x30,0x5d,0x2c,0x74,0x5b,0x30, 0x5d,0x5b,0x31,0x5d,0x29,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x3d,0x3d,0x65,0x7c,0x7c, 0x72,0x28,0x6e,0x2c,0x65,0x2c,0x74,0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x31,0x32,0x38,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x32,0x39, 0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x69,0x29,0x7b,0x76,0x61, 0x72,0x20,0x61,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x75,0x3d,0x61, 0x2c,0x63,0x3d,0x21,0x69,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x75,0x3b,0x66,0x6f,0x72,0x28,0x65,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x3b,0x61,0x2d,0x2d,0x3b,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6c,0x3d,0x6e,0x5b,0x61,0x5d,0x3b,0x69,0x66,0x28,0x63,0x26, 0x26,0x6c,0x5b,0x32,0x5d,0x3f,0x6c,0x5b,0x31,0x5d,0x21,0x3d,0x3d,0x65,0x5b,0x6c, 0x5b,0x30,0x5d,0x5d,0x3a,0x21,0x28,0x6c,0x5b,0x30,0x5d,0x69,0x6e,0x20,0x65,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x66,0x6f,0x72,0x28,0x3b,0x2b, 0x2b,0x61,0x3c,0x75,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x28,0x6c,0x3d, 0x6e,0x5b,0x61,0x5d,0x29,0x5b,0x30,0x5d,0x2c,0x66,0x3d,0x65,0x5b,0x73,0x5d,0x2c, 0x64,0x3d,0x6c,0x5b,0x31,0x5d,0x3b,0x69,0x66,0x28,0x63,0x26,0x26,0x6c,0x5b,0x32, 0x5d,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x66, 0x26,0x26,0x21,0x28,0x73,0x20,0x69,0x6e,0x20,0x65,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x70,0x3d, 0x6e,0x65,0x77,0x20,0x72,0x3b,0x69,0x66,0x28,0x69,0x29,0x76,0x61,0x72,0x20,0x68, 0x3d,0x69,0x28,0x66,0x2c,0x64,0x2c,0x73,0x2c,0x65,0x2c,0x74,0x2c,0x70,0x29,0x3b, 0x69,0x66,0x28,0x21,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x68,0x3f, 0x6f,0x28,0x64,0x2c,0x66,0x2c,0x33,0x2c,0x69,0x2c,0x70,0x29,0x3a,0x68,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x30,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x34,0x29, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74, 0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73, 0x69,0x7a,0x65,0x3d,0x30,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x2c, 0x6e,0x3d,0x74,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x74, 0x2e,0x73,0x69,0x7a,0x65,0x2c,0x6e,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61, 0x74,0x61,0x5f,0x5f,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x34,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30, 0x31,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x39,0x39,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f, 0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x6e,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d, 0x6e,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3b,0x69,0x66,0x28,0x21,0x6f, 0x7c,0x7c,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3c,0x31,0x39,0x39,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x65,0x2c, 0x74,0x5d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65,0x3d,0x2b,0x2b, 0x6e,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x74,0x68,0x69,0x73,0x3b,0x6e,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20, 0x69,0x28,0x61,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x73,0x65, 0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x73,0x69,0x7a,0x65, 0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x74,0x68,0x69,0x73,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x32,0x38,0x29,0x2c,0x6f,0x3d,0x6e,0x28, 0x31,0x33,0x30,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x34,0x33,0x29,0x2c,0x61,0x3d, 0x6e,0x28,0x32,0x34,0x37,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x32,0x35,0x34,0x29,0x2c, 0x63,0x3d,0x6e,0x28,0x34,0x34,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x31,0x32,0x35,0x29, 0x2c,0x73,0x3d,0x6e,0x28,0x31,0x32,0x36,0x29,0x2c,0x66,0x3d,0x22,0x5b,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5d,0x22, 0x2c,0x64,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61, 0x79,0x5d,0x22,0x2c,0x70,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x5d,0x22,0x2c,0x68,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x76,0x2c,0x67,0x2c,0x6d,0x29,0x7b,0x76,0x61,0x72,0x20,0x62,0x3d, 0x63,0x28,0x65,0x29,0x2c,0x79,0x3d,0x63,0x28,0x74,0x29,0x2c,0x5f,0x3d,0x62,0x3f, 0x64,0x3a,0x75,0x28,0x65,0x29,0x2c,0x77,0x3d,0x79,0x3f,0x64,0x3a,0x75,0x28,0x74, 0x29,0x2c,0x4f,0x3d,0x28,0x5f,0x3d,0x5f,0x3d,0x3d,0x66,0x3f,0x70,0x3a,0x5f,0x29, 0x3d,0x3d,0x70,0x2c,0x78,0x3d,0x28,0x77,0x3d,0x77,0x3d,0x3d,0x66,0x3f,0x70,0x3a, 0x77,0x29,0x3d,0x3d,0x70,0x2c,0x45,0x3d,0x5f,0x3d,0x3d,0x77,0x3b,0x69,0x66,0x28, 0x45,0x26,0x26,0x6c,0x28,0x65,0x29,0x29,0x7b,0x69,0x66,0x28,0x21,0x6c,0x28,0x74, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x62,0x3d,0x21,0x30,0x2c, 0x4f,0x3d,0x21,0x31,0x7d,0x69,0x66,0x28,0x45,0x26,0x26,0x21,0x4f,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6d,0x7c,0x7c,0x28,0x6d,0x3d,0x6e,0x65,0x77,0x20,0x72, 0x29,0x2c,0x62,0x7c,0x7c,0x73,0x28,0x65,0x29,0x3f,0x6f,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x2c,0x76,0x2c,0x67,0x2c,0x6d,0x29,0x3a,0x69,0x28,0x65,0x2c,0x74,0x2c,0x5f, 0x2c,0x6e,0x2c,0x76,0x2c,0x67,0x2c,0x6d,0x29,0x3b,0x69,0x66,0x28,0x21,0x28,0x31, 0x26,0x6e,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6a,0x3d,0x4f,0x26,0x26,0x68,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x22,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65, 0x64,0x5f,0x5f,0x22,0x29,0x2c,0x6b,0x3d,0x78,0x26,0x26,0x68,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x74,0x2c,0x22,0x5f,0x5f,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x5f,0x5f, 0x22,0x29,0x3b,0x69,0x66,0x28,0x6a,0x7c,0x7c,0x6b,0x29,0x7b,0x76,0x61,0x72,0x20, 0x53,0x3d,0x6a,0x3f,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x3a,0x65,0x2c, 0x43,0x3d,0x6b,0x3f,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x28,0x29,0x3a,0x74,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x7c,0x7c,0x28,0x6d,0x3d,0x6e,0x65,0x77, 0x20,0x72,0x29,0x2c,0x67,0x28,0x53,0x2c,0x43,0x2c,0x6e,0x2c,0x76,0x2c,0x6d,0x29, 0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x45,0x26,0x26,0x28,0x6d,0x7c, 0x7c,0x28,0x6d,0x3d,0x6e,0x65,0x77,0x20,0x72,0x29,0x2c,0x61,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x76,0x2c,0x67,0x2c,0x6d,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x39,0x39,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x33,0x39, 0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x34,0x30,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x61,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d, 0x31,0x2c,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x3d,0x6e,0x65,0x77,0x20,0x72,0x3b,0x2b, 0x2b,0x74,0x3c,0x6e,0x3b,0x29,0x74,0x68,0x69,0x73,0x2e,0x61,0x64,0x64,0x28,0x65, 0x5b,0x74,0x5d,0x29,0x7d,0x61,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x61,0x64,0x64,0x3d,0x61,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x2e,0x70,0x75,0x73,0x68,0x3d,0x6f,0x2c,0x61,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x3d,0x69,0x2c,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x61,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61,0x5f,0x5f,0x2e, 0x73,0x65,0x74,0x28,0x65,0x2c,0x22,0x5f,0x5f,0x6c,0x6f,0x64,0x61,0x73,0x68,0x5f, 0x68,0x61,0x73,0x68,0x5f,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x5f,0x5f, 0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x5f,0x64,0x61,0x74,0x61, 0x5f,0x5f,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72, 0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x69,0x66,0x28,0x74,0x28, 0x65,0x5b,0x6e,0x5d,0x2c,0x6e,0x2c,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x68,0x61,0x73, 0x28,0x74,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x37,0x32, 0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x34,0x34,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31, 0x32,0x30,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x31,0x33,0x30,0x29,0x2c,0x75,0x3d,0x6e, 0x28,0x32,0x34,0x35,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x32,0x34,0x36,0x29,0x2c,0x6c, 0x3d,0x72,0x3f,0x72,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3a,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x73,0x3d,0x6c,0x3f,0x6c,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x4f,0x66,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6c,0x2c,0x66,0x2c,0x64,0x29,0x7b,0x73,0x77,0x69, 0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x5d,0x22,0x3a,0x69, 0x66,0x28,0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d, 0x74,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x7c,0x7c,0x65,0x2e, 0x62,0x79,0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x21,0x3d,0x74,0x2e,0x62,0x79, 0x74,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x3b,0x65,0x3d,0x65,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x2c,0x74,0x3d,0x74, 0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x3b,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72, 0x5d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x65,0x2e,0x62,0x79,0x74, 0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d,0x74,0x2e,0x62,0x79,0x74,0x65,0x4c, 0x65,0x6e,0x67,0x74,0x68,0x7c,0x7c,0x21,0x66,0x28,0x6e,0x65,0x77,0x20,0x6f,0x28, 0x65,0x29,0x2c,0x6e,0x65,0x77,0x20,0x6f,0x28,0x74,0x29,0x29,0x29,0x3b,0x63,0x61, 0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x42,0x6f,0x6f,0x6c,0x65, 0x61,0x6e,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x20,0x44,0x61,0x74,0x65,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x5d,0x22,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x2b,0x65,0x2c,0x2b,0x74,0x29,0x3b,0x63, 0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x45,0x72,0x72,0x6f, 0x72,0x5d,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x3d,0x3d,0x74,0x2e,0x6e,0x61,0x6d,0x65,0x26,0x26,0x65,0x2e,0x6d,0x65,0x73, 0x73,0x61,0x67,0x65,0x3d,0x3d,0x74,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3b, 0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x52,0x65,0x67, 0x45,0x78,0x70,0x5d,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x5d,0x22,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x3d,0x3d,0x74,0x2b,0x22,0x22,0x3b,0x63,0x61,0x73,0x65,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x3a,0x76,0x61, 0x72,0x20,0x70,0x3d,0x75,0x3b,0x63,0x61,0x73,0x65,0x22,0x5b,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x20,0x53,0x65,0x74,0x5d,0x22,0x3a,0x76,0x61,0x72,0x20,0x68,0x3d,0x31, 0x26,0x72,0x3b,0x69,0x66,0x28,0x70,0x7c,0x7c,0x28,0x70,0x3d,0x63,0x29,0x2c,0x65, 0x2e,0x73,0x69,0x7a,0x65,0x21,0x3d,0x74,0x2e,0x73,0x69,0x7a,0x65,0x26,0x26,0x21, 0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x76, 0x3d,0x64,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x76,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x3d,0x3d,0x74,0x3b,0x72,0x7c,0x3d,0x32,0x2c, 0x64,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x67, 0x3d,0x61,0x28,0x70,0x28,0x65,0x29,0x2c,0x70,0x28,0x74,0x29,0x2c,0x72,0x2c,0x6c, 0x2c,0x66,0x2c,0x64,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x2e,0x64, 0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x2c,0x67,0x3b,0x63,0x61,0x73,0x65,0x22, 0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x5d,0x22, 0x3a,0x69,0x66,0x28,0x73,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x65,0x29,0x3d,0x3d,0x73,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x34,0x30,0x29,0x2e,0x55,0x69,0x6e,0x74,0x38,0x41,0x72, 0x72,0x61,0x79,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e,0x3d, 0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x2e,0x73,0x69,0x7a,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x6e,0x5b, 0x2b,0x2b,0x74,0x5d,0x3d,0x5b,0x72,0x2c,0x65,0x5d,0x7d,0x29,0x29,0x2c,0x6e,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x2c,0x6e, 0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x2e,0x73,0x69,0x7a,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x5b,0x2b, 0x2b,0x74,0x5d,0x3d,0x65,0x7d,0x29,0x29,0x2c,0x6e,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x32,0x34,0x38,0x29,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73, 0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x2c,0x69,0x2c,0x61,0x2c,0x75,0x29,0x7b,0x76,0x61,0x72,0x20, 0x63,0x3d,0x31,0x26,0x6e,0x2c,0x6c,0x3d,0x72,0x28,0x65,0x29,0x2c,0x73,0x3d,0x6c, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x66,0x28,0x73,0x21,0x3d,0x72,0x28, 0x74,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x21,0x63,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x66, 0x3d,0x73,0x3b,0x66,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x64,0x3d,0x6c, 0x5b,0x66,0x5d,0x3b,0x69,0x66,0x28,0x21,0x28,0x63,0x3f,0x64,0x20,0x69,0x6e,0x20, 0x74,0x3a,0x6f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x2c,0x64,0x29,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x76,0x61,0x72,0x20,0x70,0x3d,0x75,0x2e, 0x67,0x65,0x74,0x28,0x65,0x29,0x2c,0x68,0x3d,0x75,0x2e,0x67,0x65,0x74,0x28,0x74, 0x29,0x3b,0x69,0x66,0x28,0x70,0x26,0x26,0x68,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x70,0x3d,0x3d,0x74,0x26,0x26,0x68,0x3d,0x3d,0x65,0x3b,0x76,0x61,0x72,0x20, 0x76,0x3d,0x21,0x30,0x3b,0x75,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c, 0x75,0x2e,0x73,0x65,0x74,0x28,0x74,0x2c,0x65,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x67,0x3d,0x63,0x3b,0x2b,0x2b,0x66,0x3c,0x73,0x3b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6d,0x3d,0x65,0x5b,0x64,0x3d,0x6c,0x5b,0x66,0x5d,0x5d,0x2c,0x62, 0x3d,0x74,0x5b,0x64,0x5d,0x3b,0x69,0x66,0x28,0x69,0x29,0x76,0x61,0x72,0x20,0x79, 0x3d,0x63,0x3f,0x69,0x28,0x62,0x2c,0x6d,0x2c,0x64,0x2c,0x74,0x2c,0x65,0x2c,0x75, 0x29,0x3a,0x69,0x28,0x6d,0x2c,0x62,0x2c,0x64,0x2c,0x65,0x2c,0x74,0x2c,0x75,0x29, 0x3b,0x69,0x66,0x28,0x21,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x79, 0x3f,0x6d,0x3d,0x3d,0x3d,0x62,0x7c,0x7c,0x61,0x28,0x6d,0x2c,0x62,0x2c,0x6e,0x2c, 0x69,0x2c,0x75,0x29,0x3a,0x79,0x29,0x29,0x7b,0x76,0x3d,0x21,0x31,0x3b,0x62,0x72, 0x65,0x61,0x6b,0x7d,0x67,0x7c,0x7c,0x28,0x67,0x3d,0x22,0x63,0x6f,0x6e,0x73,0x74, 0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x3d,0x3d,0x64,0x29,0x7d,0x69,0x66,0x28,0x76, 0x26,0x26,0x21,0x67,0x29,0x7b,0x76,0x61,0x72,0x20,0x5f,0x3d,0x65,0x2e,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2c,0x77,0x3d,0x74,0x2e,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3b,0x5f,0x3d,0x3d,0x77,0x7c,0x7c, 0x21,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x22,0x69, 0x6e,0x20,0x65,0x29,0x7c,0x7c,0x21,0x28,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x22,0x69,0x6e,0x20,0x74,0x29,0x7c,0x7c,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x5f, 0x26,0x26,0x5f,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x5f, 0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x77,0x26,0x26,0x77,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x6f,0x66,0x20,0x77,0x7c,0x7c,0x28,0x76,0x3d,0x21,0x31,0x29,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65, 0x29,0x2c,0x75,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x74,0x29,0x2c,0x76,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x34,0x39,0x29,0x2c,0x6f, 0x3d,0x6e,0x28,0x32,0x35,0x31,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x30,0x33,0x29, 0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28, 0x65,0x2c,0x69,0x2c,0x6f,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x32,0x35,0x30,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x34,0x34,0x29,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x28, 0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x65,0x29,0x3f,0x69, 0x3a,0x72,0x28,0x69,0x2c,0x6e,0x28,0x65,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c, 0x72,0x3d,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x3d,0x65,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x2b,0x2b,0x6e,0x3c,0x72,0x3b,0x29,0x65,0x5b,0x6f, 0x2b,0x6e,0x5d,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x35,0x32,0x29, 0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x35,0x33,0x29,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x70,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x49,0x73,0x45,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c, 0x65,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73, 0x2c,0x75,0x3d,0x61,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f, 0x5b,0x5d,0x3a,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x2c, 0x72,0x28,0x61,0x28,0x65,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x65,0x2c,0x74,0x29,0x7d,0x29,0x29,0x29,0x7d,0x3a,0x6f,0x3b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x75,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2d,0x31,0x2c,0x72,0x3d, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30,0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2c,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x5b,0x5d,0x3b,0x2b,0x2b,0x6e,0x3c, 0x72,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x65,0x5b,0x6e,0x5d,0x3b,0x74, 0x28,0x61,0x2c,0x6e,0x2c,0x65,0x29,0x26,0x26,0x28,0x69,0x5b,0x6f,0x2b,0x2b,0x5d, 0x3d,0x61,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x32,0x35,0x35,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30, 0x31,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x35,0x36,0x29,0x2c,0x61,0x3d,0x6e,0x28, 0x32,0x35,0x37,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x32,0x35,0x38,0x29,0x2c,0x63,0x3d, 0x6e,0x28,0x36,0x32,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x31,0x31,0x39,0x29,0x2c,0x73, 0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4d,0x61,0x70,0x5d,0x22,0x2c, 0x66,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69, 0x73,0x65,0x5d,0x22,0x2c,0x64,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20, 0x53,0x65,0x74,0x5d,0x22,0x2c,0x70,0x3d,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x20,0x57,0x65,0x61,0x6b,0x4d,0x61,0x70,0x5d,0x22,0x2c,0x68,0x3d,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x5d,0x22, 0x2c,0x76,0x3d,0x6c,0x28,0x72,0x29,0x2c,0x67,0x3d,0x6c,0x28,0x6f,0x29,0x2c,0x6d, 0x3d,0x6c,0x28,0x69,0x29,0x2c,0x62,0x3d,0x6c,0x28,0x61,0x29,0x2c,0x79,0x3d,0x6c, 0x28,0x75,0x29,0x2c,0x5f,0x3d,0x63,0x3b,0x28,0x72,0x26,0x26,0x5f,0x28,0x6e,0x65, 0x77,0x20,0x72,0x28,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66, 0x66,0x65,0x72,0x28,0x31,0x29,0x29,0x29,0x21,0x3d,0x68,0x7c,0x7c,0x6f,0x26,0x26, 0x5f,0x28,0x6e,0x65,0x77,0x20,0x6f,0x29,0x21,0x3d,0x73,0x7c,0x7c,0x69,0x26,0x26, 0x5f,0x28,0x69,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x29,0x29,0x21,0x3d, 0x66,0x7c,0x7c,0x61,0x26,0x26,0x5f,0x28,0x6e,0x65,0x77,0x20,0x61,0x29,0x21,0x3d, 0x64,0x7c,0x7c,0x75,0x26,0x26,0x5f,0x28,0x6e,0x65,0x77,0x20,0x75,0x29,0x21,0x3d, 0x70,0x29,0x26,0x26,0x28,0x5f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x65,0x29,0x2c,0x6e,0x3d, 0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x5d, 0x22,0x3d,0x3d,0x74,0x3f,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x72,0x3d,0x6e,0x3f,0x6c,0x28, 0x6e,0x29,0x3a,0x22,0x22,0x3b,0x69,0x66,0x28,0x72,0x29,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x72,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x76,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x68,0x3b,0x63,0x61,0x73,0x65,0x20,0x67,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x3b,0x63,0x61,0x73,0x65,0x20,0x6d,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x3b,0x63,0x61,0x73,0x65,0x20,0x62,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x64,0x3b,0x63,0x61,0x73,0x65,0x20,0x79,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x70,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x29,0x2c, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x5f,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x35,0x33,0x29,0x28,0x6e,0x28,0x34,0x30,0x29,0x2c,0x22, 0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x35,0x33,0x29,0x28,0x6e,0x28,0x34,0x30,0x29,0x2c,0x22,0x50,0x72,0x6f,0x6d,0x69, 0x73,0x65,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x35,0x33,0x29,0x28,0x6e,0x28, 0x34,0x30,0x29,0x2c,0x22,0x53,0x65,0x74,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x35,0x33,0x29,0x28,0x6e,0x28,0x34,0x30,0x29,0x2c,0x22,0x57,0x65,0x61,0x6b,0x4d, 0x61,0x70,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x33,0x31,0x29,0x2c,0x6f, 0x3d,0x6e,0x28,0x31,0x30,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x6f,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x74, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2d,0x2d,0x3b,0x29,0x7b,0x76,0x61, 0x72,0x20,0x69,0x3d,0x74,0x5b,0x6e,0x5d,0x2c,0x61,0x3d,0x65,0x5b,0x69,0x5d,0x3b, 0x74,0x5b,0x6e,0x5d,0x3d,0x5b,0x69,0x2c,0x61,0x2c,0x72,0x28,0x61,0x29,0x5d,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x31,0x32,0x39,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x36,0x31,0x29, 0x2c,0x69,0x3d,0x6e,0x28,0x32,0x36,0x32,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x39,0x37, 0x29,0x2c,0x75,0x3d,0x6e,0x28,0x31,0x33,0x31,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x31, 0x33,0x32,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x37,0x37,0x29,0x3b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x28,0x65,0x29,0x26, 0x26,0x75,0x28,0x74,0x29,0x3f,0x63,0x28,0x6c,0x28,0x65,0x29,0x2c,0x74,0x29,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x61,0x3d,0x6f,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x26,0x26,0x61,0x3d,0x3d,0x3d, 0x74,0x3f,0x69,0x28,0x6e,0x2c,0x65,0x29,0x3a,0x72,0x28,0x74,0x2c,0x61,0x2c,0x33, 0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x33,0x33, 0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3a,0x72,0x28,0x65,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x6e,0x3a,0x6f,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x36,0x33,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x31,0x31,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x6f,0x28, 0x65,0x2c,0x74,0x2c,0x72,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x74, 0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x36,0x36,0x29,0x2c,0x6f,0x3d,0x6e,0x28, 0x32,0x36,0x37,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x39,0x37,0x29,0x2c,0x61,0x3d,0x6e, 0x28,0x37,0x37,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x69,0x28,0x65,0x29,0x3f,0x72,0x28,0x61,0x28,0x65,0x29,0x29,0x3a,0x6f, 0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3a,0x74,0x5b,0x65,0x5d,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x31,0x33,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x74,0x2c,0x65,0x29,0x7d,0x7d, 0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x2d,0x31,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x30, 0x3a,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x66,0x6f,0x72,0x28,0x72,0x26, 0x26,0x69,0x26,0x26,0x28,0x6e,0x3d,0x65,0x5b,0x2b,0x2b,0x6f,0x5d,0x29,0x3b,0x2b, 0x2b,0x6f,0x3c,0x69,0x3b,0x29,0x6e,0x3d,0x74,0x28,0x6e,0x2c,0x65,0x5b,0x6f,0x5d, 0x2c,0x6f,0x2c,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x37,0x30,0x29,0x2c,0x6f,0x3d, 0x6e,0x28,0x36,0x34,0x29,0x2c,0x69,0x3d,0x2f,0x5b,0x5c,0x78,0x63,0x30,0x2d,0x5c, 0x78,0x64,0x36,0x5c,0x78,0x64,0x38,0x2d,0x5c,0x78,0x66,0x36,0x5c,0x78,0x66,0x38, 0x2d,0x5c,0x78,0x66,0x66,0x5c,0x75,0x30,0x31,0x30,0x30,0x2d,0x5c,0x75,0x30,0x31, 0x37,0x66,0x5d,0x2f,0x67,0x2c,0x61,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22, 0x5b,0x5c,0x5c,0x75,0x30,0x33,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x30,0x33,0x36,0x66, 0x5c,0x5c,0x75,0x66,0x65,0x32,0x30,0x2d,0x5c,0x5c,0x75,0x66,0x65,0x32,0x66,0x5c, 0x5c,0x75,0x32,0x30,0x64,0x30,0x2d,0x5c,0x5c,0x75,0x32,0x30,0x66,0x66,0x5d,0x22, 0x2c,0x22,0x67,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x65,0x3d,0x6f,0x28,0x65,0x29,0x29,0x26,0x26,0x65,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x69,0x2c,0x72,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61, 0x63,0x65,0x28,0x61,0x2c,0x22,0x22,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x6e,0x28,0x32,0x37,0x31,0x29,0x28,0x7b,0x22,0x5c,0x78,0x63,0x30,0x22,0x3a, 0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63,0x31,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22, 0x5c,0x78,0x63,0x32,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63,0x33,0x22, 0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x63,0x34,0x22,0x3a,0x22,0x41,0x22,0x2c, 0x22,0x5c,0x78,0x63,0x35,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x78,0x65,0x30, 0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78,0x65,0x31,0x22,0x3a,0x22,0x61,0x22, 0x2c,0x22,0x5c,0x78,0x65,0x32,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78,0x65, 0x33,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78,0x65,0x34,0x22,0x3a,0x22,0x61, 0x22,0x2c,0x22,0x5c,0x78,0x65,0x35,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x78, 0x63,0x37,0x22,0x3a,0x22,0x43,0x22,0x2c,0x22,0x5c,0x78,0x65,0x37,0x22,0x3a,0x22, 0x63,0x22,0x2c,0x22,0x5c,0x78,0x64,0x30,0x22,0x3a,0x22,0x44,0x22,0x2c,0x22,0x5c, 0x78,0x66,0x30,0x22,0x3a,0x22,0x64,0x22,0x2c,0x22,0x5c,0x78,0x63,0x38,0x22,0x3a, 0x22,0x45,0x22,0x2c,0x22,0x5c,0x78,0x63,0x39,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22, 0x5c,0x78,0x63,0x61,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x78,0x63,0x62,0x22, 0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x78,0x65,0x38,0x22,0x3a,0x22,0x65,0x22,0x2c, 0x22,0x5c,0x78,0x65,0x39,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x78,0x65,0x61, 0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x78,0x65,0x62,0x22,0x3a,0x22,0x65,0x22, 0x2c,0x22,0x5c,0x78,0x63,0x63,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x78,0x63, 0x64,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x78,0x63,0x65,0x22,0x3a,0x22,0x49, 0x22,0x2c,0x22,0x5c,0x78,0x63,0x66,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x78, 0x65,0x63,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x78,0x65,0x64,0x22,0x3a,0x22, 0x69,0x22,0x2c,0x22,0x5c,0x78,0x65,0x65,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c, 0x78,0x65,0x66,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x78,0x64,0x31,0x22,0x3a, 0x22,0x4e,0x22,0x2c,0x22,0x5c,0x78,0x66,0x31,0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22, 0x5c,0x78,0x64,0x32,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x33,0x22, 0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x34,0x22,0x3a,0x22,0x4f,0x22,0x2c, 0x22,0x5c,0x78,0x64,0x35,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x36, 0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x38,0x22,0x3a,0x22,0x4f,0x22, 0x2c,0x22,0x5c,0x78,0x66,0x32,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78,0x66, 0x33,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78,0x66,0x34,0x22,0x3a,0x22,0x6f, 0x22,0x2c,0x22,0x5c,0x78,0x66,0x35,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78, 0x66,0x36,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x78,0x66,0x38,0x22,0x3a,0x22, 0x6f,0x22,0x2c,0x22,0x5c,0x78,0x64,0x39,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c, 0x78,0x64,0x61,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x78,0x64,0x62,0x22,0x3a, 0x22,0x55,0x22,0x2c,0x22,0x5c,0x78,0x64,0x63,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22, 0x5c,0x78,0x66,0x39,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x78,0x66,0x61,0x22, 0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x78,0x66,0x62,0x22,0x3a,0x22,0x75,0x22,0x2c, 0x22,0x5c,0x78,0x66,0x63,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x78,0x64,0x64, 0x22,0x3a,0x22,0x59,0x22,0x2c,0x22,0x5c,0x78,0x66,0x64,0x22,0x3a,0x22,0x79,0x22, 0x2c,0x22,0x5c,0x78,0x66,0x66,0x22,0x3a,0x22,0x79,0x22,0x2c,0x22,0x5c,0x78,0x63, 0x36,0x22,0x3a,0x22,0x41,0x65,0x22,0x2c,0x22,0x5c,0x78,0x65,0x36,0x22,0x3a,0x22, 0x61,0x65,0x22,0x2c,0x22,0x5c,0x78,0x64,0x65,0x22,0x3a,0x22,0x54,0x68,0x22,0x2c, 0x22,0x5c,0x78,0x66,0x65,0x22,0x3a,0x22,0x74,0x68,0x22,0x2c,0x22,0x5c,0x78,0x64, 0x66,0x22,0x3a,0x22,0x73,0x73,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x30,0x22, 0x3a,0x22,0x41,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x32,0x22,0x3a,0x22,0x41, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x34,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x30,0x31,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x30,0x33,0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x35, 0x22,0x3a,0x22,0x61,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x36,0x22,0x3a,0x22, 0x43,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x38,0x22,0x3a,0x22,0x43,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x30,0x61,0x22,0x3a,0x22,0x43,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x30,0x63,0x22,0x3a,0x22,0x43,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30, 0x37,0x22,0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x39,0x22,0x3a, 0x22,0x63,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x62,0x22,0x3a,0x22,0x63,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x64,0x22,0x3a,0x22,0x63,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x30,0x65,0x22,0x3a,0x22,0x44,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x31,0x30,0x22,0x3a,0x22,0x44,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x30,0x66,0x22, 0x3a,0x22,0x64,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x31,0x22,0x3a,0x22,0x64, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x32,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x31,0x34,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x31,0x36,0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x38, 0x22,0x3a,0x22,0x45,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x61,0x22,0x3a,0x22, 0x45,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x33,0x22,0x3a,0x22,0x65,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x31,0x35,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x31,0x37,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31, 0x39,0x22,0x3a,0x22,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x62,0x22,0x3a, 0x22,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x63,0x22,0x3a,0x22,0x47,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x65,0x22,0x3a,0x22,0x47,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x32,0x30,0x22,0x3a,0x22,0x47,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x32,0x32,0x22,0x3a,0x22,0x47,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x64,0x22, 0x3a,0x22,0x67,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x31,0x66,0x22,0x3a,0x22,0x67, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x31,0x22,0x3a,0x22,0x67,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x32,0x33,0x22,0x3a,0x22,0x67,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x32,0x34,0x22,0x3a,0x22,0x48,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x36, 0x22,0x3a,0x22,0x48,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x35,0x22,0x3a,0x22, 0x68,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x37,0x22,0x3a,0x22,0x68,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x32,0x38,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x32,0x61,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32, 0x63,0x22,0x3a,0x22,0x49,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x65,0x22,0x3a, 0x22,0x49,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x30,0x22,0x3a,0x22,0x49,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x39,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x32,0x62,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x32,0x64,0x22,0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x32,0x66,0x22, 0x3a,0x22,0x69,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x31,0x22,0x3a,0x22,0x69, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x34,0x22,0x3a,0x22,0x4a,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x33,0x35,0x22,0x3a,0x22,0x6a,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x33,0x36,0x22,0x3a,0x22,0x4b,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x37, 0x22,0x3a,0x22,0x6b,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x38,0x22,0x3a,0x22, 0x6b,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x39,0x22,0x3a,0x22,0x4c,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x33,0x62,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x33,0x64,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33, 0x66,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x31,0x22,0x3a, 0x22,0x4c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x61,0x22,0x3a,0x22,0x6c,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x63,0x22,0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x33,0x65,0x22,0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x34,0x30,0x22,0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x32,0x22, 0x3a,0x22,0x6c,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x33,0x22,0x3a,0x22,0x4e, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x35,0x22,0x3a,0x22,0x4e,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x34,0x37,0x22,0x3a,0x22,0x4e,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x34,0x61,0x22,0x3a,0x22,0x4e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x34, 0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x36,0x22,0x3a,0x22, 0x6e,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x38,0x22,0x3a,0x22,0x6e,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x34,0x62,0x22,0x3a,0x22,0x6e,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x34,0x63,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34, 0x65,0x22,0x3a,0x22,0x4f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x30,0x22,0x3a, 0x22,0x4f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x64,0x22,0x3a,0x22,0x6f,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x66,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x35,0x31,0x22,0x3a,0x22,0x6f,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x35,0x34,0x22,0x3a,0x22,0x52,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x36,0x22, 0x3a,0x22,0x52,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x38,0x22,0x3a,0x22,0x52, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x35,0x22,0x3a,0x22,0x72,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x35,0x37,0x22,0x3a,0x22,0x72,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x35,0x39,0x22,0x3a,0x22,0x72,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x61, 0x22,0x3a,0x22,0x53,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x63,0x22,0x3a,0x22, 0x53,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x65,0x22,0x3a,0x22,0x53,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x36,0x30,0x22,0x3a,0x22,0x53,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x35,0x62,0x22,0x3a,0x22,0x73,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35, 0x64,0x22,0x3a,0x22,0x73,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x66,0x22,0x3a, 0x22,0x73,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x31,0x22,0x3a,0x22,0x73,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x32,0x22,0x3a,0x22,0x54,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x36,0x34,0x22,0x3a,0x22,0x54,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x36,0x36,0x22,0x3a,0x22,0x54,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x33,0x22, 0x3a,0x22,0x74,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x35,0x22,0x3a,0x22,0x74, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x37,0x22,0x3a,0x22,0x74,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x36,0x38,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x36,0x61,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x63, 0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x65,0x22,0x3a,0x22, 0x55,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x30,0x22,0x3a,0x22,0x55,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x37,0x32,0x22,0x3a,0x22,0x55,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x36,0x39,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36, 0x62,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x64,0x22,0x3a, 0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x36,0x66,0x22,0x3a,0x22,0x75,0x22, 0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x31,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c, 0x75,0x30,0x31,0x37,0x33,0x22,0x3a,0x22,0x75,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31, 0x37,0x34,0x22,0x3a,0x22,0x57,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x35,0x22, 0x3a,0x22,0x77,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x36,0x22,0x3a,0x22,0x59, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x37,0x22,0x3a,0x22,0x79,0x22,0x2c,0x22, 0x5c,0x75,0x30,0x31,0x37,0x38,0x22,0x3a,0x22,0x59,0x22,0x2c,0x22,0x5c,0x75,0x30, 0x31,0x37,0x39,0x22,0x3a,0x22,0x5a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x62, 0x22,0x3a,0x22,0x5a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x64,0x22,0x3a,0x22, 0x5a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x37,0x61,0x22,0x3a,0x22,0x7a,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x37,0x63,0x22,0x3a,0x22,0x7a,0x22,0x2c,0x22,0x5c,0x75, 0x30,0x31,0x37,0x65,0x22,0x3a,0x22,0x7a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33, 0x32,0x22,0x3a,0x22,0x49,0x4a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x33,0x33,0x22, 0x3a,0x22,0x69,0x6a,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x32,0x22,0x3a,0x22, 0x4f,0x65,0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x35,0x33,0x22,0x3a,0x22,0x6f,0x65, 0x22,0x2c,0x22,0x5c,0x75,0x30,0x31,0x34,0x39,0x22,0x3a,0x22,0x27,0x6e,0x22,0x2c, 0x22,0x5c,0x75,0x30,0x31,0x37,0x66,0x22,0x3a,0x22,0x73,0x22,0x7d,0x29,0x3b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x65,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x65,0x5b,0x74,0x5d,0x7d,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x37,0x33,0x29,0x2c,0x6f,0x3d, 0x6e,0x28,0x32,0x37,0x34,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x36,0x34,0x29,0x2c,0x61, 0x3d,0x6e,0x28,0x32,0x37,0x35,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x69,0x28,0x65,0x29,0x2c, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x28,0x74,0x3d,0x6e,0x3f,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3a,0x74,0x29,0x3f,0x6f,0x28,0x65,0x29,0x3f,0x61,0x28,0x65, 0x29,0x3a,0x72,0x28,0x65,0x29,0x3a,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x74, 0x29,0x7c,0x7c,0x5b,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2f,0x5b,0x5e,0x5c, 0x78,0x30,0x30,0x2d,0x5c,0x78,0x32,0x66,0x5c,0x78,0x33,0x61,0x2d,0x5c,0x78,0x34, 0x30,0x5c,0x78,0x35,0x62,0x2d,0x5c,0x78,0x36,0x30,0x5c,0x78,0x37,0x62,0x2d,0x5c, 0x78,0x37,0x66,0x5d,0x2b,0x2f,0x67,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x6e,0x29,0x7c, 0x7c,0x5b,0x5d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x2f,0x5b,0x61,0x2d,0x7a,0x5d, 0x5b,0x41,0x2d,0x5a,0x5d,0x7c,0x5b,0x41,0x2d,0x5a,0x5d,0x7b,0x32,0x7d,0x5b,0x61, 0x2d,0x7a,0x5d,0x7c,0x5b,0x30,0x2d,0x39,0x5d,0x5b,0x61,0x2d,0x7a,0x41,0x2d,0x5a, 0x5d,0x7c,0x5b,0x61,0x2d,0x7a,0x41,0x2d,0x5a,0x5d,0x5b,0x30,0x2d,0x39,0x5d,0x7c, 0x5b,0x5e,0x61,0x2d,0x7a,0x41,0x2d,0x5a,0x30,0x2d,0x39,0x20,0x5d,0x2f,0x3b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2e,0x74,0x65, 0x73,0x74,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x22,0x5c,0x5c,0x75, 0x32,0x37,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x32,0x37,0x62,0x66,0x22,0x2c,0x72,0x3d, 0x22,0x61,0x2d,0x7a,0x5c,0x5c,0x78,0x64,0x66,0x2d,0x5c,0x5c,0x78,0x66,0x36,0x5c, 0x5c,0x78,0x66,0x38,0x2d,0x5c,0x5c,0x78,0x66,0x66,0x22,0x2c,0x6f,0x3d,0x22,0x41, 0x2d,0x5a,0x5c,0x5c,0x78,0x63,0x30,0x2d,0x5c,0x5c,0x78,0x64,0x36,0x5c,0x5c,0x78, 0x64,0x38,0x2d,0x5c,0x5c,0x78,0x64,0x65,0x22,0x2c,0x69,0x3d,0x22,0x5c,0x5c,0x78, 0x61,0x63,0x5c,0x5c,0x78,0x62,0x31,0x5c,0x5c,0x78,0x64,0x37,0x5c,0x5c,0x78,0x66, 0x37,0x5c,0x5c,0x78,0x30,0x30,0x2d,0x5c,0x5c,0x78,0x32,0x66,0x5c,0x5c,0x78,0x33, 0x61,0x2d,0x5c,0x5c,0x78,0x34,0x30,0x5c,0x5c,0x78,0x35,0x62,0x2d,0x5c,0x5c,0x78, 0x36,0x30,0x5c,0x5c,0x78,0x37,0x62,0x2d,0x5c,0x5c,0x78,0x62,0x66,0x5c,0x5c,0x75, 0x32,0x30,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x32,0x30,0x36,0x66,0x20,0x5c,0x5c,0x74, 0x5c,0x5c,0x78,0x30,0x62,0x5c,0x5c,0x66,0x5c,0x5c,0x78,0x61,0x30,0x5c,0x5c,0x75, 0x66,0x65,0x66,0x66,0x5c,0x5c,0x6e,0x5c,0x5c,0x72,0x5c,0x5c,0x75,0x32,0x30,0x32, 0x38,0x5c,0x5c,0x75,0x32,0x30,0x32,0x39,0x5c,0x5c,0x75,0x31,0x36,0x38,0x30,0x5c, 0x5c,0x75,0x31,0x38,0x30,0x65,0x5c,0x5c,0x75,0x32,0x30,0x30,0x30,0x5c,0x5c,0x75, 0x32,0x30,0x30,0x31,0x5c,0x5c,0x75,0x32,0x30,0x30,0x32,0x5c,0x5c,0x75,0x32,0x30, 0x30,0x33,0x5c,0x5c,0x75,0x32,0x30,0x30,0x34,0x5c,0x5c,0x75,0x32,0x30,0x30,0x35, 0x5c,0x5c,0x75,0x32,0x30,0x30,0x36,0x5c,0x5c,0x75,0x32,0x30,0x30,0x37,0x5c,0x5c, 0x75,0x32,0x30,0x30,0x38,0x5c,0x5c,0x75,0x32,0x30,0x30,0x39,0x5c,0x5c,0x75,0x32, 0x30,0x30,0x61,0x5c,0x5c,0x75,0x32,0x30,0x32,0x66,0x5c,0x5c,0x75,0x32,0x30,0x35, 0x66,0x5c,0x5c,0x75,0x33,0x30,0x30,0x30,0x22,0x2c,0x61,0x3d,0x22,0x5b,0x22,0x2b, 0x69,0x2b,0x22,0x5d,0x22,0x2c,0x75,0x3d,0x22,0x5c,0x5c,0x64,0x2b,0x22,0x2c,0x63, 0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x32,0x37,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x32,0x37, 0x62,0x66,0x5d,0x22,0x2c,0x6c,0x3d,0x22,0x5b,0x22,0x2b,0x72,0x2b,0x22,0x5d,0x22, 0x2c,0x73,0x3d,0x22,0x5b,0x5e,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c, 0x75,0x64,0x66,0x66,0x66,0x22,0x2b,0x69,0x2b,0x75,0x2b,0x6e,0x2b,0x72,0x2b,0x6f, 0x2b,0x22,0x5d,0x22,0x2c,0x66,0x3d,0x22,0x28,0x3f,0x3a,0x5c,0x5c,0x75,0x64,0x38, 0x33,0x63,0x5b,0x5c,0x5c,0x75,0x64,0x64,0x65,0x36,0x2d,0x5c,0x5c,0x75,0x64,0x64, 0x66,0x66,0x5d,0x29,0x7b,0x32,0x7d,0x22,0x2c,0x64,0x3d,0x22,0x5b,0x5c,0x5c,0x75, 0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64,0x62,0x66,0x66,0x5d,0x5b,0x5c,0x5c, 0x75,0x64,0x63,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c, 0x70,0x3d,0x22,0x5b,0x22,0x2b,0x6f,0x2b,0x22,0x5d,0x22,0x2c,0x68,0x3d,0x22,0x28, 0x3f,0x3a,0x22,0x2b,0x6c,0x2b,0x22,0x7c,0x22,0x2b,0x73,0x2b,0x22,0x29,0x22,0x2c, 0x76,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x70,0x2b,0x22,0x7c,0x22,0x2b,0x73,0x2b, 0x22,0x29,0x22,0x2c,0x67,0x3d,0x22,0x28,0x3f,0x3a,0x5b,0x27,0x5c,0x75,0x32,0x30, 0x31,0x39,0x5d,0x28,0x3f,0x3a,0x64,0x7c,0x6c,0x6c,0x7c,0x6d,0x7c,0x72,0x65,0x7c, 0x73,0x7c,0x74,0x7c,0x76,0x65,0x29,0x29,0x3f,0x22,0x2c,0x6d,0x3d,0x22,0x28,0x3f, 0x3a,0x5b,0x27,0x5c,0x75,0x32,0x30,0x31,0x39,0x5d,0x28,0x3f,0x3a,0x44,0x7c,0x4c, 0x4c,0x7c,0x4d,0x7c,0x52,0x45,0x7c,0x53,0x7c,0x54,0x7c,0x56,0x45,0x29,0x29,0x3f, 0x22,0x2c,0x62,0x3d,0x22,0x28,0x3f,0x3a,0x5b,0x5c,0x5c,0x75,0x30,0x33,0x30,0x30, 0x2d,0x5c,0x5c,0x75,0x30,0x33,0x36,0x66,0x5c,0x5c,0x75,0x66,0x65,0x32,0x30,0x2d, 0x5c,0x5c,0x75,0x66,0x65,0x32,0x66,0x5c,0x5c,0x75,0x32,0x30,0x64,0x30,0x2d,0x5c, 0x5c,0x75,0x32,0x30,0x66,0x66,0x5d,0x7c,0x5c,0x5c,0x75,0x64,0x38,0x33,0x63,0x5b, 0x5c,0x5c,0x75,0x64,0x66,0x66,0x62,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d, 0x29,0x3f,0x22,0x2c,0x79,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x66,0x65,0x30,0x65,0x5c, 0x5c,0x75,0x66,0x65,0x30,0x66,0x5d,0x3f,0x22,0x2c,0x5f,0x3d,0x79,0x2b,0x62,0x2b, 0x28,0x22,0x28,0x3f,0x3a,0x5c,0x5c,0x75,0x32,0x30,0x30,0x64,0x28,0x3f,0x3a,0x22, 0x2b,0x5b,0x22,0x5b,0x5e,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75, 0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x66,0x2c,0x64,0x5d,0x2e,0x6a,0x6f,0x69,0x6e, 0x28,0x22,0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2b,0x79,0x2b,0x62,0x2b,0x22,0x29, 0x2a,0x22,0x29,0x2c,0x77,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x5b,0x63,0x2c,0x66, 0x2c,0x64,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2b,0x22,0x29, 0x22,0x2b,0x5f,0x2c,0x4f,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x5b,0x70,0x2b, 0x22,0x3f,0x22,0x2b,0x6c,0x2b,0x22,0x2b,0x22,0x2b,0x67,0x2b,0x22,0x28,0x3f,0x3d, 0x22,0x2b,0x5b,0x61,0x2c,0x70,0x2c,0x22,0x24,0x22,0x5d,0x2e,0x6a,0x6f,0x69,0x6e, 0x28,0x22,0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2c,0x76,0x2b,0x22,0x2b,0x22,0x2b, 0x6d,0x2b,0x22,0x28,0x3f,0x3d,0x22,0x2b,0x5b,0x61,0x2c,0x70,0x2b,0x68,0x2c,0x22, 0x24,0x22,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2b,0x22,0x29, 0x22,0x2c,0x70,0x2b,0x22,0x3f,0x22,0x2b,0x68,0x2b,0x22,0x2b,0x22,0x2b,0x67,0x2c, 0x70,0x2b,0x22,0x2b,0x22,0x2b,0x6d,0x2c,0x22,0x5c,0x5c,0x64,0x2a,0x28,0x3f,0x3a, 0x31,0x53,0x54,0x7c,0x32,0x4e,0x44,0x7c,0x33,0x52,0x44,0x7c,0x28,0x3f,0x21,0x5b, 0x31,0x32,0x33,0x5d,0x29,0x5c,0x5c,0x64,0x54,0x48,0x29,0x28,0x3f,0x3d,0x5c,0x5c, 0x62,0x7c,0x5b,0x61,0x2d,0x7a,0x5f,0x5d,0x29,0x22,0x2c,0x22,0x5c,0x5c,0x64,0x2a, 0x28,0x3f,0x3a,0x31,0x73,0x74,0x7c,0x32,0x6e,0x64,0x7c,0x33,0x72,0x64,0x7c,0x28, 0x3f,0x21,0x5b,0x31,0x32,0x33,0x5d,0x29,0x5c,0x5c,0x64,0x74,0x68,0x29,0x28,0x3f, 0x3d,0x5c,0x5c,0x62,0x7c,0x5b,0x41,0x2d,0x5a,0x5f,0x5d,0x29,0x22,0x2c,0x75,0x2c, 0x77,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22,0x29,0x2c,0x22,0x67,0x22, 0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x4f,0x29,0x7c,0x7c,0x5b,0x5d,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x36,0x34,0x29,0x2c,0x6f,0x3d,0x6e,0x28, 0x32,0x37,0x37,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6f,0x28,0x72,0x28,0x65,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72, 0x43,0x61,0x73,0x65,0x28,0x29,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x32,0x37,0x38,0x29,0x28,0x22,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43, 0x61,0x73,0x65,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x72,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x37,0x39,0x29,0x2c, 0x6f,0x3d,0x6e,0x28,0x31,0x33,0x35,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32,0x38,0x31, 0x29,0x2c,0x61,0x3d,0x6e,0x28,0x36,0x34,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x74,0x3d,0x61,0x28,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x6f,0x28,0x74,0x29,0x3f,0x69,0x28,0x74,0x29,0x3a,0x76,0x6f,0x69,0x64,0x20,0x30, 0x2c,0x75,0x3d,0x6e,0x3f,0x6e,0x5b,0x30,0x5d,0x3a,0x74,0x2e,0x63,0x68,0x61,0x72, 0x41,0x74,0x28,0x30,0x29,0x2c,0x63,0x3d,0x6e,0x3f,0x72,0x28,0x6e,0x2c,0x31,0x29, 0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x22,0x29,0x3a,0x74,0x2e,0x73,0x6c,0x69,0x63, 0x65,0x28,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x5b,0x65,0x5d, 0x28,0x29,0x2b,0x63,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28, 0x32,0x38,0x30,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x6e,0x3f,0x6f,0x3a,0x6e,0x2c,0x21,0x74,0x26,0x26,0x6e,0x3e,0x3d,0x6f,0x3f,0x65, 0x3a,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x2d,0x31,0x2c,0x6f,0x3d,0x65, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x3c,0x30,0x26,0x26,0x28,0x74,0x3d, 0x2d,0x74,0x3e,0x6f,0x3f,0x30,0x3a,0x6f,0x2b,0x74,0x29,0x2c,0x28,0x6e,0x3d,0x6e, 0x3e,0x6f,0x3f,0x6f,0x3a,0x6e,0x29,0x3c,0x30,0x26,0x26,0x28,0x6e,0x2b,0x3d,0x6f, 0x29,0x2c,0x6f,0x3d,0x74,0x3e,0x6e,0x3f,0x30,0x3a,0x6e,0x2d,0x74,0x3e,0x3e,0x3e, 0x30,0x2c,0x74,0x3e,0x3e,0x3e,0x3d,0x30,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72, 0x20,0x69,0x3d,0x41,0x72,0x72,0x61,0x79,0x28,0x6f,0x29,0x3b,0x2b,0x2b,0x72,0x3c, 0x6f,0x3b,0x29,0x69,0x5b,0x72,0x5d,0x3d,0x65,0x5b,0x72,0x2b,0x74,0x5d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x6e,0x28,0x32,0x38,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x33,0x35,0x29,0x2c, 0x69,0x3d,0x6e,0x28,0x32,0x38,0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x65,0x29,0x3f,0x69,0x28,0x65,0x29,0x3a, 0x72,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x22,0x29,0x7d,0x7d,0x2c, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c, 0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x72,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x30, 0x33,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x30,0x33,0x36,0x66,0x5c,0x5c,0x75,0x66,0x65, 0x32,0x30,0x2d,0x5c,0x5c,0x75,0x66,0x65,0x32,0x66,0x5c,0x5c,0x75,0x32,0x30,0x64, 0x30,0x2d,0x5c,0x5c,0x75,0x32,0x30,0x66,0x66,0x5d,0x22,0x2c,0x6f,0x3d,0x22,0x5c, 0x5c,0x75,0x64,0x38,0x33,0x63,0x5b,0x5c,0x5c,0x75,0x64,0x66,0x66,0x62,0x2d,0x5c, 0x5c,0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x69,0x3d,0x22,0x5b,0x5e,0x5c,0x5c, 0x75,0x64,0x38,0x30,0x30,0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c, 0x61,0x3d,0x22,0x28,0x3f,0x3a,0x5c,0x5c,0x75,0x64,0x38,0x33,0x63,0x5b,0x5c,0x5c, 0x75,0x64,0x64,0x65,0x36,0x2d,0x5c,0x5c,0x75,0x64,0x64,0x66,0x66,0x5d,0x29,0x7b, 0x32,0x7d,0x22,0x2c,0x75,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x64,0x38,0x30,0x30,0x2d, 0x5c,0x5c,0x75,0x64,0x62,0x66,0x66,0x5d,0x5b,0x5c,0x5c,0x75,0x64,0x63,0x30,0x30, 0x2d,0x5c,0x5c,0x75,0x64,0x66,0x66,0x66,0x5d,0x22,0x2c,0x63,0x3d,0x22,0x28,0x3f, 0x3a,0x22,0x2b,0x72,0x2b,0x22,0x7c,0x22,0x2b,0x6f,0x2b,0x22,0x29,0x22,0x2b,0x22, 0x3f,0x22,0x2c,0x6c,0x3d,0x22,0x5b,0x5c,0x5c,0x75,0x66,0x65,0x30,0x65,0x5c,0x5c, 0x75,0x66,0x65,0x30,0x66,0x5d,0x3f,0x22,0x2c,0x73,0x3d,0x6c,0x2b,0x63,0x2b,0x28, 0x22,0x28,0x3f,0x3a,0x5c,0x5c,0x75,0x32,0x30,0x30,0x64,0x28,0x3f,0x3a,0x22,0x2b, 0x5b,0x69,0x2c,0x61,0x2c,0x75,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x7c,0x22, 0x29,0x2b,0x22,0x29,0x22,0x2b,0x6c,0x2b,0x63,0x2b,0x22,0x29,0x2a,0x22,0x29,0x2c, 0x66,0x3d,0x22,0x28,0x3f,0x3a,0x22,0x2b,0x5b,0x69,0x2b,0x72,0x2b,0x22,0x3f,0x22, 0x2c,0x72,0x2c,0x61,0x2c,0x75,0x2c,0x6e,0x5d,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22, 0x7c,0x22,0x29,0x2b,0x22,0x29,0x22,0x2c,0x64,0x3d,0x52,0x65,0x67,0x45,0x78,0x70, 0x28,0x6f,0x2b,0x22,0x28,0x3f,0x3d,0x22,0x2b,0x6f,0x2b,0x22,0x29,0x7c,0x22,0x2b, 0x66,0x2b,0x73,0x2c,0x22,0x67,0x22,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x28,0x64,0x29, 0x7c,0x7c,0x5b,0x5d,0x7d,0x7d,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x36,0x30,0x31,0x30,0x33, 0x2c,0x6f,0x3d,0x36,0x30,0x31,0x30,0x36,0x2c,0x69,0x3d,0x36,0x30,0x31,0x30,0x37, 0x2c,0x61,0x3d,0x36,0x30,0x31,0x30,0x38,0x2c,0x75,0x3d,0x36,0x30,0x31,0x31,0x34, 0x2c,0x63,0x3d,0x36,0x30,0x31,0x30,0x39,0x2c,0x6c,0x3d,0x36,0x30,0x31,0x31,0x30, 0x2c,0x73,0x3d,0x36,0x30,0x31,0x31,0x32,0x2c,0x66,0x3d,0x36,0x30,0x31,0x31,0x33, 0x2c,0x64,0x3d,0x36,0x30,0x31,0x32,0x30,0x2c,0x70,0x3d,0x36,0x30,0x31,0x31,0x35, 0x2c,0x68,0x3d,0x36,0x30,0x31,0x31,0x36,0x2c,0x76,0x3d,0x36,0x30,0x31,0x32,0x31, 0x2c,0x67,0x3d,0x36,0x30,0x31,0x32,0x32,0x2c,0x6d,0x3d,0x36,0x30,0x31,0x31,0x37, 0x2c,0x62,0x3d,0x36,0x30,0x31,0x32,0x39,0x2c,0x79,0x3d,0x36,0x30,0x31,0x33,0x31, 0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x5f,0x3d,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x66,0x6f,0x72,0x3b,0x72,0x3d,0x5f, 0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22, 0x29,0x2c,0x6f,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x6f,0x72, 0x74,0x61,0x6c,0x22,0x29,0x2c,0x69,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74, 0x2e,0x66,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x22,0x29,0x2c,0x61,0x3d,0x5f,0x28, 0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x74,0x72,0x69,0x63,0x74,0x5f,0x6d,0x6f, 0x64,0x65,0x22,0x29,0x2c,0x75,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x72,0x22,0x29,0x2c,0x63,0x3d,0x5f,0x28,0x22, 0x72,0x65,0x61,0x63,0x74,0x2e,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x29, 0x2c,0x6c,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x22,0x29,0x2c,0x73,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74, 0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x5f,0x72,0x65,0x66,0x22,0x29,0x2c,0x66, 0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x73,0x75,0x73,0x70,0x65,0x6e, 0x73,0x65,0x22,0x29,0x2c,0x64,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e, 0x73,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x5f,0x6c,0x69,0x73,0x74,0x22,0x29,0x2c, 0x70,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6d,0x65,0x6d,0x6f,0x22, 0x29,0x2c,0x68,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x6c,0x61,0x7a, 0x79,0x22,0x29,0x2c,0x76,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x62, 0x6c,0x6f,0x63,0x6b,0x22,0x29,0x2c,0x67,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63, 0x74,0x2e,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x29, 0x2c,0x6d,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61,0x63,0x74,0x2e,0x66,0x75,0x6e,0x64, 0x61,0x6d,0x65,0x6e,0x74,0x61,0x6c,0x22,0x29,0x2c,0x62,0x3d,0x5f,0x28,0x22,0x72, 0x65,0x61,0x63,0x74,0x2e,0x64,0x65,0x62,0x75,0x67,0x5f,0x74,0x72,0x61,0x63,0x65, 0x5f,0x6d,0x6f,0x64,0x65,0x22,0x29,0x2c,0x79,0x3d,0x5f,0x28,0x22,0x72,0x65,0x61, 0x63,0x74,0x2e,0x6c,0x65,0x67,0x61,0x63,0x79,0x5f,0x68,0x69,0x64,0x64,0x65,0x6e, 0x22,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x24,0x24,0x74,0x79,0x70, 0x65,0x6f,0x66,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x74,0x29,0x7b,0x63,0x61, 0x73,0x65,0x20,0x72,0x3a,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x3d,0x65,0x2e, 0x74,0x79,0x70,0x65,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x69,0x3a,0x63,0x61,0x73, 0x65,0x20,0x75,0x3a,0x63,0x61,0x73,0x65,0x20,0x61,0x3a,0x63,0x61,0x73,0x65,0x20, 0x66,0x3a,0x63,0x61,0x73,0x65,0x20,0x64,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x73,0x77,0x69,0x74,0x63,0x68, 0x28,0x65,0x3d,0x65,0x26,0x26,0x65,0x2e,0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66, 0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x6c,0x3a,0x63,0x61,0x73,0x65,0x20,0x73,0x3a, 0x63,0x61,0x73,0x65,0x20,0x68,0x3a,0x63,0x61,0x73,0x65,0x20,0x70,0x3a,0x63,0x61, 0x73,0x65,0x20,0x63,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x7d, 0x63,0x61,0x73,0x65,0x20,0x6f,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d, 0x7d,0x7d,0x76,0x61,0x72,0x20,0x4f,0x3d,0x63,0x2c,0x78,0x3d,0x72,0x2c,0x45,0x3d, 0x73,0x2c,0x6a,0x3d,0x69,0x2c,0x6b,0x3d,0x68,0x2c,0x53,0x3d,0x70,0x2c,0x43,0x3d, 0x6f,0x2c,0x41,0x3d,0x75,0x2c,0x54,0x3d,0x61,0x2c,0x50,0x3d,0x66,0x3b,0x74,0x2e, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3d, 0x6c,0x2c,0x74,0x2e,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x50,0x72,0x6f,0x76,0x69, 0x64,0x65,0x72,0x3d,0x4f,0x2c,0x74,0x2e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d, 0x78,0x2c,0x74,0x2e,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x3d,0x45, 0x2c,0x74,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x6a,0x2c,0x74,0x2e, 0x4c,0x61,0x7a,0x79,0x3d,0x6b,0x2c,0x74,0x2e,0x4d,0x65,0x6d,0x6f,0x3d,0x53,0x2c, 0x74,0x2e,0x50,0x6f,0x72,0x74,0x61,0x6c,0x3d,0x43,0x2c,0x74,0x2e,0x50,0x72,0x6f, 0x66,0x69,0x6c,0x65,0x72,0x3d,0x41,0x2c,0x74,0x2e,0x53,0x74,0x72,0x69,0x63,0x74, 0x4d,0x6f,0x64,0x65,0x3d,0x54,0x2c,0x74,0x2e,0x53,0x75,0x73,0x70,0x65,0x6e,0x73, 0x65,0x3d,0x50,0x2c,0x74,0x2e,0x69,0x73,0x41,0x73,0x79,0x6e,0x63,0x4d,0x6f,0x64, 0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x31,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x2c,0x74, 0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x73,0x75,0x6d, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x6c,0x7d,0x2c, 0x74,0x2e,0x69,0x73,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x50,0x72,0x6f,0x76,0x69, 0x64,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x63,0x7d, 0x2c,0x74,0x2e,0x69,0x73,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x65,0x2e, 0x24,0x24,0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x72,0x7d,0x2c,0x74,0x2e, 0x69,0x73,0x46,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x73,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x46,0x72, 0x61,0x67,0x6d,0x65,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28,0x65,0x29,0x3d,0x3d, 0x3d,0x69,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x4c,0x61,0x7a,0x79,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x68,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x4d,0x65, 0x6d,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x70,0x7d,0x2c, 0x74,0x2e,0x69,0x73,0x50,0x6f,0x72,0x74,0x61,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28, 0x65,0x29,0x3d,0x3d,0x3d,0x6f,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x50,0x72,0x6f,0x66, 0x69,0x6c,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x75, 0x7d,0x2c,0x74,0x2e,0x69,0x73,0x53,0x74,0x72,0x69,0x63,0x74,0x4d,0x6f,0x64,0x65, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x77,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x61,0x7d,0x2c,0x74,0x2e, 0x69,0x73,0x53,0x75,0x73,0x70,0x65,0x6e,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x28, 0x65,0x29,0x3d,0x3d,0x3d,0x66,0x7d,0x2c,0x74,0x2e,0x69,0x73,0x56,0x61,0x6c,0x69, 0x64,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x7c,0x7c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x69, 0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x75,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x62,0x7c,0x7c, 0x65,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x66,0x7c,0x7c,0x65,0x3d, 0x3d,0x3d,0x64,0x7c,0x7c,0x65,0x3d,0x3d,0x3d,0x79,0x7c,0x7c,0x22,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26, 0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x68,0x7c,0x7c,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x70,0x7c,0x7c,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x63,0x7c,0x7c,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6c,0x7c,0x7c,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x73,0x7c,0x7c,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x6d,0x7c,0x7c,0x65,0x2e,0x24,0x24, 0x74,0x79,0x70,0x65,0x6f,0x66,0x3d,0x3d,0x3d,0x76,0x7c,0x7c,0x65,0x5b,0x30,0x5d, 0x3d,0x3d,0x3d,0x67,0x29,0x7d,0x2c,0x74,0x2e,0x74,0x79,0x70,0x65,0x4f,0x66,0x3d, 0x77,0x7d,0x2c,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x38,0x39, 0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x31,0x30,0x34,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x32, 0x39,0x31,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x32,0x39,0x33,0x29,0x2c,0x75,0x3d,0x6e, 0x28,0x32,0x39,0x37,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x32,0x39,0x39,0x29,0x2c,0x6c, 0x3d,0x6e,0x28,0x33,0x30,0x34,0x29,0x2c,0x73,0x3d,0x6e,0x28,0x33,0x30,0x35,0x29, 0x2c,0x66,0x3d,0x6e,0x28,0x33,0x30,0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x22, 0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x22,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64, 0x22,0x2c,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x61, 0x72,0x67,0x65,0x74,0x22,0x29,0x3b,0x69,0x66,0x28,0x21,0x74,0x7c,0x7c,0x22,0x23, 0x22,0x3d,0x3d,0x3d,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x67, 0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x68,0x72,0x65, 0x66,0x22,0x29,0x3b,0x69,0x66,0x28,0x21,0x6e,0x7c,0x7c,0x21,0x6e,0x2e,0x69,0x6e, 0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x22,0x23,0x22,0x29,0x26,0x26,0x21,0x6e,0x2e, 0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x22,0x2e,0x22,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x6e,0x2e,0x69,0x6e, 0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x22,0x23,0x22,0x29,0x26,0x26,0x21,0x6e,0x2e, 0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x22,0x23,0x22,0x29,0x26, 0x26,0x28,0x6e,0x3d,0x22,0x23,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e, 0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x23,0x22,0x29,0x5b,0x31,0x5d,0x29,0x29, 0x2c,0x74,0x3d,0x6e,0x26,0x26,0x22,0x23,0x22,0x21,0x3d,0x3d,0x6e,0x3f,0x6e,0x2e, 0x74,0x72,0x69,0x6d,0x28,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x7d,0x2c,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28, 0x6e,0x29,0x3f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x64,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3f,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63, 0x74,0x6f,0x72,0x28,0x6e,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x70,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x74,0x2e,0x64,0x69,0x73, 0x70,0x61,0x74,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x6e,0x65,0x77,0x20,0x45, 0x76,0x65,0x6e,0x74,0x28,0x65,0x29,0x29,0x7d,0x2c,0x68,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28, 0x21,0x65,0x7c,0x7c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x26,0x26,0x28,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x65,0x2e,0x6a,0x71,0x75,0x65,0x72,0x79,0x26,0x26,0x28,0x65,0x3d, 0x65,0x5b,0x30,0x5d,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65, 0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x29,0x7d,0x2c,0x76,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x68,0x28,0x65,0x29,0x3f,0x65,0x2e,0x6a,0x71,0x75,0x65,0x72,0x79,0x3f,0x65, 0x5b,0x30,0x5d,0x3a,0x65,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3e,0x30,0x3f,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75, 0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x65,0x29,0x3a,0x6e, 0x75,0x6c,0x6c,0x7d,0x2c,0x67,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65, 0x79,0x73,0x28,0x6e,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f, 0x2c,0x69,0x3d,0x6e,0x5b,0x72,0x5d,0x2c,0x61,0x3d,0x74,0x5b,0x72,0x5d,0x2c,0x75, 0x3d,0x61,0x26,0x26,0x68,0x28,0x61,0x29,0x3f,0x22,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x22,0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x6f,0x3d,0x61,0x29,0x3f,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6f,0x29,0x3a,0x7b,0x7d,0x2e,0x74, 0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6f,0x29,0x2e, 0x6d,0x61,0x74,0x63,0x68,0x28,0x2f,0x5c,0x73,0x28,0x5b,0x61,0x2d,0x7a,0x5d,0x2b, 0x29,0x2f,0x69,0x29,0x5b,0x31,0x5d,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43, 0x61,0x73,0x65,0x28,0x29,0x3b,0x69,0x66,0x28,0x21,0x6e,0x65,0x77,0x20,0x52,0x65, 0x67,0x45,0x78,0x70,0x28,0x69,0x29,0x2e,0x74,0x65,0x73,0x74,0x28,0x75,0x29,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72, 0x72,0x6f,0x72,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2e, 0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2c,0x27,0x3a, 0x20,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x22,0x27,0x29,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x72,0x2c,0x27,0x22,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64, 0x20,0x74,0x79,0x70,0x65,0x20,0x22,0x27,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x75,0x2c,0x27,0x22,0x20,0x62,0x75,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74, 0x65,0x64,0x20,0x74,0x79,0x70,0x65,0x20,0x22,0x27,0x29,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x69,0x2c,0x27,0x22,0x2e,0x27,0x29,0x29,0x7d,0x29,0x29,0x7d,0x2c, 0x6d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x28,0x21,0x68,0x28,0x65,0x29,0x7c,0x7c,0x30,0x3d,0x3d, 0x3d,0x65,0x2e,0x67,0x65,0x74,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74, 0x73,0x28,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x26,0x26,0x22,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x22,0x3d,0x3d,0x3d,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70, 0x75,0x74,0x65,0x64,0x53,0x74,0x79,0x6c,0x65,0x28,0x65,0x29,0x2e,0x67,0x65,0x74, 0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x56,0x61,0x6c,0x75,0x65,0x28,0x22,0x76, 0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x22,0x29,0x7d,0x2c,0x62,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x65,0x7c,0x7c,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x21, 0x3d,0x3d,0x4e,0x6f,0x64,0x65,0x2e,0x45,0x4c,0x45,0x4d,0x45,0x4e,0x54,0x5f,0x4e, 0x4f,0x44,0x45,0x7c,0x7c,0x21,0x21,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x22,0x29,0x7c,0x7c,0x28,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x65,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3f,0x65,0x2e, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x65,0x2e,0x68,0x61,0x73,0x41,0x74, 0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65, 0x64,0x22,0x29,0x26,0x26,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x21,0x3d,0x3d,0x65, 0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x29,0x29,0x7d,0x2c,0x79,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x21, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x74,0x74,0x61,0x63,0x68,0x53, 0x68,0x61,0x64,0x6f,0x77,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2e,0x67,0x65,0x74,0x52,0x6f,0x6f, 0x74,0x4e,0x6f,0x64,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67, 0x65,0x74,0x52,0x6f,0x6f,0x74,0x4e,0x6f,0x64,0x65,0x28,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66, 0x20,0x53,0x68,0x61,0x64,0x6f,0x77,0x52,0x6f,0x6f,0x74,0x3f,0x6e,0x3a,0x6e,0x75, 0x6c,0x6c,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x53,0x68,0x61,0x64,0x6f,0x77,0x52,0x6f,0x6f, 0x74,0x3f,0x74,0x3a,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65, 0x3f,0x65,0x28,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x5f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x77,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x48,0x65,0x69,0x67, 0x68,0x74,0x7d,0x2c,0x4f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6a,0x51, 0x75,0x65,0x72,0x79,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x21, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x68,0x61, 0x73,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x6e,0x6f,0x2d,0x6a,0x71,0x75,0x65,0x72,0x79,0x22,0x29,0x3f, 0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x78,0x3d,0x5b,0x5d,0x2c,0x45,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x72,0x74,0x6c,0x22,0x3d,0x3d,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x64,0x69,0x72,0x7d,0x2c,0x6a,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x74,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x28,0x29, 0x3b,0x69,0x66,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x4e, 0x41,0x4d,0x45,0x2c,0x72,0x3d,0x74,0x2e,0x66,0x6e,0x5b,0x6e,0x5d,0x3b,0x74,0x2e, 0x66,0x6e,0x5b,0x6e,0x5d,0x3d,0x65,0x2e,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e, 0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x2c,0x74,0x2e,0x66,0x6e,0x5b,0x6e,0x5d,0x2e, 0x43,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x65,0x2c,0x74,0x2e, 0x66,0x6e,0x5b,0x6e,0x5d,0x2e,0x6e,0x6f,0x43,0x6f,0x6e,0x66,0x6c,0x69,0x63,0x74, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x2e,0x66,0x6e,0x5b,0x6e,0x5d,0x3d,0x72,0x2c,0x65,0x2e,0x6a, 0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x7d,0x7d, 0x7d,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74, 0x65,0x3f,0x28,0x78,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7c,0x7c,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x78,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x28,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x78,0x2e, 0x70,0x75,0x73,0x68,0x28,0x74,0x29,0x29,0x3a,0x74,0x28,0x29,0x7d,0x2c,0x6b,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x26,0x26,0x65,0x28,0x29,0x7d,0x2c,0x53,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x32,0x26,0x26,0x76,0x6f, 0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x32,0x5d,0x26,0x26,0x21,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x32,0x5d,0x29,0x6b,0x28,0x74,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69, 0x66,0x28,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x67,0x65,0x74,0x43,0x6f, 0x6d,0x70,0x75,0x74,0x65,0x64,0x53,0x74,0x79,0x6c,0x65,0x28,0x65,0x29,0x2c,0x6e, 0x3d,0x74,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x44,0x75,0x72, 0x61,0x74,0x69,0x6f,0x6e,0x2c,0x72,0x3d,0x74,0x2e,0x74,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x44,0x65,0x6c,0x61,0x79,0x2c,0x6f,0x3d,0x4e,0x75,0x6d,0x62, 0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,0x6e,0x29, 0x2c,0x69,0x3d,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x46, 0x6c,0x6f,0x61,0x74,0x28,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x7c,0x7c,0x69,0x3f,0x28,0x6e,0x3d,0x6e,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22, 0x2c,0x22,0x29,0x5b,0x30,0x5d,0x2c,0x72,0x3d,0x72,0x2e,0x73,0x70,0x6c,0x69,0x74, 0x28,0x22,0x2c,0x22,0x29,0x5b,0x30,0x5d,0x2c,0x31,0x65,0x33,0x2a,0x28,0x4e,0x75, 0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28, 0x6e,0x29,0x2b,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x46, 0x6c,0x6f,0x61,0x74,0x28,0x72,0x29,0x29,0x29,0x3a,0x30,0x7d,0x28,0x6e,0x29,0x2b, 0x35,0x2c,0x6f,0x3d,0x21,0x31,0x2c,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x72,0x28,0x69,0x29,0x7b,0x69,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3d, 0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6f,0x3d,0x21,0x30,0x2c,0x6e,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72, 0x28,0x65,0x2c,0x72,0x29,0x2c,0x6b,0x28,0x74,0x29,0x29,0x7d,0x3b,0x6e,0x2e,0x61, 0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28, 0x65,0x2c,0x69,0x29,0x2c,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6f,0x7c,0x7c,0x70, 0x28,0x6e,0x29,0x7d,0x29,0x2c,0x72,0x29,0x7d,0x7d,0x2c,0x43,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x74, 0x29,0x3b,0x69,0x66,0x28,0x2d,0x31,0x3d,0x3d,0x3d,0x6f,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x5b,0x21,0x6e,0x26,0x26,0x72,0x3f,0x65,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2d,0x31,0x3a,0x30,0x5d,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x65, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x2b,0x3d,0x6e,0x3f,0x31,0x3a,0x2d,0x31,0x2c,0x72,0x26,0x26,0x28,0x6f,0x3d,0x28, 0x6f,0x2b,0x69,0x29,0x25,0x69,0x29,0x2c,0x65,0x5b,0x4d,0x61,0x74,0x68,0x2e,0x6d, 0x61,0x78,0x28,0x30,0x2c,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x6f,0x2c, 0x69,0x2d,0x31,0x29,0x29,0x5d,0x7d,0x2c,0x41,0x3d,0x2f,0x5b,0x5e,0x2e,0x5d,0x2a, 0x28,0x3f,0x3d,0x5c,0x2e,0x2e,0x2a,0x29,0x5c,0x2e,0x7c,0x2e,0x2a,0x2f,0x2c,0x54, 0x3d,0x2f,0x5c,0x2e,0x2e,0x2a,0x2f,0x2c,0x50,0x3d,0x2f,0x3a,0x3a,0x5c,0x64,0x2b, 0x24,0x2f,0x2c,0x44,0x3d,0x7b,0x7d,0x2c,0x4e,0x3d,0x31,0x2c,0x49,0x3d,0x7b,0x6d, 0x6f,0x75,0x73,0x65,0x65,0x6e,0x74,0x65,0x72,0x3a,0x22,0x6d,0x6f,0x75,0x73,0x65, 0x6f,0x76,0x65,0x72,0x22,0x2c,0x6d,0x6f,0x75,0x73,0x65,0x6c,0x65,0x61,0x76,0x65, 0x3a,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x22,0x7d,0x2c,0x52,0x3d,0x2f, 0x5e,0x28,0x6d,0x6f,0x75,0x73,0x65,0x65,0x6e,0x74,0x65,0x72,0x7c,0x6d,0x6f,0x75, 0x73,0x65,0x6c,0x65,0x61,0x76,0x65,0x29,0x2f,0x69,0x2c,0x4c,0x3d,0x6e,0x65,0x77, 0x20,0x53,0x65,0x74,0x28,0x5b,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22,0x2c,0x22,0x64, 0x62,0x6c,0x63,0x6c,0x69,0x63,0x6b,0x22,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x75, 0x70,0x22,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x22, 0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x6d,0x65,0x6e,0x75,0x22,0x2c,0x22,0x6d,0x6f, 0x75,0x73,0x65,0x77,0x68,0x65,0x65,0x6c,0x22,0x2c,0x22,0x44,0x4f,0x4d,0x4d,0x6f, 0x75,0x73,0x65,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x22,0x6d,0x6f,0x75,0x73, 0x65,0x6f,0x76,0x65,0x72,0x22,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74, 0x22,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6d,0x6f,0x76,0x65,0x22,0x2c,0x22,0x73, 0x65,0x6c,0x65,0x63,0x74,0x73,0x74,0x61,0x72,0x74,0x22,0x2c,0x22,0x73,0x65,0x6c, 0x65,0x63,0x74,0x65,0x6e,0x64,0x22,0x2c,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e, 0x22,0x2c,0x22,0x6b,0x65,0x79,0x70,0x72,0x65,0x73,0x73,0x22,0x2c,0x22,0x6b,0x65, 0x79,0x75,0x70,0x22,0x2c,0x22,0x6f,0x72,0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f, 0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x22,0x74,0x6f,0x75,0x63,0x68,0x73, 0x74,0x61,0x72,0x74,0x22,0x2c,0x22,0x74,0x6f,0x75,0x63,0x68,0x6d,0x6f,0x76,0x65, 0x22,0x2c,0x22,0x74,0x6f,0x75,0x63,0x68,0x65,0x6e,0x64,0x22,0x2c,0x22,0x74,0x6f, 0x75,0x63,0x68,0x63,0x61,0x6e,0x63,0x65,0x6c,0x22,0x2c,0x22,0x70,0x6f,0x69,0x6e, 0x74,0x65,0x72,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65, 0x72,0x6d,0x6f,0x76,0x65,0x22,0x2c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x75, 0x70,0x22,0x2c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x6c,0x65,0x61,0x76,0x65, 0x22,0x2c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x63,0x61,0x6e,0x63,0x65,0x6c, 0x22,0x2c,0x22,0x67,0x65,0x73,0x74,0x75,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x22, 0x2c,0x22,0x67,0x65,0x73,0x74,0x75,0x72,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x22, 0x2c,0x22,0x67,0x65,0x73,0x74,0x75,0x72,0x65,0x65,0x6e,0x64,0x22,0x2c,0x22,0x66, 0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x62,0x6c,0x75,0x72,0x22,0x2c,0x22,0x63,0x68, 0x61,0x6e,0x67,0x65,0x22,0x2c,0x22,0x72,0x65,0x73,0x65,0x74,0x22,0x2c,0x22,0x73, 0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x2c, 0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22,0x2c,0x22,0x66,0x6f,0x63,0x75,0x73, 0x6f,0x75,0x74,0x22,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x22,0x2c,0x22,0x75,0x6e,0x6c, 0x6f,0x61,0x64,0x22,0x2c,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x75,0x6e,0x6c,0x6f, 0x61,0x64,0x22,0x2c,0x22,0x72,0x65,0x73,0x69,0x7a,0x65,0x22,0x2c,0x22,0x6d,0x6f, 0x76,0x65,0x22,0x2c,0x22,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c, 0x6f,0x61,0x64,0x65,0x64,0x22,0x2c,0x22,0x72,0x65,0x61,0x64,0x79,0x73,0x74,0x61, 0x74,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x22,0x65,0x72,0x72,0x6f,0x72, 0x22,0x2c,0x22,0x61,0x62,0x6f,0x72,0x74,0x22,0x2c,0x22,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x22,0x5d,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x3a,0x3a,0x22,0x29, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4e,0x2b,0x2b,0x29,0x7c,0x7c,0x65,0x2e, 0x75,0x69,0x64,0x45,0x76,0x65,0x6e,0x74,0x7c,0x7c,0x4e,0x2b,0x2b,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x46,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x75,0x69,0x64,0x45,0x76,0x65,0x6e,0x74,0x3d,0x74,0x2c,0x44,0x5b,0x74,0x5d,0x3d, 0x44,0x5b,0x74,0x5d,0x7c,0x7c,0x7b,0x7d,0x2c,0x44,0x5b,0x74,0x5d,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x32,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32, 0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3a,0x6e, 0x75,0x6c,0x6c,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79, 0x73,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x30,0x2c,0x69,0x3d,0x72,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x6f,0x3c,0x69,0x3b,0x6f,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x65,0x5b,0x72,0x5b,0x6f,0x5d,0x5d,0x3b,0x69,0x66,0x28,0x61,0x2e, 0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x3d, 0x3d,0x3d,0x74,0x26,0x26,0x61,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x69,0x6f, 0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x3d,0x3d,0x3d,0x6e,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x61,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75, 0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x73,0x74,0x72,0x69, 0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x2c,0x6f,0x3d, 0x72,0x3f,0x6e,0x3a,0x74,0x2c,0x69,0x3d,0x24,0x28,0x65,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4c,0x2e,0x68,0x61,0x73,0x28,0x69,0x29,0x7c,0x7c,0x28,0x69, 0x3d,0x65,0x29,0x2c,0x5b,0x72,0x2c,0x6f,0x2c,0x69,0x5d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x55,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f, 0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x7c,0x7c,0x28,0x6e,0x3d,0x72,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x52, 0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x69, 0x66,0x28,0x21,0x74,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67, 0x65,0x74,0x7c,0x7c,0x74,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72, 0x67,0x65,0x74,0x21,0x3d,0x3d,0x74,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65, 0x54,0x61,0x72,0x67,0x65,0x74,0x26,0x26,0x21,0x74,0x2e,0x64,0x65,0x6c,0x65,0x67, 0x61,0x74,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x73,0x28,0x74,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67, 0x65,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x61,0x6c, 0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x74,0x29,0x7d,0x7d,0x3b,0x72,0x3f,0x72,0x3d, 0x69,0x28,0x72,0x29,0x3a,0x6e,0x3d,0x69,0x28,0x6e,0x29,0x7d,0x76,0x61,0x72,0x20, 0x61,0x3d,0x7a,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x2c,0x75,0x3d,0x66,0x28,0x61, 0x2c,0x33,0x29,0x2c,0x63,0x3d,0x75,0x5b,0x30,0x5d,0x2c,0x6c,0x3d,0x75,0x5b,0x31, 0x5d,0x2c,0x73,0x3d,0x75,0x5b,0x32,0x5d,0x2c,0x64,0x3d,0x4d,0x28,0x65,0x29,0x2c, 0x70,0x3d,0x64,0x5b,0x73,0x5d,0x7c,0x7c,0x28,0x64,0x5b,0x73,0x5d,0x3d,0x7b,0x7d, 0x29,0x2c,0x68,0x3d,0x42,0x28,0x70,0x2c,0x6c,0x2c,0x63,0x3f,0x6e,0x3a,0x6e,0x75, 0x6c,0x6c,0x29,0x3b,0x69,0x66,0x28,0x68,0x29,0x68,0x2e,0x6f,0x6e,0x65,0x4f,0x66, 0x66,0x3d,0x68,0x2e,0x6f,0x6e,0x65,0x4f,0x66,0x66,0x26,0x26,0x6f,0x3b,0x65,0x6c, 0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x76,0x3d,0x46,0x28,0x6c,0x2c,0x74,0x2e,0x72, 0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x41,0x2c,0x22,0x22,0x29,0x29,0x2c,0x67,0x3d, 0x63,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x72,0x28,0x6f,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69, 0x3d,0x65,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72, 0x41,0x6c,0x6c,0x28,0x74,0x29,0x2c,0x61,0x3d,0x6f,0x2e,0x74,0x61,0x72,0x67,0x65, 0x74,0x3b,0x61,0x26,0x26,0x61,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73,0x3b,0x61,0x3d, 0x61,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x75,0x3d,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x75,0x2d,0x2d,0x3b,0x29,0x69,0x66,0x28,0x69,0x5b,0x75,0x5d,0x3d,0x3d,0x3d,0x61, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61, 0x74,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x3d,0x61,0x2c,0x72,0x2e,0x6f,0x6e,0x65, 0x4f,0x66,0x66,0x26,0x26,0x48,0x2e,0x6f,0x66,0x66,0x28,0x65,0x2c,0x6f,0x2e,0x74, 0x79,0x70,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x6e,0x2e,0x61,0x70,0x70,0x6c,0x79, 0x28,0x61,0x2c,0x5b,0x6f,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x75,0x6c,0x6c,0x7d,0x7d,0x28,0x65,0x2c,0x6e,0x2c,0x72,0x29,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x72,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74, 0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x3d,0x65,0x2c,0x6e,0x2e,0x6f,0x6e,0x65,0x4f, 0x66,0x66,0x26,0x26,0x48,0x2e,0x6f,0x66,0x66,0x28,0x65,0x2c,0x72,0x2e,0x74,0x79, 0x70,0x65,0x2c,0x74,0x29,0x2c,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x65,0x2c, 0x5b,0x72,0x5d,0x29,0x7d,0x7d,0x28,0x65,0x2c,0x6e,0x29,0x3b,0x67,0x2e,0x64,0x65, 0x6c,0x65,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72, 0x3d,0x63,0x3f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x67,0x2e,0x6f,0x72,0x69,0x67, 0x69,0x6e,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x3d,0x6c,0x2c,0x67,0x2e, 0x6f,0x6e,0x65,0x4f,0x66,0x66,0x3d,0x6f,0x2c,0x67,0x2e,0x75,0x69,0x64,0x45,0x76, 0x65,0x6e,0x74,0x3d,0x76,0x2c,0x70,0x5b,0x76,0x5d,0x3d,0x67,0x2c,0x65,0x2e,0x61, 0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28, 0x73,0x2c,0x67,0x2c,0x63,0x29,0x7d,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x57,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x6f,0x29,0x7b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x42,0x28,0x74,0x5b,0x6e,0x5d,0x2c,0x72,0x2c,0x6f,0x29, 0x3b,0x69,0x26,0x26,0x28,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65, 0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x6e,0x2c,0x69,0x2c,0x42, 0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x6f,0x29,0x29,0x2c,0x64,0x65,0x6c,0x65,0x74, 0x65,0x20,0x74,0x5b,0x6e,0x5d,0x5b,0x69,0x2e,0x75,0x69,0x64,0x45,0x76,0x65,0x6e, 0x74,0x5d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x65,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x54,0x2c,0x22,0x22,0x29,0x2c,0x49,0x5b,0x65,0x5d,0x7c, 0x7c,0x65,0x7d,0x76,0x61,0x72,0x20,0x48,0x3d,0x7b,0x6f,0x6e,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x55, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x21,0x31,0x29,0x7d,0x2c,0x6f,0x6e, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e, 0x2c,0x72,0x29,0x7b,0x55,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x2c,0x21,0x30, 0x29,0x7d,0x2c,0x6f,0x66,0x66,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x69,0x66,0x28,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x7a,0x28,0x74,0x2c,0x6e,0x2c,0x72, 0x29,0x2c,0x69,0x3d,0x66,0x28,0x6f,0x2c,0x33,0x29,0x2c,0x61,0x3d,0x69,0x5b,0x30, 0x5d,0x2c,0x75,0x3d,0x69,0x5b,0x31,0x5d,0x2c,0x63,0x3d,0x69,0x5b,0x32,0x5d,0x2c, 0x6c,0x3d,0x63,0x21,0x3d,0x3d,0x74,0x2c,0x73,0x3d,0x4d,0x28,0x65,0x29,0x2c,0x64, 0x3d,0x74,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x22,0x2e, 0x22,0x29,0x3b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75, 0x29,0x7b,0x64,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73, 0x28,0x73,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x21,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x74,0x5b,0x6e,0x5d,0x7c,0x7c,0x7b,0x7d,0x3b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x6f,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63, 0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x69,0x29,0x7b,0x69, 0x66,0x28,0x69,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x72,0x29,0x29, 0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x6f,0x5b,0x69,0x5d,0x3b,0x57,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x61,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x48,0x61, 0x6e,0x64,0x6c,0x65,0x72,0x2c,0x61,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x69, 0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x29,0x7d,0x7d,0x29,0x29,0x7d, 0x28,0x65,0x2c,0x73,0x2c,0x6e,0x2c,0x74,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31, 0x29,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x73,0x5b,0x63,0x5d, 0x7c,0x7c,0x7b,0x7d,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73, 0x28,0x70,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x50,0x2c,0x22,0x22,0x29,0x3b,0x69, 0x66,0x28,0x21,0x6c,0x7c,0x7c,0x74,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73, 0x28,0x72,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x70,0x5b,0x6e,0x5d,0x3b, 0x57,0x28,0x65,0x2c,0x73,0x2c,0x63,0x2c,0x6f,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e, 0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x2c,0x6f,0x2e,0x64,0x65,0x6c,0x65, 0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x29,0x7d, 0x7d,0x29,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28,0x21,0x73,0x7c,0x7c, 0x21,0x73,0x5b,0x63,0x5d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x57,0x28,0x65, 0x2c,0x73,0x2c,0x63,0x2c,0x75,0x2c,0x61,0x3f,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x29, 0x7d,0x7d,0x7d,0x2c,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x7c,0x7c,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c, 0x6c,0x3b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x3d,0x4f,0x28,0x29,0x2c,0x69,0x3d, 0x24,0x28,0x74,0x29,0x2c,0x61,0x3d,0x74,0x21,0x3d,0x3d,0x69,0x2c,0x75,0x3d,0x4c, 0x2e,0x68,0x61,0x73,0x28,0x69,0x29,0x2c,0x63,0x3d,0x21,0x30,0x2c,0x6c,0x3d,0x21, 0x30,0x2c,0x73,0x3d,0x21,0x31,0x2c,0x66,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x61,0x26,0x26,0x6f,0x26,0x26,0x28,0x72,0x3d,0x6f,0x2e, 0x45,0x76,0x65,0x6e,0x74,0x28,0x74,0x2c,0x6e,0x29,0x2c,0x6f,0x28,0x65,0x29,0x2e, 0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x72,0x29,0x2c,0x63,0x3d,0x21,0x72,0x2e, 0x69,0x73,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f, 0x70,0x70,0x65,0x64,0x28,0x29,0x2c,0x6c,0x3d,0x21,0x72,0x2e,0x69,0x73,0x49,0x6d, 0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69, 0x6f,0x6e,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x28,0x29,0x2c,0x73,0x3d,0x72,0x2e, 0x69,0x73,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74, 0x65,0x64,0x28,0x29,0x29,0x2c,0x75,0x3f,0x28,0x66,0x3d,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x76,0x65,0x6e,0x74,0x28, 0x22,0x48,0x54,0x4d,0x4c,0x45,0x76,0x65,0x6e,0x74,0x73,0x22,0x29,0x29,0x2e,0x69, 0x6e,0x69,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x69,0x2c,0x63,0x2c,0x21,0x30,0x29, 0x3a,0x66,0x3d,0x6e,0x65,0x77,0x20,0x43,0x75,0x73,0x74,0x6f,0x6d,0x45,0x76,0x65, 0x6e,0x74,0x28,0x74,0x2c,0x7b,0x62,0x75,0x62,0x62,0x6c,0x65,0x73,0x3a,0x63,0x2c, 0x63,0x61,0x6e,0x63,0x65,0x6c,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29,0x2c, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x6e,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x28,0x66,0x2c,0x65,0x2c,0x7b,0x67,0x65,0x74,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x5b,0x65,0x5d,0x7d,0x7d,0x29,0x7d,0x29,0x29,0x2c,0x73,0x26,0x26,0x66, 0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28, 0x29,0x2c,0x6c,0x26,0x26,0x65,0x2e,0x64,0x69,0x73,0x70,0x61,0x74,0x63,0x68,0x45, 0x76,0x65,0x6e,0x74,0x28,0x66,0x29,0x2c,0x66,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x26,0x26,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x72,0x26,0x26,0x72,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e, 0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x66,0x7d,0x7d,0x2c,0x56, 0x3d,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x47,0x3d,0x7b,0x73,0x65,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x56,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x7c,0x7c,0x56,0x2e,0x73,0x65,0x74,0x28, 0x65,0x2c,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x29,0x3b,0x76,0x61,0x72,0x20,0x72, 0x3d,0x56,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x72,0x2e,0x68,0x61,0x73,0x28, 0x74,0x29,0x7c,0x7c,0x30,0x3d,0x3d,0x3d,0x72,0x2e,0x73,0x69,0x7a,0x65,0x3f,0x72, 0x2e,0x73,0x65,0x74,0x28,0x74,0x2c,0x6e,0x29,0x3a,0x63,0x6f,0x6e,0x73,0x6f,0x6c, 0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x22,0x42,0x6f,0x6f,0x74,0x73,0x74,0x72, 0x61,0x70,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x61,0x6c,0x6c,0x6f,0x77, 0x20,0x6d,0x6f,0x72,0x65,0x20,0x74,0x68,0x61,0x6e,0x20,0x6f,0x6e,0x65,0x20,0x69, 0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x70,0x65,0x72,0x20,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2e,0x20,0x42,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x3a,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x41,0x72, 0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x2e,0x6b,0x65,0x79,0x73,0x28, 0x29,0x29,0x5b,0x30,0x5d,0x2c,0x22,0x2e,0x22,0x29,0x29,0x7d,0x2c,0x67,0x65,0x74, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x56,0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x26,0x26, 0x56,0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x2e,0x67,0x65,0x74,0x28,0x74,0x29,0x7c, 0x7c,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x56, 0x2e,0x68,0x61,0x73,0x28,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x56, 0x2e,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x6e,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65, 0x28,0x74,0x29,0x2c,0x30,0x3d,0x3d,0x3d,0x6e,0x2e,0x73,0x69,0x7a,0x65,0x26,0x26, 0x56,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x65,0x29,0x7d,0x7d,0x7d,0x2c,0x71, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x6c,0x28,0x74,0x68,0x69,0x73, 0x2c,0x65,0x29,0x2c,0x28,0x74,0x3d,0x76,0x28,0x74,0x29,0x29,0x26,0x26,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x74,0x2c,0x47, 0x2e,0x73,0x65,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63, 0x74,0x6f,0x72,0x2e,0x44,0x41,0x54,0x41,0x5f,0x4b,0x45,0x59,0x2c,0x74,0x68,0x69, 0x73,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65,0x2c,0x5b, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x47,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x2e,0x44,0x41,0x54,0x41,0x5f,0x4b,0x45,0x59,0x29,0x2c,0x48,0x2e,0x6f, 0x66,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x2e,0x45,0x56,0x45,0x4e,0x54,0x5f,0x4b,0x45,0x59,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x4e,0x61,0x6d,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x29,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x53,0x28,0x65,0x2c, 0x74,0x2c,0x21,0x28,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3e,0x32,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x29,0x7c,0x7c, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x32,0x5d,0x29,0x7d,0x7d,0x5d, 0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67,0x65,0x74,0x49,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x2e, 0x67,0x65,0x74,0x28,0x76,0x28,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x44,0x41, 0x54,0x41,0x5f,0x4b,0x45,0x59,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26, 0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x31,0x5d,0x3a,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x67,0x65,0x74,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x65, 0x29,0x7c,0x7c,0x6e,0x65,0x77,0x20,0x74,0x68,0x69,0x73,0x28,0x65,0x2c,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74, 0x3f,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x56,0x45,0x52,0x53,0x49,0x4f,0x4e,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x35,0x2e,0x31,0x2e,0x33,0x22,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e, 0x41,0x4d,0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x27,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x74,0x6f, 0x20,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,0x20,0x73, 0x74,0x61,0x74,0x69,0x63,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x22,0x4e,0x41, 0x4d,0x45,0x22,0x2c,0x20,0x66,0x6f,0x72,0x20,0x65,0x61,0x63,0x68,0x20,0x63,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x21,0x27,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x44,0x41,0x54,0x41,0x5f,0x4b,0x45,0x59,0x22,0x2c,0x67,0x65,0x74, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x62,0x73,0x2e,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74, 0x68,0x69,0x73,0x2e,0x4e,0x41,0x4d,0x45,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x45,0x56,0x45,0x4e,0x54,0x5f,0x4b,0x45,0x59,0x22,0x2c,0x67,0x65,0x74, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x2e,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68,0x69, 0x73,0x2e,0x44,0x41,0x54,0x41,0x5f,0x4b,0x45,0x59,0x29,0x7d,0x7d,0x5d,0x29,0x2c, 0x65,0x7d,0x28,0x29,0x2c,0x4b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a, 0x22,0x68,0x69,0x64,0x65,0x22,0x2c,0x6e,0x3d,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e, 0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x65,0x2e,0x45,0x56,0x45,0x4e,0x54,0x5f,0x4b,0x45,0x59,0x29,0x2c,0x72,0x3d,0x65, 0x2e,0x4e,0x41,0x4d,0x45,0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2c,0x6e,0x2c,0x27,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d, 0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x3d,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x72,0x2c,0x27,0x22,0x5d,0x27,0x29,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x69,0x66,0x28,0x5b,0x22,0x41,0x22,0x2c,0x22, 0x41,0x52,0x45,0x41,0x22,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28, 0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29,0x26,0x26,0x6e, 0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28, 0x29,0x2c,0x21,0x62,0x28,0x74,0x68,0x69,0x73,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6f,0x3d,0x64,0x28,0x74,0x68,0x69,0x73,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e, 0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x22,0x2e,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x72,0x29,0x29,0x3b,0x65,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72, 0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x6f,0x29,0x5b, 0x74,0x5d,0x28,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x2c,0x59,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x63,0x6c,0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x74,0x68,0x69,0x73,0x3b,0x69,0x66,0x28,0x21,0x48,0x2e,0x74,0x72,0x69,0x67,0x67, 0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2c,0x22,0x63,0x6c,0x6f,0x73,0x65,0x2e,0x62,0x73,0x2e,0x61,0x6c,0x65,0x72,0x74, 0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e, 0x74,0x65,0x64,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x28,0x22,0x73,0x68,0x6f,0x77,0x22,0x29,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x73,0x28,0x22,0x66,0x61,0x64,0x65,0x22,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x5f,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x29,0x7d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x74,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69, 0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x22,0x63,0x6c,0x6f,0x73,0x65,0x64,0x2e,0x62,0x73,0x2e,0x61,0x6c, 0x65,0x72,0x74,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x64,0x69,0x73,0x70,0x6f, 0x73,0x65,0x28,0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e, 0x41,0x4d,0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x61,0x6c,0x65,0x72,0x74, 0x22,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79, 0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x6e,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x3b,0x69,0x66,0x28,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x5b,0x65,0x5d,0x7c,0x7c,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74, 0x68,0x28,0x22,0x5f,0x22,0x29,0x7c,0x7c,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x22,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20, 0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e, 0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x6e,0x61,0x6d,0x65,0x64,0x20,0x22, 0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x22,0x27,0x29,0x29, 0x3b,0x74,0x5b,0x65,0x5d,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x7d,0x29,0x29,0x7d, 0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x4b,0x28,0x59,0x2c,0x22,0x63, 0x6c,0x6f,0x73,0x65,0x22,0x29,0x2c,0x6a,0x28,0x59,0x29,0x3b,0x76,0x61,0x72,0x20, 0x51,0x3d,0x27,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x5d,0x27,0x2c,0x58,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x6e,0x2c, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d, 0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22, 0x29,0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d, 0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49, 0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e, 0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x3b,0x22,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x74,0x5b,0x65,0x5d,0x28,0x29,0x7d, 0x29,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x74,0x72,0x75,0x65,0x22,0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x66,0x61, 0x6c,0x73,0x65,0x22,0x21,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x3d,0x3d,0x4e, 0x75,0x6d,0x62,0x65,0x72,0x28,0x65,0x29,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e, 0x67,0x28,0x29,0x3f,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x65,0x29,0x3a,0x22,0x22, 0x3d,0x3d,0x3d,0x65,0x7c,0x7c,0x22,0x6e,0x75,0x6c,0x6c,0x22,0x3d,0x3d,0x3d,0x65, 0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x5a,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5b,0x41,0x2d,0x5a,0x5d,0x2f,0x67, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x22,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65, 0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x29,0x7d, 0x29,0x29,0x7d,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x2c,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e,0x62,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x51,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x63,0x6c,0x6f, 0x73,0x65,0x73,0x74,0x28,0x51,0x29,0x3b,0x58,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43, 0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x29, 0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x6a,0x28,0x58, 0x29,0x3b,0x76,0x61,0x72,0x20,0x65,0x65,0x3d,0x7b,0x73,0x65,0x74,0x44,0x61,0x74, 0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x65,0x2e,0x73,0x65,0x74, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d, 0x62,0x73,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x5a,0x28,0x74,0x29, 0x29,0x2c,0x6e,0x29,0x7d,0x2c,0x72,0x65,0x6d,0x6f,0x76,0x65,0x44,0x61,0x74,0x61, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d, 0x62,0x73,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x5a,0x28,0x74,0x29, 0x29,0x29,0x7d,0x2c,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x2e,0x64, 0x61,0x74,0x61,0x73,0x65,0x74,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28, 0x22,0x62,0x73,0x22,0x29,0x7d,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5e, 0x62,0x73,0x2f,0x2c,0x22,0x22,0x29,0x3b,0x72,0x3d,0x72,0x2e,0x63,0x68,0x61,0x72, 0x41,0x74,0x28,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73, 0x65,0x28,0x29,0x2b,0x72,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x2c,0x72,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x2c,0x74,0x5b,0x72,0x5d,0x3d,0x4a,0x28,0x65, 0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x5b,0x6e,0x5d,0x29,0x7d,0x29,0x29,0x2c, 0x74,0x7d,0x2c,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x28,0x65,0x2e,0x67,0x65,0x74, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d, 0x62,0x73,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x5a,0x28,0x74,0x29, 0x29,0x29,0x29,0x7d,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e, 0x74,0x52,0x65,0x63,0x74,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74, 0x6f,0x70,0x3a,0x74,0x2e,0x74,0x6f,0x70,0x2b,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e, 0x70,0x61,0x67,0x65,0x59,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x6c,0x65,0x66,0x74, 0x3a,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x70, 0x61,0x67,0x65,0x58,0x4f,0x66,0x66,0x73,0x65,0x74,0x7d,0x7d,0x2c,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x74,0x6f,0x70,0x3a,0x65,0x2e,0x6f, 0x66,0x66,0x73,0x65,0x74,0x54,0x6f,0x70,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x65,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x4c,0x65,0x66,0x74,0x7d,0x7d,0x7d,0x2c,0x74,0x65, 0x3d,0x7b,0x66,0x69,0x6e,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31, 0x5d,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x74,0x3d,0x5b,0x5d,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x61,0x28,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x71,0x75,0x65,0x72,0x79, 0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x6e,0x2c,0x65,0x29,0x29,0x29,0x7d,0x2c,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3e,0x31,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3f,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x31,0x5d,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x71,0x75,0x65,0x72, 0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x2c,0x65,0x29,0x7d,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x6e,0x3d,0x5b,0x5d,0x29,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x6e,0x2c,0x61,0x28, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x2e,0x66,0x69,0x6c, 0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65, 0x73,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74,0x73, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5b,0x5d,0x2c,0x72,0x3d,0x65,0x2e, 0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b,0x72,0x26,0x26,0x72,0x2e, 0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3d,0x3d,0x3d,0x4e,0x6f,0x64,0x65,0x2e, 0x45,0x4c,0x45,0x4d,0x45,0x4e,0x54,0x5f,0x4e,0x4f,0x44,0x45,0x26,0x26,0x33,0x21, 0x3d,0x3d,0x72,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x3b,0x29,0x72,0x2e, 0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x28,0x74,0x29,0x26,0x26,0x6e,0x2e,0x70,0x75, 0x73,0x68,0x28,0x72,0x29,0x2c,0x72,0x3d,0x72,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74, 0x4e,0x6f,0x64,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x2c,0x70, 0x72,0x65,0x76,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x70,0x72, 0x65,0x76,0x69,0x6f,0x75,0x73,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x53,0x69,0x62, 0x6c,0x69,0x6e,0x67,0x3b,0x6e,0x3b,0x29,0x7b,0x69,0x66,0x28,0x6e,0x2e,0x6d,0x61, 0x74,0x63,0x68,0x65,0x73,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b, 0x6e,0x5d,0x3b,0x6e,0x3d,0x6e,0x2e,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x2c,0x6e,0x65,0x78,0x74,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x3b,0x6e,0x3b,0x29,0x7b,0x69,0x66, 0x28,0x6e,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x28,0x74,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x5b,0x6e,0x5d,0x3b,0x6e,0x3d,0x6e,0x2e,0x6e,0x65,0x78,0x74, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x53,0x69,0x62,0x6c,0x69,0x6e,0x67,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x7d,0x2c,0x66,0x6f,0x63,0x75,0x73,0x61,0x62, 0x6c,0x65,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x22,0x61, 0x22,0x2c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x22,0x69,0x6e,0x70,0x75, 0x74,0x22,0x2c,0x22,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x22,0x2c,0x22,0x73, 0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x22, 0x2c,0x22,0x5b,0x74,0x61,0x62,0x69,0x6e,0x64,0x65,0x78,0x5d,0x22,0x2c,0x27,0x5b, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x3d, 0x22,0x74,0x72,0x75,0x65,0x22,0x5d,0x27,0x5d,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x3a,0x6e, 0x6f,0x74,0x28,0x5b,0x74,0x61,0x62,0x69,0x6e,0x64,0x65,0x78,0x5e,0x3d,0x22,0x2d, 0x22,0x5d,0x29,0x27,0x29,0x7d,0x29,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c, 0x20,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x66,0x69,0x6e,0x64,0x28,0x74,0x2c,0x65,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x62,0x28,0x65,0x29,0x26,0x26,0x6d,0x28,0x65,0x29,0x7d, 0x29,0x29,0x7d,0x7d,0x2c,0x6e,0x65,0x3d,0x22,0x63,0x61,0x72,0x6f,0x75,0x73,0x65, 0x6c,0x22,0x2c,0x72,0x65,0x3d,0x7b,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3a, 0x35,0x65,0x33,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x3a,0x21,0x30,0x2c, 0x73,0x6c,0x69,0x64,0x65,0x3a,0x21,0x31,0x2c,0x70,0x61,0x75,0x73,0x65,0x3a,0x22, 0x68,0x6f,0x76,0x65,0x72,0x22,0x2c,0x77,0x72,0x61,0x70,0x3a,0x21,0x30,0x2c,0x74, 0x6f,0x75,0x63,0x68,0x3a,0x21,0x30,0x7d,0x2c,0x6f,0x65,0x3d,0x7b,0x69,0x6e,0x74, 0x65,0x72,0x76,0x61,0x6c,0x3a,0x22,0x28,0x6e,0x75,0x6d,0x62,0x65,0x72,0x7c,0x62, 0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x29,0x22,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72, 0x64,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x73,0x6c,0x69,0x64, 0x65,0x3a,0x22,0x28,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x7c,0x73,0x74,0x72,0x69, 0x6e,0x67,0x29,0x22,0x2c,0x70,0x61,0x75,0x73,0x65,0x3a,0x22,0x28,0x73,0x74,0x72, 0x69,0x6e,0x67,0x7c,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x29,0x22,0x2c,0x77,0x72, 0x61,0x70,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x74,0x6f,0x75, 0x63,0x68,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x7d,0x2c,0x69,0x65, 0x3d,0x22,0x6e,0x65,0x78,0x74,0x22,0x2c,0x61,0x65,0x3d,0x22,0x70,0x72,0x65,0x76, 0x22,0x2c,0x75,0x65,0x3d,0x22,0x6c,0x65,0x66,0x74,0x22,0x2c,0x63,0x65,0x3d,0x22, 0x72,0x69,0x67,0x68,0x74,0x22,0x2c,0x6c,0x65,0x3d,0x7b,0x41,0x72,0x72,0x6f,0x77, 0x4c,0x65,0x66,0x74,0x3a,0x63,0x65,0x2c,0x41,0x72,0x72,0x6f,0x77,0x52,0x69,0x67, 0x68,0x74,0x3a,0x75,0x65,0x7d,0x2c,0x73,0x65,0x3d,0x22,0x73,0x6c,0x69,0x64,0x2e, 0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22,0x2c,0x66,0x65,0x3d, 0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x64,0x65,0x3d,0x22,0x2e,0x61,0x63, 0x74,0x69,0x76,0x65,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74, 0x65,0x6d,0x22,0x2c,0x70,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x63,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28, 0x65,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x6f,0x3d,0x74, 0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29,0x2e,0x5f, 0x69,0x74,0x65,0x6d,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x2e,0x5f,0x69,0x6e, 0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x2e,0x5f,0x61, 0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x6f,0x2e,0x5f,0x69,0x73,0x50,0x61,0x75,0x73,0x65,0x64,0x3d,0x21,0x31, 0x2c,0x6f,0x2e,0x5f,0x69,0x73,0x53,0x6c,0x69,0x64,0x69,0x6e,0x67,0x3d,0x21,0x31, 0x2c,0x6f,0x2e,0x74,0x6f,0x75,0x63,0x68,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x2e,0x74,0x6f,0x75,0x63,0x68,0x53,0x74,0x61,0x72, 0x74,0x58,0x3d,0x30,0x2c,0x6f,0x2e,0x74,0x6f,0x75,0x63,0x68,0x44,0x65,0x6c,0x74, 0x61,0x58,0x3d,0x30,0x2c,0x6f,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3d,0x6f, 0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72,0x29,0x2c,0x6f, 0x2e,0x5f,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x73,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x22, 0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61, 0x74,0x6f,0x72,0x73,0x22,0x2c,0x6f,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x2c,0x6f,0x2e,0x5f,0x74,0x6f,0x75,0x63,0x68,0x53,0x75,0x70,0x70,0x6f,0x72, 0x74,0x65,0x64,0x3d,0x22,0x6f,0x6e,0x74,0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72, 0x74,0x22,0x69,0x6e,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x6e, 0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x6d,0x61,0x78,0x54,0x6f,0x75,0x63, 0x68,0x50,0x6f,0x69,0x6e,0x74,0x73,0x3e,0x30,0x2c,0x6f,0x2e,0x5f,0x70,0x6f,0x69, 0x6e,0x74,0x65,0x72,0x45,0x76,0x65,0x6e,0x74,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61, 0x6e,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72, 0x45,0x76,0x65,0x6e,0x74,0x29,0x2c,0x6f,0x2e,0x5f,0x61,0x64,0x64,0x45,0x76,0x65, 0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x2c,0x6f,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x6e,0x65,0x78,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73, 0x6c,0x69,0x64,0x65,0x28,0x69,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x6e,0x65,0x78,0x74,0x57,0x68,0x65,0x6e,0x56,0x69,0x73,0x69,0x62,0x6c,0x65, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x21,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x68,0x69,0x64, 0x64,0x65,0x6e,0x26,0x26,0x6d,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74, 0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x70,0x72,0x65,0x76,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x6c,0x69,0x64,0x65,0x28,0x61,0x65, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x70,0x61,0x75,0x73,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x65,0x7c,0x7c,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x50, 0x61,0x75,0x73,0x65,0x64,0x3d,0x21,0x30,0x29,0x2c,0x74,0x65,0x2e,0x66,0x69,0x6e, 0x64,0x4f,0x6e,0x65,0x28,0x22,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d, 0x69,0x74,0x65,0x6d,0x2d,0x6e,0x65,0x78,0x74,0x2c,0x20,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x70,0x72,0x65,0x76,0x22,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x26,0x26, 0x28,0x70,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x79,0x63,0x6c,0x65,0x28,0x21,0x30,0x29, 0x29,0x2c,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x6e, 0x75,0x6c,0x6c,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x79,0x63,0x6c, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x65,0x7c,0x7c,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69, 0x73,0x50,0x61,0x75,0x73,0x65,0x64,0x3d,0x21,0x31,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x26,0x26,0x28,0x63,0x6c,0x65, 0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x26,0x26,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x6e,0x74,0x65,0x72, 0x76,0x61,0x6c,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x50,0x61, 0x75,0x73,0x65,0x64,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x75,0x70,0x64, 0x61,0x74,0x65,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x73,0x65,0x74, 0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x53,0x74,0x61, 0x74,0x65,0x3f,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x57,0x68,0x65,0x6e, 0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78, 0x74,0x29,0x2e,0x62,0x69,0x6e,0x64,0x28,0x74,0x68,0x69,0x73,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x6e,0x74,0x65,0x72, 0x76,0x61,0x6c,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x64,0x65, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x49, 0x74,0x65,0x6d,0x49,0x6e,0x64,0x65,0x78,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61, 0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x69,0x66, 0x28,0x21,0x28,0x65,0x3e,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x74,0x65,0x6d,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x7c,0x7c,0x65,0x3c,0x30,0x29,0x29, 0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x6c,0x69,0x64,0x69, 0x6e,0x67,0x29,0x48,0x2e,0x6f,0x6e,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x73,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74, 0x6f,0x28,0x65,0x29,0x7d,0x29,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28, 0x6e,0x3d,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69, 0x73,0x2e,0x70,0x61,0x75,0x73,0x65,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x74, 0x68,0x69,0x73,0x2e,0x63,0x79,0x63,0x6c,0x65,0x28,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x65,0x3e,0x6e,0x3f,0x69,0x65,0x3a,0x61,0x65,0x3b,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x73,0x6c,0x69,0x64,0x65,0x28,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x74,0x65,0x6d,0x73,0x5b,0x65,0x5d,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x69,0x28,0x69,0x28,0x69,0x28, 0x7b,0x7d,0x2c,0x72,0x65,0x29,0x2c,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61,0x74, 0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x2c,0x22,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65, 0x3a,0x7b,0x7d,0x29,0x2c,0x67,0x28,0x6e,0x65,0x2c,0x65,0x2c,0x6f,0x65,0x29,0x2c, 0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x53,0x77,0x69,0x70,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4d, 0x61,0x74,0x68,0x2e,0x61,0x62,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x74,0x6f,0x75, 0x63,0x68,0x44,0x65,0x6c,0x74,0x61,0x58,0x29,0x3b,0x69,0x66,0x28,0x21,0x28,0x65, 0x3c,0x3d,0x34,0x30,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2f,0x74, 0x68,0x69,0x73,0x2e,0x74,0x6f,0x75,0x63,0x68,0x44,0x65,0x6c,0x74,0x61,0x58,0x3b, 0x74,0x68,0x69,0x73,0x2e,0x74,0x6f,0x75,0x63,0x68,0x44,0x65,0x6c,0x74,0x61,0x58, 0x3d,0x30,0x2c,0x74,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x6c,0x69,0x64, 0x65,0x28,0x74,0x3e,0x30,0x3f,0x63,0x65,0x3a,0x75,0x65,0x29,0x7d,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x26,0x26,0x48,0x2e,0x6f, 0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x6b,0x65,0x79, 0x64,0x6f,0x77,0x6e,0x28,0x74,0x29,0x7d,0x29,0x29,0x2c,0x22,0x68,0x6f,0x76,0x65, 0x72,0x22,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x70,0x61,0x75,0x73,0x65,0x26,0x26,0x28,0x48,0x2e,0x6f,0x6e,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6d,0x6f, 0x75,0x73,0x65,0x65,0x6e,0x74,0x65,0x72,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x70,0x61,0x75,0x73, 0x65,0x28,0x74,0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6d,0x6f,0x75,0x73, 0x65,0x6c,0x65,0x61,0x76,0x65,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73, 0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x79,0x63,0x6c,0x65,0x28, 0x74,0x29,0x7d,0x29,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x2e,0x74,0x6f,0x75,0x63,0x68,0x26,0x26,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x74,0x6f,0x75,0x63,0x68,0x53,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x26, 0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x64,0x64,0x54,0x6f,0x75,0x63,0x68,0x45, 0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x61,0x64,0x64,0x54,0x6f,0x75,0x63, 0x68,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x76,0x65,0x6e, 0x74,0x26,0x26,0x28,0x22,0x70,0x65,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x70,0x6f, 0x69,0x6e,0x74,0x65,0x72,0x54,0x79,0x70,0x65,0x7c,0x7c,0x22,0x74,0x6f,0x75,0x63, 0x68,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x54,0x79, 0x70,0x65,0x29,0x7d,0x2c,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x6e,0x29,0x7b,0x74,0x28,0x6e,0x29,0x3f,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x53, 0x74,0x61,0x72,0x74,0x58,0x3d,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x58,0x3a, 0x65,0x2e,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x76,0x65,0x6e,0x74,0x7c, 0x7c,0x28,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x53,0x74,0x61,0x72,0x74,0x58,0x3d, 0x6e,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x5b,0x30,0x5d,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x58,0x29,0x7d,0x2c,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x44,0x65,0x6c,0x74, 0x61,0x58,0x3d,0x74,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x26,0x26,0x74,0x2e, 0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x31, 0x3f,0x30,0x3a,0x74,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x73,0x5b,0x30,0x5d,0x2e, 0x63,0x6c,0x69,0x65,0x6e,0x74,0x58,0x2d,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x53, 0x74,0x61,0x72,0x74,0x58,0x7d,0x2c,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x6e,0x29,0x7b,0x74,0x28,0x6e,0x29,0x26,0x26,0x28,0x65,0x2e,0x74,0x6f, 0x75,0x63,0x68,0x44,0x65,0x6c,0x74,0x61,0x58,0x3d,0x6e,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x58,0x2d,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x53,0x74,0x61,0x72,0x74, 0x58,0x29,0x2c,0x65,0x2e,0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x77,0x69,0x70, 0x65,0x28,0x29,0x2c,0x22,0x68,0x6f,0x76,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x61,0x75,0x73,0x65,0x26,0x26,0x28, 0x65,0x2e,0x70,0x61,0x75,0x73,0x65,0x28,0x29,0x2c,0x65,0x2e,0x74,0x6f,0x75,0x63, 0x68,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x26,0x26,0x63,0x6c,0x65,0x61,0x72,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x29,0x2c,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x79,0x63,0x6c,0x65,0x28,0x74,0x29,0x7d, 0x29,0x2c,0x35,0x30,0x30,0x2b,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x29,0x7d,0x3b,0x74,0x65,0x2e,0x66, 0x69,0x6e,0x64,0x28,0x22,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69, 0x74,0x65,0x6d,0x20,0x69,0x6d,0x67,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x48,0x2e,0x6f, 0x6e,0x28,0x65,0x2c,0x22,0x64,0x72,0x61,0x67,0x73,0x74,0x61,0x72,0x74,0x2e,0x62, 0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74, 0x28,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70, 0x6f,0x69,0x6e,0x74,0x65,0x72,0x45,0x76,0x65,0x6e,0x74,0x3f,0x28,0x48,0x2e,0x6f, 0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x22,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x64,0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e, 0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28, 0x65,0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65, 0x72,0x75,0x70,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x22,0x70,0x6f,0x69,0x6e,0x74,0x65, 0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x22,0x29,0x29,0x3a,0x28,0x48,0x2e,0x6f,0x6e, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22, 0x74,0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x2e,0x62,0x73,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x65,0x29, 0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x74,0x6f,0x75,0x63,0x68,0x6d,0x6f,0x76, 0x65,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x72,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x74, 0x6f,0x75,0x63,0x68,0x65,0x6e,0x64,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75, 0x73,0x65,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7d,0x29,0x29, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x6b,0x65,0x79,0x64,0x6f, 0x77,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x2f,0x69,0x6e,0x70,0x75,0x74, 0x7c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74, 0x28,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d, 0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6c,0x65,0x5b,0x65,0x2e,0x6b, 0x65,0x79,0x5d,0x3b,0x74,0x26,0x26,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e, 0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x73,0x6c,0x69,0x64,0x65,0x28,0x74,0x29,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x49,0x6e,0x64,0x65, 0x78,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x69,0x74,0x65,0x6d,0x73,0x3d,0x65,0x26,0x26,0x65,0x2e,0x70,0x61,0x72, 0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3f,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28, 0x22,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x22, 0x2c,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29,0x3a,0x5b, 0x5d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x74,0x65,0x6d,0x73,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x42,0x79,0x4f,0x72,0x64,0x65,0x72, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x3d,0x3d,0x3d, 0x69,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x43,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x69,0x74,0x65,0x6d,0x73,0x2c,0x74,0x2c,0x6e,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x77,0x72,0x61,0x70,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x53, 0x6c,0x69,0x64,0x65,0x45,0x76,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x49,0x74, 0x65,0x6d,0x49,0x6e,0x64,0x65,0x78,0x28,0x65,0x29,0x2c,0x72,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x49,0x6e,0x64,0x65,0x78,0x28, 0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x64,0x65,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x6c, 0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22, 0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a, 0x65,0x2c,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2c,0x66,0x72, 0x6f,0x6d,0x3a,0x72,0x2c,0x74,0x6f,0x3a,0x6e,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x73,0x65,0x74,0x41,0x63,0x74,0x69,0x76,0x65,0x49,0x6e, 0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x64,0x69,0x63, 0x61,0x74,0x6f,0x72,0x73,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x22, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69, 0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x73,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x3b,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x28,0x66,0x65,0x29,0x2c,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76, 0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61, 0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x22,0x5b,0x64, 0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x61,0x72,0x67,0x65,0x74,0x5d,0x22,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x73, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x6e, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x69,0x66,0x28,0x4e, 0x75,0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x6e, 0x5b,0x72,0x5d,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x73,0x6c,0x69,0x64,0x65,0x2d, 0x74,0x6f,0x22,0x29,0x2c,0x31,0x30,0x29,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x49,0x6e,0x64,0x65,0x78,0x28,0x65,0x29, 0x29,0x7b,0x6e,0x5b,0x72,0x5d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x61,0x64,0x64,0x28,0x66,0x65,0x29,0x2c,0x6e,0x5b,0x72,0x5d,0x2e,0x73,0x65, 0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61, 0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x2c,0x22,0x74,0x72,0x75,0x65,0x22, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x6e,0x74,0x65,0x72,0x76,0x61, 0x6c,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x74, 0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x64,0x65,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x69,0x66,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x70, 0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x65,0x2e,0x67,0x65,0x74,0x41,0x74,0x74, 0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d, 0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x22,0x29,0x2c,0x31,0x30,0x29,0x3b,0x74, 0x3f,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x7c,0x7c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x6e,0x74,0x65,0x72,0x76, 0x61,0x6c,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x74,0x29,0x3a,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x6e,0x74,0x65,0x72,0x76,0x61, 0x6c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64, 0x65,0x66,0x61,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x7c,0x7c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x6e,0x74, 0x65,0x72,0x76,0x61,0x6c,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x73,0x6c,0x69,0x64,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x68,0x69,0x73,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x64,0x69, 0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x54,0x6f,0x4f,0x72,0x64,0x65,0x72,0x28,0x65, 0x29,0x2c,0x6f,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x64, 0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29, 0x2c,0x69,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x49,0x74,0x65,0x6d, 0x49,0x6e,0x64,0x65,0x78,0x28,0x6f,0x29,0x2c,0x61,0x3d,0x74,0x7c,0x7c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x42,0x79,0x4f,0x72,0x64, 0x65,0x72,0x28,0x72,0x2c,0x6f,0x29,0x2c,0x75,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x49,0x6e,0x64,0x65,0x78,0x28,0x61,0x29,0x2c, 0x63,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x2c,0x6c,0x3d,0x72,0x3d,0x3d,0x3d, 0x69,0x65,0x2c,0x73,0x3d,0x6c,0x3f,0x22,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c, 0x2d,0x69,0x74,0x65,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x65,0x6e,0x64,0x22, 0x2c,0x66,0x3d,0x6c,0x3f,0x22,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2d,0x69, 0x74,0x65,0x6d,0x2d,0x6e,0x65,0x78,0x74,0x22,0x3a,0x22,0x63,0x61,0x72,0x6f,0x75, 0x73,0x65,0x6c,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x70,0x72,0x65,0x76,0x22,0x2c,0x64, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6f,0x72,0x64,0x65,0x72,0x54,0x6f,0x44,0x69, 0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x3b,0x69,0x66,0x28,0x61,0x26, 0x26,0x61,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x73,0x28,0x66,0x65,0x29,0x29,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x73,0x53,0x6c,0x69,0x64,0x69,0x6e,0x67,0x3d,0x21,0x31,0x3b,0x65,0x6c,0x73, 0x65,0x20,0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x6c, 0x69,0x64,0x69,0x6e,0x67,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x72, 0x69,0x67,0x67,0x65,0x72,0x53,0x6c,0x69,0x64,0x65,0x45,0x76,0x65,0x6e,0x74,0x28, 0x61,0x2c,0x64,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76, 0x65,0x6e,0x74,0x65,0x64,0x26,0x26,0x6f,0x26,0x26,0x61,0x29,0x7b,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x53,0x6c,0x69,0x64,0x69,0x6e,0x67,0x3d,0x21,0x30,0x2c, 0x63,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x70,0x61,0x75,0x73,0x65,0x28,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x65,0x74,0x41,0x63,0x74,0x69,0x76,0x65,0x49, 0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28, 0x61,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x61,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x48,0x2e,0x74,0x72,0x69,0x67, 0x67,0x65,0x72,0x28,0x6e,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x73, 0x65,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74, 0x3a,0x61,0x2c,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x64,0x2c,0x66, 0x72,0x6f,0x6d,0x3a,0x69,0x2c,0x74,0x6f,0x3a,0x75,0x7d,0x29,0x7d,0x3b,0x69,0x66, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x73,0x28,0x22,0x73,0x6c,0x69,0x64,0x65,0x22,0x29,0x29,0x7b,0x61,0x2e,0x63,0x6c, 0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x66,0x29,0x2c,0x77, 0x28,0x61,0x29,0x2c,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x61,0x64,0x64,0x28,0x73,0x29,0x2c,0x61,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x73,0x29,0x3b,0x76,0x61,0x72,0x20,0x68,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x61,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x73,0x2c, 0x66,0x29,0x2c,0x61,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61, 0x64,0x64,0x28,0x66,0x65,0x29,0x2c,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x66,0x65,0x2c,0x66,0x2c,0x73, 0x29,0x2c,0x6e,0x2e,0x5f,0x69,0x73,0x53,0x6c,0x69,0x64,0x69,0x6e,0x67,0x3d,0x21, 0x31,0x2c,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x70,0x2c,0x30, 0x29,0x7d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x68,0x2c,0x6f,0x2c,0x21,0x30,0x29,0x7d,0x65, 0x6c,0x73,0x65,0x20,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x66,0x65,0x29,0x2c,0x61,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x66,0x65,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x6c,0x69,0x64,0x69,0x6e,0x67,0x3d,0x21, 0x31,0x2c,0x70,0x28,0x29,0x3b,0x63,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x63,0x79, 0x63,0x6c,0x65,0x28,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x54,0x6f,0x4f,0x72,0x64,0x65,0x72, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x63,0x65,0x2c,0x75,0x65, 0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x65,0x29,0x3f,0x45,0x28, 0x29,0x3f,0x65,0x3d,0x3d,0x3d,0x75,0x65,0x3f,0x61,0x65,0x3a,0x69,0x65,0x3a,0x65, 0x3d,0x3d,0x3d,0x75,0x65,0x3f,0x69,0x65,0x3a,0x61,0x65,0x3a,0x65,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x6f,0x72,0x64,0x65,0x72,0x54,0x6f,0x44,0x69, 0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x5b,0x69,0x65,0x2c,0x61,0x65,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65, 0x73,0x28,0x65,0x29,0x3f,0x45,0x28,0x29,0x3f,0x65,0x3d,0x3d,0x3d,0x61,0x65,0x3f, 0x75,0x65,0x3a,0x63,0x65,0x3a,0x65,0x3d,0x3d,0x3d,0x61,0x65,0x3f,0x63,0x65,0x3a, 0x75,0x65,0x3a,0x65,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d,0x45,0x22,0x2c,0x67, 0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x67, 0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x28,0x65,0x2c,0x74,0x29,0x2c,0x6f,0x3d,0x72,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x3b,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x74,0x26,0x26,0x28,0x6f,0x3d,0x69,0x28,0x69,0x28,0x7b, 0x7d,0x2c,0x6f,0x29,0x2c,0x74,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x61,0x3d,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x3f,0x74,0x3a,0x6f,0x2e,0x73,0x6c,0x69,0x64,0x65,0x3b,0x69,0x66,0x28,0x22, 0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x74,0x29,0x72,0x2e,0x74,0x6f,0x28,0x74,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69, 0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x61,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x72,0x5b,0x61,0x5d,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d, 0x65,0x74,0x68,0x6f,0x64,0x20,0x6e,0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x72,0x5b, 0x61,0x5d,0x28,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6f,0x2e,0x69,0x6e,0x74,0x65, 0x72,0x76,0x61,0x6c,0x26,0x26,0x6f,0x2e,0x72,0x69,0x64,0x65,0x26,0x26,0x28,0x72, 0x2e,0x70,0x61,0x75,0x73,0x65,0x28,0x29,0x2c,0x72,0x2e,0x63,0x79,0x63,0x6c,0x65, 0x28,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65, 0x72,0x79,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x2e,0x63,0x61, 0x72,0x6f,0x75,0x73,0x65,0x6c,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x28, 0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x64,0x61,0x74,0x61,0x41,0x70,0x69,0x43,0x6c,0x69,0x63,0x6b,0x48, 0x61,0x6e,0x64,0x6c,0x65,0x72,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x64,0x28,0x74,0x68,0x69,0x73,0x29,0x3b,0x69,0x66,0x28,0x74,0x26,0x26,0x74,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x73,0x28,0x22,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x22,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x65,0x65,0x2e, 0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x73,0x28,0x74,0x29,0x29,0x2c,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61,0x74,0x61, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x29, 0x29,0x2c,0x6f,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x73, 0x6c,0x69,0x64,0x65,0x2d,0x74,0x6f,0x22,0x29,0x3b,0x6f,0x26,0x26,0x28,0x72,0x2e, 0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3d,0x21,0x31,0x29,0x2c,0x6e,0x2e,0x63, 0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65, 0x28,0x74,0x2c,0x72,0x29,0x2c,0x6f,0x26,0x26,0x6e,0x2e,0x67,0x65,0x74,0x49,0x6e, 0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x29,0x2e,0x74,0x6f,0x28,0x6f,0x29,0x2c, 0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74, 0x28,0x29,0x7d,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x48,0x2e, 0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x63,0x6c,0x69, 0x63,0x6b,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x2e,0x64, 0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x22,0x5b,0x64,0x61,0x74,0x61,0x2d, 0x62,0x73,0x2d,0x73,0x6c,0x69,0x64,0x65,0x5d,0x2c,0x20,0x5b,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x73,0x6c,0x69,0x64,0x65,0x2d,0x74,0x6f,0x5d,0x22,0x2c,0x70, 0x65,0x2e,0x64,0x61,0x74,0x61,0x41,0x70,0x69,0x43,0x6c,0x69,0x63,0x6b,0x48,0x61, 0x6e,0x64,0x6c,0x65,0x72,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x2e,0x62,0x73,0x2e,0x63,0x61,0x72,0x6f, 0x75,0x73,0x65,0x6c,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x65,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x27,0x5b,0x64, 0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x72,0x69,0x64,0x65,0x3d,0x22,0x63,0x61,0x72, 0x6f,0x75,0x73,0x65,0x6c,0x22,0x5d,0x27,0x29,0x2c,0x74,0x3d,0x30,0x2c,0x6e,0x3d, 0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x3c,0x6e,0x3b,0x74,0x2b,0x2b, 0x29,0x70,0x65,0x2e,0x63,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x49,0x6e,0x74,0x65, 0x72,0x66,0x61,0x63,0x65,0x28,0x65,0x5b,0x74,0x5d,0x2c,0x70,0x65,0x2e,0x67,0x65, 0x74,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x65,0x5b,0x74,0x5d,0x29,0x29, 0x7d,0x29,0x29,0x2c,0x6a,0x28,0x70,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x68,0x65, 0x3d,0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x2c,0x76,0x65,0x3d,0x7b, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x70,0x61,0x72,0x65,0x6e,0x74, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x67,0x65,0x3d,0x7b,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x70,0x61,0x72,0x65, 0x6e,0x74,0x3a,0x22,0x28,0x6e,0x75,0x6c,0x6c,0x7c,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x29,0x22,0x7d,0x2c,0x6d,0x65,0x3d,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x62, 0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x2c,0x79,0x65,0x3d, 0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x22,0x2c,0x5f,0x65,0x3d, 0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x64,0x22,0x2c,0x77,0x65,0x3d,0x22, 0x3a,0x73,0x63,0x6f,0x70,0x65,0x20,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65, 0x20,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x2c,0x4f,0x65,0x3d,0x27, 0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3d, 0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x5d,0x27,0x2c,0x78,0x65,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x72,0x2c, 0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x72,0x29,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x65,0x2c,0x6f,0x29,0x7b,0x76,0x61, 0x72,0x20,0x69,0x3b,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x72,0x29,0x2c,0x28,0x69, 0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29, 0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e, 0x67,0x3d,0x21,0x31,0x2c,0x69,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3d,0x69, 0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6f,0x29,0x2c,0x69, 0x2e,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x41,0x72,0x72,0x61,0x79,0x3d,0x5b, 0x5d,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x61,0x3d,0x74,0x65,0x2e,0x66, 0x69,0x6e,0x64,0x28,0x4f,0x65,0x29,0x2c,0x75,0x3d,0x30,0x2c,0x63,0x3d,0x61,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x75,0x3c,0x63,0x3b,0x75,0x2b,0x2b,0x29,0x7b, 0x76,0x61,0x72,0x20,0x73,0x3d,0x61,0x5b,0x75,0x5d,0x2c,0x66,0x3d,0x6e,0x28,0x73, 0x29,0x2c,0x64,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x66,0x29,0x2e,0x66, 0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x3d,0x3d,0x69,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x29,0x3b,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x66,0x26,0x26,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26, 0x28,0x69,0x2e,0x5f,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x3d,0x66,0x2c,0x69, 0x2e,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x41,0x72,0x72,0x61,0x79,0x2e,0x70, 0x75,0x73,0x68,0x28,0x73,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69, 0x2e,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x43,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x28,0x29,0x2c,0x69,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x69,0x2e,0x5f,0x61,0x64,0x64,0x41, 0x72,0x69,0x61,0x41,0x6e,0x64,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x64,0x43, 0x6c,0x61,0x73,0x73,0x28,0x69,0x2e,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x41, 0x72,0x72,0x61,0x79,0x2c,0x69,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28, 0x29,0x29,0x2c,0x69,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x26,0x26,0x69,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x2c, 0x69,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x72,0x2c,0x5b,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28,0x29,0x3f,0x74,0x68,0x69, 0x73,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x68, 0x6f,0x77,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68,0x6f, 0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x69, 0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x2c,0x6e,0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x77,0x65,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x61,0x72, 0x65,0x6e,0x74,0x29,0x3b,0x6e,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x22, 0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x20, 0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70, 0x73,0x69,0x6e,0x67,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x6f,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73, 0x28,0x65,0x29,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x65,0x2e, 0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x65, 0x6c,0x65,0x63,0x74,0x6f,0x72,0x29,0x3b,0x69,0x66,0x28,0x6e,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x6e,0x2e,0x66,0x69,0x6e, 0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x21,0x3d,0x3d,0x65,0x7d,0x29,0x29,0x3b,0x69, 0x66,0x28,0x28,0x74,0x3d,0x61,0x3f,0x72,0x2e,0x67,0x65,0x74,0x49,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x28,0x61,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x26,0x26,0x74, 0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e, 0x67,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7d,0x69,0x66,0x28,0x21,0x48,0x2e,0x74, 0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x2e,0x62,0x73,0x2e,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x29,0x7b,0x6e,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x69,0x21,0x3d,0x3d,0x65,0x26,0x26,0x72,0x2e,0x67,0x65,0x74,0x4f,0x72, 0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x65, 0x2c,0x7b,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x21,0x31,0x7d,0x29,0x2e,0x68,0x69, 0x64,0x65,0x28,0x29,0x2c,0x74,0x7c,0x7c,0x47,0x2e,0x73,0x65,0x74,0x28,0x65,0x2c, 0x22,0x62,0x73,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x2c,0x6e,0x75, 0x6c,0x6c,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x28, 0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x28,0x62,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64, 0x28,0x79,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x75,0x5d,0x3d,0x30,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x61,0x64,0x64,0x41,0x72,0x69,0x61,0x41,0x6e,0x64,0x43,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x64,0x43,0x6c,0x61,0x73,0x73,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x41,0x72,0x72,0x61,0x79,0x2c, 0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x3b,0x76,0x61,0x72, 0x20,0x63,0x3d,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x75,0x5b,0x30,0x5d,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43, 0x61,0x73,0x65,0x28,0x29,0x2b,0x75,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29, 0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x65,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x69,0x6e,0x67,0x3d,0x21,0x31,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x28,0x79,0x65,0x29,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64, 0x28,0x62,0x65,0x2c,0x6d,0x65,0x29,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x75,0x5d,0x3d,0x22,0x22,0x2c,0x48, 0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x29,0x7d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x21,0x30,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65, 0x5b,0x75,0x5d,0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5b,0x63,0x5d,0x2c,0x22, 0x70,0x78,0x22,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68, 0x69,0x64,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73, 0x3b,0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x26,0x26,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28,0x29,0x26,0x26,0x21,0x48,0x2e, 0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x63, 0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e, 0x73,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x74,0x5d,0x3d,0x22,0x22, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e, 0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x28,0x29,0x5b,0x74,0x5d, 0x2c,0x22,0x70,0x78,0x22,0x29,0x2c,0x77,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x61,0x64,0x64,0x28,0x79,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x62,0x65,0x2c,0x6d,0x65,0x29,0x3b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x72, 0x69,0x67,0x67,0x65,0x72,0x41,0x72,0x72,0x61,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x2c,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x6e,0x3b,0x72,0x2b,0x2b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x72,0x69,0x67,0x67, 0x65,0x72,0x41,0x72,0x72,0x61,0x79,0x5b,0x72,0x5d,0x2c,0x69,0x3d,0x64,0x28,0x6f, 0x29,0x3b,0x69,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68, 0x6f,0x77,0x6e,0x28,0x69,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x64, 0x64,0x41,0x72,0x69,0x61,0x41,0x6e,0x64,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65, 0x64,0x43,0x6c,0x61,0x73,0x73,0x28,0x5b,0x6f,0x5d,0x2c,0x21,0x31,0x29,0x7d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x74,0x5d,0x3d,0x22, 0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x65,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x69,0x6e,0x67,0x3d,0x21,0x31,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x28,0x79,0x65,0x29,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64, 0x28,0x62,0x65,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x65, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x68,0x69,0x64,0x64,0x65, 0x6e,0x2e,0x62,0x73,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x29,0x7d, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x21,0x30,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x73, 0x53,0x68,0x6f,0x77,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e, 0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x30,0x5d,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x6d,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x69,0x28,0x69,0x28,0x69, 0x28,0x7b,0x7d,0x2c,0x76,0x65,0x29,0x2c,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61, 0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x2c,0x65,0x29,0x29, 0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28, 0x65,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x29,0x2c,0x65,0x2e,0x70,0x61,0x72,0x65, 0x6e,0x74,0x3d,0x76,0x28,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x29,0x2c,0x67, 0x28,0x68,0x65,0x2c,0x65,0x2c,0x67,0x65,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, 0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x63,0x6f,0x6c, 0x6c,0x61,0x70,0x73,0x65,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c, 0x22,0x29,0x3f,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3a,0x22,0x68,0x65,0x69,0x67, 0x68,0x74,0x22,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x69,0x66,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x61,0x72, 0x65,0x6e,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x65,0x2e,0x66,0x69, 0x6e,0x64,0x28,0x77,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x29,0x3b,0x74,0x65,0x2e,0x66,0x69, 0x6e,0x64,0x28,0x4f,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x74,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73, 0x28,0x65,0x29,0x7d,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x64,0x28,0x74,0x29,0x3b,0x6e,0x26,0x26,0x65,0x2e,0x5f,0x61,0x64,0x64, 0x41,0x72,0x69,0x61,0x41,0x6e,0x64,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x64, 0x43,0x6c,0x61,0x73,0x73,0x28,0x5b,0x74,0x5d,0x2c,0x65,0x2e,0x5f,0x69,0x73,0x53, 0x68,0x6f,0x77,0x6e,0x28,0x6e,0x29,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x5f,0x61,0x64,0x64,0x41,0x72,0x69,0x61,0x41,0x6e,0x64, 0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x64,0x43,0x6c,0x61,0x73,0x73,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x65,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x74,0x3f,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x5f,0x65,0x29,0x3a,0x65,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x5f,0x65, 0x29,0x2c,0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x22, 0x2c,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x76,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d,0x45,0x22, 0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x7d,0x3b,0x22,0x73,0x74,0x72,0x69, 0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x2f, 0x73,0x68,0x6f,0x77,0x7c,0x68,0x69,0x64,0x65,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28, 0x65,0x29,0x26,0x26,0x28,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3d,0x21,0x31, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43, 0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x68, 0x69,0x73,0x2c,0x74,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b,0x69,0x66,0x28, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x5b,0x65,0x5d,0x29,0x74,0x68, 0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f, 0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x6e,0x61,0x6d, 0x65,0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27, 0x22,0x27,0x29,0x29,0x3b,0x6e,0x5b,0x65,0x5d,0x28,0x29,0x7d,0x7d,0x29,0x29,0x7d, 0x7d,0x5d,0x29,0x2c,0x72,0x7d,0x28,0x71,0x29,0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e,0x62, 0x73,0x2e,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x2e,0x64,0x61,0x74,0x61,0x2d, 0x61,0x70,0x69,0x22,0x2c,0x4f,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x28,0x22,0x41,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x61, 0x72,0x67,0x65,0x74,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x65,0x2e, 0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x26,0x26, 0x22,0x41,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65, 0x54,0x61,0x72,0x67,0x65,0x74,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29,0x26, 0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c, 0x74,0x28,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x28,0x74,0x68,0x69,0x73, 0x29,0x3b,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x74,0x29,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x78,0x65,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65, 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x65,0x2c,0x7b,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x3a,0x21,0x31,0x7d,0x29,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29, 0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x6a,0x28,0x78,0x65,0x29,0x3b,0x76,0x61,0x72, 0x20,0x45,0x65,0x3d,0x22,0x74,0x6f,0x70,0x22,0x2c,0x6a,0x65,0x3d,0x22,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x22,0x2c,0x6b,0x65,0x3d,0x22,0x72,0x69,0x67,0x68,0x74,0x22, 0x2c,0x53,0x65,0x3d,0x22,0x6c,0x65,0x66,0x74,0x22,0x2c,0x43,0x65,0x3d,0x22,0x61, 0x75,0x74,0x6f,0x22,0x2c,0x41,0x65,0x3d,0x5b,0x45,0x65,0x2c,0x6a,0x65,0x2c,0x6b, 0x65,0x2c,0x53,0x65,0x5d,0x2c,0x54,0x65,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x22, 0x2c,0x50,0x65,0x3d,0x22,0x65,0x6e,0x64,0x22,0x2c,0x44,0x65,0x3d,0x22,0x63,0x6c, 0x69,0x70,0x70,0x69,0x6e,0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x22,0x2c,0x4e, 0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x2c,0x49,0x65,0x3d, 0x22,0x70,0x6f,0x70,0x70,0x65,0x72,0x22,0x2c,0x52,0x65,0x3d,0x22,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x22,0x2c,0x4c,0x65,0x3d,0x41,0x65,0x2e,0x72,0x65, 0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x5b,0x74,0x2b,0x22,0x2d,0x22,0x2b,0x54,0x65,0x2c,0x74,0x2b, 0x22,0x2d,0x22,0x2b,0x50,0x65,0x5d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x46, 0x65,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x41,0x65,0x2c,0x5b, 0x43,0x65,0x5d,0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x5b,0x74,0x2c,0x74,0x2b, 0x22,0x2d,0x22,0x2b,0x54,0x65,0x2c,0x74,0x2b,0x22,0x2d,0x22,0x2b,0x50,0x65,0x5d, 0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x4d,0x65,0x3d,0x22,0x62,0x65,0x66,0x6f, 0x72,0x65,0x52,0x65,0x61,0x64,0x22,0x2c,0x42,0x65,0x3d,0x22,0x72,0x65,0x61,0x64, 0x22,0x2c,0x7a,0x65,0x3d,0x22,0x61,0x66,0x74,0x65,0x72,0x52,0x65,0x61,0x64,0x22, 0x2c,0x55,0x65,0x3d,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x4d,0x61,0x69,0x6e,0x22, 0x2c,0x57,0x65,0x3d,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c,0x24,0x65,0x3d,0x22,0x61, 0x66,0x74,0x65,0x72,0x4d,0x61,0x69,0x6e,0x22,0x2c,0x48,0x65,0x3d,0x22,0x62,0x65, 0x66,0x6f,0x72,0x65,0x57,0x72,0x69,0x74,0x65,0x22,0x2c,0x56,0x65,0x3d,0x22,0x77, 0x72,0x69,0x74,0x65,0x22,0x2c,0x47,0x65,0x3d,0x22,0x61,0x66,0x74,0x65,0x72,0x57, 0x72,0x69,0x74,0x65,0x22,0x2c,0x71,0x65,0x3d,0x5b,0x4d,0x65,0x2c,0x42,0x65,0x2c, 0x7a,0x65,0x2c,0x55,0x65,0x2c,0x57,0x65,0x2c,0x24,0x65,0x2c,0x48,0x65,0x2c,0x56, 0x65,0x2c,0x47,0x65,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b, 0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x28,0x65, 0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x22,0x22,0x29,0x2e,0x74, 0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x65,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3b,0x69,0x66,0x28,0x22,0x5b,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x5d,0x22,0x21,0x3d, 0x3d,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x74, 0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x56,0x69,0x65,0x77,0x7c,0x7c,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x51,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66, 0x20,0x59,0x65,0x28,0x65,0x29,0x2e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c, 0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x58,0x65, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x20,0x69,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x59,0x65,0x28,0x65,0x29,0x2e,0x48,0x54, 0x4d,0x4c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x65,0x20,0x69,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x48,0x54,0x4d,0x4c,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x65,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x68,0x61, 0x64,0x6f,0x77,0x52,0x6f,0x6f,0x74,0x26,0x26,0x28,0x65,0x20,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x59,0x65,0x28,0x65,0x29,0x2e,0x53,0x68,0x61, 0x64,0x6f,0x77,0x52,0x6f,0x6f,0x74,0x7c,0x7c,0x65,0x20,0x69,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x6f,0x66,0x20,0x53,0x68,0x61,0x64,0x6f,0x77,0x52,0x6f,0x6f,0x74, 0x29,0x7d,0x76,0x61,0x72,0x20,0x5a,0x65,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22, 0x61,0x70,0x70,0x6c,0x79,0x53,0x74,0x79,0x6c,0x65,0x73,0x22,0x2c,0x65,0x6e,0x61, 0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x77, 0x72,0x69,0x74,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61, 0x74,0x65,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74, 0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x5b,0x65, 0x5d,0x7c,0x7c,0x7b,0x7d,0x2c,0x72,0x3d,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x73,0x5b,0x65,0x5d,0x7c,0x7c,0x7b,0x7d,0x2c,0x6f,0x3d,0x74,0x2e, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x65,0x5d,0x3b,0x58,0x65,0x28,0x6f, 0x29,0x26,0x26,0x4b,0x65,0x28,0x6f,0x29,0x26,0x26,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x6f,0x2e,0x73,0x74,0x79,0x6c,0x65, 0x2c,0x6e,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28, 0x72,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x72,0x5b, 0x65,0x5d,0x3b,0x21,0x31,0x3d,0x3d,0x3d,0x74,0x3f,0x6f,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x65,0x29,0x3a,0x6f, 0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x65,0x2c, 0x21,0x30,0x3d,0x3d,0x3d,0x74,0x3f,0x22,0x22,0x3a,0x74,0x29,0x7d,0x29,0x29,0x29, 0x7d,0x29,0x29,0x7d,0x2c,0x65,0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x7b,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2e,0x6f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x2e,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x2c,0x6c,0x65,0x66, 0x74,0x3a,0x22,0x30,0x22,0x2c,0x74,0x6f,0x70,0x3a,0x22,0x30,0x22,0x2c,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x3a,0x22,0x30,0x22,0x7d,0x2c,0x61,0x72,0x72,0x6f,0x77,0x3a, 0x7b,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c, 0x75,0x74,0x65,0x22,0x7d,0x2c,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3a, 0x7b,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65, 0x2c,0x6e,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x29,0x2c,0x74,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x73,0x3d,0x6e,0x2c,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x61,0x72,0x72,0x6f,0x77,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x61,0x72,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c,0x6e,0x2e,0x61, 0x72,0x72,0x6f,0x77,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x2e,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x65, 0x5d,0x2c,0x6f,0x3d,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73, 0x5b,0x65,0x5d,0x7c,0x7c,0x7b,0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x29, 0x3f,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x5b,0x65,0x5d,0x3a,0x6e,0x5b,0x65, 0x5d,0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x5b,0x74,0x5d,0x3d,0x22,0x22,0x2c,0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x3b, 0x58,0x65,0x28,0x72,0x29,0x26,0x26,0x4b,0x65,0x28,0x72,0x29,0x26,0x26,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x72,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x2c,0x69,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b, 0x65,0x79,0x73,0x28,0x6f,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x65,0x29, 0x7d,0x29,0x29,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x73,0x3a,0x5b,0x22,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x53,0x74,0x79,0x6c, 0x65,0x73,0x22,0x5d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65, 0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x2d,0x22,0x29,0x5b,0x30,0x5d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x74,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x2e,0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67, 0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x28,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x2e,0x77,0x69,0x64,0x74, 0x68,0x2f,0x31,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x6e,0x2e,0x68,0x65,0x69, 0x67,0x68,0x74,0x2f,0x31,0x2c,0x74,0x6f,0x70,0x3a,0x6e,0x2e,0x74,0x6f,0x70,0x2f, 0x31,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x6e,0x2e,0x72,0x69,0x67,0x68,0x74,0x2f, 0x31,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x6e,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2f,0x31,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x6e,0x2e,0x6c,0x65,0x66,0x74,0x2f, 0x31,0x2c,0x78,0x3a,0x6e,0x2e,0x6c,0x65,0x66,0x74,0x2f,0x31,0x2c,0x79,0x3a,0x6e, 0x2e,0x74,0x6f,0x70,0x2f,0x31,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x6e,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x74,0x28, 0x65,0x29,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x57,0x69,0x64, 0x74,0x68,0x2c,0x72,0x3d,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x48,0x65,0x69, 0x67,0x68,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e, 0x61,0x62,0x73,0x28,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x2d,0x6e,0x29,0x3c,0x3d, 0x31,0x26,0x26,0x28,0x6e,0x3d,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x29,0x2c,0x4d, 0x61,0x74,0x68,0x2e,0x61,0x62,0x73,0x28,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74, 0x2d,0x72,0x29,0x3c,0x3d,0x31,0x26,0x26,0x28,0x72,0x3d,0x74,0x2e,0x68,0x65,0x69, 0x67,0x68,0x74,0x29,0x2c,0x7b,0x78,0x3a,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74, 0x4c,0x65,0x66,0x74,0x2c,0x79,0x3a,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x54, 0x6f,0x70,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e,0x2c,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x72,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x74, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67,0x65, 0x74,0x52,0x6f,0x6f,0x74,0x4e,0x6f,0x64,0x65,0x26,0x26,0x74,0x2e,0x67,0x65,0x74, 0x52,0x6f,0x6f,0x74,0x4e,0x6f,0x64,0x65,0x28,0x29,0x3b,0x69,0x66,0x28,0x65,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x30,0x3b,0x69,0x66,0x28,0x6e,0x26,0x26,0x4a,0x65,0x28,0x6e,0x29, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x3b,0x64,0x6f,0x7b,0x69,0x66,0x28, 0x72,0x26,0x26,0x65,0x2e,0x69,0x73,0x53,0x61,0x6d,0x65,0x4e,0x6f,0x64,0x65,0x28, 0x72,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x72,0x3d,0x72,0x2e, 0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7c,0x7c,0x72,0x2e,0x68,0x6f, 0x73,0x74,0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x72,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x74, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x65,0x28,0x65,0x29, 0x2e,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64,0x53,0x74,0x79,0x6c, 0x65,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x74, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x22,0x74,0x61,0x62,0x6c, 0x65,0x22,0x2c,0x22,0x74,0x64,0x22,0x2c,0x22,0x74,0x68,0x22,0x5d,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x4b,0x65,0x28,0x65,0x29,0x29,0x3e,0x3d,0x30,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x28,0x51,0x65,0x28,0x65,0x29,0x3f,0x65,0x2e,0x6f, 0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x2e,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x7c,0x7c,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x2e,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x75,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x22,0x68,0x74,0x6d,0x6c,0x22,0x3d,0x3d,0x3d,0x4b,0x65,0x28,0x65,0x29,0x3f,0x65, 0x3a,0x65,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x6c,0x6f,0x74,0x7c, 0x7c,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7c,0x7c,0x28, 0x4a,0x65,0x28,0x65,0x29,0x3f,0x65,0x2e,0x68,0x6f,0x73,0x74,0x3a,0x6e,0x75,0x6c, 0x6c,0x29,0x7c,0x7c,0x61,0x74,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x63,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x58,0x65,0x28,0x65,0x29,0x26,0x26,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x21,0x3d, 0x3d,0x6f,0x74,0x28,0x65,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3f, 0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x50,0x61,0x72,0x65,0x6e,0x74,0x3a,0x6e, 0x75,0x6c,0x6c,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x74,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x59,0x65,0x28, 0x65,0x29,0x2c,0x6e,0x3d,0x63,0x74,0x28,0x65,0x29,0x3b,0x6e,0x26,0x26,0x69,0x74, 0x28,0x6e,0x29,0x26,0x26,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x22,0x3d,0x3d,0x3d, 0x6f,0x74,0x28,0x6e,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3b,0x29, 0x6e,0x3d,0x63,0x74,0x28,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x26,0x26,0x28,0x22,0x68,0x74,0x6d,0x6c,0x22,0x3d,0x3d,0x3d,0x4b,0x65,0x28,0x6e, 0x29,0x7c,0x7c,0x22,0x62,0x6f,0x64,0x79,0x22,0x3d,0x3d,0x3d,0x4b,0x65,0x28,0x6e, 0x29,0x26,0x26,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x22,0x3d,0x3d,0x3d,0x6f,0x74, 0x28,0x6e,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0x3f,0x74,0x3a, 0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x21,0x3d,0x3d,0x6e,0x61,0x76,0x69,0x67,0x61, 0x74,0x6f,0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x2e,0x74,0x6f, 0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x22,0x66,0x69,0x72,0x65,0x66,0x6f,0x78,0x22,0x29,0x3b,0x69, 0x66,0x28,0x2d,0x31,0x21,0x3d,0x3d,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72, 0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x22,0x54,0x72,0x69,0x64,0x65,0x6e,0x74,0x22,0x29,0x26,0x26,0x58, 0x65,0x28,0x65,0x29,0x26,0x26,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x3d,0x3d,0x3d, 0x6f,0x74,0x28,0x65,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x75,0x74,0x28,0x65,0x29,0x3b,0x58,0x65,0x28,0x6e,0x29, 0x26,0x26,0x5b,0x22,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x22,0x62,0x6f,0x64,0x79,0x22, 0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x4b,0x65,0x28,0x6e,0x29,0x29, 0x3c,0x30,0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6f,0x74,0x28,0x6e,0x29, 0x3b,0x69,0x66,0x28,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x21,0x3d,0x3d,0x72,0x2e,0x74, 0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x7c,0x7c,0x22,0x6e,0x6f,0x6e,0x65,0x22, 0x21,0x3d,0x3d,0x72,0x2e,0x70,0x65,0x72,0x73,0x70,0x65,0x63,0x74,0x69,0x76,0x65, 0x7c,0x7c,0x22,0x70,0x61,0x69,0x6e,0x74,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x7c,0x7c,0x2d,0x31,0x21,0x3d,0x3d,0x5b,0x22,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x22,0x2c,0x22,0x70,0x65,0x72,0x73,0x70,0x65, 0x63,0x74,0x69,0x76,0x65,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28, 0x72,0x2e,0x77,0x69,0x6c,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x29,0x7c,0x7c,0x74, 0x26,0x26,0x22,0x66,0x69,0x6c,0x74,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x77, 0x69,0x6c,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x7c,0x7c,0x74,0x26,0x26,0x72,0x2e, 0x66,0x69,0x6c,0x74,0x65,0x72,0x26,0x26,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x21,0x3d, 0x3d,0x72,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x3b,0x6e,0x3d,0x6e,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64, 0x65,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x65, 0x29,0x7c,0x7c,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x22,0x74,0x6f,0x70,0x22, 0x2c,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x3f,0x22,0x78,0x22,0x3a,0x22,0x79,0x22, 0x7d,0x76,0x61,0x72,0x20,0x66,0x74,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78, 0x2c,0x64,0x74,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x2c,0x70,0x74,0x3d, 0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x68,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x66,0x74,0x28,0x65,0x2c,0x64,0x74,0x28,0x74,0x2c,0x6e, 0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x74,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x7b,0x74,0x6f,0x70,0x3a,0x30, 0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x30,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2c,0x65,0x29,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x5b,0x6e,0x5d,0x3d,0x65,0x2c,0x74,0x7d,0x29,0x2c,0x7b, 0x7d,0x29,0x7d,0x76,0x61,0x72,0x20,0x6d,0x74,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a, 0x22,0x61,0x72,0x72,0x6f,0x77,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a, 0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c, 0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x72, 0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x2c,0x69,0x3d,0x6e,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x61,0x3d,0x6e,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f, 0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x75,0x3d,0x65,0x74,0x28,0x6e,0x2e,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x63,0x3d,0x73,0x74,0x28,0x75,0x29, 0x2c,0x6c,0x3d,0x5b,0x53,0x65,0x2c,0x6b,0x65,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x75,0x29,0x3e,0x3d,0x30,0x3f,0x22,0x68,0x65,0x69,0x67,0x68,0x74, 0x22,0x3a,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3b,0x69,0x66,0x28,0x69,0x26,0x26, 0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x74, 0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x28,0x65,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x72,0x65, 0x63,0x74,0x73,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74, 0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x29,0x3a,0x65,0x29, 0x3f,0x65,0x3a,0x67,0x74,0x28,0x65,0x2c,0x41,0x65,0x29,0x29,0x7d,0x28,0x6f,0x2e, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x6e,0x29,0x2c,0x66,0x3d,0x6e,0x74,0x28, 0x69,0x29,0x2c,0x64,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x63,0x3f,0x45,0x65,0x3a, 0x53,0x65,0x2c,0x70,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x63,0x3f,0x6a,0x65,0x3a, 0x6b,0x65,0x2c,0x68,0x3d,0x6e,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x5b,0x6c,0x5d,0x2b,0x6e,0x2e,0x72,0x65,0x63,0x74, 0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x5b,0x63,0x5d,0x2d,0x61, 0x5b,0x63,0x5d,0x2d,0x6e,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x5b,0x6c,0x5d,0x2c,0x76,0x3d,0x61,0x5b,0x63,0x5d,0x2d,0x6e,0x2e,0x72, 0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x5b,0x63, 0x5d,0x2c,0x67,0x3d,0x6c,0x74,0x28,0x69,0x29,0x2c,0x6d,0x3d,0x67,0x3f,0x22,0x79, 0x22,0x3d,0x3d,0x3d,0x63,0x3f,0x67,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65, 0x69,0x67,0x68,0x74,0x7c,0x7c,0x30,0x3a,0x67,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x57,0x69,0x64,0x74,0x68,0x7c,0x7c,0x30,0x3a,0x30,0x2c,0x62,0x3d,0x68,0x2f,0x32, 0x2d,0x76,0x2f,0x32,0x2c,0x79,0x3d,0x73,0x5b,0x64,0x5d,0x2c,0x5f,0x3d,0x6d,0x2d, 0x66,0x5b,0x6c,0x5d,0x2d,0x73,0x5b,0x70,0x5d,0x2c,0x77,0x3d,0x6d,0x2f,0x32,0x2d, 0x66,0x5b,0x6c,0x5d,0x2f,0x32,0x2b,0x62,0x2c,0x4f,0x3d,0x68,0x74,0x28,0x79,0x2c, 0x77,0x2c,0x5f,0x29,0x2c,0x78,0x3d,0x63,0x3b,0x6e,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x72,0x5d,0x3d,0x28,0x28,0x74,0x3d, 0x7b,0x7d,0x29,0x5b,0x78,0x5d,0x3d,0x4f,0x2c,0x74,0x2e,0x63,0x65,0x6e,0x74,0x65, 0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x3d,0x4f,0x2d,0x77,0x2c,0x74,0x29,0x7d,0x7d, 0x2c,0x65,0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74, 0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6e,0x3f,0x22,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72, 0x2d,0x61,0x72,0x72,0x6f,0x77,0x5d,0x22,0x3a,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21, 0x3d,0x72,0x26,0x26,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x7c,0x7c,0x28,0x72,0x3d,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x71,0x75, 0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x72,0x29,0x29,0x29, 0x26,0x26,0x72,0x74,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e, 0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x72,0x29,0x26,0x26,0x28,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x3d,0x72,0x29,0x7d, 0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x3a,0x5b,0x22,0x70,0x6f,0x70,0x70, 0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x22,0x5d,0x2c,0x72,0x65,0x71,0x75, 0x69,0x72,0x65,0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74,0x73,0x3a,0x5b,0x22,0x70, 0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x22,0x5d, 0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x74,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28, 0x22,0x2d,0x22,0x29,0x5b,0x31,0x5d,0x7d,0x76,0x61,0x72,0x20,0x79,0x74,0x3d,0x7b, 0x74,0x6f,0x70,0x3a,0x22,0x61,0x75,0x74,0x6f,0x22,0x2c,0x72,0x69,0x67,0x68,0x74, 0x3a,0x22,0x61,0x75,0x74,0x6f,0x22,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x22, 0x61,0x75,0x74,0x6f,0x22,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x22,0x61,0x75,0x74,0x6f, 0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x5f,0x74,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x2c,0x72,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x52,0x65,0x63, 0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x69,0x3d,0x65,0x2e,0x76,0x61,0x72,0x69,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x61,0x3d, 0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x67,0x70,0x75,0x41,0x63, 0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6c,0x3d,0x65,0x2e,0x61, 0x64,0x61,0x70,0x74,0x69,0x76,0x65,0x2c,0x73,0x3d,0x65,0x2e,0x72,0x6f,0x75,0x6e, 0x64,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x66,0x3d,0x21,0x30,0x3d,0x3d,0x3d, 0x73,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x78,0x2c,0x6e,0x3d,0x65,0x2e,0x79,0x2c,0x72,0x3d, 0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x64,0x65,0x76,0x69,0x63,0x65,0x50,0x69,0x78, 0x65,0x6c,0x52,0x61,0x74,0x69,0x6f,0x7c,0x7c,0x31,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x78,0x3a,0x70,0x74,0x28,0x70,0x74,0x28,0x74,0x2a,0x72,0x29,0x2f,0x72, 0x29,0x7c,0x7c,0x30,0x2c,0x79,0x3a,0x70,0x74,0x28,0x70,0x74,0x28,0x6e,0x2a,0x72, 0x29,0x2f,0x72,0x29,0x7c,0x7c,0x30,0x7d,0x7d,0x28,0x61,0x29,0x3a,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x73,0x3f,0x73,0x28,0x61,0x29,0x3a,0x61,0x2c,0x64,0x3d,0x66,0x2e,0x78,0x2c,0x70, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x30,0x3a,0x64,0x2c, 0x68,0x3d,0x66,0x2e,0x79,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x68,0x3f,0x30,0x3a,0x68,0x2c,0x67,0x3d,0x61,0x2e,0x68,0x61,0x73,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x22,0x78,0x22,0x29,0x2c,0x6d, 0x3d,0x61,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x28,0x22,0x79,0x22,0x29,0x2c,0x62,0x3d,0x53,0x65,0x2c,0x79,0x3d,0x45,0x65, 0x2c,0x5f,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3b,0x69,0x66,0x28,0x6c,0x29,0x7b, 0x76,0x61,0x72,0x20,0x77,0x3d,0x6c,0x74,0x28,0x6e,0x29,0x2c,0x4f,0x3d,0x22,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x22,0x2c,0x78,0x3d,0x22, 0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x22,0x3b,0x77,0x3d,0x3d, 0x3d,0x59,0x65,0x28,0x6e,0x29,0x26,0x26,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x22, 0x21,0x3d,0x3d,0x6f,0x74,0x28,0x77,0x3d,0x61,0x74,0x28,0x6e,0x29,0x29,0x2e,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x26,0x26,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75, 0x74,0x65,0x22,0x3d,0x3d,0x3d,0x75,0x26,0x26,0x28,0x4f,0x3d,0x22,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x22,0x2c,0x78,0x3d,0x22,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68,0x22,0x29,0x2c,0x77,0x3d,0x77,0x2c, 0x6f,0x21,0x3d,0x3d,0x45,0x65,0x26,0x26,0x28,0x6f,0x21,0x3d,0x3d,0x53,0x65,0x26, 0x26,0x6f,0x21,0x3d,0x3d,0x6b,0x65,0x7c,0x7c,0x69,0x21,0x3d,0x3d,0x50,0x65,0x29, 0x7c,0x7c,0x28,0x79,0x3d,0x6a,0x65,0x2c,0x76,0x2d,0x3d,0x77,0x5b,0x4f,0x5d,0x2d, 0x72,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x76,0x2a,0x3d,0x63,0x3f,0x31,0x3a, 0x2d,0x31,0x29,0x2c,0x6f,0x21,0x3d,0x3d,0x53,0x65,0x26,0x26,0x28,0x6f,0x21,0x3d, 0x3d,0x45,0x65,0x26,0x26,0x6f,0x21,0x3d,0x3d,0x6a,0x65,0x7c,0x7c,0x69,0x21,0x3d, 0x3d,0x50,0x65,0x29,0x7c,0x7c,0x28,0x62,0x3d,0x6b,0x65,0x2c,0x70,0x2d,0x3d,0x77, 0x5b,0x78,0x5d,0x2d,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x70,0x2a,0x3d,0x63, 0x3f,0x31,0x3a,0x2d,0x31,0x29,0x7d,0x76,0x61,0x72,0x20,0x45,0x2c,0x6a,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x75,0x7d,0x2c,0x6c,0x26,0x26,0x79,0x74,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6a,0x2c,0x28,0x28,0x45, 0x3d,0x7b,0x7d,0x29,0x5b,0x79,0x5d,0x3d,0x6d,0x3f,0x22,0x30,0x22,0x3a,0x22,0x22, 0x2c,0x45,0x5b,0x62,0x5d,0x3d,0x67,0x3f,0x22,0x30,0x22,0x3a,0x22,0x22,0x2c,0x45, 0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x28,0x5f,0x2e,0x64,0x65, 0x76,0x69,0x63,0x65,0x50,0x69,0x78,0x65,0x6c,0x52,0x61,0x74,0x69,0x6f,0x7c,0x7c, 0x31,0x29,0x3c,0x3d,0x31,0x3f,0x22,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65, 0x28,0x22,0x2b,0x70,0x2b,0x22,0x70,0x78,0x2c,0x20,0x22,0x2b,0x76,0x2b,0x22,0x70, 0x78,0x29,0x22,0x3a,0x22,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x33,0x64, 0x28,0x22,0x2b,0x70,0x2b,0x22,0x70,0x78,0x2c,0x20,0x22,0x2b,0x76,0x2b,0x22,0x70, 0x78,0x2c,0x20,0x30,0x29,0x22,0x2c,0x45,0x29,0x29,0x3a,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6a,0x2c,0x28,0x28, 0x74,0x3d,0x7b,0x7d,0x29,0x5b,0x79,0x5d,0x3d,0x6d,0x3f,0x76,0x2b,0x22,0x70,0x78, 0x22,0x3a,0x22,0x22,0x2c,0x74,0x5b,0x62,0x5d,0x3d,0x67,0x3f,0x70,0x2b,0x22,0x70, 0x78,0x22,0x3a,0x22,0x22,0x2c,0x74,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, 0x6d,0x3d,0x22,0x22,0x2c,0x74,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x77,0x74,0x3d, 0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x53,0x74, 0x79,0x6c,0x65,0x73,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30, 0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x57,0x72, 0x69,0x74,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74, 0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d, 0x6e,0x2e,0x67,0x70,0x75,0x41,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x69,0x6f, 0x6e,0x2c,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x7c,0x7c, 0x72,0x2c,0x69,0x3d,0x6e,0x2e,0x61,0x64,0x61,0x70,0x74,0x69,0x76,0x65,0x2c,0x61, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x7c,0x7c,0x69,0x2c,0x75, 0x3d,0x6e,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c, 0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x7c,0x7c,0x75,0x2c, 0x6c,0x3d,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x74,0x28, 0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x76,0x61,0x72, 0x69,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x62,0x74,0x28,0x74,0x2e,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a,0x74,0x2e, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c, 0x70,0x6f,0x70,0x70,0x65,0x72,0x52,0x65,0x63,0x74,0x3a,0x74,0x2e,0x72,0x65,0x63, 0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x67,0x70,0x75,0x41,0x63,0x63, 0x65,0x6c,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x7d,0x3b,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73, 0x26,0x26,0x28,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x70,0x6f,0x70, 0x70,0x65,0x72,0x2c,0x5f,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6c,0x2c,0x7b,0x6f,0x66,0x66,0x73,0x65, 0x74,0x73,0x3a,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73, 0x2c,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2e,0x6f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x2e,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x2c,0x61,0x64,0x61, 0x70,0x74,0x69,0x76,0x65,0x3a,0x61,0x2c,0x72,0x6f,0x75,0x6e,0x64,0x4f,0x66,0x66, 0x73,0x65,0x74,0x73,0x3a,0x63,0x7d,0x29,0x29,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74, 0x61,0x2e,0x61,0x72,0x72,0x6f,0x77,0x26,0x26,0x28,0x74,0x2e,0x73,0x74,0x79,0x6c, 0x65,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x73,0x74,0x79,0x6c, 0x65,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x5f,0x74,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6c,0x2c,0x7b, 0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69, 0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65, 0x22,0x2c,0x61,0x64,0x61,0x70,0x74,0x69,0x76,0x65,0x3a,0x21,0x31,0x2c,0x72,0x6f, 0x75,0x6e,0x64,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x63,0x7d,0x29,0x29,0x29, 0x29,0x2c,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73, 0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x7b,0x22,0x64,0x61,0x74, 0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x22,0x3a,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x7d, 0x29,0x7d,0x2c,0x64,0x61,0x74,0x61,0x3a,0x7b,0x7d,0x7d,0x2c,0x4f,0x74,0x3d,0x7b, 0x70,0x61,0x73,0x73,0x69,0x76,0x65,0x3a,0x21,0x30,0x7d,0x2c,0x78,0x74,0x3d,0x7b, 0x6e,0x61,0x6d,0x65,0x3a,0x22,0x65,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65, 0x6e,0x65,0x72,0x73,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30, 0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x77,0x72,0x69,0x74,0x65,0x22,0x2c,0x66, 0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x65, 0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c, 0x6e,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2c,0x72,0x3d,0x65, 0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x6f,0x3d,0x72,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f, 0x7c,0x7c,0x6f,0x2c,0x61,0x3d,0x72,0x2e,0x72,0x65,0x73,0x69,0x7a,0x65,0x2c,0x75, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x61,0x2c,0x63, 0x3d,0x59,0x65,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x29,0x2c,0x6c,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x50,0x61,0x72,0x65,0x6e, 0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x74,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70, 0x70,0x65,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x26,0x26,0x6c, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x22,0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x4f,0x74,0x29,0x7d,0x29, 0x29,0x2c,0x75,0x26,0x26,0x63,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x72,0x65,0x73,0x69,0x7a,0x65,0x22, 0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x4f,0x74,0x29,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x26,0x26,0x6c,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x22,0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x4f,0x74,0x29,0x7d,0x29, 0x29,0x2c,0x75,0x26,0x26,0x63,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65, 0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x72,0x65,0x73,0x69, 0x7a,0x65,0x22,0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x4f,0x74,0x29, 0x7d,0x7d,0x2c,0x64,0x61,0x74,0x61,0x3a,0x7b,0x7d,0x7d,0x2c,0x45,0x74,0x3d,0x7b, 0x6c,0x65,0x66,0x74,0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x2c,0x72,0x69,0x67, 0x68,0x74,0x3a,0x22,0x6c,0x65,0x66,0x74,0x22,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x22,0x74,0x6f,0x70,0x22,0x2c,0x74,0x6f,0x70,0x3a,0x22,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6a,0x74, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65,0x70, 0x6c,0x61,0x63,0x65,0x28,0x2f,0x6c,0x65,0x66,0x74,0x7c,0x72,0x69,0x67,0x68,0x74, 0x7c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7c,0x74,0x6f,0x70,0x2f,0x67,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x45,0x74,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x6b, 0x74,0x3d,0x7b,0x73,0x74,0x61,0x72,0x74,0x3a,0x22,0x65,0x6e,0x64,0x22,0x2c,0x65, 0x6e,0x64,0x3a,0x22,0x73,0x74,0x61,0x72,0x74,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x53,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x73,0x74,0x61, 0x72,0x74,0x7c,0x65,0x6e,0x64,0x2f,0x67,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x74,0x5b, 0x65,0x5d,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43, 0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x59,0x65,0x28,0x65,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65, 0x66,0x74,0x3a,0x74,0x2e,0x70,0x61,0x67,0x65,0x58,0x4f,0x66,0x66,0x73,0x65,0x74, 0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3a,0x74,0x2e,0x70,0x61,0x67, 0x65,0x59,0x4f,0x66,0x66,0x73,0x65,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x41,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x74,0x28,0x61,0x74,0x28,0x65,0x29,0x29,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x43, 0x74,0x28,0x65,0x29,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x74,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x6f,0x74,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2c,0x72,0x3d,0x74,0x2e,0x6f,0x76,0x65,0x72, 0x66,0x6c,0x6f,0x77,0x58,0x2c,0x6f,0x3d,0x74,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x59,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2f,0x61,0x75,0x74,0x6f,0x7c, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x7c,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x7c,0x68, 0x69,0x64,0x64,0x65,0x6e,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x2b,0x6f,0x2b, 0x72,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x74,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x22,0x68,0x74,0x6d,0x6c,0x22,0x2c, 0x22,0x62,0x6f,0x64,0x79,0x22,0x2c,0x22,0x23,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x4b,0x65,0x28,0x65, 0x29,0x29,0x3e,0x3d,0x30,0x3f,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x3a,0x58,0x65,0x28,0x65,0x29, 0x26,0x26,0x54,0x74,0x28,0x65,0x29,0x3f,0x65,0x3a,0x50,0x74,0x28,0x75,0x74,0x28, 0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x44,0x74,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x5b,0x5d,0x29,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x50,0x74,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x72,0x3d,0x3d,0x3d, 0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x6e,0x3d,0x65,0x2e,0x6f,0x77,0x6e,0x65, 0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3a,0x6e,0x2e,0x62,0x6f,0x64,0x79,0x29,0x2c,0x69,0x3d,0x59,0x65,0x28,0x72, 0x29,0x2c,0x61,0x3d,0x6f,0x3f,0x5b,0x69,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x69,0x2e,0x76,0x69,0x73,0x75,0x61,0x6c,0x56,0x69,0x65,0x77,0x70,0x6f,0x72, 0x74,0x7c,0x7c,0x5b,0x5d,0x2c,0x54,0x74,0x28,0x72,0x29,0x3f,0x72,0x3a,0x5b,0x5d, 0x29,0x3a,0x72,0x2c,0x75,0x3d,0x74,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x61, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x3f,0x75,0x3a,0x75,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x44,0x74,0x28,0x75,0x74,0x28,0x61,0x29,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x74,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x6c,0x65,0x66,0x74,0x3a, 0x65,0x2e,0x78,0x2c,0x74,0x6f,0x70,0x3a,0x65,0x2e,0x79,0x2c,0x72,0x69,0x67,0x68, 0x74,0x3a,0x65,0x2e,0x78,0x2b,0x65,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x65,0x2e,0x79,0x2b,0x65,0x2e,0x68,0x65,0x69,0x67,0x68, 0x74,0x7d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x74,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d,0x3d, 0x4e,0x65,0x3f,0x4e,0x74,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x59,0x65,0x28,0x65,0x29,0x2c,0x6e,0x3d, 0x61,0x74,0x28,0x65,0x29,0x2c,0x72,0x3d,0x74,0x2e,0x76,0x69,0x73,0x75,0x61,0x6c, 0x56,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x6f,0x3d,0x6e,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x69,0x3d,0x6e,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x61,0x3d,0x30,0x2c,0x75,0x3d, 0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x26,0x26,0x28,0x6f,0x3d,0x72, 0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x69,0x3d,0x72,0x2e,0x68,0x65,0x69,0x67,0x68, 0x74,0x2c,0x2f,0x5e,0x28,0x28,0x3f,0x21,0x63,0x68,0x72,0x6f,0x6d,0x65,0x7c,0x61, 0x6e,0x64,0x72,0x6f,0x69,0x64,0x29,0x2e,0x29,0x2a,0x73,0x61,0x66,0x61,0x72,0x69, 0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f, 0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x29,0x7c,0x7c,0x28,0x61, 0x3d,0x72,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x4c,0x65,0x66,0x74,0x2c,0x75,0x3d, 0x72,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x54,0x6f,0x70,0x29,0x29,0x2c,0x7b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x6f,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x69,0x2c, 0x78,0x3a,0x61,0x2b,0x41,0x74,0x28,0x65,0x29,0x2c,0x79,0x3a,0x75,0x7d,0x7d,0x28, 0x65,0x29,0x29,0x3a,0x58,0x65,0x28,0x74,0x29,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x74,0x28,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74,0x6f,0x70,0x3d,0x74, 0x2e,0x74,0x6f,0x70,0x2b,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x54,0x6f,0x70, 0x2c,0x74,0x2e,0x6c,0x65,0x66,0x74,0x3d,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x65, 0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4c,0x65,0x66,0x74,0x2c,0x74,0x2e,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3d,0x74,0x2e,0x74,0x6f,0x70,0x2b,0x65,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x74,0x2e,0x72,0x69,0x67,0x68, 0x74,0x3d,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e, 0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x3d,0x65, 0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x74,0x2e,0x68, 0x65,0x69,0x67,0x68,0x74,0x3d,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65, 0x69,0x67,0x68,0x74,0x2c,0x74,0x2e,0x78,0x3d,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2c, 0x74,0x2e,0x79,0x3d,0x74,0x2e,0x74,0x6f,0x70,0x2c,0x74,0x7d,0x28,0x74,0x29,0x3a, 0x4e,0x74,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x61,0x74,0x28,0x65,0x29,0x2c,0x72,0x3d,0x43, 0x74,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x74,0x3d, 0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29, 0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2c,0x69, 0x3d,0x66,0x74,0x28,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74, 0x68,0x2c,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c, 0x6f,0x3f,0x6f,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68,0x3a, 0x30,0x2c,0x6f,0x3f,0x6f,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74, 0x68,0x3a,0x30,0x29,0x2c,0x61,0x3d,0x66,0x74,0x28,0x6e,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e, 0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x6f,0x3f,0x6f,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x6f,0x3f,0x6f,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x29,0x2c,0x75, 0x3d,0x2d,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2b,0x41, 0x74,0x28,0x65,0x29,0x2c,0x63,0x3d,0x2d,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x54,0x6f,0x70,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x72,0x74,0x6c,0x22,0x3d, 0x3d,0x3d,0x6f,0x74,0x28,0x6f,0x7c,0x7c,0x6e,0x29,0x2e,0x64,0x69,0x72,0x65,0x63, 0x74,0x69,0x6f,0x6e,0x26,0x26,0x28,0x75,0x2b,0x3d,0x66,0x74,0x28,0x6e,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x6f,0x3f,0x6f,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x3a,0x30,0x29,0x2d,0x69,0x29, 0x2c,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x69,0x2c,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x61,0x2c,0x78,0x3a,0x75,0x2c,0x79,0x3a,0x63,0x7d,0x7d,0x28,0x61,0x74,0x28, 0x65,0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x74, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x72,0x65, 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x2c,0x69,0x3d,0x6f,0x3f,0x65,0x74,0x28,0x6f,0x29,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x61,0x3d,0x6f,0x3f,0x62,0x74,0x28,0x6f,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x75,0x3d,0x6e,0x2e,0x78,0x2b,0x6e,0x2e,0x77,0x69,0x64,0x74,0x68,0x2f,0x32,0x2d, 0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x2f,0x32,0x2c,0x63,0x3d,0x6e,0x2e,0x79,0x2b, 0x6e,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2f,0x32,0x2d,0x72,0x2e,0x68,0x65,0x69, 0x67,0x68,0x74,0x2f,0x32,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x69,0x29,0x7b, 0x63,0x61,0x73,0x65,0x20,0x45,0x65,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x75,0x2c,0x79, 0x3a,0x6e,0x2e,0x79,0x2d,0x72,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x7d,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x6a,0x65,0x3a,0x74,0x3d,0x7b, 0x78,0x3a,0x75,0x2c,0x79,0x3a,0x6e,0x2e,0x79,0x2b,0x6e,0x2e,0x68,0x65,0x69,0x67, 0x68,0x74,0x7d,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x6b, 0x65,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x6e,0x2e,0x78,0x2b,0x6e,0x2e,0x77,0x69,0x64, 0x74,0x68,0x2c,0x79,0x3a,0x63,0x7d,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61, 0x73,0x65,0x20,0x53,0x65,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x6e,0x2e,0x78,0x2d,0x72, 0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x79,0x3a,0x63,0x7d,0x3b,0x62,0x72,0x65,0x61, 0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x6e, 0x2e,0x78,0x2c,0x79,0x3a,0x6e,0x2e,0x79,0x7d,0x7d,0x76,0x61,0x72,0x20,0x6c,0x3d, 0x69,0x3f,0x73,0x74,0x28,0x69,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x22, 0x79,0x22,0x3d,0x3d,0x3d,0x6c,0x3f,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x22,0x3a, 0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x61, 0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x54,0x65,0x3a,0x74,0x5b,0x6c,0x5d,0x3d,0x74, 0x5b,0x6c,0x5d,0x2d,0x28,0x6e,0x5b,0x73,0x5d,0x2f,0x32,0x2d,0x72,0x5b,0x73,0x5d, 0x2f,0x32,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x50, 0x65,0x3a,0x74,0x5b,0x6c,0x5d,0x3d,0x74,0x5b,0x6c,0x5d,0x2b,0x28,0x6e,0x5b,0x73, 0x5d,0x2f,0x32,0x2d,0x72,0x5b,0x73,0x5d,0x2f,0x32,0x29,0x7d,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c, 0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x74,0x26,0x26,0x28,0x74,0x3d,0x7b,0x7d,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x74,0x2c,0x72,0x3d,0x6e,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x3f,0x65,0x2e,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x72,0x2c,0x69,0x3d,0x6e,0x2e,0x62, 0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x61,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x69,0x3f,0x44,0x65,0x3a,0x69,0x2c,0x75,0x3d,0x6e,0x2e,0x72,0x6f, 0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x63,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x3f,0x4e,0x65,0x3a,0x75,0x2c,0x6c,0x3d,0x6e, 0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x2c, 0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6c,0x3f,0x49,0x65,0x3a, 0x6c,0x2c,0x66,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72, 0x79,0x2c,0x64,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x66,0x26,0x26, 0x66,0x2c,0x70,0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x68,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x70,0x3f,0x30,0x3a,0x70,0x2c,0x76, 0x3d,0x76,0x74,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x68,0x3f,0x68,0x3a,0x67,0x74,0x28,0x68,0x2c,0x41,0x65, 0x29,0x29,0x2c,0x67,0x3d,0x73,0x3d,0x3d,0x3d,0x49,0x65,0x3f,0x52,0x65,0x3a,0x49, 0x65,0x2c,0x6d,0x3d,0x65,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x2c,0x62,0x3d,0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x64,0x3f,0x67,0x3a,0x73,0x5d,0x2c,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22, 0x63,0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x22, 0x3d,0x3d,0x3d,0x74,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x44,0x74,0x28,0x75,0x74,0x28,0x65,0x29,0x29, 0x2c,0x6e,0x3d,0x5b,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x2c,0x22, 0x66,0x69,0x78,0x65,0x64,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28, 0x6f,0x74,0x28,0x65,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0x3e, 0x3d,0x30,0x26,0x26,0x58,0x65,0x28,0x65,0x29,0x3f,0x6c,0x74,0x28,0x65,0x29,0x3a, 0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x51,0x65,0x28,0x6e,0x29,0x3f,0x74, 0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x51,0x65,0x28,0x65, 0x29,0x26,0x26,0x72,0x74,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26,0x22,0x62,0x6f,0x64, 0x79,0x22,0x21,0x3d,0x3d,0x4b,0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x3a,0x5b,0x5d, 0x7d,0x28,0x65,0x29,0x3a,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74, 0x29,0x2c,0x6f,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2c, 0x5b,0x6e,0x5d,0x29,0x2c,0x69,0x3d,0x6f,0x5b,0x30,0x5d,0x2c,0x61,0x3d,0x6f,0x2e, 0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x49,0x74,0x28,0x65, 0x2c,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74,0x6f,0x70, 0x3d,0x66,0x74,0x28,0x72,0x2e,0x74,0x6f,0x70,0x2c,0x74,0x2e,0x74,0x6f,0x70,0x29, 0x2c,0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x3d,0x64,0x74,0x28,0x72,0x2e,0x72,0x69, 0x67,0x68,0x74,0x2c,0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x29,0x2c,0x74,0x2e,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x3d,0x64,0x74,0x28,0x72,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2c,0x74,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x74,0x2e,0x6c,0x65, 0x66,0x74,0x3d,0x66,0x74,0x28,0x72,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x74,0x2e,0x6c, 0x65,0x66,0x74,0x29,0x2c,0x74,0x7d,0x29,0x2c,0x49,0x74,0x28,0x65,0x2c,0x69,0x29, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x77,0x69,0x64,0x74,0x68, 0x3d,0x61,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d,0x61,0x2e,0x6c,0x65,0x66,0x74,0x2c, 0x61,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x61,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2d,0x61,0x2e,0x74,0x6f,0x70,0x2c,0x61,0x2e,0x78,0x3d,0x61,0x2e,0x6c,0x65, 0x66,0x74,0x2c,0x61,0x2e,0x79,0x3d,0x61,0x2e,0x74,0x6f,0x70,0x2c,0x61,0x7d,0x28, 0x51,0x65,0x28,0x62,0x29,0x3f,0x62,0x3a,0x62,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x61,0x74,0x28,0x65,0x2e,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x29,0x2c, 0x61,0x2c,0x63,0x29,0x2c,0x5f,0x3d,0x74,0x74,0x28,0x65,0x2e,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x29,0x2c, 0x77,0x3d,0x52,0x74,0x28,0x7b,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3a, 0x5f,0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6d,0x2c,0x73,0x74,0x72,0x61, 0x74,0x65,0x67,0x79,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x2c, 0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6f,0x7d,0x29,0x2c,0x4f,0x3d, 0x4e,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x7d,0x2c,0x6d,0x2c,0x77,0x29,0x29,0x2c,0x78,0x3d,0x73,0x3d,0x3d,0x3d, 0x49,0x65,0x3f,0x4f,0x3a,0x5f,0x2c,0x45,0x3d,0x7b,0x74,0x6f,0x70,0x3a,0x79,0x2e, 0x74,0x6f,0x70,0x2d,0x78,0x2e,0x74,0x6f,0x70,0x2b,0x76,0x2e,0x74,0x6f,0x70,0x2c, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x78,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d, 0x79,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2b,0x76,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x79,0x2e,0x6c,0x65,0x66,0x74,0x2d,0x78,0x2e, 0x6c,0x65,0x66,0x74,0x2b,0x76,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x72,0x69,0x67,0x68, 0x74,0x3a,0x78,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d,0x79,0x2e,0x72,0x69,0x67,0x68, 0x74,0x2b,0x76,0x2e,0x72,0x69,0x67,0x68,0x74,0x7d,0x2c,0x6a,0x3d,0x65,0x2e,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x3b,0x69,0x66,0x28,0x73,0x3d,0x3d,0x3d,0x49,0x65,0x26,0x26,0x6a, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6b,0x3d,0x6a,0x5b,0x6f,0x5d,0x3b,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x45,0x29,0x2e,0x66,0x6f,0x72,0x45, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x6b,0x65,0x2c,0x6a,0x65,0x5d,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x3f,0x31,0x3a,0x2d, 0x31,0x2c,0x6e,0x3d,0x5b,0x45,0x65,0x2c,0x6a,0x65,0x5d,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x3f,0x22,0x79,0x22,0x3a,0x22,0x78, 0x22,0x3b,0x45,0x5b,0x65,0x5d,0x2b,0x3d,0x6b,0x5b,0x6e,0x5d,0x2a,0x74,0x7d,0x29, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x46,0x74,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x7b,0x7d,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x74,0x2c,0x72,0x3d,0x6e,0x2e,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x6e,0x2e,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72, 0x79,0x2c,0x69,0x3d,0x6e,0x2e,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61, 0x72,0x79,0x2c,0x61,0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x75, 0x3d,0x6e,0x2e,0x66,0x6c,0x69,0x70,0x56,0x61,0x72,0x69,0x61,0x74,0x69,0x6f,0x6e, 0x73,0x2c,0x63,0x3d,0x6e,0x2e,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x41,0x75,0x74, 0x6f,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6c,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x46,0x65,0x3a,0x63,0x2c,0x73,0x3d, 0x62,0x74,0x28,0x72,0x29,0x2c,0x66,0x3d,0x73,0x3f,0x75,0x3f,0x4c,0x65,0x3a,0x4c, 0x65,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x74,0x28, 0x65,0x29,0x3d,0x3d,0x3d,0x73,0x7d,0x29,0x29,0x3a,0x41,0x65,0x2c,0x64,0x3d,0x66, 0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x7d,0x29,0x29,0x3b,0x30, 0x3d,0x3d,0x3d,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x28,0x64,0x3d, 0x66,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x64,0x2e,0x72,0x65,0x64,0x75,0x63, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x6e,0x5d,0x3d,0x4c,0x74,0x28, 0x65,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6e,0x2c,0x62, 0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x6f,0x2c,0x72,0x6f,0x6f,0x74,0x42,0x6f, 0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x69,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x61,0x7d,0x29,0x5b,0x65,0x74,0x28,0x6e,0x29,0x5d,0x2c,0x74,0x7d,0x29,0x2c, 0x7b,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x70,0x29,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x70,0x5b,0x65,0x5d,0x2d,0x70,0x5b,0x74,0x5d,0x7d,0x29, 0x29,0x7d,0x76,0x61,0x72,0x20,0x4d,0x74,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22, 0x66,0x6c,0x69,0x70,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30, 0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c,0x66,0x6e, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3b, 0x69,0x66,0x28,0x21,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44, 0x61,0x74,0x61,0x5b,0x72,0x5d,0x2e,0x5f,0x73,0x6b,0x69,0x70,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x6e,0x2e,0x6d,0x61,0x69,0x6e,0x41,0x78, 0x69,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x7c, 0x7c,0x6f,0x2c,0x61,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x41,0x78,0x69,0x73,0x2c,0x75, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x61,0x2c,0x63, 0x3d,0x6e,0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x50,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6c,0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2c,0x73,0x3d,0x6e,0x2e,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x66, 0x3d,0x6e,0x2e,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c, 0x64,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c, 0x70,0x3d,0x6e,0x2e,0x66,0x6c,0x69,0x70,0x56,0x61,0x72,0x69,0x61,0x74,0x69,0x6f, 0x6e,0x73,0x2c,0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x70,0x7c, 0x7c,0x70,0x2c,0x76,0x3d,0x6e,0x2e,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x41,0x75, 0x74,0x6f,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x67,0x3d,0x74, 0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x6d,0x3d,0x65,0x74,0x28,0x67,0x29,0x2c,0x62,0x3d,0x63,0x7c,0x7c, 0x28,0x6d,0x21,0x3d,0x3d,0x67,0x26,0x26,0x68,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x65,0x74,0x28,0x65,0x29,0x3d,0x3d, 0x3d,0x43,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x6a,0x74,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b, 0x53,0x74,0x28,0x65,0x29,0x2c,0x74,0x2c,0x53,0x74,0x28,0x74,0x29,0x5d,0x7d,0x28, 0x67,0x29,0x3a,0x5b,0x6a,0x74,0x28,0x67,0x29,0x5d,0x29,0x2c,0x79,0x3d,0x5b,0x67, 0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x62,0x29,0x2e,0x72,0x65,0x64,0x75, 0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x65,0x74,0x28,0x6e,0x29,0x3d,0x3d,0x3d,0x43,0x65,0x3f,0x46,0x74,0x28, 0x74,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6e,0x2c,0x62, 0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x73,0x2c,0x72,0x6f,0x6f,0x74,0x42,0x6f, 0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x3a,0x6c,0x2c,0x66,0x6c,0x69,0x70,0x56,0x61,0x72,0x69,0x61,0x74,0x69,0x6f,0x6e, 0x73,0x3a,0x68,0x2c,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x41,0x75,0x74,0x6f,0x50, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x76,0x7d,0x29,0x3a,0x6e,0x29, 0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x5f,0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73, 0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x77,0x3d,0x74,0x2e,0x72, 0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x4f,0x3d,0x6e,0x65, 0x77,0x20,0x4d,0x61,0x70,0x2c,0x78,0x3d,0x21,0x30,0x2c,0x45,0x3d,0x79,0x5b,0x30, 0x5d,0x2c,0x6a,0x3d,0x30,0x3b,0x6a,0x3c,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x6a,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6b,0x3d,0x79,0x5b,0x6a,0x5d, 0x2c,0x53,0x3d,0x65,0x74,0x28,0x6b,0x29,0x2c,0x43,0x3d,0x62,0x74,0x28,0x6b,0x29, 0x3d,0x3d,0x3d,0x54,0x65,0x2c,0x41,0x3d,0x5b,0x45,0x65,0x2c,0x6a,0x65,0x5d,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x53,0x29,0x3e,0x3d,0x30,0x2c,0x54,0x3d, 0x41,0x3f,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3a,0x22,0x68,0x65,0x69,0x67,0x68, 0x74,0x22,0x2c,0x50,0x3d,0x4c,0x74,0x28,0x74,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x3a,0x6b,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a, 0x73,0x2c,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66, 0x2c,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x64,0x2c,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x6c,0x7d,0x29,0x2c,0x44,0x3d,0x41,0x3f,0x43, 0x3f,0x6b,0x65,0x3a,0x53,0x65,0x3a,0x43,0x3f,0x6a,0x65,0x3a,0x45,0x65,0x3b,0x5f, 0x5b,0x54,0x5d,0x3e,0x77,0x5b,0x54,0x5d,0x26,0x26,0x28,0x44,0x3d,0x6a,0x74,0x28, 0x44,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x4e,0x3d,0x6a,0x74,0x28,0x44,0x29,0x2c, 0x49,0x3d,0x5b,0x5d,0x3b,0x69,0x66,0x28,0x69,0x26,0x26,0x49,0x2e,0x70,0x75,0x73, 0x68,0x28,0x50,0x5b,0x53,0x5d,0x3c,0x3d,0x30,0x29,0x2c,0x75,0x26,0x26,0x49,0x2e, 0x70,0x75,0x73,0x68,0x28,0x50,0x5b,0x44,0x5d,0x3c,0x3d,0x30,0x2c,0x50,0x5b,0x4e, 0x5d,0x3c,0x3d,0x30,0x29,0x2c,0x49,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x29,0x29,0x29,0x7b,0x45,0x3d,0x6b,0x2c,0x78,0x3d,0x21,0x31, 0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x4f,0x2e,0x73,0x65,0x74,0x28,0x6b,0x2c,0x49, 0x29,0x7d,0x69,0x66,0x28,0x78,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x52, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x79,0x2e,0x66,0x69,0x6e,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x2e,0x67, 0x65,0x74,0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x6e,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x65,0x29,0x2e,0x65, 0x76,0x65,0x72,0x79,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x7d,0x29,0x29, 0x3b,0x69,0x66,0x28,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x3d,0x74, 0x2c,0x22,0x62,0x72,0x65,0x61,0x6b,0x22,0x7d,0x2c,0x4c,0x3d,0x68,0x3f,0x33,0x3a, 0x31,0x3b,0x4c,0x3e,0x30,0x26,0x26,0x22,0x62,0x72,0x65,0x61,0x6b,0x22,0x21,0x3d, 0x3d,0x52,0x28,0x4c,0x29,0x3b,0x4c,0x2d,0x2d,0x29,0x3b,0x74,0x2e,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x21,0x3d,0x3d,0x45,0x26,0x26,0x28,0x74,0x2e,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x72,0x5d,0x2e, 0x5f,0x73,0x6b,0x69,0x70,0x3d,0x21,0x30,0x2c,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x3d,0x45,0x2c,0x74,0x2e,0x72,0x65,0x73,0x65,0x74,0x3d,0x21, 0x30,0x29,0x7d,0x7d,0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x49,0x66,0x45, 0x78,0x69,0x73,0x74,0x73,0x3a,0x5b,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x5d, 0x2c,0x64,0x61,0x74,0x61,0x3a,0x7b,0x5f,0x73,0x6b,0x69,0x70,0x3a,0x21,0x31,0x7d, 0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x74,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x7b,0x78,0x3a,0x30,0x2c, 0x79,0x3a,0x30,0x7d,0x29,0x2c,0x7b,0x74,0x6f,0x70,0x3a,0x65,0x2e,0x74,0x6f,0x70, 0x2d,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2d,0x6e,0x2e,0x79,0x2c,0x72,0x69, 0x67,0x68,0x74,0x3a,0x65,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d,0x74,0x2e,0x77,0x69, 0x64,0x74,0x68,0x2b,0x6e,0x2e,0x78,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x65, 0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74, 0x2b,0x6e,0x2e,0x79,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x65,0x2e,0x6c,0x65,0x66,0x74, 0x2d,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x2d,0x6e,0x2e,0x78,0x7d,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x5b,0x45,0x65,0x2c,0x6b,0x65,0x2c,0x6a,0x65,0x2c,0x53,0x65,0x5d, 0x2e,0x73,0x6f,0x6d,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d,0x3e,0x3d, 0x30,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x55,0x74,0x3d,0x7b,0x6e,0x61,0x6d, 0x65,0x3a,0x22,0x68,0x69,0x64,0x65,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e,0x22, 0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74, 0x73,0x3a,0x5b,0x22,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x22,0x5d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61, 0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x72,0x3d,0x74,0x2e, 0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c, 0x6f,0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72, 0x2c,0x69,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x2c,0x61,0x3d,0x4c,0x74,0x28,0x74,0x2c,0x7b,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3a,0x22,0x72,0x65,0x66,0x65,0x72, 0x65,0x6e,0x63,0x65,0x22,0x7d,0x29,0x2c,0x75,0x3d,0x4c,0x74,0x28,0x74,0x2c,0x7b, 0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x21,0x30,0x7d,0x29, 0x2c,0x63,0x3d,0x42,0x74,0x28,0x61,0x2c,0x72,0x29,0x2c,0x6c,0x3d,0x42,0x74,0x28, 0x75,0x2c,0x6f,0x2c,0x69,0x29,0x2c,0x73,0x3d,0x7a,0x74,0x28,0x63,0x29,0x2c,0x66, 0x3d,0x7a,0x74,0x28,0x6c,0x29,0x3b,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, 0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x6e,0x5d,0x3d,0x7b,0x72,0x65,0x66,0x65,0x72, 0x65,0x6e,0x63,0x65,0x43,0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x4f,0x66,0x66,0x73, 0x65,0x74,0x73,0x3a,0x63,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x45,0x73,0x63,0x61, 0x70,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x6c,0x2c,0x69,0x73,0x52,0x65, 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x48,0x69,0x64,0x64,0x65,0x6e,0x3a,0x73,0x2c, 0x68,0x61,0x73,0x50,0x6f,0x70,0x70,0x65,0x72,0x45,0x73,0x63,0x61,0x70,0x65,0x64, 0x3a,0x66,0x7d,0x2c,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73, 0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x61,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x7b,0x22,0x64, 0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x72,0x65,0x66,0x65,0x72, 0x65,0x6e,0x63,0x65,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3a,0x73,0x2c,0x22, 0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x65,0x73,0x63,0x61, 0x70,0x65,0x64,0x22,0x3a,0x66,0x7d,0x29,0x7d,0x7d,0x2c,0x57,0x74,0x3d,0x7b,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x2c,0x65,0x6e,0x61, 0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x6d, 0x61,0x69,0x6e,0x22,0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x3a,0x5b,0x22, 0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x22,0x5d,0x2c, 0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65, 0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x2c,0x6f,0x3d,0x6e,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x69,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x5b,0x30,0x2c,0x30,0x5d,0x3a, 0x6f,0x2c,0x61,0x3d,0x46,0x65,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x5b,0x6e,0x5d,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65, 0x74,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x5b,0x53,0x65,0x2c,0x45,0x65,0x5d,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x72,0x29,0x3e,0x3d,0x30,0x3f,0x2d,0x31,0x3a, 0x31,0x2c,0x69,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x3f,0x6e,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2c,0x7b,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x7d,0x29,0x29,0x3a,0x6e,0x2c, 0x61,0x3d,0x69,0x5b,0x30,0x5d,0x2c,0x75,0x3d,0x69,0x5b,0x31,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x61,0x3d,0x61,0x7c,0x7c,0x30,0x2c,0x75,0x3d,0x28,0x75, 0x7c,0x7c,0x30,0x29,0x2a,0x6f,0x2c,0x5b,0x53,0x65,0x2c,0x6b,0x65,0x5d,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x72,0x29,0x3e,0x3d,0x30,0x3f,0x7b,0x78,0x3a, 0x75,0x2c,0x79,0x3a,0x61,0x7d,0x3a,0x7b,0x78,0x3a,0x61,0x2c,0x79,0x3a,0x75,0x7d, 0x7d,0x28,0x6e,0x2c,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2c,0x69,0x29,0x2c,0x65, 0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x2c,0x75,0x3d,0x61,0x5b,0x74,0x2e,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x5d,0x2c,0x63,0x3d,0x75,0x2e,0x78,0x2c,0x6c,0x3d, 0x75,0x2e,0x79,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69, 0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72, 0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x26,0x26,0x28,0x74,0x2e,0x6d,0x6f,0x64,0x69, 0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72, 0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2e,0x78,0x2b,0x3d,0x63,0x2c,0x74,0x2e,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70, 0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2e,0x79,0x2b,0x3d,0x6c,0x29, 0x2c,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61, 0x5b,0x72,0x5d,0x3d,0x61,0x7d,0x7d,0x2c,0x24,0x74,0x3d,0x7b,0x6e,0x61,0x6d,0x65, 0x3a,0x22,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x22, 0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73, 0x65,0x3a,0x22,0x72,0x65,0x61,0x64,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3b,0x74, 0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x6e, 0x5d,0x3d,0x52,0x74,0x28,0x7b,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3a, 0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, 0x65,0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e,0x72,0x65,0x63,0x74, 0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x73,0x74,0x72,0x61,0x74,0x65,0x67, 0x79,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x2c,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x7d,0x29,0x7d,0x2c,0x64,0x61,0x74,0x61,0x3a,0x7b,0x7d,0x7d,0x2c,0x48, 0x74,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x70,0x72,0x65,0x76,0x65,0x6e,0x74, 0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e, 0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e, 0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x6e, 0x61,0x6d,0x65,0x2c,0x6f,0x3d,0x6e,0x2e,0x6d,0x61,0x69,0x6e,0x41,0x78,0x69,0x73, 0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x7c,0x7c,0x6f, 0x2c,0x61,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x41,0x78,0x69,0x73,0x2c,0x75,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x26,0x26,0x61,0x2c,0x63,0x3d,0x6e, 0x2e,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x6c,0x3d,0x6e,0x2e,0x72,0x6f, 0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x73,0x3d,0x6e,0x2e,0x61, 0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x66,0x3d,0x6e,0x2e,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x64,0x3d,0x6e,0x2e,0x74,0x65,0x74,0x68,0x65, 0x72,0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x7c,0x7c, 0x64,0x2c,0x68,0x3d,0x6e,0x2e,0x74,0x65,0x74,0x68,0x65,0x72,0x4f,0x66,0x66,0x73, 0x65,0x74,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x68,0x3f, 0x30,0x3a,0x68,0x2c,0x67,0x3d,0x4c,0x74,0x28,0x74,0x2c,0x7b,0x62,0x6f,0x75,0x6e, 0x64,0x61,0x72,0x79,0x3a,0x63,0x2c,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64, 0x61,0x72,0x79,0x3a,0x6c,0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x66,0x2c, 0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x73,0x7d,0x29,0x2c, 0x6d,0x3d,0x65,0x74,0x28,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x2c,0x62,0x3d,0x62,0x74,0x28,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x29,0x2c,0x79,0x3d,0x21,0x62,0x2c,0x5f,0x3d,0x73,0x74,0x28,0x6d,0x29, 0x2c,0x77,0x3d,0x22,0x78,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x22,0x79,0x22,0x3a,0x22, 0x78,0x22,0x2c,0x4f,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73, 0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65, 0x74,0x73,0x2c,0x78,0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x45,0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73, 0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x6a,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x76,0x3f,0x76, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b, 0x7d,0x2c,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x7d,0x29,0x29,0x3a,0x76,0x2c,0x6b,0x3d,0x7b,0x78,0x3a,0x30,0x2c,0x79,0x3a,0x30, 0x7d,0x3b,0x69,0x66,0x28,0x4f,0x29,0x7b,0x69,0x66,0x28,0x69,0x7c,0x7c,0x75,0x29, 0x7b,0x76,0x61,0x72,0x20,0x53,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x45, 0x65,0x3a,0x53,0x65,0x2c,0x43,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x6a, 0x65,0x3a,0x6b,0x65,0x2c,0x41,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x22, 0x68,0x65,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x2c, 0x54,0x3d,0x4f,0x5b,0x5f,0x5d,0x2c,0x50,0x3d,0x4f,0x5b,0x5f,0x5d,0x2b,0x67,0x5b, 0x53,0x5d,0x2c,0x44,0x3d,0x4f,0x5b,0x5f,0x5d,0x2d,0x67,0x5b,0x43,0x5d,0x2c,0x4e, 0x3d,0x70,0x3f,0x2d,0x45,0x5b,0x41,0x5d,0x2f,0x32,0x3a,0x30,0x2c,0x49,0x3d,0x62, 0x3d,0x3d,0x3d,0x54,0x65,0x3f,0x78,0x5b,0x41,0x5d,0x3a,0x45,0x5b,0x41,0x5d,0x2c, 0x52,0x3d,0x62,0x3d,0x3d,0x3d,0x54,0x65,0x3f,0x2d,0x45,0x5b,0x41,0x5d,0x3a,0x2d, 0x78,0x5b,0x41,0x5d,0x2c,0x4c,0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x46,0x3d,0x70,0x26,0x26,0x4c,0x3f,0x6e, 0x74,0x28,0x4c,0x29,0x3a,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x30,0x2c,0x68,0x65, 0x69,0x67,0x68,0x74,0x3a,0x30,0x7d,0x2c,0x4d,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69, 0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x22,0x61,0x72,0x72,0x6f,0x77, 0x23,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x22,0x5d,0x3f,0x74,0x2e, 0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x22,0x61, 0x72,0x72,0x6f,0x77,0x23,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x22, 0x5d,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x7b,0x74,0x6f,0x70,0x3a,0x30, 0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x30,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2c,0x42,0x3d,0x4d,0x5b,0x53,0x5d, 0x2c,0x7a,0x3d,0x4d,0x5b,0x43,0x5d,0x2c,0x55,0x3d,0x68,0x74,0x28,0x30,0x2c,0x78, 0x5b,0x41,0x5d,0x2c,0x46,0x5b,0x41,0x5d,0x29,0x2c,0x57,0x3d,0x79,0x3f,0x78,0x5b, 0x41,0x5d,0x2f,0x32,0x2d,0x4e,0x2d,0x55,0x2d,0x42,0x2d,0x6a,0x3a,0x49,0x2d,0x55, 0x2d,0x42,0x2d,0x6a,0x2c,0x24,0x3d,0x79,0x3f,0x2d,0x78,0x5b,0x41,0x5d,0x2f,0x32, 0x2b,0x4e,0x2b,0x55,0x2b,0x7a,0x2b,0x6a,0x3a,0x52,0x2b,0x55,0x2b,0x7a,0x2b,0x6a, 0x2c,0x48,0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x61,0x72, 0x72,0x6f,0x77,0x26,0x26,0x6c,0x74,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x29,0x2c,0x56,0x3d,0x48,0x3f,0x22,0x79, 0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x48,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x54,0x6f, 0x70,0x7c,0x7c,0x30,0x3a,0x48,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4c,0x65,0x66, 0x74,0x7c,0x7c,0x30,0x3a,0x30,0x2c,0x47,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x3f, 0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x5b,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x5d,0x5b,0x5f,0x5d,0x3a,0x30,0x2c,0x71,0x3d,0x4f,0x5b,0x5f,0x5d,0x2b, 0x57,0x2d,0x47,0x2d,0x56,0x2c,0x4b,0x3d,0x4f,0x5b,0x5f,0x5d,0x2b,0x24,0x2d,0x47, 0x3b,0x69,0x66,0x28,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x59,0x3d,0x68,0x74,0x28, 0x70,0x3f,0x64,0x74,0x28,0x50,0x2c,0x71,0x29,0x3a,0x50,0x2c,0x54,0x2c,0x70,0x3f, 0x66,0x74,0x28,0x44,0x2c,0x4b,0x29,0x3a,0x44,0x29,0x3b,0x4f,0x5b,0x5f,0x5d,0x3d, 0x59,0x2c,0x6b,0x5b,0x5f,0x5d,0x3d,0x59,0x2d,0x54,0x7d,0x69,0x66,0x28,0x75,0x29, 0x7b,0x76,0x61,0x72,0x20,0x51,0x3d,0x22,0x78,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x45, 0x65,0x3a,0x53,0x65,0x2c,0x58,0x3d,0x22,0x78,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x6a, 0x65,0x3a,0x6b,0x65,0x2c,0x4a,0x3d,0x4f,0x5b,0x77,0x5d,0x2c,0x5a,0x3d,0x4a,0x2b, 0x67,0x5b,0x51,0x5d,0x2c,0x65,0x65,0x3d,0x4a,0x2d,0x67,0x5b,0x58,0x5d,0x2c,0x74, 0x65,0x3d,0x68,0x74,0x28,0x70,0x3f,0x64,0x74,0x28,0x5a,0x2c,0x71,0x29,0x3a,0x5a, 0x2c,0x4a,0x2c,0x70,0x3f,0x66,0x74,0x28,0x65,0x65,0x2c,0x4b,0x29,0x3a,0x65,0x65, 0x29,0x3b,0x4f,0x5b,0x77,0x5d,0x3d,0x74,0x65,0x2c,0x6b,0x5b,0x77,0x5d,0x3d,0x74, 0x65,0x2d,0x4a,0x7d,0x7d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73, 0x44,0x61,0x74,0x61,0x5b,0x72,0x5d,0x3d,0x6b,0x7d,0x7d,0x2c,0x72,0x65,0x71,0x75, 0x69,0x72,0x65,0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74,0x73,0x3a,0x5b,0x22,0x6f, 0x66,0x66,0x73,0x65,0x74,0x22,0x5d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x56,0x74,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x21,0x31,0x29,0x3b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x58,0x65,0x28,0x74,0x29,0x3b,0x58,0x65,0x28,0x74,0x29, 0x26,0x26,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e, 0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x28,0x29,0x3b,0x74,0x2e, 0x77,0x69,0x64,0x74,0x68,0x2c,0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x57,0x69, 0x64,0x74,0x68,0x2c,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x65,0x2e,0x6f, 0x66,0x66,0x73,0x65,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x7d,0x28,0x74,0x29,0x3b, 0x76,0x61,0x72,0x20,0x6f,0x2c,0x69,0x2c,0x61,0x3d,0x61,0x74,0x28,0x74,0x29,0x2c, 0x75,0x3d,0x74,0x74,0x28,0x65,0x29,0x2c,0x63,0x3d,0x7b,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x4c,0x65,0x66,0x74,0x3a,0x30,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f, 0x70,0x3a,0x30,0x7d,0x2c,0x6c,0x3d,0x7b,0x78,0x3a,0x30,0x2c,0x79,0x3a,0x30,0x7d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x72,0x7c,0x7c,0x21,0x72,0x26,0x26,0x21, 0x6e,0x29,0x26,0x26,0x28,0x28,0x22,0x62,0x6f,0x64,0x79,0x22,0x21,0x3d,0x3d,0x4b, 0x65,0x28,0x74,0x29,0x7c,0x7c,0x54,0x74,0x28,0x61,0x29,0x29,0x26,0x26,0x28,0x63, 0x3d,0x28,0x6f,0x3d,0x74,0x29,0x21,0x3d,0x3d,0x59,0x65,0x28,0x6f,0x29,0x26,0x26, 0x58,0x65,0x28,0x6f,0x29,0x3f,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66, 0x74,0x3a,0x28,0x69,0x3d,0x6f,0x29,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65, 0x66,0x74,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3a,0x69,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x7d,0x3a,0x43,0x74,0x28,0x6f,0x29,0x29, 0x2c,0x58,0x65,0x28,0x74,0x29,0x3f,0x28,0x28,0x6c,0x3d,0x74,0x74,0x28,0x74,0x29, 0x29,0x2e,0x78,0x2b,0x3d,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4c,0x65,0x66, 0x74,0x2c,0x6c,0x2e,0x79,0x2b,0x3d,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x54, 0x6f,0x70,0x29,0x3a,0x61,0x26,0x26,0x28,0x6c,0x2e,0x78,0x3d,0x41,0x74,0x28,0x61, 0x29,0x29,0x29,0x2c,0x7b,0x78,0x3a,0x75,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x63,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2d,0x6c,0x2e,0x78,0x2c,0x79, 0x3a,0x75,0x2e,0x74,0x6f,0x70,0x2b,0x63,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54, 0x6f,0x70,0x2d,0x6c,0x2e,0x79,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x75,0x2e,0x77, 0x69,0x64,0x74,0x68,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x75,0x2e,0x68,0x65, 0x69,0x67,0x68,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47, 0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x65,0x77,0x20,0x4d, 0x61,0x70,0x2c,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x2c,0x72,0x3d,0x5b, 0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x29,0x7b, 0x6e,0x2e,0x61,0x64,0x64,0x28,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x2c,0x5b,0x5d, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2e,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x73,0x7c,0x7c,0x5b,0x5d,0x2c,0x65,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65, 0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74,0x73,0x7c,0x7c,0x5b,0x5d,0x29,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x6e,0x2e,0x68,0x61,0x73,0x28,0x65,0x29, 0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x67,0x65,0x74,0x28,0x65,0x29, 0x3b,0x72,0x26,0x26,0x6f,0x28,0x72,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x72,0x2e,0x70, 0x75,0x73,0x68,0x28,0x65,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e,0x73,0x65,0x74,0x28,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63, 0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e, 0x2e,0x68,0x61,0x73,0x28,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x7c,0x7c,0x6f,0x28, 0x65,0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x76,0x61,0x72,0x20,0x71,0x74,0x3d,0x7b, 0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x22,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x5d,0x2c, 0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75, 0x74,0x65,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x74, 0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x30, 0x3b,0x6e,0x3c,0x65,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x74,0x2e,0x73,0x6f,0x6d,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x65,0x26, 0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x2e,0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e, 0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x29,0x7d,0x29,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x74,0x28,0x65,0x29,0x7b,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x7b,0x7d, 0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2c,0x6e,0x3d,0x74,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2c,0x72, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x5b,0x5d,0x3a,0x6e, 0x2c,0x6f,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x4f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f, 0x3f,0x71,0x74,0x3a,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x69,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6f,0x2c,0x61,0x2c,0x75,0x3d,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x2c,0x6f,0x72,0x64, 0x65,0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x5d, 0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x71,0x74,0x2c,0x69,0x29,0x2c, 0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x3a,0x7b,0x7d, 0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x7b,0x72,0x65,0x66,0x65,0x72, 0x65,0x6e,0x63,0x65,0x3a,0x65,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a,0x74,0x7d, 0x2c,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x3a,0x7b,0x7d,0x2c,0x73, 0x74,0x79,0x6c,0x65,0x73,0x3a,0x7b,0x7d,0x7d,0x2c,0x63,0x3d,0x5b,0x5d,0x2c,0x6c, 0x3d,0x21,0x31,0x2c,0x73,0x3d,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x75,0x2c,0x73, 0x65,0x74,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e, 0x3f,0x6e,0x28,0x75,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3a,0x6e,0x3b, 0x66,0x28,0x29,0x2c,0x75,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x69, 0x2c,0x75,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x6f,0x29,0x2c,0x75,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x3d,0x7b,0x72, 0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3a,0x51,0x65,0x28,0x65,0x29,0x3f,0x44, 0x74,0x28,0x65,0x29,0x3a,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x3f,0x44,0x74,0x28,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3a,0x5b,0x5d,0x2c,0x70,0x6f, 0x70,0x70,0x65,0x72,0x3a,0x44,0x74,0x28,0x74,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x61,0x2c,0x6c,0x2c,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x47,0x74,0x28,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x71,0x65,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2e, 0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x70,0x68,0x61, 0x73,0x65,0x3d,0x3d,0x3d,0x6e,0x7d,0x29,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29, 0x7d,0x28,0x28,0x61,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72, 0x2c,0x75,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x29,0x2c,0x6c,0x3d,0x61,0x2e,0x72,0x65,0x64,0x75,0x63,0x65, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x74,0x2e,0x6e,0x61,0x6d,0x65,0x5d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x2e,0x6e,0x61,0x6d,0x65,0x5d, 0x3d,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x7d,0x2c,0x6e,0x2c,0x74,0x2c,0x7b,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b, 0x7d,0x2c,0x6e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x74,0x2e,0x6f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x29,0x2c,0x64,0x61,0x74,0x61,0x3a,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6e,0x2e,0x64, 0x61,0x74,0x61,0x2c,0x74,0x2e,0x64,0x61,0x74,0x61,0x29,0x7d,0x29,0x3a,0x74,0x2c, 0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b, 0x65,0x79,0x73,0x28,0x6c,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c, 0x5b,0x65,0x5d,0x7d,0x29,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x75,0x2e,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65, 0x72,0x73,0x3d,0x64,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x7d,0x29,0x29,0x2c,0x75,0x2e,0x6f, 0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x7b,0x7d,0x3a,0x6e,0x2c, 0x6f,0x3d,0x65,0x2e,0x65,0x66,0x66,0x65,0x63,0x74,0x3b,0x69,0x66,0x28,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x28,0x7b,0x73,0x74,0x61, 0x74,0x65,0x3a,0x75,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x74,0x2c,0x69,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x3a,0x73,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x72, 0x7d,0x29,0x3b,0x63,0x2e,0x70,0x75,0x73,0x68,0x28,0x69,0x7c,0x7c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x73, 0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x29,0x7d,0x2c,0x66,0x6f,0x72,0x63,0x65, 0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x69,0x66,0x28,0x21,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x75, 0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x74,0x3d,0x65,0x2e,0x72,0x65, 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x3b,0x69,0x66,0x28,0x4b,0x74,0x28,0x74,0x2c,0x6e,0x29,0x29,0x7b,0x75, 0x2e,0x72,0x65,0x63,0x74,0x73,0x3d,0x7b,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, 0x65,0x3a,0x56,0x74,0x28,0x74,0x2c,0x6c,0x74,0x28,0x6e,0x29,0x2c,0x22,0x66,0x69, 0x78,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x75,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73, 0x2e,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x29,0x2c,0x70,0x6f,0x70,0x70,0x65, 0x72,0x3a,0x6e,0x74,0x28,0x6e,0x29,0x7d,0x2c,0x75,0x2e,0x72,0x65,0x73,0x65,0x74, 0x3d,0x21,0x31,0x2c,0x75,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3d, 0x75,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x75,0x2e,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f,0x64, 0x69,0x66,0x69,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x75,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x5b,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x5d,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2e,0x64,0x61, 0x74,0x61,0x29,0x7d,0x29,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72, 0x3d,0x30,0x3b,0x72,0x3c,0x75,0x2e,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f, 0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x2b,0x2b,0x29,0x69,0x66,0x28,0x21,0x30,0x21,0x3d,0x3d,0x75,0x2e,0x72,0x65,0x73, 0x65,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x75,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x5b,0x72,0x5d,0x2c, 0x69,0x3d,0x6f,0x2e,0x66,0x6e,0x2c,0x61,0x3d,0x6f,0x2e,0x6f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f, 0x7b,0x7d,0x3a,0x61,0x2c,0x66,0x3d,0x6f,0x2e,0x6e,0x61,0x6d,0x65,0x3b,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x69,0x26,0x26,0x28,0x75,0x3d,0x69,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a, 0x75,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x63,0x2c,0x6e,0x61,0x6d,0x65, 0x3a,0x66,0x2c,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x3a,0x73,0x7d,0x29,0x7c, 0x7c,0x75,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x75,0x2e,0x72,0x65,0x73,0x65,0x74, 0x3d,0x21,0x31,0x2c,0x72,0x3d,0x2d,0x31,0x7d,0x7d,0x7d,0x2c,0x75,0x70,0x64,0x61, 0x74,0x65,0x3a,0x28,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d, 0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x73,0x2e,0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x28,0x29, 0x2c,0x65,0x28,0x75,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x7c,0x7c,0x28, 0x61,0x3d,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x50,0x72,0x6f,0x6d,0x69, 0x73,0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x29,0x2e,0x74,0x68,0x65, 0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x61,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x65,0x28,0x6f,0x28,0x29,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x29,0x29,0x2c,0x61,0x7d,0x29,0x2c,0x64,0x65,0x73,0x74,0x72,0x6f,0x79, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x28,0x29,0x2c, 0x6c,0x3d,0x21,0x30,0x7d,0x7d,0x3b,0x69,0x66,0x28,0x21,0x4b,0x74,0x28,0x65,0x2c, 0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x66,0x28,0x29,0x7b,0x63,0x2e,0x66,0x6f,0x72,0x45,0x61, 0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x63,0x3d, 0x5b,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x2e,0x73,0x65,0x74,0x4f, 0x70,0x74,0x69,0x6f,0x6e,0x73,0x28,0x6e,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x21,0x6c,0x26,0x26, 0x6e,0x2e,0x6f,0x6e,0x46,0x69,0x72,0x73,0x74,0x55,0x70,0x64,0x61,0x74,0x65,0x26, 0x26,0x6e,0x2e,0x6f,0x6e,0x46,0x69,0x72,0x73,0x74,0x55,0x70,0x64,0x61,0x74,0x65, 0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x73,0x7d,0x7d,0x76,0x61,0x72,0x20,0x51,0x74, 0x3d,0x59,0x74,0x28,0x29,0x2c,0x58,0x74,0x3d,0x59,0x74,0x28,0x7b,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x78, 0x74,0x2c,0x24,0x74,0x2c,0x77,0x74,0x2c,0x5a,0x65,0x5d,0x7d,0x29,0x2c,0x4a,0x74, 0x3d,0x59,0x74,0x28,0x7b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x4d,0x6f,0x64,0x69, 0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x78,0x74,0x2c,0x24,0x74,0x2c,0x77,0x74,0x2c, 0x5a,0x65,0x2c,0x57,0x74,0x2c,0x4d,0x74,0x2c,0x48,0x74,0x2c,0x6d,0x74,0x2c,0x55, 0x74,0x5d,0x7d,0x29,0x2c,0x5a,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x66, 0x72,0x65,0x65,0x7a,0x65,0x28,0x7b,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f, 0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x47,0x65,0x6e,0x65, 0x72,0x61,0x74,0x6f,0x72,0x3a,0x59,0x74,0x2c,0x64,0x65,0x74,0x65,0x63,0x74,0x4f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x4c,0x74,0x2c,0x63,0x72,0x65,0x61,0x74, 0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x42,0x61,0x73,0x65,0x3a,0x51,0x74,0x2c,0x63, 0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x3a,0x4a,0x74,0x2c,0x63, 0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x4c,0x69,0x74,0x65,0x3a, 0x58,0x74,0x2c,0x74,0x6f,0x70,0x3a,0x45,0x65,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x6a,0x65,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x6b,0x65,0x2c,0x6c,0x65,0x66, 0x74,0x3a,0x53,0x65,0x2c,0x61,0x75,0x74,0x6f,0x3a,0x43,0x65,0x2c,0x62,0x61,0x73, 0x65,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x41,0x65,0x2c,0x73, 0x74,0x61,0x72,0x74,0x3a,0x54,0x65,0x2c,0x65,0x6e,0x64,0x3a,0x50,0x65,0x2c,0x63, 0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x3a,0x44, 0x65,0x2c,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x3a,0x4e,0x65,0x2c,0x70,0x6f, 0x70,0x70,0x65,0x72,0x3a,0x49,0x65,0x2c,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, 0x65,0x3a,0x52,0x65,0x2c,0x76,0x61,0x72,0x69,0x61,0x74,0x69,0x6f,0x6e,0x50,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x4c,0x65,0x2c,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x46,0x65,0x2c,0x62,0x65,0x66,0x6f,0x72,0x65, 0x52,0x65,0x61,0x64,0x3a,0x4d,0x65,0x2c,0x72,0x65,0x61,0x64,0x3a,0x42,0x65,0x2c, 0x61,0x66,0x74,0x65,0x72,0x52,0x65,0x61,0x64,0x3a,0x7a,0x65,0x2c,0x62,0x65,0x66, 0x6f,0x72,0x65,0x4d,0x61,0x69,0x6e,0x3a,0x55,0x65,0x2c,0x6d,0x61,0x69,0x6e,0x3a, 0x57,0x65,0x2c,0x61,0x66,0x74,0x65,0x72,0x4d,0x61,0x69,0x6e,0x3a,0x24,0x65,0x2c, 0x62,0x65,0x66,0x6f,0x72,0x65,0x57,0x72,0x69,0x74,0x65,0x3a,0x48,0x65,0x2c,0x77, 0x72,0x69,0x74,0x65,0x3a,0x56,0x65,0x2c,0x61,0x66,0x74,0x65,0x72,0x57,0x72,0x69, 0x74,0x65,0x3a,0x47,0x65,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x50,0x68, 0x61,0x73,0x65,0x73,0x3a,0x71,0x65,0x2c,0x61,0x70,0x70,0x6c,0x79,0x53,0x74,0x79, 0x6c,0x65,0x73,0x3a,0x5a,0x65,0x2c,0x61,0x72,0x72,0x6f,0x77,0x3a,0x6d,0x74,0x2c, 0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x53,0x74,0x79,0x6c,0x65,0x73,0x3a,0x77,0x74, 0x2c,0x65,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3a, 0x78,0x74,0x2c,0x66,0x6c,0x69,0x70,0x3a,0x4d,0x74,0x2c,0x68,0x69,0x64,0x65,0x3a, 0x55,0x74,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x57,0x74,0x2c,0x70,0x6f,0x70, 0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x24,0x74,0x2c,0x70,0x72, 0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x48,0x74, 0x7d,0x29,0x2c,0x65,0x6e,0x3d,0x22,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22, 0x2c,0x74,0x6e,0x3d,0x22,0x45,0x73,0x63,0x61,0x70,0x65,0x22,0x2c,0x6e,0x6e,0x3d, 0x22,0x53,0x70,0x61,0x63,0x65,0x22,0x2c,0x72,0x6e,0x3d,0x22,0x41,0x72,0x72,0x6f, 0x77,0x55,0x70,0x22,0x2c,0x6f,0x6e,0x3d,0x22,0x41,0x72,0x72,0x6f,0x77,0x44,0x6f, 0x77,0x6e,0x22,0x2c,0x61,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x52,0x65,0x67,0x45,0x78, 0x70,0x28,0x22,0x41,0x72,0x72,0x6f,0x77,0x55,0x70,0x7c,0x41,0x72,0x72,0x6f,0x77, 0x44,0x6f,0x77,0x6e,0x7c,0x45,0x73,0x63,0x61,0x70,0x65,0x22,0x29,0x2c,0x75,0x6e, 0x3d,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x63,0x6e, 0x3d,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c, 0x6c,0x6e,0x3d,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x73,0x6e,0x3d,0x27,0x5b,0x64, 0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3d,0x22,0x64, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x5d,0x27,0x2c,0x66,0x6e,0x3d,0x22,0x2e, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x22,0x2c,0x64, 0x6e,0x3d,0x45,0x28,0x29,0x3f,0x22,0x74,0x6f,0x70,0x2d,0x65,0x6e,0x64,0x22,0x3a, 0x22,0x74,0x6f,0x70,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x2c,0x70,0x6e,0x3d,0x45, 0x28,0x29,0x3f,0x22,0x74,0x6f,0x70,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22, 0x74,0x6f,0x70,0x2d,0x65,0x6e,0x64,0x22,0x2c,0x68,0x6e,0x3d,0x45,0x28,0x29,0x3f, 0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x65,0x6e,0x64,0x22,0x3a,0x22,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x2c,0x76,0x6e,0x3d,0x45, 0x28,0x29,0x3f,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74, 0x22,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x65,0x6e,0x64,0x22,0x2c,0x67, 0x6e,0x3d,0x45,0x28,0x29,0x3f,0x22,0x6c,0x65,0x66,0x74,0x2d,0x73,0x74,0x61,0x72, 0x74,0x22,0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x2d,0x73,0x74,0x61,0x72,0x74,0x22, 0x2c,0x6d,0x6e,0x3d,0x45,0x28,0x29,0x3f,0x22,0x72,0x69,0x67,0x68,0x74,0x2d,0x73, 0x74,0x61,0x72,0x74,0x22,0x3a,0x22,0x6c,0x65,0x66,0x74,0x2d,0x73,0x74,0x61,0x72, 0x74,0x22,0x2c,0x62,0x6e,0x3d,0x7b,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x5b,0x30, 0x2c,0x32,0x5d,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x22,0x63,0x6c, 0x69,0x70,0x70,0x69,0x6e,0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x22,0x2c,0x72, 0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3a,0x22,0x74,0x6f,0x67,0x67,0x6c,0x65, 0x22,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x22,0x64,0x79,0x6e,0x61,0x6d, 0x69,0x63,0x22,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67, 0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x75,0x74,0x6f,0x43,0x6c,0x6f,0x73,0x65,0x3a, 0x21,0x30,0x7d,0x2c,0x79,0x6e,0x3d,0x7b,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x22, 0x28,0x61,0x72,0x72,0x61,0x79,0x7c,0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x22,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72, 0x79,0x3a,0x22,0x28,0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x29,0x22,0x2c,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x3a,0x22, 0x28,0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c, 0x6f,0x62,0x6a,0x65,0x63,0x74,0x29,0x22,0x2c,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72, 0x43,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x22,0x28,0x6e,0x75,0x6c,0x6c,0x7c,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x22,0x2c, 0x61,0x75,0x74,0x6f,0x43,0x6c,0x6f,0x73,0x65,0x3a,0x22,0x28,0x62,0x6f,0x6f,0x6c, 0x65,0x61,0x6e,0x7c,0x73,0x74,0x72,0x69,0x6e,0x67,0x29,0x22,0x7d,0x2c,0x5f,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x6e, 0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x28,0x74,0x68, 0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x6f,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3d, 0x6f,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72,0x29,0x2c, 0x6f,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x3d,0x6f,0x2e,0x5f,0x67,0x65,0x74,0x4d,0x65, 0x6e,0x75,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x2c,0x6f,0x2e,0x5f,0x69, 0x6e,0x4e,0x61,0x76,0x62,0x61,0x72,0x3d,0x6f,0x2e,0x5f,0x64,0x65,0x74,0x65,0x63, 0x74,0x4e,0x61,0x76,0x62,0x61,0x72,0x28,0x29,0x2c,0x6f,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f, 0x67,0x67,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28,0x29,0x3f,0x74,0x68, 0x69,0x73,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73, 0x68,0x6f,0x77,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68, 0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x69,0x66,0x28,0x21,0x62, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x26, 0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x29,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65, 0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d, 0x3b,0x69,0x66,0x28,0x21,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68, 0x6f,0x77,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x2c, 0x74,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e, 0x74,0x65,0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x67,0x65,0x74, 0x50,0x61,0x72,0x65,0x6e,0x74,0x46,0x72,0x6f,0x6d,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29, 0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x4e,0x61,0x76,0x62,0x61,0x72,0x3f, 0x65,0x65,0x2e,0x73,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x2c,0x22, 0x70,0x6f,0x70,0x70,0x65,0x72,0x22,0x2c,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x29,0x3a, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x70,0x70, 0x65,0x72,0x28,0x72,0x29,0x2c,0x22,0x6f,0x6e,0x74,0x6f,0x75,0x63,0x68,0x73,0x74, 0x61,0x72,0x74,0x22,0x69,0x6e,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26, 0x26,0x21,0x72,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x22,0x2e,0x6e,0x61, 0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x22,0x29,0x26,0x26,0x28,0x65,0x3d,0x5b, 0x5d,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x65,0x2c,0x61,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64, 0x79,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x2e,0x6f,0x6e,0x28,0x65,0x2c, 0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x2c,0x5f,0x29,0x7d,0x29, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65, 0x64,0x22,0x2c,0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e, 0x75,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28, 0x6c,0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28, 0x6c,0x6e,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f, 0x77,0x6e,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x2c, 0x74,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68,0x69,0x64, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x62,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65, 0x6e,0x75,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x7b,0x72,0x65,0x6c,0x61, 0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x48,0x69,0x64,0x65,0x28,0x65,0x29,0x7d,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x26,0x26, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x64,0x65,0x73, 0x74,0x72,0x6f,0x79,0x28,0x29,0x2c,0x72,0x28,0x6f,0x28,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65, 0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x75,0x70,0x64,0x61,0x74, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x4e,0x61,0x76,0x62, 0x61,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x64,0x65,0x74,0x65,0x63,0x74,0x4e, 0x61,0x76,0x62,0x61,0x72,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f, 0x70,0x70,0x65,0x72,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70, 0x65,0x72,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x48,0x69,0x64, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x48,0x2e,0x74,0x72,0x69, 0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x22,0x2c,0x65,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x28,0x22,0x6f,0x6e,0x74, 0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x69,0x6e,0x20,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x74,0x3d,0x5b,0x5d,0x29,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x2c,0x61,0x28,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x48,0x2e,0x6f,0x66,0x66,0x28,0x65,0x2c,0x22,0x6d,0x6f,0x75, 0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x2c,0x5f,0x29,0x7d,0x29,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x26,0x26,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x64,0x65,0x73,0x74,0x72,0x6f,0x79, 0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x2e,0x63,0x6c, 0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x6c, 0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76, 0x65,0x28,0x6c,0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x22, 0x2c,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x29,0x2c,0x65,0x65,0x2e,0x72,0x65,0x6d, 0x6f,0x76,0x65,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x2c,0x22,0x70,0x6f,0x70, 0x70,0x65,0x72,0x22,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x68, 0x69,0x64,0x64,0x65,0x6e,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77, 0x6e,0x22,0x2c,0x65,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28, 0x65,0x3d,0x69,0x28,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x44,0x65,0x66,0x61, 0x75,0x6c,0x74,0x29,0x2c,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x41, 0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x2c,0x65,0x29,0x2c,0x67,0x28,0x65, 0x6e,0x2c,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x2e,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79,0x70,0x65, 0x29,0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x65,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x26,0x26, 0x21,0x68,0x28,0x65,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x29,0x26, 0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2e, 0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e, 0x74,0x52,0x65,0x63,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20, 0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x65,0x6e,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61, 0x73,0x65,0x28,0x29,0x2c,0x27,0x3a,0x20,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x22, 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x22,0x20,0x70,0x72,0x6f,0x76,0x69, 0x64,0x65,0x64,0x20,0x74,0x79,0x70,0x65,0x20,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74, 0x22,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x61,0x20,0x72,0x65,0x71,0x75, 0x69,0x72,0x65,0x64,0x20,0x22,0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e, 0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x22,0x20,0x6d,0x65,0x74, 0x68,0x6f,0x64,0x2e,0x27,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x63,0x72,0x65,0x61,0x74,0x65, 0x50,0x6f,0x70,0x70,0x65,0x72,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x5a,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e, 0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x42,0x6f, 0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x27,0x73,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x50,0x6f,0x70,0x70, 0x65,0x72,0x20,0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x70,0x6f,0x70,0x70, 0x65,0x72,0x2e,0x6a,0x73,0x2e,0x6f,0x72,0x67,0x29,0x22,0x29,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x3b,0x22,0x70,0x61,0x72,0x65,0x6e,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e, 0x63,0x65,0x3f,0x74,0x3d,0x65,0x3a,0x68,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x29, 0x3f,0x74,0x3d,0x76,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x29,0x3a,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x72,0x65,0x66,0x65,0x72, 0x65,0x6e,0x63,0x65,0x26,0x26,0x28,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x29, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74, 0x50,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x29,0x2c,0x72, 0x3d,0x6e,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2e,0x66,0x69,0x6e, 0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x61,0x70,0x70,0x6c,0x79,0x53,0x74,0x79,0x6c,0x65, 0x73,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x26,0x26,0x21,0x31,0x3d, 0x3d,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x7d,0x29,0x29,0x3b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x3d,0x4a,0x74,0x28,0x74, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x2c,0x6e,0x29,0x2c,0x72, 0x26,0x26,0x65,0x65,0x2e,0x73,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65,0x6e,0x75, 0x2c,0x22,0x70,0x6f,0x70,0x70,0x65,0x72,0x22,0x2c,0x22,0x73,0x74,0x61,0x74,0x69, 0x63,0x22,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x73,0x53, 0x68,0x6f,0x77,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30, 0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x30,0x5d,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x6c,0x6e,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x4d,0x65,0x6e,0x75,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x65,0x2e,0x6e, 0x65,0x78,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2c,0x66,0x6e,0x29,0x5b,0x30,0x5d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x67,0x65,0x74,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b, 0x69,0x66,0x28,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x64,0x72,0x6f,0x70,0x65,0x6e,0x64, 0x22,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x67,0x6e,0x3b,0x69,0x66,0x28, 0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x73,0x28,0x22,0x64,0x72,0x6f,0x70,0x73,0x74,0x61,0x72,0x74,0x22, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x6e,0x3b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x22,0x65,0x6e,0x64,0x22,0x3d,0x3d,0x3d,0x67,0x65,0x74,0x43,0x6f,0x6d, 0x70,0x75,0x74,0x65,0x64,0x53,0x74,0x79,0x6c,0x65,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x6d,0x65,0x6e,0x75,0x29,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x79,0x56,0x61,0x6c,0x75,0x65,0x28,0x22,0x2d,0x2d,0x62,0x73,0x2d,0x70,0x6f, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x22,0x29,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x64,0x72,0x6f, 0x70,0x75,0x70,0x22,0x29,0x3f,0x74,0x3f,0x70,0x6e,0x3a,0x64,0x6e,0x3a,0x74,0x3f, 0x76,0x6e,0x3a,0x68,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x64, 0x65,0x74,0x65,0x63,0x74,0x4e,0x61,0x76,0x62,0x61,0x72,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73, 0x74,0x28,0x22,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x22,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x74,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x2c,0x22,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74, 0x28,0x65,0x2c,0x31,0x30,0x29,0x7d,0x29,0x29,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x28,0x6e,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x7d,0x3a,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65, 0x74,0x50,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x50,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x29,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a, 0x5b,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73, 0x3a,0x7b,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79, 0x7d,0x7d,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6f,0x66,0x66,0x73,0x65,0x74, 0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x6f,0x66,0x66,0x73,0x65, 0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x4f,0x66,0x66,0x73,0x65, 0x74,0x28,0x29,0x7d,0x7d,0x5d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73, 0x74,0x61,0x74,0x69,0x63,0x22,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x26,0x26,0x28, 0x65,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3d,0x5b,0x7b,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x61,0x70,0x70,0x6c,0x79,0x53,0x74,0x79,0x6c,0x65,0x73,0x22, 0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x31,0x7d,0x5d,0x29,0x2c,0x69, 0x28,0x69,0x28,0x7b,0x7d,0x2c,0x65,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x43, 0x6f,0x6e,0x66,0x69,0x67,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28, 0x65,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x65,0x6c,0x65,0x63,0x74,0x4d,0x65,0x6e, 0x75,0x49,0x74,0x65,0x6d,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65, 0x2e,0x6b,0x65,0x79,0x2c,0x6e,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c, 0x72,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x22,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x69, 0x73,0x61,0x62,0x6c,0x65,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x29,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6d,0x65, 0x6e,0x75,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x6d,0x29,0x3b,0x72,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x43,0x28,0x72,0x2c,0x6e,0x2c,0x74,0x3d, 0x3d,0x3d,0x6f,0x6e,0x2c,0x21,0x72,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73, 0x28,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x7d,0x7d,0x5d,0x2c, 0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c, 0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79,0x70,0x65,0x22,0x2c,0x67,0x65, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x79,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e, 0x41,0x4d,0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6e,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65, 0x72,0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x2e,0x67,0x65, 0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74, 0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29, 0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b,0x65, 0x5d,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65, 0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64, 0x20,0x6e,0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x65,0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x74,0x5b,0x65,0x5d,0x28,0x29,0x7d, 0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x63,0x6c,0x65,0x61, 0x72,0x4d,0x65,0x6e,0x75,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x65,0x7c, 0x7c,0x32,0x21,0x3d,0x3d,0x65,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x26,0x26,0x28, 0x22,0x6b,0x65,0x79,0x75,0x70,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65, 0x7c,0x7c,0x22,0x54,0x61,0x62,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x29, 0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x65,0x2e,0x66,0x69, 0x6e,0x64,0x28,0x73,0x6e,0x29,0x2c,0x72,0x3d,0x30,0x2c,0x6f,0x3d,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x3c,0x6f,0x3b,0x72,0x2b,0x2b,0x29,0x7b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x49,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x28,0x74,0x5b,0x72,0x5d,0x29,0x3b,0x69,0x66,0x28,0x69,0x26,0x26,0x21, 0x31,0x21,0x3d,0x3d,0x69,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x75, 0x74,0x6f,0x43,0x6c,0x6f,0x73,0x65,0x26,0x26,0x69,0x2e,0x5f,0x69,0x73,0x53,0x68, 0x6f,0x77,0x6e,0x28,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x7b,0x72,0x65, 0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x69,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x3b,0x69,0x66,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x75,0x3d,0x65,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x73,0x65,0x64,0x50,0x61, 0x74,0x68,0x28,0x29,0x2c,0x63,0x3d,0x75,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65, 0x73,0x28,0x69,0x2e,0x5f,0x6d,0x65,0x6e,0x75,0x29,0x3b,0x69,0x66,0x28,0x75,0x2e, 0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x69,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x29,0x7c,0x7c,0x22,0x69,0x6e,0x73,0x69,0x64,0x65,0x22,0x3d,0x3d, 0x3d,0x69,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x75,0x74,0x6f,0x43, 0x6c,0x6f,0x73,0x65,0x26,0x26,0x21,0x63,0x7c,0x7c,0x22,0x6f,0x75,0x74,0x73,0x69, 0x64,0x65,0x22,0x3d,0x3d,0x3d,0x69,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x61,0x75,0x74,0x6f,0x43,0x6c,0x6f,0x73,0x65,0x26,0x26,0x63,0x29,0x63,0x6f,0x6e, 0x74,0x69,0x6e,0x75,0x65,0x3b,0x69,0x66,0x28,0x69,0x2e,0x5f,0x6d,0x65,0x6e,0x75, 0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x65,0x2e,0x74,0x61,0x72,0x67, 0x65,0x74,0x29,0x26,0x26,0x28,0x22,0x6b,0x65,0x79,0x75,0x70,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x22,0x54,0x61,0x62,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x6b,0x65,0x79,0x7c,0x7c,0x2f,0x69,0x6e,0x70,0x75,0x74,0x7c,0x73,0x65, 0x6c,0x65,0x63,0x74,0x7c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x7c,0x74,0x65,0x78,0x74, 0x61,0x72,0x65,0x61,0x7c,0x66,0x6f,0x72,0x6d,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74, 0x28,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d, 0x65,0x29,0x29,0x29,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x3b,0x22,0x63,0x6c, 0x69,0x63,0x6b,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x26,0x26,0x28, 0x61,0x2e,0x63,0x6c,0x69,0x63,0x6b,0x45,0x76,0x65,0x6e,0x74,0x3d,0x65,0x29,0x7d, 0x69,0x2e,0x5f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x48,0x69,0x64,0x65,0x28, 0x61,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67,0x65,0x74, 0x50,0x61,0x72,0x65,0x6e,0x74,0x46,0x72,0x6f,0x6d,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x28,0x65,0x29, 0x7c,0x7c,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x61,0x74,0x61,0x41,0x70,0x69,0x4b,0x65, 0x79,0x64,0x6f,0x77,0x6e,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x69,0x66,0x28,0x21,0x28,0x2f,0x69,0x6e,0x70,0x75,0x74,0x7c,0x74,0x65,0x78,0x74, 0x61,0x72,0x65,0x61,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x2e,0x74,0x61, 0x72,0x67,0x65,0x74,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29,0x3f,0x65,0x2e, 0x6b,0x65,0x79,0x3d,0x3d,0x3d,0x6e,0x6e,0x7c,0x7c,0x65,0x2e,0x6b,0x65,0x79,0x21, 0x3d,0x3d,0x74,0x6e,0x26,0x26,0x28,0x65,0x2e,0x6b,0x65,0x79,0x21,0x3d,0x3d,0x6f, 0x6e,0x26,0x26,0x65,0x2e,0x6b,0x65,0x79,0x21,0x3d,0x3d,0x72,0x6e,0x7c,0x7c,0x65, 0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28, 0x66,0x6e,0x29,0x29,0x3a,0x21,0x61,0x6e,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x2e, 0x6b,0x65,0x79,0x29,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x73,0x28,0x6c,0x6e,0x29,0x3b,0x69,0x66,0x28,0x28,0x74,0x7c,0x7c, 0x65,0x2e,0x6b,0x65,0x79,0x21,0x3d,0x3d,0x74,0x6e,0x29,0x26,0x26,0x28,0x65,0x2e, 0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29, 0x2c,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x2c,0x21,0x62,0x28,0x74,0x68,0x69,0x73,0x29,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6d,0x61,0x74,0x63,0x68, 0x65,0x73,0x28,0x73,0x6e,0x29,0x3f,0x74,0x68,0x69,0x73,0x3a,0x74,0x65,0x2e,0x70, 0x72,0x65,0x76,0x28,0x74,0x68,0x69,0x73,0x2c,0x73,0x6e,0x29,0x5b,0x30,0x5d,0x2c, 0x6f,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49, 0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x72,0x29,0x3b,0x69,0x66,0x28,0x65,0x2e, 0x6b,0x65,0x79,0x21,0x3d,0x3d,0x74,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x6b,0x65,0x79,0x3d,0x3d,0x3d,0x72,0x6e,0x7c,0x7c,0x65,0x2e,0x6b,0x65, 0x79,0x3d,0x3d,0x3d,0x6f,0x6e,0x3f,0x28,0x74,0x7c,0x7c,0x6f,0x2e,0x73,0x68,0x6f, 0x77,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x6f,0x2e,0x5f,0x73,0x65,0x6c,0x65, 0x63,0x74,0x4d,0x65,0x6e,0x75,0x49,0x74,0x65,0x6d,0x28,0x65,0x29,0x29,0x3a,0x76, 0x6f,0x69,0x64,0x28,0x74,0x26,0x26,0x65,0x2e,0x6b,0x65,0x79,0x21,0x3d,0x3d,0x6e, 0x6e,0x7c,0x7c,0x6e,0x2e,0x63,0x6c,0x65,0x61,0x72,0x4d,0x65,0x6e,0x75,0x73,0x28, 0x29,0x29,0x3b,0x6f,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x7d,0x7d,0x7d,0x7d,0x5d, 0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2c,0x63,0x6e,0x2c,0x73,0x6e,0x2c,0x5f,0x6e,0x2e,0x64, 0x61,0x74,0x61,0x41,0x70,0x69,0x4b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x48,0x61,0x6e, 0x64,0x6c,0x65,0x72,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2c,0x63,0x6e,0x2c,0x66,0x6e,0x2c,0x5f,0x6e,0x2e,0x64,0x61,0x74, 0x61,0x41,0x70,0x69,0x4b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x48,0x61,0x6e,0x64,0x6c, 0x65,0x72,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x2c,0x75,0x6e,0x2c,0x5f,0x6e,0x2e,0x63,0x6c,0x65,0x61,0x72,0x4d,0x65,0x6e, 0x75,0x73,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x2c,0x22,0x6b,0x65,0x79,0x75,0x70,0x2e,0x62,0x73,0x2e,0x64,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x5f, 0x6e,0x2e,0x63,0x6c,0x65,0x61,0x72,0x4d,0x65,0x6e,0x75,0x73,0x29,0x2c,0x48,0x2e, 0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x75,0x6e,0x2c,0x73, 0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65, 0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28, 0x29,0x2c,0x5f,0x6e,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65, 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x2e,0x74, 0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x7d,0x29,0x29,0x2c,0x6a,0x28,0x5f,0x6e,0x29, 0x3b,0x76,0x61,0x72,0x20,0x77,0x6e,0x3d,0x22,0x2e,0x66,0x69,0x78,0x65,0x64,0x2d, 0x74,0x6f,0x70,0x2c,0x20,0x2e,0x66,0x69,0x78,0x65,0x64,0x2d,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x2c,0x20,0x2e,0x69,0x73,0x2d,0x66,0x69,0x78,0x65,0x64,0x2c,0x20,0x2e, 0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x74,0x6f,0x70,0x22,0x2c,0x4f,0x6e,0x3d,0x22, 0x2e,0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x74,0x6f,0x70,0x22,0x2c,0x78,0x6e,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x67,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x57,0x69,0x64,0x74,0x68,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74, 0x68,0x2e,0x61,0x62,0x73,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x69,0x6e,0x6e, 0x65,0x72,0x57,0x69,0x64,0x74,0x68,0x2d,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x68,0x69,0x64,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x28,0x29,0x3b, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x4f,0x76,0x65, 0x72,0x46,0x6c,0x6f,0x77,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x65, 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2c,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52,0x69,0x67,0x68,0x74,0x22,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x2b,0x65,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x73,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x73,0x28,0x77,0x6e,0x2c,0x22,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2b,0x65,0x7d, 0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x65,0x74,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x4f,0x6e, 0x2c,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x2d,0x65,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x4f,0x76,0x65,0x72,0x46,0x6c, 0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x61,0x76,0x65,0x49, 0x6e,0x69,0x74,0x69,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x6f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x65,0x74,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2c, 0x6f,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x28, 0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x70,0x70,0x6c,0x79,0x4d,0x61,0x6e, 0x69,0x70,0x75,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x69,0x66,0x28,0x21,0x28,0x65,0x21,0x3d,0x3d,0x72,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x26,0x26,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x69,0x6e,0x6e, 0x65,0x72,0x57,0x69,0x64,0x74,0x68,0x3e,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x57,0x69,0x64,0x74,0x68,0x2b,0x6f,0x29,0x29,0x7b,0x72,0x2e,0x5f,0x73,0x61,0x76, 0x65,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64,0x53, 0x74,0x79,0x6c,0x65,0x28,0x65,0x29,0x5b,0x74,0x5d,0x3b,0x65,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x5b,0x74,0x5d,0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x6e,0x28,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x46,0x6c, 0x6f,0x61,0x74,0x28,0x69,0x29,0x29,0x2c,0x22,0x70,0x78,0x22,0x29,0x7d,0x7d,0x29, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x73,0x65,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72,0x65,0x73,0x65,0x74,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72, 0x65,0x73,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52,0x69,0x67,0x68, 0x74,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72,0x65,0x73,0x65,0x74,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73, 0x28,0x77,0x6e,0x2c,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52,0x69,0x67,0x68, 0x74,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72,0x65,0x73,0x65,0x74,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73, 0x28,0x4f,0x6e,0x2c,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x52,0x69,0x67,0x68,0x74, 0x22,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x61,0x76,0x65, 0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x73,0x74, 0x79,0x6c,0x65,0x5b,0x74,0x5d,0x3b,0x6e,0x26,0x26,0x65,0x65,0x2e,0x73,0x65,0x74, 0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x72,0x65, 0x73,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x61,0x70,0x70,0x6c,0x79,0x4d,0x61,0x6e,0x69,0x70,0x75,0x6c,0x61,0x74,0x69,0x6f, 0x6e,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x65,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x65,0x2e,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x28,0x65,0x2c,0x74,0x29,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x6e,0x3f,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76, 0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x29,0x3a,0x28,0x65,0x65, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x28,0x65,0x2c,0x74,0x29,0x2c,0x65,0x2e,0x73,0x74,0x79,0x6c, 0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x5f,0x61,0x70,0x70,0x6c,0x79,0x4d,0x61,0x6e,0x69,0x70,0x75,0x6c, 0x61,0x74,0x69,0x6f,0x6e,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x68,0x28,0x65,0x29,0x3f,0x74,0x28,0x65,0x29,0x3a,0x74,0x65,0x2e, 0x66,0x69,0x6e,0x64,0x28,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x74,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x69,0x73,0x4f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x69,0x6e,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x28,0x29,0x3e, 0x30,0x7d,0x7d,0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x2c,0x45,0x6e,0x3d,0x7b,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6d,0x6f,0x64,0x61,0x6c,0x2d, 0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x2c,0x69,0x73,0x56,0x69,0x73,0x69, 0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x64,0x3a,0x21,0x31,0x2c,0x72,0x6f,0x6f,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x3a,0x22,0x62,0x6f,0x64,0x79,0x22,0x2c,0x63,0x6c,0x69,0x63,0x6b,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x6a,0x6e,0x3d,0x7b, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x2c,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x22,0x62,0x6f, 0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65, 0x64,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x72,0x6f,0x6f,0x74, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x28,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x7c,0x73,0x74,0x72,0x69,0x6e,0x67,0x29,0x22,0x2c,0x63,0x6c,0x69,0x63,0x6b, 0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x22,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x7c,0x6e,0x75,0x6c,0x6c,0x29,0x22,0x7d,0x2c,0x6b,0x6e,0x3d,0x22, 0x73,0x68,0x6f,0x77,0x22,0x2c,0x53,0x6e,0x3d,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64, 0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x22, 0x2c,0x43,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x6c,0x28,0x74, 0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e, 0x66,0x69,0x67,0x28,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41, 0x70,0x70,0x65,0x6e,0x64,0x65,0x64,0x3d,0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x73,0x68,0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x2e,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c,0x65,0x3f,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x70,0x70,0x65,0x6e,0x64,0x28,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x73,0x41,0x6e, 0x69,0x6d,0x61,0x74,0x65,0x64,0x26,0x26,0x77,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x6b, 0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, 0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6b,0x28,0x65,0x29,0x7d,0x29,0x29,0x29,0x3a,0x6b, 0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68,0x69,0x64,0x65, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x73,0x56,0x69, 0x73,0x69,0x62,0x6c,0x65,0x3f,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c, 0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x6b,0x6e,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x41,0x6e,0x69,0x6d, 0x61,0x74,0x69,0x6f,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x2e,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x28,0x29,0x2c,0x6b,0x28, 0x65,0x29,0x7d,0x29,0x29,0x29,0x3a,0x6b,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x22,0x64,0x69,0x76,0x22,0x29,0x3b,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61, 0x74,0x65,0x64,0x26,0x26,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x61,0x64,0x64,0x28,0x22,0x66,0x61,0x64,0x65,0x22,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x65,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f, 0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65, 0x3d,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x45,0x6e,0x29,0x2c,0x22,0x6f,0x62,0x6a, 0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65, 0x3a,0x7b,0x7d,0x29,0x29,0x2e,0x72,0x6f,0x6f,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x3d,0x76,0x28,0x65,0x2e,0x72,0x6f,0x6f,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x29,0x2c,0x67,0x28,0x22,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x2c, 0x65,0x2c,0x6a,0x6e,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x5f,0x61,0x70,0x70,0x65,0x6e,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x70,0x70, 0x65,0x6e,0x64,0x65,0x64,0x7c,0x7c,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x2e,0x72,0x6f,0x6f,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65, 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x29,0x2c,0x53,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x6b,0x28,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63, 0x6c,0x69,0x63,0x6b,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x7d,0x29,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x70,0x70,0x65,0x6e,0x64,0x65, 0x64,0x3d,0x21,0x30,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x69, 0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73, 0x41,0x70,0x70,0x65,0x6e,0x64,0x65,0x64,0x26,0x26,0x28,0x48,0x2e,0x6f,0x66,0x66, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x53, 0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x73,0x41,0x70,0x70,0x65,0x6e,0x64,0x65,0x64,0x3d,0x21,0x31,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x41, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x53,0x28,0x65,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x29,0x7d,0x7d,0x5d,0x29,0x2c, 0x65,0x7d,0x28,0x29,0x2c,0x41,0x6e,0x3d,0x7b,0x74,0x72,0x61,0x70,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x75,0x74,0x6f,0x66,0x6f, 0x63,0x75,0x73,0x3a,0x21,0x30,0x7d,0x2c,0x54,0x6e,0x3d,0x7b,0x74,0x72,0x61,0x70, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x22,0x2c,0x61,0x75,0x74,0x6f,0x66,0x6f,0x63,0x75,0x73,0x3a,0x22,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x22,0x7d,0x2c,0x50,0x6e,0x3d,0x22,0x2e,0x62,0x73,0x2e,0x66, 0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x22,0x2c,0x44,0x6e,0x3d,0x22,0x62,0x61, 0x63,0x6b,0x77,0x61,0x72,0x64,0x22,0x2c,0x4e,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65, 0x28,0x74,0x29,0x7b,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x74,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x3d,0x21,0x31,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c,0x61,0x73,0x74,0x54,0x61,0x62,0x4e,0x61,0x76, 0x44,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2c,0x6e,0x3d,0x74,0x2e,0x74,0x72,0x61,0x70,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x72,0x3d,0x74,0x2e,0x61,0x75,0x74,0x6f,0x66,0x6f, 0x63,0x75,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x63,0x74,0x69, 0x76,0x65,0x7c,0x7c,0x28,0x72,0x26,0x26,0x6e,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28, 0x29,0x2c,0x48,0x2e,0x6f,0x66,0x66,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x2c,0x50,0x6e,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x2c,0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x2e,0x62,0x73,0x2e,0x66, 0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x46,0x6f,0x63,0x75,0x73,0x69,0x6e,0x28,0x74, 0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x2c,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x2e,0x74,0x61,0x62,0x2e, 0x62,0x73,0x2e,0x66,0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4b,0x65,0x79,0x64,0x6f, 0x77,0x6e,0x28,0x74,0x29,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69, 0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x3d,0x21,0x30,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x64,0x65,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x26, 0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65, 0x3d,0x21,0x31,0x2c,0x48,0x2e,0x6f,0x66,0x66,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x2c,0x50,0x6e,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x46,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74, 0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x74,0x72,0x61,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3b,0x69,0x66,0x28,0x74, 0x21,0x3d,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x74,0x21,0x3d, 0x3d,0x6e,0x26,0x26,0x21,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28, 0x74,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x65,0x2e,0x66,0x6f,0x63, 0x75,0x73,0x61,0x62,0x6c,0x65,0x43,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x28,0x6e, 0x29,0x3b,0x30,0x3d,0x3d,0x3d,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x6e, 0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c, 0x61,0x73,0x74,0x54,0x61,0x62,0x4e,0x61,0x76,0x44,0x69,0x72,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x3d,0x3d,0x3d,0x44,0x6e,0x3f,0x72,0x5b,0x72,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x2d,0x31,0x5d,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x3a,0x72,0x5b, 0x30,0x5d,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4b,0x65,0x79,0x64,0x6f, 0x77,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x54,0x61,0x62,0x22,0x3d,0x3d,0x3d,0x65,0x2e, 0x6b,0x65,0x79,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c,0x61,0x73,0x74, 0x54,0x61,0x62,0x4e,0x61,0x76,0x44,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3d, 0x65,0x2e,0x73,0x68,0x69,0x66,0x74,0x4b,0x65,0x79,0x3f,0x44,0x6e,0x3a,0x22,0x66, 0x6f,0x72,0x77,0x61,0x72,0x64,0x22,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x41, 0x6e,0x29,0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a,0x7b,0x7d,0x29,0x2c,0x67,0x28,0x22,0x66, 0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x22,0x2c,0x65,0x2c,0x54,0x6e,0x29,0x2c, 0x65,0x7d,0x7d,0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x2c,0x49,0x6e,0x3d,0x22,0x6d, 0x6f,0x64,0x61,0x6c,0x22,0x2c,0x52,0x6e,0x3d,0x22,0x45,0x73,0x63,0x61,0x70,0x65, 0x22,0x2c,0x4c,0x6e,0x3d,0x7b,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x3a,0x21, 0x30,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x3a,0x21,0x30,0x2c,0x66,0x6f, 0x63,0x75,0x73,0x3a,0x21,0x30,0x7d,0x2c,0x46,0x6e,0x3d,0x7b,0x62,0x61,0x63,0x6b, 0x64,0x72,0x6f,0x70,0x3a,0x22,0x28,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x7c,0x73, 0x74,0x72,0x69,0x6e,0x67,0x29,0x22,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, 0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x66,0x6f,0x63,0x75,0x73, 0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x7d,0x2c,0x4d,0x6e,0x3d,0x22, 0x68,0x69,0x64,0x64,0x65,0x6e,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x22, 0x2c,0x42,0x6e,0x3d,0x22,0x73,0x68,0x6f,0x77,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x22,0x2c,0x7a,0x6e,0x3d,0x22,0x72,0x65,0x73,0x69,0x7a,0x65,0x2e,0x62, 0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x2c,0x55,0x6e,0x3d,0x22,0x63,0x6c,0x69, 0x63,0x6b,0x2e,0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x2e,0x62,0x73,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x22,0x2c,0x57,0x6e,0x3d,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e, 0x2e,0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x22,0x2c,0x24,0x6e,0x3d,0x22,0x6d,0x6f,0x75,0x73,0x65,0x64,0x6f,0x77,0x6e, 0x2e,0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x22,0x2c,0x48,0x6e,0x3d,0x22,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x6f,0x70,0x65, 0x6e,0x22,0x2c,0x56,0x6e,0x3d,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x47,0x6e,0x3d, 0x22,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x73,0x74,0x61,0x74,0x69,0x63,0x22,0x2c,0x71, 0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28, 0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x28,0x74, 0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x6f,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x3d,0x6f,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72, 0x29,0x2c,0x6f,0x2e,0x5f,0x64,0x69,0x61,0x6c,0x6f,0x67,0x3d,0x74,0x65,0x2e,0x66, 0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x22,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x64, 0x69,0x61,0x6c,0x6f,0x67,0x22,0x2c,0x6f,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x29,0x2c,0x6f,0x2e,0x5f,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x3d,0x6f, 0x2e,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x42,0x61,0x63,0x6b, 0x44,0x72,0x6f,0x70,0x28,0x29,0x2c,0x6f,0x2e,0x5f,0x66,0x6f,0x63,0x75,0x73,0x74, 0x72,0x61,0x70,0x3d,0x6f,0x2e,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, 0x65,0x46,0x6f,0x63,0x75,0x73,0x54,0x72,0x61,0x70,0x28,0x29,0x2c,0x6f,0x2e,0x5f, 0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x5f,0x69,0x67, 0x6e,0x6f,0x72,0x65,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x43,0x6c,0x69,0x63, 0x6b,0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x5f,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x42,0x61,0x72,0x3d,0x6e,0x65,0x77,0x20,0x78,0x6e,0x2c,0x6f, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77, 0x6e,0x3f,0x74,0x68,0x69,0x73,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x3a,0x74,0x68, 0x69,0x73,0x2e,0x73,0x68,0x6f,0x77,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68, 0x6f,0x77,0x6e,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x7c,0x7c,0x48,0x2e,0x74,0x72, 0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x42,0x6e,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54, 0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x7d,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3d,0x21,0x30,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x28,0x29, 0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x42,0x61,0x72,0x2e,0x68,0x69,0x64, 0x65,0x28,0x29,0x2c,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64, 0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28, 0x48,0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x64,0x6a,0x75,0x73,0x74, 0x44,0x69,0x61,0x6c,0x6f,0x67,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73, 0x65,0x74,0x45,0x73,0x63,0x61,0x70,0x65,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x65,0x74,0x52,0x65,0x73,0x69,0x7a,0x65,0x45, 0x76,0x65,0x6e,0x74,0x28,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2c,0x24,0x6e,0x2c,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x48,0x2e,0x6f,0x6e,0x65,0x28,0x74,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x75, 0x70,0x2e,0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x3d,0x3d,0x74,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x74,0x2e,0x5f,0x69,0x67,0x6e,0x6f, 0x72,0x65,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x43,0x6c,0x69,0x63,0x6b,0x3d, 0x21,0x30,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x73,0x68,0x6f,0x77,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x74,0x2e,0x5f,0x73,0x68,0x6f,0x77,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x65, 0x29,0x7d,0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68,0x69, 0x64,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b, 0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e, 0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x26,0x26,0x21,0x48,0x2e,0x74,0x72,0x69, 0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65, 0x6e,0x74,0x65,0x64,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68, 0x6f,0x77,0x6e,0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x28,0x29,0x3b, 0x74,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e, 0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x3d,0x21,0x30,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x73,0x65,0x74,0x45,0x73,0x63,0x61,0x70,0x65,0x45,0x76,0x65, 0x6e,0x74,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x65,0x74,0x52,0x65, 0x73,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x66,0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x2e,0x64,0x65,0x61,0x63, 0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x56,0x6e,0x29,0x2c,0x48,0x2e,0x6f,0x66, 0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x55,0x6e,0x29,0x2c,0x48,0x2e,0x6f,0x66,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x64,0x69,0x61,0x6c,0x6f,0x67,0x2c,0x24,0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x5f,0x68,0x69,0x64,0x65,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29, 0x7d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2c,0x74,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x69,0x73, 0x70,0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x5b,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x64,0x69,0x61,0x6c,0x6f,0x67,0x5d,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x2e,0x6f,0x66,0x66,0x28,0x65, 0x2c,0x22,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x29,0x7d,0x29,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2e, 0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x66,0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x2e,0x64,0x65,0x61,0x63,0x74,0x69, 0x76,0x61,0x74,0x65,0x28,0x29,0x2c,0x72,0x28,0x6f,0x28,0x6e,0x2e,0x70,0x72,0x6f, 0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65, 0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x61,0x64,0x6a,0x75,0x73,0x74,0x44,0x69,0x61,0x6c,0x6f,0x67,0x28,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, 0x7a,0x65,0x42,0x61,0x63,0x6b,0x44,0x72,0x6f,0x70,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x43,0x6e,0x28,0x7b,0x69,0x73,0x56,0x69, 0x73,0x69,0x62,0x6c,0x65,0x3a,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x62,0x61,0x63,0x6b,0x64, 0x72,0x6f,0x70,0x29,0x2c,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x3a, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64, 0x28,0x29,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x6e, 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x46,0x6f,0x63,0x75,0x73,0x54,0x72,0x61, 0x70,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x4e, 0x6e,0x28,0x7b,0x74,0x72,0x61,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69, 0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x69,0x28, 0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x4c,0x6e,0x29,0x2c,0x65,0x65,0x2e,0x67,0x65, 0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x2c, 0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x65,0x3f,0x65,0x3a,0x7b,0x7d,0x29,0x2c,0x67,0x28,0x49,0x6e,0x2c,0x65,0x2c, 0x46,0x6e,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73, 0x68,0x6f,0x77,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x28,0x29,0x2c,0x72,0x3d, 0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x22,0x2e,0x6d,0x6f,0x64, 0x61,0x6c,0x2d,0x62,0x6f,0x64,0x79,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x64, 0x69,0x61,0x6c,0x6f,0x67,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x26, 0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x70, 0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79, 0x70,0x65,0x3d,0x3d,0x3d,0x4e,0x6f,0x64,0x65,0x2e,0x45,0x4c,0x45,0x4d,0x45,0x4e, 0x54,0x5f,0x4e,0x4f,0x44,0x45,0x7c,0x7c,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x2e,0x62,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61, 0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74, 0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x6d,0x6f, 0x64,0x61,0x6c,0x22,0x2c,0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x28,0x22,0x72,0x6f,0x6c,0x65,0x22,0x2c,0x22,0x64,0x69,0x61,0x6c, 0x6f,0x67,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3d,0x30,0x2c,0x72, 0x26,0x26,0x28,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3d,0x30, 0x29,0x2c,0x6e,0x26,0x26,0x77,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64, 0x64,0x28,0x56,0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75, 0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x66,0x6f,0x63,0x75,0x73,0x26,0x26,0x74,0x2e,0x5f,0x66,0x6f,0x63,0x75,0x73,0x74, 0x72,0x61,0x70,0x2e,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x29,0x2c,0x74, 0x2e,0x5f,0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e, 0x67,0x3d,0x21,0x31,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x6e, 0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61, 0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x7d,0x29,0x7d,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2c,0x6e,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x65,0x74,0x45,0x73,0x63,0x61, 0x70,0x65,0x45,0x76,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f, 0x77,0x6e,0x3f,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x57,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x26,0x26,0x74,0x2e,0x6b,0x65,0x79,0x3d, 0x3d,0x3d,0x52,0x6e,0x3f,0x28,0x74,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44, 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x65,0x2e,0x68,0x69,0x64,0x65,0x28, 0x29,0x29,0x3a,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79, 0x62,0x6f,0x61,0x72,0x64,0x7c,0x7c,0x74,0x2e,0x6b,0x65,0x79,0x21,0x3d,0x3d,0x52, 0x6e,0x7c,0x7c,0x65,0x2e,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x42,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7d,0x29,0x29,0x3a,0x48,0x2e,0x6f,0x66,0x66,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x57,0x6e,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x65,0x74,0x52,0x65,0x73,0x69,0x7a,0x65,0x45, 0x76,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69, 0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3f, 0x48,0x2e,0x6f,0x6e,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x7a,0x6e,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x5f,0x61,0x64,0x6a,0x75,0x73,0x74,0x44,0x69,0x61,0x6c,0x6f, 0x67,0x28,0x29,0x7d,0x29,0x29,0x3a,0x48,0x2e,0x6f,0x66,0x66,0x28,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2c,0x7a,0x6e,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x5f,0x68,0x69,0x64,0x65,0x4d,0x6f,0x64,0x61,0x6c,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64, 0x65,0x6e,0x22,0x2c,0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x6d,0x6f,0x64,0x61, 0x6c,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x28,0x22,0x72,0x6f,0x6c,0x65,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x73,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x3d, 0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f, 0x70,0x2e,0x68,0x69,0x64,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76, 0x65,0x28,0x48,0x6e,0x29,0x2c,0x65,0x2e,0x5f,0x72,0x65,0x73,0x65,0x74,0x41,0x64, 0x6a,0x75,0x73,0x74,0x6d,0x65,0x6e,0x74,0x73,0x28,0x29,0x2c,0x65,0x2e,0x5f,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x42,0x61,0x72,0x2e,0x72,0x65,0x73,0x65,0x74,0x28,0x29, 0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x65,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x4d,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x68,0x6f,0x77,0x42,0x61,0x63,0x6b,0x64,0x72, 0x6f,0x70,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73, 0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x55,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x74,0x2e,0x5f,0x69,0x67,0x6e,0x6f,0x72,0x65,0x42,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x43,0x6c,0x69,0x63,0x6b,0x3f,0x74,0x2e,0x5f,0x69,0x67, 0x6e,0x6f,0x72,0x65,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x43,0x6c,0x69,0x63, 0x6b,0x3d,0x21,0x31,0x3a,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x3d,0x3d, 0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x61,0x72,0x67,0x65,0x74,0x26, 0x26,0x28,0x21,0x30,0x3d,0x3d,0x3d,0x74,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x2e,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x3f,0x74,0x2e,0x68,0x69,0x64,0x65, 0x28,0x29,0x3a,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x22,0x3d,0x3d,0x3d,0x74,0x2e, 0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70, 0x26,0x26,0x74,0x2e,0x5f,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x42,0x61,0x63,0x6b, 0x64,0x72,0x6f,0x70,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x29,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x61,0x63,0x6b,0x64, 0x72,0x6f,0x70,0x2e,0x73,0x68,0x6f,0x77,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x66,0x61,0x64,0x65,0x22, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x74,0x72,0x69,0x67,0x67, 0x65,0x72,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x54,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69, 0x73,0x3b,0x69,0x66,0x28,0x21,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x68, 0x69,0x64,0x65,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x2e,0x62,0x73,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50, 0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6e,0x3d, 0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2c,0x72,0x3d,0x74,0x2e, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x6f,0x3d,0x74, 0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c,0x69,0x3d,0x72,0x3e,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74, 0x3b,0x21,0x69,0x26,0x26,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3d,0x3d,0x3d, 0x6f,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x59,0x7c,0x7c,0x6e,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x47,0x6e,0x29,0x7c,0x7c,0x28,0x69,0x7c, 0x7c,0x28,0x6f,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x59,0x3d,0x22,0x68, 0x69,0x64,0x64,0x65,0x6e,0x22,0x29,0x2c,0x6e,0x2e,0x61,0x64,0x64,0x28,0x47,0x6e, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x47,0x6e,0x29,0x2c,0x69, 0x7c,0x7c,0x65,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61, 0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6f, 0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x59,0x3d,0x22,0x22,0x7d,0x29,0x2c, 0x65,0x2e,0x5f,0x64,0x69,0x61,0x6c,0x6f,0x67,0x29,0x7d,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x64,0x69,0x61,0x6c,0x6f,0x67,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29, 0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x61,0x64,0x6a,0x75, 0x73,0x74,0x44,0x69,0x61,0x6c,0x6f,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3e,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68, 0x74,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x42,0x61,0x72,0x2e,0x67,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x28,0x29,0x2c,0x6e, 0x3d,0x74,0x3e,0x30,0x3b,0x28,0x21,0x6e,0x26,0x26,0x65,0x26,0x26,0x21,0x45,0x28, 0x29,0x7c,0x7c,0x6e,0x26,0x26,0x21,0x65,0x26,0x26,0x45,0x28,0x29,0x29,0x26,0x26, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x4c,0x65,0x66,0x74, 0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x70,0x78, 0x22,0x29,0x29,0x2c,0x28,0x6e,0x26,0x26,0x21,0x65,0x26,0x26,0x21,0x45,0x28,0x29, 0x7c,0x7c,0x21,0x6e,0x26,0x26,0x65,0x26,0x26,0x45,0x28,0x29,0x29,0x26,0x26,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74, 0x79,0x6c,0x65,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52,0x69,0x67,0x68,0x74, 0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x70,0x78, 0x22,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x72,0x65,0x73, 0x65,0x74,0x41,0x64,0x6a,0x75,0x73,0x74,0x6d,0x65,0x6e,0x74,0x73,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74, 0x79,0x6c,0x65,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x4c,0x65,0x66,0x74,0x3d, 0x22,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52,0x69, 0x67,0x68,0x74,0x3d,0x22,0x22,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4c,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d,0x45,0x22, 0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x49,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63, 0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x4f, 0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28, 0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69, 0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b,0x69, 0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x5b,0x65,0x5d,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72, 0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x6e, 0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65, 0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x72,0x5b,0x65,0x5d,0x28,0x74,0x29,0x7d,0x7d, 0x29,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x48,0x2e,0x6f, 0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x63,0x6c,0x69,0x63, 0x6b,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2e,0x64,0x61,0x74,0x61,0x2d, 0x61,0x70,0x69,0x22,0x2c,0x27,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74, 0x6f,0x67,0x67,0x6c,0x65,0x3d,0x22,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x5d,0x27,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x64,0x28,0x74,0x68,0x69,0x73, 0x29,0x3b,0x5b,0x22,0x41,0x22,0x2c,0x22,0x41,0x52,0x45,0x41,0x22,0x5d,0x2e,0x69, 0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x67, 0x4e,0x61,0x6d,0x65,0x29,0x26,0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74, 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x65,0x28, 0x6e,0x2c,0x42,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65, 0x6e,0x74,0x65,0x64,0x7c,0x7c,0x48,0x2e,0x6f,0x6e,0x65,0x28,0x6e,0x2c,0x4d,0x6e, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6d,0x28,0x74, 0x29,0x26,0x26,0x74,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64, 0x4f,0x6e,0x65,0x28,0x22,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x2e,0x73,0x68,0x6f,0x77, 0x22,0x29,0x3b,0x72,0x26,0x26,0x71,0x6e,0x2e,0x67,0x65,0x74,0x49,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x28,0x72,0x29,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x2c,0x71, 0x6e,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x28,0x6e,0x29,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28, 0x74,0x68,0x69,0x73,0x29,0x7d,0x29,0x29,0x2c,0x4b,0x28,0x71,0x6e,0x29,0x2c,0x6a, 0x28,0x71,0x6e,0x29,0x3b,0x76,0x61,0x72,0x20,0x4b,0x6e,0x3d,0x22,0x6f,0x66,0x66, 0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x2c,0x59,0x6e,0x3d,0x7b,0x62,0x61,0x63,0x6b, 0x64,0x72,0x6f,0x70,0x3a,0x21,0x30,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, 0x3a,0x21,0x30,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x21,0x31,0x7d,0x2c,0x51, 0x6e,0x3d,0x7b,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x3a,0x22,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x22,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x3a,0x22, 0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a, 0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x7d,0x2c,0x58,0x6e,0x3d,0x22,0x73, 0x68,0x6f,0x77,0x22,0x2c,0x4a,0x6e,0x3d,0x22,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e, 0x76,0x61,0x73,0x2e,0x73,0x68,0x6f,0x77,0x22,0x2c,0x5a,0x6e,0x3d,0x22,0x68,0x69, 0x64,0x64,0x65,0x6e,0x2e,0x62,0x73,0x2e,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61, 0x73,0x22,0x2c,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63, 0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65, 0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x6f,0x3d,0x74,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x3d,0x6f,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66, 0x69,0x67,0x28,0x72,0x29,0x2c,0x6f,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e, 0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x5f,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x3d, 0x6f,0x2e,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x42,0x61,0x63, 0x6b,0x44,0x72,0x6f,0x70,0x28,0x29,0x2c,0x6f,0x2e,0x5f,0x66,0x6f,0x63,0x75,0x73, 0x74,0x72,0x61,0x70,0x3d,0x6f,0x2e,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, 0x7a,0x65,0x46,0x6f,0x63,0x75,0x73,0x54,0x72,0x61,0x70,0x28,0x29,0x2c,0x6f,0x2e, 0x5f,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65, 0x72,0x73,0x28,0x29,0x2c,0x6f,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28, 0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3f,0x74,0x68,0x69,0x73,0x2e,0x68,0x69,0x64, 0x65,0x28,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x68,0x6f,0x77,0x28,0x65,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x7c,0x7c,0x48,0x2e,0x74,0x72,0x69, 0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x2e,0x62,0x73,0x2e,0x6f,0x66,0x66,0x63, 0x61,0x6e,0x76,0x61,0x73,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54, 0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x7d,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3d,0x21,0x30,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c, 0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3d,0x22,0x76,0x69, 0x73,0x69,0x62,0x6c,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x2e,0x73,0x68,0x6f,0x77,0x28,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x7c,0x7c,0x28,0x6e,0x65,0x77,0x20,0x78,0x6e,0x29,0x2e,0x68,0x69,0x64,0x65,0x28, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28, 0x22,0x61,0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d, 0x6d,0x6f,0x64,0x61,0x6c,0x22,0x2c,0x21,0x30,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x72,0x6f,0x6c,0x65,0x22,0x2c,0x22,0x64,0x69, 0x61,0x6c,0x6f,0x67,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61, 0x64,0x64,0x28,0x58,0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65, 0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x7c,0x7c,0x74,0x2e,0x5f,0x66,0x6f,0x63,0x75, 0x73,0x74,0x72,0x61,0x70,0x2e,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x29, 0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e, 0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61, 0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x7d,0x29,0x7d,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x21,0x30, 0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68,0x69,0x64,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x26,0x26,0x28,0x48,0x2e,0x74, 0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x6f,0x66, 0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x66,0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70,0x2e,0x64,0x65,0x61, 0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6c,0x75,0x72,0x28,0x29,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3d,0x21,0x31,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c, 0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x58, 0x6e,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f, 0x70,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71, 0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x2c,0x21, 0x30,0x29,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61, 0x72,0x69,0x61,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x29,0x2c,0x65,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74, 0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x72,0x6f,0x6c,0x65,0x22,0x29,0x2c,0x65, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e, 0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3d,0x22,0x68,0x69,0x64,0x64, 0x65,0x6e,0x22,0x2c,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x7c,0x7c,0x28,0x6e,0x65,0x77,0x20,0x78,0x6e,0x29,0x2e,0x72, 0x65,0x73,0x65,0x74,0x28,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72, 0x28,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x5a,0x6e,0x29,0x7d, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x21,0x30,0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x69, 0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x62,0x61, 0x63,0x6b,0x64,0x72,0x6f,0x70,0x2e,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x28,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x66,0x6f,0x63,0x75,0x73,0x74,0x72,0x61,0x70, 0x2e,0x64,0x65,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x29,0x2c,0x72,0x28, 0x6f,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22, 0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x69,0x28,0x69,0x28,0x69,0x28,0x7b, 0x7d,0x2c,0x59,0x6e,0x29,0x2c,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61,0x74,0x61, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x2c,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65,0x3a, 0x7b,0x7d,0x29,0x2c,0x67,0x28,0x4b,0x6e,0x2c,0x65,0x2c,0x51,0x6e,0x29,0x2c,0x65, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x6e,0x69,0x74,0x69,0x61, 0x6c,0x69,0x7a,0x65,0x42,0x61,0x63,0x6b,0x44,0x72,0x6f,0x70,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x65,0x77,0x20,0x43,0x6e,0x28,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x3a,0x22,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x61, 0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x2c,0x69,0x73,0x56,0x69,0x73,0x69,0x62,0x6c, 0x65,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x62, 0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2c,0x69,0x73,0x41,0x6e,0x69,0x6d,0x61,0x74, 0x65,0x64,0x3a,0x21,0x30,0x2c,0x72,0x6f,0x6f,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x2c,0x63,0x6c,0x69,0x63,0x6b, 0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x68,0x69,0x64, 0x65,0x28,0x29,0x7d,0x7d,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x46,0x6f,0x63,0x75,0x73,0x54, 0x72,0x61,0x70,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77, 0x20,0x4e,0x6e,0x28,0x7b,0x74,0x72,0x61,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x61,0x64,0x64,0x45,0x76,0x65, 0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6b,0x65,0x79, 0x64,0x6f,0x77,0x6e,0x2e,0x64,0x69,0x73,0x6d,0x69,0x73,0x73,0x2e,0x62,0x73,0x2e, 0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x26,0x26,0x22,0x45,0x73,0x63, 0x61,0x70,0x65,0x22,0x3d,0x3d,0x3d,0x74,0x2e,0x6b,0x65,0x79,0x26,0x26,0x65,0x2e, 0x68,0x69,0x64,0x65,0x28,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d,0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4b,0x6e,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x59,0x6e,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72, 0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x2e,0x67,0x65,0x74, 0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b, 0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b,0x65,0x5d, 0x7c,0x7c,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x22, 0x5f,0x22,0x29,0x7c,0x7c,0x22,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f, 0x72,0x22,0x3d,0x3d,0x3d,0x65,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77, 0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d, 0x65,0x74,0x68,0x6f,0x64,0x20,0x6e,0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x74,0x5b, 0x65,0x5d,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x7d,0x5d,0x29, 0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2c,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e,0x62,0x73,0x2e,0x6f, 0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70, 0x69,0x22,0x2c,0x27,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x3d,0x22,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x5d, 0x27,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x64,0x28,0x74,0x68, 0x69,0x73,0x29,0x3b,0x69,0x66,0x28,0x5b,0x22,0x41,0x22,0x2c,0x22,0x41,0x52,0x45, 0x41,0x22,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x74,0x68,0x69, 0x73,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29,0x26,0x26,0x65,0x2e,0x70,0x72, 0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x21, 0x62,0x28,0x74,0x68,0x69,0x73,0x29,0x29,0x7b,0x48,0x2e,0x6f,0x6e,0x65,0x28,0x6e, 0x2c,0x5a,0x6e,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x6d,0x28,0x74,0x29,0x26,0x26,0x74,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x7d, 0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64, 0x4f,0x6e,0x65,0x28,0x4a,0x6e,0x29,0x3b,0x72,0x26,0x26,0x72,0x21,0x3d,0x3d,0x6e, 0x26,0x26,0x65,0x72,0x2e,0x67,0x65,0x74,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x28,0x72,0x29,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x2c,0x65,0x72,0x2e,0x67,0x65, 0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, 0x65,0x28,0x6e,0x29,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x74,0x68,0x69,0x73, 0x29,0x7d,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x2c,0x22,0x6c,0x6f,0x61,0x64,0x2e,0x62,0x73,0x2e,0x6f,0x66,0x66,0x63,0x61, 0x6e,0x76,0x61,0x73,0x2e,0x64,0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x4a,0x6e,0x29,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x72,0x2e,0x67,0x65,0x74, 0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x28,0x65,0x29,0x2e,0x73,0x68,0x6f,0x77,0x28,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29, 0x2c,0x4b,0x28,0x65,0x72,0x29,0x2c,0x6a,0x28,0x65,0x72,0x29,0x3b,0x76,0x61,0x72, 0x20,0x74,0x72,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x5b,0x22,0x62,0x61, 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x22,0x2c,0x22,0x63,0x69,0x74,0x65,0x22, 0x2c,0x22,0x68,0x72,0x65,0x66,0x22,0x2c,0x22,0x69,0x74,0x65,0x6d,0x74,0x79,0x70, 0x65,0x22,0x2c,0x22,0x6c,0x6f,0x6e,0x67,0x64,0x65,0x73,0x63,0x22,0x2c,0x22,0x70, 0x6f,0x73,0x74,0x65,0x72,0x22,0x2c,0x22,0x73,0x72,0x63,0x22,0x2c,0x22,0x78,0x6c, 0x69,0x6e,0x6b,0x3a,0x68,0x72,0x65,0x66,0x22,0x5d,0x29,0x2c,0x6e,0x72,0x3d,0x2f, 0x5e,0x28,0x3f,0x3a,0x28,0x3f,0x3a,0x68,0x74,0x74,0x70,0x73,0x3f,0x7c,0x6d,0x61, 0x69,0x6c,0x74,0x6f,0x7c,0x66,0x74,0x70,0x7c,0x74,0x65,0x6c,0x7c,0x66,0x69,0x6c, 0x65,0x7c,0x73,0x6d,0x73,0x29,0x3a,0x7c,0x5b,0x5e,0x23,0x26,0x2f,0x3a,0x3f,0x5d, 0x2a,0x28,0x3f,0x3a,0x5b,0x23,0x2f,0x3f,0x5d,0x7c,0x24,0x29,0x29,0x2f,0x69,0x2c, 0x72,0x72,0x3d,0x2f,0x5e,0x64,0x61,0x74,0x61,0x3a,0x28,0x3f,0x3a,0x69,0x6d,0x61, 0x67,0x65,0x5c,0x2f,0x28,0x3f,0x3a,0x62,0x6d,0x70,0x7c,0x67,0x69,0x66,0x7c,0x6a, 0x70,0x65,0x67,0x7c,0x6a,0x70,0x67,0x7c,0x70,0x6e,0x67,0x7c,0x74,0x69,0x66,0x66, 0x7c,0x77,0x65,0x62,0x70,0x29,0x7c,0x76,0x69,0x64,0x65,0x6f,0x5c,0x2f,0x28,0x3f, 0x3a,0x6d,0x70,0x65,0x67,0x7c,0x6d,0x70,0x34,0x7c,0x6f,0x67,0x67,0x7c,0x77,0x65, 0x62,0x6d,0x29,0x7c,0x61,0x75,0x64,0x69,0x6f,0x5c,0x2f,0x28,0x3f,0x3a,0x6d,0x70, 0x33,0x7c,0x6f,0x67,0x61,0x7c,0x6f,0x67,0x67,0x7c,0x6f,0x70,0x75,0x73,0x29,0x29, 0x3b,0x62,0x61,0x73,0x65,0x36,0x34,0x2c,0x5b,0x5c,0x64,0x2b,0x2f,0x61,0x2d,0x7a, 0x5d,0x2b,0x3d,0x2a,0x24,0x2f,0x69,0x2c,0x6f,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65, 0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65, 0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3b,0x69,0x66,0x28,0x74,0x2e,0x69,0x6e,0x63, 0x6c,0x75,0x64,0x65,0x73,0x28,0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x74,0x72,0x2e,0x68,0x61,0x73,0x28,0x6e,0x29,0x7c,0x7c,0x42,0x6f,0x6f,0x6c,0x65, 0x61,0x6e,0x28,0x6e,0x72,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x56,0x61,0x6c,0x75,0x65,0x29,0x7c,0x7c,0x72,0x72,0x2e,0x74,0x65,0x73,0x74, 0x28,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x56,0x61,0x6c,0x75,0x65,0x29,0x29,0x3b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x66,0x69,0x6c,0x74,0x65, 0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x6f,0x66,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x7d,0x29,0x29,0x2c,0x6f,0x3d,0x30, 0x2c,0x69,0x3d,0x72,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6f,0x3c,0x69,0x3b, 0x6f,0x2b,0x2b,0x29,0x69,0x66,0x28,0x72,0x5b,0x6f,0x5d,0x2e,0x74,0x65,0x73,0x74, 0x28,0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x21,0x31,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x69,0x72,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b, 0x69,0x66,0x28,0x21,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x6e,0x26,0x26,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x28,0x65,0x29,0x3b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x28,0x6e,0x65,0x77,0x20,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2e,0x44,0x4f,0x4d,0x50,0x61,0x72,0x73,0x65,0x72,0x29,0x2e,0x70,0x61, 0x72,0x73,0x65,0x46,0x72,0x6f,0x6d,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x2c, 0x22,0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x22,0x29,0x2c,0x69,0x3d,0x28, 0x72,0x3d,0x5b,0x5d,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x72,0x2c,0x61,0x28,0x6f,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x71,0x75, 0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x22, 0x2a,0x22,0x29,0x29,0x29,0x2c,0x75,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x3d,0x69,0x5b, 0x65,0x5d,0x2c,0x75,0x3d,0x6f,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x2e, 0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3b,0x69,0x66, 0x28,0x21,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29, 0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x75,0x29,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6f,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x2c,0x22, 0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x22,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d, 0x28,0x72,0x3d,0x5b,0x5d,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x72,0x2c,0x61,0x28,0x6f,0x2e,0x61,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x73,0x29,0x29,0x2c,0x6c,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x74,0x5b,0x22,0x2a,0x22,0x5d,0x7c,0x7c,0x5b,0x5d,0x2c,0x74,0x5b, 0x75,0x5d,0x7c,0x7c,0x5b,0x5d,0x29,0x3b,0x63,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63, 0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6f, 0x72,0x28,0x65,0x2c,0x6c,0x29,0x7c,0x7c,0x6f,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x65,0x2e,0x6e,0x6f,0x64,0x65, 0x4e,0x61,0x6d,0x65,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x63,0x3d,0x30,0x2c,0x6c,0x3d, 0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x63,0x3c,0x6c,0x3b,0x63,0x2b,0x2b, 0x29,0x75,0x28,0x63,0x2c,0x6c,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f, 0x2e,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x7d, 0x76,0x61,0x72,0x20,0x61,0x72,0x3d,0x22,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22, 0x2c,0x75,0x72,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x5b,0x22,0x73,0x61, 0x6e,0x69,0x74,0x69,0x7a,0x65,0x22,0x2c,0x22,0x61,0x6c,0x6c,0x6f,0x77,0x4c,0x69, 0x73,0x74,0x22,0x2c,0x22,0x73,0x61,0x6e,0x69,0x74,0x69,0x7a,0x65,0x46,0x6e,0x22, 0x5d,0x29,0x2c,0x63,0x72,0x3d,0x7b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, 0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x74,0x65,0x6d,0x70,0x6c, 0x61,0x74,0x65,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x74,0x69,0x74, 0x6c,0x65,0x3a,0x22,0x28,0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x22,0x2c,0x74, 0x72,0x69,0x67,0x67,0x65,0x72,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c, 0x64,0x65,0x6c,0x61,0x79,0x3a,0x22,0x28,0x6e,0x75,0x6d,0x62,0x65,0x72,0x7c,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x29,0x22,0x2c,0x68,0x74,0x6d,0x6c,0x3a,0x22,0x62,0x6f, 0x6f,0x6c,0x65,0x61,0x6e,0x22,0x2c,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x3a, 0x22,0x28,0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e, 0x29,0x22,0x2c,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x28,0x73, 0x74,0x72,0x69,0x6e,0x67,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x22, 0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x22,0x28,0x61,0x72,0x72,0x61,0x79,0x7c, 0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29, 0x22,0x2c,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x22,0x28,0x73,0x74, 0x72,0x69,0x6e,0x67,0x7c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x29,0x22,0x2c,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x50, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x22,0x61,0x72,0x72,0x61,0x79, 0x22,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x22,0x28,0x73,0x74,0x72, 0x69,0x6e,0x67,0x7c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x22,0x2c,0x63,0x75, 0x73,0x74,0x6f,0x6d,0x43,0x6c,0x61,0x73,0x73,0x3a,0x22,0x28,0x73,0x74,0x72,0x69, 0x6e,0x67,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x22,0x2c,0x73,0x61, 0x6e,0x69,0x74,0x69,0x7a,0x65,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x22, 0x2c,0x73,0x61,0x6e,0x69,0x74,0x69,0x7a,0x65,0x46,0x6e,0x3a,0x22,0x28,0x6e,0x75, 0x6c,0x6c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x29,0x22,0x2c,0x61,0x6c, 0x6c,0x6f,0x77,0x4c,0x69,0x73,0x74,0x3a,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x22,0x28, 0x6e,0x75,0x6c,0x6c,0x7c,0x6f,0x62,0x6a,0x65,0x63,0x74,0x7c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x29,0x22,0x7d,0x2c,0x6c,0x72,0x3d,0x7b,0x41,0x55,0x54,0x4f, 0x3a,0x22,0x61,0x75,0x74,0x6f,0x22,0x2c,0x54,0x4f,0x50,0x3a,0x22,0x74,0x6f,0x70, 0x22,0x2c,0x52,0x49,0x47,0x48,0x54,0x3a,0x45,0x28,0x29,0x3f,0x22,0x6c,0x65,0x66, 0x74,0x22,0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x2c,0x42,0x4f,0x54,0x54,0x4f, 0x4d,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x2c,0x4c,0x45,0x46,0x54,0x3a, 0x45,0x28,0x29,0x3f,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x6c,0x65,0x66, 0x74,0x22,0x7d,0x2c,0x73,0x72,0x3d,0x7b,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, 0x6e,0x3a,0x21,0x30,0x2c,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x3a,0x27,0x3c, 0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x22,0x20,0x72,0x6f,0x6c,0x65,0x3d,0x22,0x74,0x6f,0x6f,0x6c,0x74,0x69, 0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x74, 0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x61,0x72,0x72,0x6f,0x77,0x22,0x3e,0x3c,0x2f, 0x64,0x69,0x76,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x69,0x6e,0x6e,0x65,0x72,0x22,0x3e,0x3c, 0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x2c,0x74,0x72,0x69, 0x67,0x67,0x65,0x72,0x3a,0x22,0x68,0x6f,0x76,0x65,0x72,0x20,0x66,0x6f,0x63,0x75, 0x73,0x22,0x2c,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x22,0x2c,0x64,0x65,0x6c,0x61, 0x79,0x3a,0x30,0x2c,0x68,0x74,0x6d,0x6c,0x3a,0x21,0x31,0x2c,0x73,0x65,0x6c,0x65, 0x63,0x74,0x6f,0x72,0x3a,0x21,0x31,0x2c,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x3a,0x22,0x74,0x6f,0x70,0x22,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x5b, 0x30,0x2c,0x30,0x5d,0x2c,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x21, 0x31,0x2c,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x50,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x3a,0x5b,0x22,0x74,0x6f,0x70,0x22,0x2c,0x22,0x72,0x69,0x67, 0x68,0x74,0x22,0x2c,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x2c,0x22,0x6c,0x65, 0x66,0x74,0x22,0x5d,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x22,0x63, 0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x22,0x2c, 0x63,0x75,0x73,0x74,0x6f,0x6d,0x43,0x6c,0x61,0x73,0x73,0x3a,0x22,0x22,0x2c,0x73, 0x61,0x6e,0x69,0x74,0x69,0x7a,0x65,0x3a,0x21,0x30,0x2c,0x73,0x61,0x6e,0x69,0x74, 0x69,0x7a,0x65,0x46,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x6c,0x6c,0x6f,0x77, 0x4c,0x69,0x73,0x74,0x3a,0x7b,0x22,0x2a,0x22,0x3a,0x5b,0x22,0x63,0x6c,0x61,0x73, 0x73,0x22,0x2c,0x22,0x64,0x69,0x72,0x22,0x2c,0x22,0x69,0x64,0x22,0x2c,0x22,0x6c, 0x61,0x6e,0x67,0x22,0x2c,0x22,0x72,0x6f,0x6c,0x65,0x22,0x2c,0x2f,0x5e,0x61,0x72, 0x69,0x61,0x2d,0x5b,0x5c,0x77,0x2d,0x5d,0x2a,0x24,0x2f,0x69,0x5d,0x2c,0x61,0x3a, 0x5b,0x22,0x74,0x61,0x72,0x67,0x65,0x74,0x22,0x2c,0x22,0x68,0x72,0x65,0x66,0x22, 0x2c,0x22,0x74,0x69,0x74,0x6c,0x65,0x22,0x2c,0x22,0x72,0x65,0x6c,0x22,0x5d,0x2c, 0x61,0x72,0x65,0x61,0x3a,0x5b,0x5d,0x2c,0x62,0x3a,0x5b,0x5d,0x2c,0x62,0x72,0x3a, 0x5b,0x5d,0x2c,0x63,0x6f,0x6c,0x3a,0x5b,0x5d,0x2c,0x63,0x6f,0x64,0x65,0x3a,0x5b, 0x5d,0x2c,0x64,0x69,0x76,0x3a,0x5b,0x5d,0x2c,0x65,0x6d,0x3a,0x5b,0x5d,0x2c,0x68, 0x72,0x3a,0x5b,0x5d,0x2c,0x68,0x31,0x3a,0x5b,0x5d,0x2c,0x68,0x32,0x3a,0x5b,0x5d, 0x2c,0x68,0x33,0x3a,0x5b,0x5d,0x2c,0x68,0x34,0x3a,0x5b,0x5d,0x2c,0x68,0x35,0x3a, 0x5b,0x5d,0x2c,0x68,0x36,0x3a,0x5b,0x5d,0x2c,0x69,0x3a,0x5b,0x5d,0x2c,0x69,0x6d, 0x67,0x3a,0x5b,0x22,0x73,0x72,0x63,0x22,0x2c,0x22,0x73,0x72,0x63,0x73,0x65,0x74, 0x22,0x2c,0x22,0x61,0x6c,0x74,0x22,0x2c,0x22,0x74,0x69,0x74,0x6c,0x65,0x22,0x2c, 0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x2c,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x22, 0x5d,0x2c,0x6c,0x69,0x3a,0x5b,0x5d,0x2c,0x6f,0x6c,0x3a,0x5b,0x5d,0x2c,0x70,0x3a, 0x5b,0x5d,0x2c,0x70,0x72,0x65,0x3a,0x5b,0x5d,0x2c,0x73,0x3a,0x5b,0x5d,0x2c,0x73, 0x6d,0x61,0x6c,0x6c,0x3a,0x5b,0x5d,0x2c,0x73,0x70,0x61,0x6e,0x3a,0x5b,0x5d,0x2c, 0x73,0x75,0x62,0x3a,0x5b,0x5d,0x2c,0x73,0x75,0x70,0x3a,0x5b,0x5d,0x2c,0x73,0x74, 0x72,0x6f,0x6e,0x67,0x3a,0x5b,0x5d,0x2c,0x75,0x3a,0x5b,0x5d,0x2c,0x75,0x6c,0x3a, 0x5b,0x5d,0x7d,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x66,0x72,0x3d,0x7b,0x48,0x49,0x44,0x45,0x3a, 0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x22,0x2c,0x48,0x49,0x44,0x44,0x45,0x4e,0x3a,0x22,0x68,0x69,0x64,0x64,0x65,0x6e, 0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22,0x2c,0x53,0x48,0x4f, 0x57,0x3a,0x22,0x73,0x68,0x6f,0x77,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x22,0x2c,0x53,0x48,0x4f,0x57,0x4e,0x3a,0x22,0x73,0x68,0x6f,0x77,0x6e, 0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22,0x2c,0x49,0x4e,0x53, 0x45,0x52,0x54,0x45,0x44,0x3a,0x22,0x69,0x6e,0x73,0x65,0x72,0x74,0x65,0x64,0x2e, 0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22,0x2c,0x43,0x4c,0x49,0x43, 0x4b,0x3a,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c, 0x74,0x69,0x70,0x22,0x2c,0x46,0x4f,0x43,0x55,0x53,0x49,0x4e,0x3a,0x22,0x66,0x6f, 0x63,0x75,0x73,0x69,0x6e,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x22,0x2c,0x46,0x4f,0x43,0x55,0x53,0x4f,0x55,0x54,0x3a,0x22,0x66,0x6f,0x63,0x75, 0x73,0x6f,0x75,0x74,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22, 0x2c,0x4d,0x4f,0x55,0x53,0x45,0x45,0x4e,0x54,0x45,0x52,0x3a,0x22,0x6d,0x6f,0x75, 0x73,0x65,0x65,0x6e,0x74,0x65,0x72,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x22,0x2c,0x4d,0x4f,0x55,0x53,0x45,0x4c,0x45,0x41,0x56,0x45,0x3a,0x22, 0x6d,0x6f,0x75,0x73,0x65,0x6c,0x65,0x61,0x76,0x65,0x2e,0x62,0x73,0x2e,0x74,0x6f, 0x6f,0x6c,0x74,0x69,0x70,0x22,0x7d,0x2c,0x64,0x72,0x3d,0x22,0x66,0x61,0x64,0x65, 0x22,0x2c,0x70,0x72,0x3d,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x68,0x72,0x3d,0x22, 0x73,0x68,0x6f,0x77,0x22,0x2c,0x76,0x72,0x3d,0x22,0x6f,0x75,0x74,0x22,0x2c,0x67, 0x72,0x3d,0x22,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2d,0x69,0x6e,0x6e,0x65, 0x72,0x22,0x2c,0x6d,0x72,0x3d,0x22,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x2c,0x62, 0x72,0x3d,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c, 0x22,0x2c,0x79,0x72,0x3d,0x22,0x68,0x6f,0x76,0x65,0x72,0x22,0x2c,0x5f,0x72,0x3d, 0x22,0x66,0x6f,0x63,0x75,0x73,0x22,0x2c,0x77,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3b,0x69, 0x66,0x28,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x5a,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65, 0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x42,0x6f,0x6f, 0x74,0x73,0x74,0x72,0x61,0x70,0x27,0x73,0x20,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x50,0x6f,0x70,0x70,0x65,0x72, 0x20,0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x70,0x6f,0x70,0x70,0x65,0x72, 0x2e,0x6a,0x73,0x2e,0x6f,0x72,0x67,0x29,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x6f,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c, 0x65,0x29,0x29,0x2e,0x5f,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3d,0x21, 0x30,0x2c,0x6f,0x2e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x30,0x2c,0x6f, 0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x22,0x22,0x2c, 0x6f,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72, 0x3d,0x7b,0x7d,0x2c,0x6f,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x3d,0x6e,0x75, 0x6c,0x6c,0x2c,0x6f,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3d,0x6f,0x2e,0x5f, 0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72,0x29,0x2c,0x6f,0x2e,0x74, 0x69,0x70,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x6f,0x2e,0x5f,0x73,0x65,0x74,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x2c,0x6f,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x65,0x6e, 0x61,0x62,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x45, 0x6e,0x61,0x62,0x6c,0x65,0x64,0x3d,0x21,0x30,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3d,0x21,0x31,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x74,0x6f,0x67,0x67,0x6c,0x65,0x45,0x6e,0x61, 0x62,0x6c,0x65,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x45, 0x6e,0x61,0x62,0x6c,0x65,0x64,0x3d,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73, 0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x69,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x69,0x66,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69, 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4f,0x6e,0x44,0x65,0x6c,0x65,0x67, 0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x28,0x65,0x29,0x3b,0x74,0x2e, 0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x2e,0x63, 0x6c,0x69,0x63,0x6b,0x3d,0x21,0x74,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54, 0x72,0x69,0x67,0x67,0x65,0x72,0x2e,0x63,0x6c,0x69,0x63,0x6b,0x2c,0x74,0x2e,0x5f, 0x69,0x73,0x57,0x69,0x74,0x68,0x41,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67, 0x67,0x65,0x72,0x28,0x29,0x3f,0x74,0x2e,0x5f,0x65,0x6e,0x74,0x65,0x72,0x28,0x6e, 0x75,0x6c,0x6c,0x2c,0x74,0x29,0x3a,0x74,0x2e,0x5f,0x6c,0x65,0x61,0x76,0x65,0x28, 0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x69,0x66,0x28, 0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x70,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x28,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x70,0x72,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6c,0x65, 0x61,0x76,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x74,0x68,0x69,0x73,0x29,0x3b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x65,0x6e,0x74,0x65,0x72,0x28,0x6e,0x75,0x6c,0x6c,0x2c, 0x74,0x68,0x69,0x73,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64, 0x69,0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x63,0x6c,0x65,0x61,0x72,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x29,0x2c,0x48,0x2e,0x6f,0x66,0x66,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74, 0x28,0x6d,0x72,0x29,0x2c,0x62,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x68,0x69, 0x64,0x65,0x4d,0x6f,0x64,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x74, 0x69,0x70,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x28, 0x29,0x2c,0x72,0x28,0x6f,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x29,0x2c,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x74,0x68,0x69, 0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x2c,0x74,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x3b,0x69,0x66,0x28,0x22, 0x6e,0x6f,0x6e,0x65,0x22,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72, 0x72,0x6f,0x72,0x28,0x22,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x75,0x73,0x65,0x20, 0x73,0x68,0x6f,0x77,0x20,0x6f,0x6e,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x20, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x22,0x29,0x3b,0x69,0x66,0x28,0x74,0x68, 0x69,0x73,0x2e,0x69,0x73,0x57,0x69,0x74,0x68,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x28,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x73,0x45,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x48,0x2e,0x74,0x72,0x69, 0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63, 0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x53,0x48,0x4f,0x57,0x29,0x2c, 0x6f,0x3d,0x79,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x29,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6f,0x3f,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x6f,0x77,0x6e,0x65, 0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65, 0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x3a,0x6f,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x69,0x66,0x28,0x21, 0x72,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74, 0x65,0x64,0x26,0x26,0x69,0x29,0x7b,0x22,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22, 0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63, 0x74,0x6f,0x72,0x2e,0x4e,0x41,0x4d,0x45,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x74, 0x69,0x70,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x74,0x6c, 0x65,0x28,0x29,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x2e,0x71, 0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x67,0x72,0x29, 0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x26,0x26,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x50,0x6f,0x70,0x70,0x65,0x72, 0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x3b,0x76,0x61,0x72,0x20,0x75,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67, 0x65,0x74,0x54,0x69,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x2c,0x63, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x64,0x6f,0x7b, 0x65,0x2b,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x31,0x65, 0x36,0x2a,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x29, 0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x65, 0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x28,0x74,0x68,0x69, 0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x4e,0x41, 0x4d,0x45,0x29,0x3b,0x75,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x28,0x22,0x69,0x64,0x22,0x2c,0x63,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x64,0x65,0x73,0x63, 0x72,0x69,0x62,0x65,0x64,0x62,0x79,0x22,0x2c,0x63,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, 0x6f,0x6e,0x26,0x26,0x75,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x61,0x64,0x64,0x28,0x64,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x75,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x2c,0x73,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x41,0x74,0x74,0x61, 0x63,0x68,0x6d,0x65,0x6e,0x74,0x28,0x6c,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x61,0x64,0x64,0x41,0x74,0x74,0x61,0x63,0x68,0x6d,0x65,0x6e,0x74,0x43,0x6c,0x61, 0x73,0x73,0x28,0x73,0x29,0x3b,0x76,0x61,0x72,0x20,0x66,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x3b,0x47,0x2e,0x73,0x65,0x74,0x28,0x75,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x44,0x41,0x54,0x41, 0x5f,0x4b,0x45,0x59,0x2c,0x74,0x68,0x69,0x73,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28, 0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x29,0x7c,0x7c,0x28,0x66,0x2e,0x61,0x70, 0x70,0x65,0x6e,0x64,0x28,0x75,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65, 0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72, 0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x49,0x4e,0x53,0x45,0x52,0x54,0x45,0x44,0x29, 0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x3f,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x75,0x70,0x64,0x61, 0x74,0x65,0x28,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65, 0x72,0x3d,0x4a,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x75,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x50,0x6f, 0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x73,0x29,0x29,0x2c,0x75, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x70, 0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x64,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72, 0x65,0x73,0x6f,0x6c,0x76,0x65,0x50,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x46,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x43,0x6c,0x61,0x73,0x73,0x29, 0x3b,0x64,0x26,0x26,0x28,0x65,0x3d,0x75,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x29,0x2e,0x61,0x64,0x64,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x65,0x2c, 0x61,0x28,0x64,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29,0x29,0x29, 0x2c,0x22,0x6f,0x6e,0x74,0x6f,0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x69, 0x6e,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x74,0x3d,0x5b, 0x5d,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x2c,0x61,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64, 0x79,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x48,0x2e,0x6f,0x6e,0x28,0x65,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f, 0x76,0x65,0x72,0x22,0x2c,0x5f,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x70, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c, 0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x64,0x72,0x29, 0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c, 0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x6e,0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72,0x53, 0x74,0x61,0x74,0x65,0x3b,0x6e,0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72,0x53,0x74,0x61, 0x74,0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65, 0x72,0x28,0x6e,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6e,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74, 0x2e,0x53,0x48,0x4f,0x57,0x4e,0x29,0x2c,0x65,0x3d,0x3d,0x3d,0x76,0x72,0x26,0x26, 0x6e,0x2e,0x5f,0x6c,0x65,0x61,0x76,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x29, 0x7d,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x2c,0x70,0x29,0x7d,0x7d, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x68,0x69,0x64,0x65,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x69,0x66,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x70,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x3b,0x69,0x66,0x28,0x21,0x48,0x2e,0x74, 0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72, 0x75,0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x48,0x49,0x44,0x45, 0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74, 0x65,0x64,0x29,0x7b,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x70,0x72,0x29,0x2c,0x22,0x6f,0x6e,0x74,0x6f, 0x75,0x63,0x68,0x73,0x74,0x61,0x72,0x74,0x22,0x69,0x6e,0x20,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x65,0x3d,0x5b,0x5d,0x29,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x65,0x2c,0x61,0x28,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x48,0x2e,0x6f,0x66,0x66,0x28,0x65,0x2c,0x22,0x6d,0x6f,0x75,0x73, 0x65,0x6f,0x76,0x65,0x72,0x22,0x2c,0x5f,0x29,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72, 0x2e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x2e,0x66,0x6f, 0x63,0x75,0x73,0x3d,0x21,0x31,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74, 0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x2e,0x68,0x6f,0x76,0x65,0x72, 0x3d,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x74, 0x69,0x70,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x73,0x28,0x64,0x72,0x29,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x5f,0x69,0x73,0x57, 0x69,0x74,0x68,0x41,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72, 0x28,0x29,0x7c,0x7c,0x28,0x74,0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72,0x53,0x74,0x61, 0x74,0x65,0x21,0x3d,0x3d,0x68,0x72,0x26,0x26,0x6e,0x2e,0x72,0x65,0x6d,0x6f,0x76, 0x65,0x28,0x29,0x2c,0x74,0x2e,0x5f,0x63,0x6c,0x65,0x61,0x6e,0x54,0x69,0x70,0x43, 0x6c,0x61,0x73,0x73,0x28,0x29,0x2c,0x74,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65, 0x64,0x62,0x79,0x22,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28, 0x74,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x74,0x2e,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x48, 0x49,0x44,0x44,0x45,0x4e,0x29,0x2c,0x74,0x2e,0x5f,0x64,0x69,0x73,0x70,0x6f,0x73, 0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x28,0x29,0x29,0x7d,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x74,0x69,0x70,0x2c,0x72,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x68, 0x6f,0x76,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x22,0x22,0x7d,0x7d,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x75,0x70,0x64,0x61,0x74,0x65,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70, 0x70,0x65,0x72,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65, 0x72,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x69,0x73,0x57,0x69,0x74,0x68,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x6f,0x6f,0x6c,0x65,0x61, 0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x74,0x6c,0x65,0x28, 0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67,0x65,0x74,0x54,0x69, 0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x74,0x68, 0x69,0x73,0x2e,0x74,0x69,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x74,0x69,0x70,0x3b,0x76,0x61,0x72,0x20,0x65,0x3d,0x64,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x28,0x22,0x64,0x69,0x76,0x22,0x29,0x3b,0x65,0x2e,0x69,0x6e,0x6e, 0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x3b,0x76,0x61,0x72, 0x20,0x74,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x5b,0x30,0x5d, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74, 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x28,0x74,0x29,0x2c,0x74,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x64,0x72, 0x2c,0x70,0x72,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x3d,0x74,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x73,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x73,0x61,0x6e,0x69,0x74,0x69,0x7a,0x65,0x41,0x6e,0x64, 0x53,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x28,0x65,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x74,0x6c,0x65,0x28,0x29,0x2c,0x67,0x72,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x61,0x6e,0x69,0x74,0x69, 0x7a,0x65,0x41,0x6e,0x64,0x53,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x65,0x2e, 0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x74,0x7c,0x7c, 0x21,0x72,0x3f,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x28,0x72,0x2c,0x74,0x29,0x3a,0x72, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x73,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x74, 0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x28,0x74,0x29, 0x3f,0x28,0x74,0x3d,0x76,0x28,0x74,0x29,0x2c,0x76,0x6f,0x69,0x64,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x68,0x74,0x6d,0x6c,0x3f, 0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x21,0x3d,0x3d,0x65, 0x26,0x26,0x28,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3d,0x22, 0x22,0x2c,0x65,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x28,0x74,0x29,0x29,0x3a,0x65, 0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x74,0x2e,0x74, 0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x29,0x3a,0x76,0x6f,0x69, 0x64,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x68, 0x74,0x6d,0x6c,0x3f,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x73,0x61,0x6e,0x69,0x74,0x69,0x7a,0x65,0x26,0x26,0x28,0x74,0x3d,0x69, 0x72,0x28,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x2e,0x61,0x6c,0x6c,0x6f,0x77,0x4c,0x69,0x73,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x61,0x6e,0x69,0x74,0x69,0x7a,0x65, 0x46,0x6e,0x29,0x29,0x2c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c, 0x3d,0x74,0x29,0x3a,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3d,0x74,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67,0x65,0x74, 0x54,0x69,0x74,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x41, 0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x62, 0x73,0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x2d,0x74,0x69,0x74,0x6c,0x65, 0x22,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x2e,0x74,0x69,0x74,0x6c,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x50,0x6f,0x73,0x73,0x69, 0x62,0x6c,0x65,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x74,0x74, 0x61,0x63,0x68,0x6d,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x3f,0x22,0x65,0x6e, 0x64,0x22,0x3a,0x22,0x6c,0x65,0x66,0x74,0x22,0x3d,0x3d,0x3d,0x65,0x3f,0x22,0x73, 0x74,0x61,0x72,0x74,0x22,0x3a,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x5f,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4f,0x6e,0x44,0x65,0x6c, 0x65,0x67,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c,0x74,0x68,0x69,0x73, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x67,0x65,0x74, 0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x28,0x65,0x2e,0x64,0x65,0x6c,0x65,0x67,0x61,0x74,0x65,0x54,0x61,0x72,0x67,0x65, 0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x44,0x65,0x6c,0x65,0x67, 0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x29,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x73,0x74,0x72,0x69,0x6e,0x67, 0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x74,0x2e,0x73,0x70, 0x6c,0x69,0x74,0x28,0x22,0x2c,0x22,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x2e,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74, 0x28,0x65,0x2c,0x31,0x30,0x29,0x7d,0x29,0x29,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x28,0x6e,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x29,0x7d,0x3a,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x72,0x65, 0x73,0x6f,0x6c,0x76,0x65,0x50,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x46,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x3f,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3a,0x65,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x50,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f, 0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68, 0x69,0x73,0x2c,0x6e,0x3d,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a, 0x65,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x7b,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x66,0x6c,0x69,0x70,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x3a,0x7b,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x50,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x73,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x50,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x73,0x7d,0x7d,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6f, 0x66,0x66,0x73,0x65,0x74,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b, 0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74, 0x4f,0x66,0x66,0x73,0x65,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6e,0x61,0x6d,0x65, 0x3a,0x22,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f, 0x77,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7b,0x62,0x6f,0x75,0x6e, 0x64,0x61,0x72,0x79,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x7d,0x7d,0x2c,0x7b,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x61,0x72,0x72,0x6f,0x77,0x22,0x2c,0x6f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x3a,0x7b,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x2e,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73, 0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x4e,0x41,0x4d,0x45,0x2c,0x22,0x2d,0x61, 0x72,0x72,0x6f,0x77,0x22,0x29,0x7d,0x7d,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22, 0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x61,0x66,0x74,0x65, 0x72,0x57,0x72,0x69,0x74,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x50,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x43,0x68,0x61,0x6e,0x67,0x65,0x28,0x65,0x29,0x7d, 0x7d,0x5d,0x2c,0x6f,0x6e,0x46,0x69,0x72,0x73,0x74,0x55,0x70,0x64,0x61,0x74,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x21,0x3d,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26, 0x74,0x2e,0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x50, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x43,0x68,0x61,0x6e,0x67,0x65,0x28,0x65, 0x29,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x69,0x28,0x7b, 0x7d,0x2c,0x6e,0x29,0x2c,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69, 0x67,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6e,0x29,0x3a,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x61,0x64,0x64,0x41,0x74,0x74,0x61,0x63,0x68,0x6d,0x65,0x6e,0x74, 0x43,0x6c,0x61,0x73,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x67,0x65, 0x74,0x54,0x69,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x2e,0x63,0x6c, 0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x22,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x42, 0x61,0x73,0x69,0x63,0x43,0x6c,0x61,0x73,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x28, 0x29,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68, 0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x74,0x74,0x61,0x63,0x68,0x6d, 0x65,0x6e,0x74,0x28,0x65,0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x67,0x65,0x74,0x41,0x74,0x74,0x61,0x63,0x68,0x6d,0x65,0x6e,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x72,0x5b,0x65,0x2e,0x74, 0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x5d,0x7d,0x7d,0x2c, 0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x73,0x65,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e, 0x65,0x72,0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73, 0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x72, 0x69,0x67,0x67,0x65,0x72,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x20,0x22,0x29, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22, 0x3d,0x3d,0x3d,0x74,0x29,0x48,0x2e,0x6f,0x6e,0x28,0x65,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2c,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x43,0x4c,0x49,0x43,0x4b,0x2c,0x65, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f, 0x72,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x74, 0x29,0x7d,0x29,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x22,0x6d,0x61, 0x6e,0x75,0x61,0x6c,0x22,0x21,0x3d,0x3d,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x74,0x3d,0x3d,0x3d,0x79,0x72,0x3f,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72, 0x75,0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x4d,0x4f,0x55,0x53, 0x45,0x45,0x4e,0x54,0x45,0x52,0x3a,0x65,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x46,0x4f,0x43,0x55,0x53, 0x49,0x4e,0x2c,0x72,0x3d,0x74,0x3d,0x3d,0x3d,0x79,0x72,0x3f,0x65,0x2e,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e, 0x4d,0x4f,0x55,0x53,0x45,0x4c,0x45,0x41,0x56,0x45,0x3a,0x65,0x2e,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x45,0x76,0x65,0x6e,0x74,0x2e,0x46, 0x4f,0x43,0x55,0x53,0x4f,0x55,0x54,0x3b,0x48,0x2e,0x6f,0x6e,0x28,0x65,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6e,0x2c,0x65,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x5f,0x65,0x6e,0x74,0x65,0x72,0x28,0x74,0x29,0x7d,0x29,0x29,0x2c, 0x48,0x2e,0x6f,0x6e,0x28,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x72,0x2c,0x65,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x65,0x6c,0x65, 0x63,0x74,0x6f,0x72,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x6c,0x65,0x61,0x76, 0x65,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x68,0x69,0x64,0x65,0x4d,0x6f,0x64,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c, 0x65,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x65,0x2e,0x68,0x69,0x64,0x65, 0x28,0x29,0x7d,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x6d, 0x72,0x29,0x2c,0x62,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x68,0x69,0x64,0x65, 0x4d,0x6f,0x64,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x65,0x6c,0x65,0x63, 0x74,0x6f,0x72,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x3d,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x74,0x72,0x69,0x67,0x67,0x65, 0x72,0x3a,0x22,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x22,0x2c,0x73,0x65,0x6c,0x65,0x63, 0x74,0x6f,0x72,0x3a,0x22,0x22,0x7d,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x66, 0x69,0x78,0x54,0x69,0x74,0x6c,0x65,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x66,0x69,0x78,0x54,0x69,0x74,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22, 0x74,0x69,0x74,0x6c,0x65,0x22,0x29,0x2c,0x74,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x67, 0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74, 0x61,0x2d,0x62,0x73,0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x2d,0x74,0x69, 0x74,0x6c,0x65,0x22,0x29,0x3b,0x28,0x65,0x7c,0x7c,0x22,0x73,0x74,0x72,0x69,0x6e, 0x67,0x22,0x21,0x3d,0x3d,0x74,0x29,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x28,0x22,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x6f,0x72, 0x69,0x67,0x69,0x6e,0x61,0x6c,0x2d,0x74,0x69,0x74,0x6c,0x65,0x22,0x2c,0x65,0x7c, 0x7c,0x22,0x22,0x29,0x2c,0x21,0x65,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22, 0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7c,0x7c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41, 0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x6c, 0x61,0x62,0x65,0x6c,0x22,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x28,0x22,0x74,0x69,0x74,0x6c,0x65,0x22,0x2c,0x22,0x22,0x29,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x65,0x6e,0x74,0x65,0x72,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4f,0x6e,0x44,0x65,0x6c,0x65,0x67,0x61,0x74, 0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x65,0x26, 0x26,0x28,0x74,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67, 0x65,0x72,0x5b,0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22,0x3d,0x3d,0x3d,0x65, 0x2e,0x74,0x79,0x70,0x65,0x3f,0x5f,0x72,0x3a,0x79,0x72,0x5d,0x3d,0x21,0x30,0x29, 0x2c,0x74,0x2e,0x67,0x65,0x74,0x54,0x69,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x28,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x73,0x28,0x70,0x72,0x29,0x7c,0x7c,0x74,0x2e,0x5f,0x68,0x6f, 0x76,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x3d,0x3d,0x68,0x72,0x3f,0x74,0x2e, 0x5f,0x68,0x6f,0x76,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x68,0x72,0x3a,0x28, 0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x2e,0x5f, 0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x2c,0x74,0x2e,0x5f,0x68,0x6f,0x76,0x65, 0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x68,0x72,0x2c,0x74,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79,0x26,0x26,0x74,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79,0x2e,0x73,0x68,0x6f,0x77,0x3f, 0x74,0x2e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x73,0x65,0x74,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x74,0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d, 0x3d,0x3d,0x68,0x72,0x26,0x26,0x74,0x2e,0x73,0x68,0x6f,0x77,0x28,0x29,0x7d,0x29, 0x2c,0x74,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79, 0x2e,0x73,0x68,0x6f,0x77,0x29,0x3a,0x74,0x2e,0x73,0x68,0x6f,0x77,0x28,0x29,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x6c,0x65,0x61,0x76,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x69,0x6e,0x69, 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4f,0x6e,0x44,0x65,0x6c,0x65,0x67,0x61,0x74, 0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x28,0x65,0x2c,0x74,0x29,0x2c,0x65,0x26, 0x26,0x28,0x74,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67, 0x65,0x72,0x5b,0x22,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3d,0x3d,0x3d, 0x65,0x2e,0x74,0x79,0x70,0x65,0x3f,0x5f,0x72,0x3a,0x79,0x72,0x5d,0x3d,0x74,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x73,0x28,0x65,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65, 0x74,0x29,0x29,0x2c,0x74,0x2e,0x5f,0x69,0x73,0x57,0x69,0x74,0x68,0x41,0x63,0x74, 0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x29,0x7c,0x7c,0x28,0x63, 0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x2e,0x5f,0x74, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x2c,0x74,0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72, 0x53,0x74,0x61,0x74,0x65,0x3d,0x76,0x72,0x2c,0x74,0x2e,0x5f,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79,0x26,0x26,0x74,0x2e,0x5f,0x63,0x6f,0x6e, 0x66,0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79,0x2e,0x68,0x69,0x64,0x65,0x3f,0x74, 0x2e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d, 0x65,0x6f,0x75,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x74,0x2e,0x5f,0x68,0x6f,0x76,0x65,0x72,0x53,0x74,0x61,0x74,0x65,0x3d,0x3d, 0x3d,0x76,0x72,0x26,0x26,0x74,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x7d,0x29,0x2c, 0x74,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79,0x2e, 0x68,0x69,0x64,0x65,0x29,0x3a,0x74,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x69,0x73,0x57,0x69,0x74,0x68,0x41, 0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x29, 0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54, 0x72,0x69,0x67,0x67,0x65,0x72,0x5b,0x65,0x5d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61, 0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74, 0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x72,0x2e,0x68,0x61,0x73,0x28,0x65,0x29, 0x26,0x26,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x5b,0x65,0x5d,0x7d,0x29,0x29, 0x2c,0x28,0x65,0x3d,0x69,0x28,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x44,0x65, 0x66,0x61,0x75,0x6c,0x74,0x29,0x2c,0x74,0x29,0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x3f, 0x65,0x3a,0x7b,0x7d,0x29,0x29,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x3d,0x21,0x31,0x3d,0x3d,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65, 0x72,0x3f,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x3a, 0x76,0x28,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x2c,0x22, 0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x2e,0x64,0x65,0x6c,0x61,0x79,0x26,0x26,0x28,0x65,0x2e,0x64,0x65,0x6c,0x61, 0x79,0x3d,0x7b,0x73,0x68,0x6f,0x77,0x3a,0x65,0x2e,0x64,0x65,0x6c,0x61,0x79,0x2c, 0x68,0x69,0x64,0x65,0x3a,0x65,0x2e,0x64,0x65,0x6c,0x61,0x79,0x7d,0x29,0x2c,0x22, 0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x2e,0x74,0x69,0x74,0x6c,0x65,0x26,0x26,0x28,0x65,0x2e,0x74,0x69,0x74,0x6c, 0x65,0x3d,0x65,0x2e,0x74,0x69,0x74,0x6c,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69, 0x6e,0x67,0x28,0x29,0x29,0x2c,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, 0x26,0x26,0x28,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x65,0x2e,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28, 0x29,0x29,0x2c,0x67,0x28,0x61,0x72,0x2c,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63, 0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x54,0x79,0x70,0x65,0x29,0x2c,0x65,0x2e,0x73,0x61,0x6e,0x69,0x74,0x69, 0x7a,0x65,0x26,0x26,0x28,0x65,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x3d, 0x69,0x72,0x28,0x65,0x2e,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x2c,0x65,0x2e, 0x61,0x6c,0x6c,0x6f,0x77,0x4c,0x69,0x73,0x74,0x2c,0x65,0x2e,0x73,0x61,0x6e,0x69, 0x74,0x69,0x7a,0x65,0x46,0x6e,0x29,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x44,0x65,0x6c,0x65,0x67,0x61,0x74,0x65,0x43, 0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x7b,0x7d, 0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x20,0x69,0x6e,0x20,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x29,0x74,0x68,0x69,0x73,0x2e, 0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x2e,0x44,0x65,0x66,0x61, 0x75,0x6c,0x74,0x5b,0x74,0x5d,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x5b,0x74,0x5d,0x26,0x26,0x28,0x65,0x5b,0x74,0x5d,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5b,0x74,0x5d,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x63,0x6c,0x65,0x61,0x6e,0x54,0x69,0x70,0x43,0x6c,0x61,0x73,0x73, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65, 0x74,0x54,0x69,0x70,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x2c,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x52,0x65,0x67,0x45,0x78,0x70,0x28,0x22,0x28,0x5e,0x7c,0x5c, 0x5c,0x73,0x29,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x67,0x65,0x74,0x42,0x61,0x73,0x69,0x63,0x43,0x6c,0x61,0x73,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x28,0x29,0x2c,0x22,0x5c,0x5c,0x53,0x2b,0x22,0x29,0x2c, 0x22,0x67,0x22,0x29,0x2c,0x6e,0x3d,0x65,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x63,0x6c,0x61,0x73,0x73,0x22,0x29,0x2e,0x6d, 0x61,0x74,0x63,0x68,0x28,0x74,0x29,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x6e, 0x26,0x26,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x6e,0x2e, 0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29, 0x7d,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x67,0x65,0x74,0x42,0x61,0x73,0x69,0x63,0x43,0x6c,0x61,0x73,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x62, 0x73,0x2d,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x50,0x6f,0x70,0x70,0x65,0x72, 0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x43,0x68,0x61,0x6e,0x67,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65, 0x3b,0x74,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x74,0x69,0x70,0x3d,0x74,0x2e, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6c,0x65,0x61,0x6e,0x54,0x69,0x70,0x43,0x6c, 0x61,0x73,0x73,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x64,0x64,0x41, 0x74,0x74,0x61,0x63,0x68,0x6d,0x65,0x6e,0x74,0x43,0x6c,0x61,0x73,0x73,0x28,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x41,0x74,0x74,0x61,0x63,0x68,0x6d,0x65, 0x6e,0x74,0x28,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29, 0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x64,0x69,0x73,0x70,0x6f, 0x73,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x28,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x70,0x6f,0x70,0x70,0x65,0x72,0x3d,0x6e,0x75, 0x6c,0x6c,0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x44,0x65, 0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x72,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d,0x45,0x22,0x2c,0x67,0x65, 0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x61,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x45, 0x76,0x65,0x6e,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x72,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79, 0x70,0x65,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x72,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72, 0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x2e,0x67,0x65,0x74, 0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72, 0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b, 0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b,0x65,0x5d, 0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45, 0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20, 0x6e,0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x65,0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x74,0x5b,0x65,0x5d,0x28,0x29,0x7d,0x7d, 0x29,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x6a,0x28,0x77, 0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x4f,0x72,0x3d,0x69,0x28,0x69,0x28,0x7b,0x7d, 0x2c,0x77,0x72,0x2e,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x72,0x69,0x67,0x68, 0x74,0x22,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x5b,0x30,0x2c,0x38,0x5d,0x2c, 0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x3a,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22,0x2c, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x22,0x2c,0x74,0x65,0x6d,0x70,0x6c, 0x61,0x74,0x65,0x3a,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d, 0x22,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x22,0x20,0x72,0x6f,0x6c,0x65,0x3d,0x22, 0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c, 0x61,0x73,0x73,0x3d,0x22,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x61,0x72,0x72, 0x6f,0x77,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x68,0x33,0x20,0x63,0x6c, 0x61,0x73,0x73,0x3d,0x22,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x68,0x65,0x61, 0x64,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x68,0x33,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63, 0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x62,0x6f, 0x64,0x79,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e, 0x27,0x7d,0x29,0x2c,0x78,0x72,0x3d,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x77,0x72, 0x2e,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79,0x70,0x65,0x29,0x2c,0x7b,0x7d, 0x2c,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x22,0x28,0x73,0x74,0x72,0x69, 0x6e,0x67,0x7c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x29,0x22,0x7d,0x29,0x2c,0x45,0x72,0x3d,0x7b,0x48,0x49,0x44,0x45, 0x3a,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65, 0x72,0x22,0x2c,0x48,0x49,0x44,0x44,0x45,0x4e,0x3a,0x22,0x68,0x69,0x64,0x64,0x65, 0x6e,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x22,0x2c,0x53,0x48, 0x4f,0x57,0x3a,0x22,0x73,0x68,0x6f,0x77,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x22,0x2c,0x53,0x48,0x4f,0x57,0x4e,0x3a,0x22,0x73,0x68,0x6f,0x77, 0x6e,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x22,0x2c,0x49,0x4e, 0x53,0x45,0x52,0x54,0x45,0x44,0x3a,0x22,0x69,0x6e,0x73,0x65,0x72,0x74,0x65,0x64, 0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x22,0x2c,0x43,0x4c,0x49, 0x43,0x4b,0x3a,0x22,0x63,0x6c,0x69,0x63,0x6b,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70, 0x6f,0x76,0x65,0x72,0x22,0x2c,0x46,0x4f,0x43,0x55,0x53,0x49,0x4e,0x3a,0x22,0x66, 0x6f,0x63,0x75,0x73,0x69,0x6e,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65, 0x72,0x22,0x2c,0x46,0x4f,0x43,0x55,0x53,0x4f,0x55,0x54,0x3a,0x22,0x66,0x6f,0x63, 0x75,0x73,0x6f,0x75,0x74,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72, 0x22,0x2c,0x4d,0x4f,0x55,0x53,0x45,0x45,0x4e,0x54,0x45,0x52,0x3a,0x22,0x6d,0x6f, 0x75,0x73,0x65,0x65,0x6e,0x74,0x65,0x72,0x2e,0x62,0x73,0x2e,0x70,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x22,0x2c,0x4d,0x4f,0x55,0x53,0x45,0x4c,0x45,0x41,0x56,0x45,0x3a, 0x22,0x6d,0x6f,0x75,0x73,0x65,0x6c,0x65,0x61,0x76,0x65,0x2e,0x62,0x73,0x2e,0x70, 0x6f,0x70,0x6f,0x76,0x65,0x72,0x22,0x7d,0x2c,0x6a,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x69,0x73,0x57,0x69,0x74,0x68,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x67,0x65, 0x74,0x54,0x69,0x74,0x6c,0x65,0x28,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x28,0x29,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x73,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x61,0x6e,0x69,0x74,0x69,0x7a, 0x65,0x41,0x6e,0x64,0x53,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x28,0x65, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x74,0x6c,0x65,0x28,0x29, 0x2c,0x22,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x68,0x65,0x61,0x64,0x65, 0x72,0x22,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x61,0x6e,0x69,0x74,0x69, 0x7a,0x65,0x41,0x6e,0x64,0x53,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x28, 0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x28,0x29,0x2c,0x22,0x2e,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x2d,0x62, 0x6f,0x64,0x79,0x22,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67, 0x65,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65, 0x50,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x67,0x65,0x74,0x42,0x61,0x73,0x69,0x63,0x43,0x6c,0x61,0x73,0x73,0x50,0x72,0x65, 0x66,0x69,0x78,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x62,0x73,0x2d, 0x70,0x6f,0x70,0x6f,0x76,0x65,0x72,0x22,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d, 0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x70,0x6f,0x70,0x6f,0x76,0x65,0x72, 0x22,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x45,0x76,0x65,0x6e,0x74,0x22, 0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79,0x70,0x65,0x22,0x2c,0x67, 0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x78,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x65, 0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65, 0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73, 0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d, 0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b,0x65,0x5d,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28, 0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x6e,0x61,0x6d,0x65,0x64, 0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x22,0x27, 0x29,0x29,0x3b,0x74,0x5b,0x65,0x5d,0x28,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x7d,0x5d, 0x29,0x2c,0x6e,0x7d,0x28,0x77,0x72,0x29,0x3b,0x6a,0x28,0x6a,0x72,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6b,0x72,0x3d,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x73,0x70,0x79, 0x22,0x2c,0x53,0x72,0x3d,0x7b,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x31,0x30,0x2c, 0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x22,0x61,0x75,0x74,0x6f,0x22,0x2c,0x74,0x61, 0x72,0x67,0x65,0x74,0x3a,0x22,0x22,0x7d,0x2c,0x43,0x72,0x3d,0x7b,0x6f,0x66,0x66, 0x73,0x65,0x74,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x6d,0x65,0x74, 0x68,0x6f,0x64,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x2c,0x74,0x61,0x72, 0x67,0x65,0x74,0x3a,0x22,0x28,0x73,0x74,0x72,0x69,0x6e,0x67,0x7c,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x29,0x22,0x7d,0x2c,0x41,0x72,0x3d,0x22,0x61,0x63,0x74,0x69, 0x76,0x65,0x22,0x2c,0x54,0x72,0x3d,0x22,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e, 0x6b,0x2c,0x20,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69, 0x74,0x65,0x6d,0x2c,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69, 0x74,0x65,0x6d,0x22,0x2c,0x50,0x72,0x3d,0x22,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x22,0x2c,0x44,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x75,0x28,0x61,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63, 0x28,0x61,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x28,0x65, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x29,0x2c,0x28,0x72,0x3d,0x74,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29,0x2e,0x5f,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x22,0x42,0x4f, 0x44,0x59,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x3f,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3a, 0x72,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x72,0x2e,0x5f,0x63,0x6f, 0x6e,0x66,0x69,0x67,0x3d,0x72,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69, 0x67,0x28,0x6e,0x29,0x2c,0x72,0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x3d, 0x5b,0x5d,0x2c,0x72,0x2e,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x73,0x3d,0x5b,0x5d, 0x2c,0x72,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x61,0x72,0x67,0x65,0x74, 0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x72,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48, 0x65,0x69,0x67,0x68,0x74,0x3d,0x30,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x72,0x2e,0x5f, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x2e,0x62,0x73,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x73, 0x70,0x79,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73, 0x73,0x28,0x29,0x7d,0x29,0x29,0x2c,0x72,0x2e,0x72,0x65,0x66,0x72,0x65,0x73,0x68, 0x28,0x29,0x2c,0x72,0x2e,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x28,0x29,0x2c, 0x72,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x28,0x61,0x2c,0x5b,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x3d, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3f,0x22,0x6f,0x66,0x66, 0x73,0x65,0x74,0x22,0x3a,0x50,0x72,0x2c,0x72,0x3d,0x22,0x61,0x75,0x74,0x6f,0x22, 0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e, 0x6d,0x65,0x74,0x68,0x6f,0x64,0x3f,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x6f,0x3d,0x72, 0x3d,0x3d,0x3d,0x50,0x72,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x53, 0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x28,0x29,0x3a,0x30,0x3b,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x3d,0x5b,0x5d,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x73,0x3d,0x5b,0x5d,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68, 0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x53,0x63,0x72,0x6f,0x6c, 0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x28,0x29,0x2c,0x74,0x65,0x2e,0x66,0x69,0x6e, 0x64,0x28,0x54,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x6e,0x28,0x65,0x29,0x2c,0x69,0x3d,0x74,0x3f,0x74,0x65,0x2e,0x66,0x69,0x6e, 0x64,0x4f,0x6e,0x65,0x28,0x74,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28, 0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x69,0x2e,0x67,0x65,0x74,0x42,0x6f, 0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74, 0x28,0x29,0x3b,0x69,0x66,0x28,0x61,0x2e,0x77,0x69,0x64,0x74,0x68,0x7c,0x7c,0x61, 0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x65, 0x65,0x5b,0x72,0x5d,0x28,0x69,0x29,0x2e,0x74,0x6f,0x70,0x2b,0x6f,0x2c,0x74,0x5d, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x29,0x2e, 0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x2e, 0x73,0x6f,0x72,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x30,0x5d,0x2d, 0x74,0x5b,0x30,0x5d,0x7d,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x5f, 0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x5b,0x30, 0x5d,0x29,0x2c,0x65,0x2e,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x73,0x2e,0x70,0x75, 0x73,0x68,0x28,0x74,0x5b,0x31,0x5d,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x48,0x2e, 0x6f,0x66,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x2e,0x62,0x73,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x73,0x70,0x79,0x22,0x29,0x2c,0x72,0x28,0x6f,0x28,0x61,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x64,0x69,0x73,0x70,0x6f, 0x73,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x68,0x69,0x73,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65, 0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x28,0x65,0x3d,0x69,0x28,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x53,0x72,0x29, 0x2c,0x65,0x65,0x2e,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x29,0x29,0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x3f,0x65,0x3a,0x7b,0x7d, 0x29,0x29,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x76,0x28,0x65,0x2e,0x74,0x61, 0x72,0x67,0x65,0x74,0x29,0x7c,0x7c,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x67,0x28,0x6b,0x72,0x2c,0x65,0x2c,0x43,0x72,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x7b, 0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x54, 0x6f,0x70,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d, 0x3d,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x3f,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x70,0x61,0x67, 0x65,0x59,0x4f,0x66,0x66,0x73,0x65,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x67,0x65,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x7c,0x7c,0x4d,0x61,0x74,0x68,0x2e, 0x6d,0x61,0x78,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64, 0x79,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x64, 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65, 0x69,0x67,0x68,0x74,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67, 0x65,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x3d,0x3d,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x3f,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65, 0x72,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x42, 0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63, 0x74,0x28,0x29,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x53,0x63,0x72, 0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x28,0x29,0x2b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2c,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65, 0x69,0x67,0x68,0x74,0x28,0x29,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63, 0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x2b,0x74,0x2d,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x67,0x65,0x74,0x4f,0x66,0x66,0x73,0x65,0x74,0x48,0x65, 0x69,0x67,0x68,0x74,0x28,0x29,0x3b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x21,0x3d,0x3d,0x74, 0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29, 0x2c,0x65,0x3e,0x3d,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x73,0x5b,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d, 0x31,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54, 0x61,0x72,0x67,0x65,0x74,0x21,0x3d,0x3d,0x72,0x26,0x26,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x72,0x29,0x7d,0x65,0x6c,0x73, 0x65,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76, 0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x26,0x26,0x65,0x3c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x5b,0x30,0x5d,0x26,0x26,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x5b,0x30,0x5d,0x3e,0x30,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74, 0x69,0x76,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x76, 0x6f,0x69,0x64,0x20,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6c,0x65,0x61,0x72,0x28, 0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x6f,0x2d,0x2d,0x3b,0x29,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69, 0x76,0x65,0x54,0x61,0x72,0x67,0x65,0x74,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x73,0x5b,0x6f,0x5d,0x26,0x26,0x65,0x3e,0x3d, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x5b,0x6f,0x5d, 0x26,0x26,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x5b,0x6f,0x2b,0x31,0x5d,0x7c,0x7c, 0x65,0x3c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x5b, 0x6f,0x2b,0x31,0x5d,0x29,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74, 0x69,0x76,0x61,0x74,0x65,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x61,0x72,0x67, 0x65,0x74,0x73,0x5b,0x6f,0x5d,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x5f,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x54,0x61,0x72,0x67,0x65,0x74, 0x3d,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6c,0x65,0x61,0x72,0x28,0x29, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x54,0x72,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28, 0x22,0x2c,0x22,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x27,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62, 0x73,0x2d,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x27,0x29,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x22,0x5d,0x2c,0x27,0x29,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x74,0x2c,0x27,0x5b,0x68,0x72,0x65,0x66,0x3d,0x22,0x27,0x29, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x22,0x5d,0x27,0x29,0x7d, 0x29,0x29,0x2c,0x6e,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28, 0x74,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x22,0x2c,0x22,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x29, 0x3b,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64, 0x28,0x41,0x72,0x29,0x2c,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x22,0x29,0x3f,0x74,0x65,0x2e,0x66,0x69, 0x6e,0x64,0x4f,0x6e,0x65,0x28,0x22,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x6e,0x2e,0x63,0x6c,0x6f,0x73,0x65, 0x73,0x74,0x28,0x22,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x29,0x29, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x41, 0x72,0x29,0x3a,0x74,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x73,0x28,0x6e,0x2c, 0x22,0x2e,0x6e,0x61,0x76,0x2c,0x20,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f, 0x75,0x70,0x22,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x65,0x2e,0x70,0x72,0x65, 0x76,0x28,0x65,0x2c,0x22,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x2c,0x20, 0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d, 0x22,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x41, 0x72,0x29,0x7d,0x29,0x29,0x2c,0x74,0x65,0x2e,0x70,0x72,0x65,0x76,0x28,0x65,0x2c, 0x22,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x29,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x74,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x28,0x65,0x2c, 0x22,0x2e,0x6e,0x61,0x76,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x29,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x41,0x72,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x22,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x2e,0x62,0x73, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x73,0x70,0x79,0x22,0x2c,0x7b,0x72,0x65,0x6c, 0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x7d,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x63,0x6c,0x65,0x61,0x72,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x54,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x29,0x2e, 0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28, 0x41,0x72,0x29,0x7d,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72, 0x65,0x6d,0x6f,0x76,0x65,0x28,0x41,0x72,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x5d,0x2c, 0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c, 0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x53,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x4e,0x41,0x4d,0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6b,0x72,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e, 0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x2e, 0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61, 0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74, 0x5b,0x65,0x5d,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79, 0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68, 0x6f,0x64,0x20,0x6e,0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x65,0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x74,0x5b,0x65,0x5d,0x28, 0x29,0x7d,0x7d,0x29,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x61,0x7d,0x28,0x71,0x29,0x3b, 0x48,0x2e,0x6f,0x6e,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2c,0x22,0x6c,0x6f,0x61, 0x64,0x2e,0x62,0x73,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x73,0x70,0x79,0x2e,0x64, 0x61,0x74,0x61,0x2d,0x61,0x70,0x69,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x28,0x27,0x5b,0x64, 0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x73,0x70,0x79,0x3d,0x22,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x22,0x5d,0x27,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x44,0x72,0x28,0x65,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x29,0x2c,0x6a,0x28,0x44,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x4e,0x72,0x3d, 0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x49,0x72,0x3d,0x22,0x66,0x61,0x64, 0x65,0x22,0x2c,0x52,0x72,0x3d,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x4c,0x72,0x3d, 0x22,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x46,0x72,0x3d,0x22,0x3a,0x73, 0x63,0x6f,0x70,0x65,0x20,0x3e,0x20,0x6c,0x69,0x20,0x3e,0x20,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x22,0x2c,0x4d,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x75,0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x28,0x74,0x68,0x69,0x73, 0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73, 0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68, 0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b, 0x69,0x66,0x28,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7c,0x7c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x70,0x61,0x72,0x65, 0x6e,0x74,0x4e,0x6f,0x64,0x65,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65,0x21, 0x3d,0x3d,0x4e,0x6f,0x64,0x65,0x2e,0x45,0x4c,0x45,0x4d,0x45,0x4e,0x54,0x5f,0x4e, 0x4f,0x44,0x45,0x7c,0x7c,0x21,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x4e,0x72,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x2c,0x6e,0x3d,0x64,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x29,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x22,0x2e,0x6e, 0x61,0x76,0x2c,0x20,0x2e,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22, 0x29,0x3b,0x69,0x66,0x28,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x22,0x55, 0x4c,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x7c, 0x7c,0x22,0x4f,0x4c,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61, 0x6d,0x65,0x3f,0x46,0x72,0x3a,0x4c,0x72,0x3b,0x74,0x3d,0x28,0x74,0x3d,0x74,0x65, 0x2e,0x66,0x69,0x6e,0x64,0x28,0x6f,0x2c,0x72,0x29,0x29,0x5b,0x74,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2d,0x31,0x5d,0x7d,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x3f, 0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x2c,0x22,0x68,0x69,0x64, 0x65,0x2e,0x62,0x73,0x2e,0x74,0x61,0x62,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74, 0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66, 0x28,0x21,0x28,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77, 0x2e,0x62,0x73,0x2e,0x74,0x61,0x62,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74,0x65, 0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x74,0x7d,0x29,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x69,0x26,0x26,0x69,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x29,0x29,0x7b,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x72,0x29,0x3b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x48,0x2e, 0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x2c,0x22,0x68,0x69,0x64,0x64,0x65, 0x6e,0x2e,0x62,0x73,0x2e,0x74,0x61,0x62,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74, 0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x7d,0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28, 0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77, 0x6e,0x2e,0x62,0x73,0x2e,0x74,0x61,0x62,0x22,0x2c,0x7b,0x72,0x65,0x6c,0x61,0x74, 0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74,0x3a,0x74,0x7d,0x29,0x7d,0x3b,0x6e,0x3f, 0x74,0x68,0x69,0x73,0x2e,0x5f,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x28,0x6e, 0x2c,0x6e,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x2c,0x61,0x29, 0x3a,0x61,0x28,0x29,0x7d,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f, 0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6f,0x3d,0x28,0x21,0x74, 0x7c,0x7c,0x22,0x55,0x4c,0x22,0x21,0x3d,0x3d,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x4e, 0x61,0x6d,0x65,0x26,0x26,0x22,0x4f,0x4c,0x22,0x21,0x3d,0x3d,0x74,0x2e,0x6e,0x6f, 0x64,0x65,0x4e,0x61,0x6d,0x65,0x3f,0x74,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x28,0x74,0x2c,0x4c,0x72,0x29,0x3a,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64, 0x28,0x46,0x72,0x2c,0x74,0x29,0x29,0x5b,0x30,0x5d,0x2c,0x69,0x3d,0x6e,0x26,0x26, 0x6f,0x26,0x26,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x49,0x72,0x29,0x2c,0x61,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x72,0x2e,0x5f,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6d, 0x70,0x6c,0x65,0x74,0x65,0x28,0x65,0x2c,0x6f,0x2c,0x6e,0x29,0x7d,0x3b,0x6f,0x26, 0x26,0x69,0x3f,0x28,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x52,0x72,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x61, 0x2c,0x65,0x2c,0x21,0x30,0x29,0x29,0x3a,0x61,0x28,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x5f,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x43, 0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69, 0x66,0x28,0x74,0x29,0x7b,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x4e,0x72,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x74,0x65,0x2e,0x66,0x69,0x6e,0x64,0x4f,0x6e,0x65,0x28,0x22,0x3a,0x73, 0x63,0x6f,0x70,0x65,0x20,0x3e,0x20,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x6d,0x65,0x6e,0x75,0x20,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x74, 0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29,0x3b,0x72,0x26,0x26, 0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x28,0x4e,0x72,0x29,0x2c,0x22,0x74,0x61,0x62,0x22,0x3d,0x3d,0x3d,0x74, 0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x72, 0x6f,0x6c,0x65,0x22,0x29,0x26,0x26,0x74,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72, 0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x65,0x64,0x22,0x2c,0x21,0x31,0x29,0x7d,0x65,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x4e,0x72,0x29,0x2c,0x22,0x74, 0x61,0x62,0x22,0x3d,0x3d,0x3d,0x65,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x28,0x22,0x72,0x6f,0x6c,0x65,0x22,0x29,0x26,0x26,0x65,0x2e, 0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72, 0x69,0x61,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x22,0x2c,0x21,0x30,0x29, 0x2c,0x77,0x28,0x65,0x29,0x2c,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73, 0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x49,0x72,0x29,0x26,0x26, 0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28, 0x52,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x65,0x2e,0x70,0x61,0x72,0x65, 0x6e,0x74,0x4e,0x6f,0x64,0x65,0x3b,0x69,0x66,0x28,0x6f,0x26,0x26,0x22,0x4c,0x49, 0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x6e,0x6f,0x64,0x65,0x4e,0x61,0x6d,0x65,0x26,0x26, 0x28,0x6f,0x3d,0x6f,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x29, 0x2c,0x6f,0x26,0x26,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e, 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x22,0x64,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x22,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x65,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x22,0x2e,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x22,0x29,0x3b,0x69,0x26,0x26,0x74,0x65,0x2e,0x66,0x69, 0x6e,0x64,0x28,0x22,0x2e,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x74,0x6f, 0x67,0x67,0x6c,0x65,0x22,0x2c,0x69,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x61,0x64,0x64,0x28,0x4e,0x72,0x29,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x73,0x65, 0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61, 0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x22,0x2c,0x21,0x30,0x29,0x7d,0x6e, 0x26,0x26,0x6e,0x28,0x29,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x4e,0x41,0x4d,0x45,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x74,0x61,0x62,0x22, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49, 0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e, 0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x3b,0x69,0x66,0x28,0x22,0x73, 0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b, 0x65,0x5d,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70, 0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f, 0x64,0x20,0x6e,0x61,0x6d,0x65,0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x65,0x2c,0x27,0x22,0x27,0x29,0x29,0x3b,0x74,0x5b,0x65,0x5d,0x28,0x29, 0x7d,0x7d,0x29,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x48, 0x2e,0x6f,0x6e,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x63,0x6c, 0x69,0x63,0x6b,0x2e,0x62,0x73,0x2e,0x74,0x61,0x62,0x2e,0x64,0x61,0x74,0x61,0x2d, 0x61,0x70,0x69,0x22,0x2c,0x27,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74, 0x6f,0x67,0x67,0x6c,0x65,0x3d,0x22,0x74,0x61,0x62,0x22,0x5d,0x2c,0x20,0x5b,0x64, 0x61,0x74,0x61,0x2d,0x62,0x73,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3d,0x22,0x70, 0x69,0x6c,0x6c,0x22,0x5d,0x2c,0x20,0x5b,0x64,0x61,0x74,0x61,0x2d,0x62,0x73,0x2d, 0x74,0x6f,0x67,0x67,0x6c,0x65,0x3d,0x22,0x6c,0x69,0x73,0x74,0x22,0x5d,0x27,0x2c, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x5b,0x22,0x41, 0x22,0x2c,0x22,0x41,0x52,0x45,0x41,0x22,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64, 0x65,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29, 0x26,0x26,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75, 0x6c,0x74,0x28,0x29,0x2c,0x62,0x28,0x74,0x68,0x69,0x73,0x29,0x7c,0x7c,0x4d,0x72, 0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72,0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74, 0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x2e,0x73,0x68,0x6f,0x77,0x28, 0x29,0x7d,0x29,0x29,0x2c,0x6a,0x28,0x4d,0x72,0x29,0x3b,0x76,0x61,0x72,0x20,0x42, 0x72,0x3d,0x22,0x74,0x6f,0x61,0x73,0x74,0x22,0x2c,0x7a,0x72,0x3d,0x22,0x68,0x69, 0x64,0x65,0x22,0x2c,0x55,0x72,0x3d,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x57,0x72, 0x3d,0x22,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x22,0x2c,0x24,0x72,0x3d,0x7b,0x61, 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x22,0x62,0x6f,0x6f,0x6c,0x65,0x61, 0x6e,0x22,0x2c,0x61,0x75,0x74,0x6f,0x68,0x69,0x64,0x65,0x3a,0x22,0x62,0x6f,0x6f, 0x6c,0x65,0x61,0x6e,0x22,0x2c,0x64,0x65,0x6c,0x61,0x79,0x3a,0x22,0x6e,0x75,0x6d, 0x62,0x65,0x72,0x22,0x7d,0x2c,0x48,0x72,0x3d,0x7b,0x61,0x6e,0x69,0x6d,0x61,0x74, 0x69,0x6f,0x6e,0x3a,0x21,0x30,0x2c,0x61,0x75,0x74,0x6f,0x68,0x69,0x64,0x65,0x3a, 0x21,0x30,0x2c,0x64,0x65,0x6c,0x61,0x79,0x3a,0x35,0x65,0x33,0x7d,0x2c,0x56,0x72, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x75,0x28,0x6e, 0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x28,0x6e,0x29,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c,0x28,0x74,0x68, 0x69,0x73,0x2c,0x6e,0x29,0x2c,0x28,0x6f,0x3d,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x29,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x3d,0x6f,0x2e,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72,0x29, 0x2c,0x6f,0x2e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x6e,0x75,0x6c,0x6c, 0x2c,0x6f,0x2e,0x5f,0x68,0x61,0x73,0x4d,0x6f,0x75,0x73,0x65,0x49,0x6e,0x74,0x65, 0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x5f,0x68,0x61, 0x73,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x49,0x6e,0x74,0x65,0x72,0x61,0x63, 0x74,0x69,0x6f,0x6e,0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x5f,0x73,0x65,0x74,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x2c,0x6f,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x73,0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x68, 0x6f,0x77,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b, 0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x2e,0x62,0x73, 0x2e,0x74,0x6f,0x61,0x73,0x74,0x22,0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x65,0x64,0x7c,0x7c,0x28,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x6e, 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74, 0x2e,0x61,0x64,0x64,0x28,0x22,0x66,0x61,0x64,0x65,0x22,0x29,0x2c,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x7a,0x72,0x29,0x2c, 0x77,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x55,0x72,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x57,0x72,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65,0x43,0x61,0x6c,0x6c, 0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x57,0x72,0x29, 0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x65,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x73,0x68,0x6f,0x77,0x6e,0x2e,0x62,0x73,0x2e, 0x74,0x6f,0x61,0x73,0x74,0x22,0x29,0x2c,0x65,0x2e,0x5f,0x6d,0x61,0x79,0x62,0x65, 0x53,0x63,0x68,0x65,0x64,0x75,0x6c,0x65,0x48,0x69,0x64,0x65,0x28,0x29,0x7d,0x29, 0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x6e,0x69,0x6d, 0x61,0x74,0x69,0x6f,0x6e,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x68,0x69,0x64,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69, 0x73,0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x73,0x28,0x55,0x72,0x29,0x26,0x26,0x28,0x48,0x2e,0x74,0x72,0x69,0x67,0x67, 0x65,0x72,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, 0x2c,0x22,0x68,0x69,0x64,0x65,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x61,0x73,0x74,0x22, 0x29,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e,0x74, 0x65,0x64,0x7c,0x7c,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65, 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64, 0x28,0x57,0x72,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x71,0x75,0x65,0x75,0x65, 0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x7a,0x72, 0x29,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x57,0x72, 0x29,0x2c,0x65,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x55,0x72, 0x29,0x2c,0x48,0x2e,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x28,0x65,0x2e,0x5f,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x2e,0x62, 0x73,0x2e,0x74,0x6f,0x61,0x73,0x74,0x22,0x29,0x7d,0x29,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f, 0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, 0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x64,0x69,0x73,0x70, 0x6f,0x73,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6c,0x65,0x61, 0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69, 0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x55,0x72,0x29,0x26, 0x26,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28, 0x55,0x72,0x29,0x2c,0x72,0x28,0x6f,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74, 0x79,0x70,0x65,0x29,0x2c,0x22,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x22,0x2c,0x74, 0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x29,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66, 0x69,0x67,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x69, 0x28,0x69,0x28,0x69,0x28,0x7b,0x7d,0x2c,0x48,0x72,0x29,0x2c,0x65,0x65,0x2e,0x67, 0x65,0x74,0x44,0x61,0x74,0x61,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29, 0x2c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x65,0x26,0x26,0x65,0x3f,0x65,0x3a,0x7b,0x7d,0x29,0x2c,0x67,0x28,0x42, 0x72,0x2c,0x65,0x2c,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75, 0x63,0x74,0x6f,0x72,0x2e,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79,0x70,0x65, 0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x6d,0x61,0x79, 0x62,0x65,0x53,0x63,0x68,0x65,0x64,0x75,0x6c,0x65,0x48,0x69,0x64,0x65,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x74,0x68,0x69,0x73, 0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x61,0x75,0x74,0x6f,0x68,0x69,0x64, 0x65,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x68,0x61,0x73,0x4d,0x6f,0x75, 0x73,0x65,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x7c,0x7c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x68,0x61,0x73,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, 0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x7c,0x7c,0x28,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x73,0x65,0x74,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x65,0x2e,0x68,0x69,0x64,0x65,0x28,0x29,0x7d,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x65,0x6c,0x61,0x79, 0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x6f,0x6e,0x49, 0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x74,0x79,0x70,0x65,0x29,0x7b,0x63, 0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x22,0x3a,0x63, 0x61,0x73,0x65,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x22,0x3a,0x74,0x68, 0x69,0x73,0x2e,0x5f,0x68,0x61,0x73,0x4d,0x6f,0x75,0x73,0x65,0x49,0x6e,0x74,0x65, 0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x74,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x22,0x3a,0x63,0x61, 0x73,0x65,0x22,0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x22,0x3a,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x68,0x61,0x73,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x49,0x6e, 0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x74,0x7d,0x69,0x66,0x28,0x74, 0x29,0x74,0x68,0x69,0x73,0x2e,0x5f,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x28,0x29,0x3b,0x65,0x6c,0x73,0x65,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x2e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x54,0x61,0x72,0x67,0x65,0x74, 0x3b,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x3d, 0x3d,0x6e,0x7c,0x7c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x6e,0x29,0x7c,0x7c,0x74, 0x68,0x69,0x73,0x2e,0x5f,0x6d,0x61,0x79,0x62,0x65,0x53,0x63,0x68,0x65,0x64,0x75, 0x6c,0x65,0x48,0x69,0x64,0x65,0x28,0x29,0x7d,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x5f,0x73,0x65,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x3b,0x48,0x2e,0x6f, 0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x76,0x65,0x72,0x2e,0x62,0x73,0x2e,0x74,0x6f, 0x61,0x73,0x74,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x6f,0x6e,0x49,0x6e, 0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x21,0x30,0x29,0x7d, 0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6f,0x75,0x74,0x2e, 0x62,0x73,0x2e,0x74,0x6f,0x61,0x73,0x74,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x5f,0x6f,0x6e,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x2c,0x21,0x31,0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e,0x28,0x74,0x68,0x69, 0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x66,0x6f,0x63,0x75, 0x73,0x69,0x6e,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x61,0x73,0x74,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x5f,0x6f,0x6e,0x49,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x2c,0x21,0x30,0x29,0x7d,0x29,0x29,0x2c,0x48,0x2e,0x6f,0x6e, 0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x22, 0x66,0x6f,0x63,0x75,0x73,0x6f,0x75,0x74,0x2e,0x62,0x73,0x2e,0x74,0x6f,0x61,0x73, 0x74,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x5f,0x6f,0x6e,0x49,0x6e,0x74,0x65, 0x72,0x61,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x21,0x31,0x29,0x7d,0x29,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x5f,0x63,0x6c,0x65,0x61,0x72,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x63,0x6c,0x65,0x61,0x72,0x54,0x69, 0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x5f,0x74,0x69,0x6d,0x65,0x6f, 0x75,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x5d,0x2c,0x5b,0x7b,0x6b,0x65,0x79, 0x3a,0x22,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x54,0x79,0x70,0x65,0x22,0x2c,0x67, 0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x24,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22, 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x67,0x65,0x74,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48, 0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x4e,0x41,0x4d,0x45,0x22,0x2c, 0x67,0x65,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x42,0x72,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x6a,0x51,0x75,0x65,0x72,0x79,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e, 0x65,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x2e,0x67,0x65,0x74,0x4f,0x72,0x43,0x72, 0x65,0x61,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x28,0x74,0x68,0x69, 0x73,0x2c,0x65,0x29,0x3b,0x69,0x66,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x7b,0x69,0x66,0x28,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x5b,0x65,0x5d,0x29,0x74,0x68,0x72, 0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72, 0x28,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x6e,0x61,0x6d,0x65, 0x64,0x20,0x22,0x27,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2c,0x27,0x22, 0x27,0x29,0x29,0x3b,0x74,0x5b,0x65,0x5d,0x28,0x74,0x68,0x69,0x73,0x29,0x7d,0x7d, 0x29,0x29,0x7d,0x7d,0x5d,0x29,0x2c,0x6e,0x7d,0x28,0x71,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4b,0x28,0x56,0x72,0x29,0x2c,0x6a,0x28,0x56,0x72,0x29,0x2c, 0x7b,0x41,0x6c,0x65,0x72,0x74,0x3a,0x59,0x2c,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a, 0x58,0x2c,0x43,0x61,0x72,0x6f,0x75,0x73,0x65,0x6c,0x3a,0x70,0x65,0x2c,0x43,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x3a,0x78,0x65,0x2c,0x44,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x3a,0x5f,0x6e,0x2c,0x4d,0x6f,0x64,0x61,0x6c,0x3a,0x71,0x6e,0x2c,0x4f, 0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x3a,0x65,0x72,0x2c,0x50,0x6f,0x70,0x6f, 0x76,0x65,0x72,0x3a,0x6a,0x72,0x2c,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x53,0x70,0x79, 0x3a,0x44,0x72,0x2c,0x54,0x61,0x62,0x3a,0x4d,0x72,0x2c,0x54,0x6f,0x61,0x73,0x74, 0x3a,0x56,0x72,0x2c,0x54,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x3a,0x77,0x72,0x7d,0x7d, 0x28,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x39,0x30,0x29, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x74,0x2c,0x6e,0x2c, 0x69,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x52,0x65, 0x66,0x6c,0x65,0x63,0x74,0x26,0x26,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x67, 0x65,0x74,0x3f,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6f,0x3d,0x52, 0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x3a,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x72,0x28,0x65, 0x2c,0x74,0x29,0x3b,0x69,0x66,0x28,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f, 0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x28, 0x6f,0x2c,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x2e,0x67,0x65, 0x74,0x3f,0x69,0x2e,0x67,0x65,0x74,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x29,0x3a, 0x69,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x7d,0x2c,0x6f,0x28,0x74,0x2c,0x6e,0x2c, 0x69,0x7c,0x7c,0x74,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x6f,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x30,0x34,0x29,0x3b, 0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x21,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x65,0x2c,0x74,0x29,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d, 0x28,0x65,0x3d,0x72,0x28,0x65,0x29,0x29,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x39, 0x32,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x69,0x66,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x28,0x65,0x29,0x3b,0x74, 0x26,0x26,0x28,0x72,0x3d,0x72,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f, 0x72,0x28,0x65,0x2c,0x74,0x29,0x2e,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c, 0x65,0x7d,0x29,0x29,0x29,0x2c,0x6e,0x2e,0x70,0x75,0x73,0x68,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x6e,0x2c,0x72,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74, 0x3d,0x31,0x3b,0x74,0x3c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x74,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x74,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x74,0x5d, 0x3a,0x7b,0x7d,0x3b,0x74,0x25,0x32,0x3f,0x6f,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6e,0x29,0x2c,0x21,0x30,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x5b,0x74,0x5d,0x29,0x7d,0x29,0x29,0x3a,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x67,0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x73,0x3f,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72, 0x74,0x69,0x65,0x73,0x28,0x65,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67,0x65, 0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73,0x63, 0x72,0x69,0x70,0x74,0x6f,0x72,0x73,0x28,0x6e,0x29,0x29,0x3a,0x6f,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6e,0x29,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65, 0x72,0x74,0x79,0x28,0x65,0x2c,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x67, 0x65,0x74,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x44,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x6f,0x72,0x28,0x6e,0x2c,0x74,0x29,0x29,0x7d,0x29,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f, 0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x20,0x69,0x6e,0x20, 0x65,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x74,0x2c,0x7b,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x6e,0x2c,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a, 0x21,0x30,0x2c,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3a, 0x21,0x30,0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x7d,0x29, 0x3a,0x65,0x5b,0x74,0x5d,0x3d,0x6e,0x2c,0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x6e,0x28,0x32,0x39,0x34,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x39,0x35, 0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x33,0x37,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x32, 0x39,0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x72,0x28,0x65,0x29,0x7c,0x7c,0x6f,0x28,0x65,0x29,0x7c,0x7c,0x69,0x28,0x65, 0x29,0x7c,0x7c,0x61,0x28,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e, 0x28,0x31,0x33,0x36,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x41, 0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f, 0x72,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d, 0x28,0x65,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e, 0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x49,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x74,0x6f, 0x20,0x73,0x70,0x72,0x65,0x61,0x64,0x20,0x6e,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x72, 0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2e,0x5c,0x6e, 0x49,0x6e,0x20,0x6f,0x72,0x64,0x65,0x72,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x69, 0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x72,0x72, 0x61,0x79,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x20,0x6d,0x75,0x73,0x74,0x20, 0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x5b,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69, 0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d,0x28,0x29,0x20,0x6d,0x65,0x74,0x68,0x6f, 0x64,0x2e,0x22,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32, 0x39,0x38,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x74,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x29,0x74, 0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72, 0x6f,0x72,0x28,0x22,0x53,0x75,0x70,0x65,0x72,0x20,0x65,0x78,0x70,0x72,0x65,0x73, 0x73,0x69,0x6f,0x6e,0x20,0x6d,0x75,0x73,0x74,0x20,0x65,0x69,0x74,0x68,0x65,0x72, 0x20,0x62,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x6f,0x72,0x20,0x61,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x29,0x3b,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f, 0x74,0x79,0x70,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x28,0x74,0x26,0x26,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70, 0x65,0x2c,0x7b,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3a,0x7b, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2c,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65, 0x3a,0x21,0x30,0x2c,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65, 0x3a,0x21,0x30,0x7d,0x7d,0x29,0x2c,0x74,0x26,0x26,0x72,0x28,0x65,0x2c,0x74,0x29, 0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x74,0x2c,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x73,0x65,0x74,0x50,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x4f,0x66,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x5f,0x5f,0x70,0x72,0x6f,0x74,0x6f,0x5f,0x5f,0x3d,0x74,0x2c,0x65,0x7d, 0x2c,0x6e,0x28,0x74,0x2c,0x72,0x29,0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74, 0x73,0x3d,0x6e,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x31,0x30,0x34, 0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x33,0x30,0x30,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x33, 0x30,0x31,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x6f,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x6f,0x3d,0x72,0x28, 0x65,0x29,0x3b,0x69,0x66,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x72, 0x28,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74, 0x6f,0x72,0x3b,0x6e,0x3d,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e, 0x73,0x74,0x72,0x75,0x63,0x74,0x28,0x6f,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x2c,0x61,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6e,0x3d,0x6f,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x28,0x74,0x68, 0x69,0x73,0x2c,0x6e,0x29,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x22, 0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x52,0x65,0x66,0x6c,0x65,0x63,0x74,0x7c,0x7c,0x21,0x52,0x65, 0x66,0x6c,0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x52,0x65,0x66,0x6c, 0x65,0x63,0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x2e,0x73,0x68, 0x61,0x6d,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x22, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x50,0x72,0x6f,0x78,0x79,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x30,0x3b,0x74,0x72,0x79,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x61,0x74, 0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x74,0x6f,0x53,0x74, 0x72,0x69,0x6e,0x67,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x52,0x65,0x66,0x6c,0x65,0x63, 0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x28,0x44,0x61,0x74,0x65, 0x2c,0x5b,0x5d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x7d,0x29,0x29,0x29,0x2c,0x21,0x30,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x33,0x30, 0x33,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x74,0x7c,0x7c,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d, 0x72,0x28,0x74,0x29,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22, 0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x74,0x3f,0x6f,0x28,0x65,0x29, 0x3a,0x74,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f, 0x6c,0x26,0x26,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72, 0x61,0x74,0x6f,0x72,0x3f,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x3a,0x65,0x2e, 0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x26,0x26, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x65,0x2e,0x63,0x6f, 0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3d,0x3d,0x3d,0x53,0x79,0x6d,0x62, 0x6f,0x6c,0x26,0x26,0x65,0x21,0x3d,0x3d,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3f,0x22,0x73,0x79,0x6d,0x62,0x6f,0x6c, 0x22,0x3a,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x7d,0x2c,0x6e,0x28,0x74,0x29, 0x7d,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x6e,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78, 0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x29, 0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x52,0x65,0x66,0x65,0x72,0x65, 0x6e,0x63,0x65,0x45,0x72,0x72,0x6f,0x72,0x28,0x22,0x74,0x68,0x69,0x73,0x20,0x68, 0x61,0x73,0x6e,0x27,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x69,0x73,0x65,0x64,0x20,0x2d,0x20,0x73,0x75,0x70,0x65,0x72,0x28,0x29, 0x20,0x68,0x61,0x73,0x6e,0x27,0x74,0x20,0x62,0x65,0x65,0x6e,0x20,0x63,0x61,0x6c, 0x6c,0x65,0x64,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x21,0x28,0x65,0x20,0x69,0x6e, 0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x74,0x29,0x29,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28, 0x22,0x43,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x63,0x61,0x6c,0x6c,0x20,0x61,0x20,0x63, 0x6c,0x61,0x73,0x73,0x20,0x61,0x73,0x20,0x61,0x20,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x29,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x3d,0x30, 0x3b,0x6e,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29, 0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x5b,0x6e,0x5d,0x3b,0x72,0x2e,0x65,0x6e, 0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3d,0x72,0x2e,0x65,0x6e,0x75,0x6d,0x65, 0x72,0x61,0x62,0x6c,0x65,0x7c,0x7c,0x21,0x31,0x2c,0x72,0x2e,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x75,0x72,0x61,0x62,0x6c,0x65,0x3d,0x21,0x30,0x2c,0x22,0x76,0x61,0x6c, 0x75,0x65,0x22,0x69,0x6e,0x20,0x72,0x26,0x26,0x28,0x72,0x2e,0x77,0x72,0x69,0x74, 0x61,0x62,0x6c,0x65,0x3d,0x21,0x30,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65, 0x2c,0x72,0x2e,0x6b,0x65,0x79,0x2c,0x72,0x29,0x7d,0x7d,0x65,0x2e,0x65,0x78,0x70, 0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x6e, 0x28,0x65,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2c,0x74,0x29,0x2c, 0x72,0x26,0x26,0x6e,0x28,0x65,0x2c,0x72,0x29,0x2c,0x65,0x7d,0x7d,0x2c,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x33,0x30,0x37,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x33, 0x30,0x38,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x31,0x33,0x37,0x29,0x2c,0x61,0x3d,0x6e, 0x28,0x33,0x30,0x39,0x29,0x3b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x72,0x28,0x65,0x29,0x7c,0x7c,0x6f,0x28,0x65,0x2c,0x74, 0x29,0x7c,0x7c,0x69,0x28,0x65,0x2c,0x74,0x29,0x7c,0x7c,0x61,0x28,0x29,0x7d,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65, 0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73, 0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x75,0x6e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c, 0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x5b,0x5d, 0x2c,0x72,0x3d,0x21,0x30,0x2c,0x6f,0x3d,0x21,0x31,0x2c,0x69,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x61,0x2c,0x75,0x3d,0x65,0x5b,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65, 0x72,0x61,0x74,0x6f,0x72,0x5d,0x28,0x29,0x3b,0x21,0x28,0x72,0x3d,0x28,0x61,0x3d, 0x75,0x2e,0x6e,0x65,0x78,0x74,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x29,0x26, 0x26,0x28,0x6e,0x2e,0x70,0x75,0x73,0x68,0x28,0x61,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x29,0x2c,0x21,0x74,0x7c,0x7c,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x21,0x3d, 0x3d,0x74,0x29,0x3b,0x72,0x3d,0x21,0x30,0x29,0x3b,0x7d,0x63,0x61,0x74,0x63,0x68, 0x28,0x63,0x29,0x7b,0x6f,0x3d,0x21,0x30,0x2c,0x69,0x3d,0x63,0x7d,0x66,0x69,0x6e, 0x61,0x6c,0x6c,0x79,0x7b,0x74,0x72,0x79,0x7b,0x72,0x7c,0x7c,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x75,0x2e,0x72,0x65,0x74,0x75,0x72,0x6e,0x7c,0x7c,0x75,0x2e,0x72,0x65, 0x74,0x75,0x72,0x6e,0x28,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x69, 0x66,0x28,0x6f,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x69,0x7d,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x7d,0x7d,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68,0x72,0x6f, 0x77,0x20,0x6e,0x65,0x77,0x20,0x54,0x79,0x70,0x65,0x45,0x72,0x72,0x6f,0x72,0x28, 0x22,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74, 0x20,0x74,0x6f,0x20,0x64,0x65,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20, 0x6e,0x6f,0x6e,0x2d,0x69,0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x2e,0x5c,0x6e,0x49,0x6e,0x20,0x6f,0x72,0x64,0x65,0x72, 0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x69,0x74,0x65,0x72,0x61,0x62,0x6c,0x65,0x2c, 0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x72,0x72,0x61,0x79,0x20,0x6f,0x62,0x6a,0x65,0x63, 0x74,0x73,0x20,0x6d,0x75,0x73,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x5b, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x69,0x74,0x65,0x72,0x61,0x74,0x6f,0x72,0x5d, 0x28,0x29,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2e,0x22,0x29,0x7d,0x7d,0x2c,0x2c, 0x2c,0x2c,0x2c,0x2c,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74, 0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x29,0x2c,0x6f,0x3d,0x6e, 0x28,0x33,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x61,0x3d,0x6e,0x2e,0x6e, 0x28,0x69,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x63,0x3d,0x6e,0x28,0x37, 0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x73,0x3d,0x5b,0x22,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d,0x2c,0x66,0x3d,0x5b,0x22,0x78,0x78,0x6c, 0x22,0x2c,0x22,0x78,0x6c,0x22,0x2c,0x22,0x6c,0x67,0x22,0x2c,0x22,0x6d,0x64,0x22, 0x2c,0x22,0x73,0x6d,0x22,0x2c,0x22,0x78,0x73,0x22,0x5d,0x2c,0x64,0x3d,0x75,0x2e, 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x65,0x2e,0x61,0x73,0x2c, 0x64,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x3f,0x22,0x64,0x69, 0x76,0x22,0x3a,0x75,0x2c,0x70,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e, 0x61,0x29,0x28,0x65,0x2c,0x73,0x29,0x2c,0x68,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x63,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x72,0x6f,0x77,0x22,0x29,0x2c,0x76, 0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x68,0x2c,0x22,0x2d,0x63, 0x6f,0x6c,0x73,0x22,0x29,0x2c,0x67,0x3d,0x5b,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e, 0x3d,0x70,0x5b,0x65,0x5d,0x3b,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x70,0x5b,0x65, 0x5d,0x2c,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6e,0x26,0x26,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e, 0x3f,0x6e,0x2e,0x63,0x6f,0x6c,0x73,0x3a,0x6e,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x22,0x78,0x73,0x22,0x21,0x3d,0x3d,0x65,0x3f,0x22,0x2d,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x65,0x29,0x3a,0x22,0x22,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x74,0x26,0x26,0x67,0x2e,0x70,0x75,0x73,0x68,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x76,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2c, 0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d, 0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x64,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a, 0x74,0x7d,0x2c,0x70,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x61,0x2e,0x61,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f, 0x69,0x64,0x20,0x30,0x2c,0x5b,0x69,0x2c,0x68,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x67,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x64,0x2e,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x52,0x6f,0x77,0x22,0x2c, 0x74,0x2e,0x61,0x3d,0x64,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69, 0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x29,0x2c,0x6f, 0x3d,0x6e,0x28,0x33,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x61,0x3d,0x6e, 0x2e,0x6e,0x28,0x69,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x63,0x3d,0x6e, 0x2e,0x6e,0x28,0x75,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x37,0x29,0x2c,0x73,0x3d,0x6e, 0x28,0x35,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x33,0x35,0x29,0x2c,0x64,0x3d,0x6e,0x28, 0x38,0x31,0x29,0x2c,0x70,0x3d,0x6e,0x28,0x35,0x30,0x29,0x2c,0x68,0x3d,0x6e,0x28, 0x35,0x38,0x29,0x2c,0x76,0x3d,0x6e,0x28,0x38,0x35,0x29,0x2c,0x67,0x3d,0x6e,0x28, 0x38,0x30,0x29,0x2c,0x6d,0x3d,0x6e,0x28,0x31,0x36,0x29,0x2c,0x62,0x3d,0x75,0x2e, 0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x6e,0x75, 0x6c,0x6c,0x29,0x2c,0x79,0x3d,0x6e,0x28,0x37,0x38,0x29,0x2c,0x5f,0x3d,0x6e,0x28, 0x31,0x39,0x29,0x2c,0x77,0x3d,0x6e,0x28,0x33,0x32,0x29,0x2c,0x4f,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3b,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x78,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x77, 0x2e,0x61,0x29,0x28,0x65,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x3b,0x74,0x72, 0x79,0x7b,0x66,0x6f,0x72,0x28,0x6f,0x2e,0x73,0x28,0x29,0x3b,0x21,0x28,0x72,0x3d, 0x6f,0x2e,0x6e,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x29,0x69,0x66,0x28, 0x45,0x28,0x6e,0x3d,0x72,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x74,0x29,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x69,0x29, 0x7b,0x6f,0x2e,0x65,0x28,0x69,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b, 0x6f,0x2e,0x66,0x28,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x45,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f, 0x3b,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x30,0x3b,0x69,0x66,0x28,0x65,0x26,0x26,0x74,0x26,0x26,0x28,0x6e,0x3d,0x65, 0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x29,0x3d,0x3d,0x3d, 0x74,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x3d,0x3d,0x3d,0x44,0x61,0x74,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x3d,0x3d,0x3d, 0x74,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x28,0x29,0x3b,0x69,0x66,0x28,0x6e, 0x3d,0x3d,0x3d,0x52,0x65,0x67,0x45,0x78,0x70,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3d,0x3d,0x3d, 0x74,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x69,0x66,0x28, 0x6e,0x3d,0x3d,0x3d,0x41,0x72,0x72,0x61,0x79,0x29,0x7b,0x69,0x66,0x28,0x28,0x72, 0x3d,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3d,0x3d,0x3d,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x29,0x66,0x6f,0x72,0x28,0x3b,0x72,0x2d,0x2d,0x26,0x26, 0x45,0x28,0x65,0x5b,0x72,0x5d,0x2c,0x74,0x5b,0x72,0x5d,0x29,0x3b,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3d,0x3d,0x3d,0x72,0x7d,0x69,0x66,0x28,0x6e, 0x3d,0x3d,0x3d,0x53,0x65,0x74,0x29,0x7b,0x69,0x66,0x28,0x65,0x2e,0x73,0x69,0x7a, 0x65,0x21,0x3d,0x3d,0x74,0x2e,0x73,0x69,0x7a,0x65,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x31,0x3b,0x76,0x61,0x72,0x20,0x69,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x77,0x2e,0x61,0x29,0x28,0x65,0x29,0x3b,0x74,0x72,0x79,0x7b,0x66, 0x6f,0x72,0x28,0x61,0x2e,0x73,0x28,0x29,0x3b,0x21,0x28,0x69,0x3d,0x61,0x2e,0x6e, 0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b,0x29,0x7b,0x69,0x66,0x28,0x28,0x6f, 0x3d,0x72,0x3d,0x69,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x26,0x26,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f, 0x26,0x26,0x21,0x28,0x6f,0x3d,0x78,0x28,0x74,0x2c,0x6f,0x29,0x29,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x21,0x74,0x2e,0x68,0x61,0x73, 0x28,0x6f,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x7d,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x6c,0x29,0x7b,0x61,0x2e,0x65,0x28,0x6c,0x29,0x7d,0x66,0x69, 0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x61,0x2e,0x66,0x28,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x30,0x7d,0x69,0x66,0x28,0x6e,0x3d,0x3d,0x3d,0x4d,0x61,0x70,0x29, 0x7b,0x69,0x66,0x28,0x65,0x2e,0x73,0x69,0x7a,0x65,0x21,0x3d,0x3d,0x74,0x2e,0x73, 0x69,0x7a,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x76,0x61,0x72, 0x20,0x75,0x2c,0x63,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x77,0x2e,0x61,0x29, 0x28,0x65,0x29,0x3b,0x74,0x72,0x79,0x7b,0x66,0x6f,0x72,0x28,0x63,0x2e,0x73,0x28, 0x29,0x3b,0x21,0x28,0x75,0x3d,0x63,0x2e,0x6e,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e, 0x65,0x3b,0x29,0x7b,0x69,0x66,0x28,0x28,0x6f,0x3d,0x28,0x72,0x3d,0x75,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x29,0x5b,0x30,0x5d,0x29,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65, 0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6f,0x26,0x26, 0x21,0x28,0x6f,0x3d,0x78,0x28,0x74,0x2c,0x6f,0x29,0x29,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28,0x21,0x45,0x28,0x72,0x5b,0x31,0x5d,0x2c, 0x74,0x2e,0x67,0x65,0x74,0x28,0x6f,0x29,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x7d,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6c,0x29,0x7b,0x63,0x2e,0x65, 0x28,0x6c,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x63,0x2e,0x66,0x28, 0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x7d,0x69,0x66,0x28,0x6e,0x3d, 0x3d,0x3d,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66,0x65,0x72,0x29,0x65,0x3d, 0x6e,0x65,0x77,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x28,0x65, 0x29,0x2c,0x74,0x3d,0x6e,0x65,0x77,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72, 0x61,0x79,0x28,0x74,0x29,0x3b,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x3d, 0x3d,0x3d,0x44,0x61,0x74,0x61,0x56,0x69,0x65,0x77,0x29,0x7b,0x69,0x66,0x28,0x28, 0x72,0x3d,0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3d, 0x3d,0x3d,0x74,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68,0x29,0x66, 0x6f,0x72,0x28,0x3b,0x72,0x2d,0x2d,0x26,0x26,0x65,0x2e,0x67,0x65,0x74,0x49,0x6e, 0x74,0x38,0x28,0x72,0x29,0x3d,0x3d,0x3d,0x74,0x2e,0x67,0x65,0x74,0x49,0x6e,0x74, 0x38,0x28,0x72,0x29,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x3d, 0x3d,0x3d,0x72,0x7d,0x69,0x66,0x28,0x41,0x72,0x72,0x61,0x79,0x42,0x75,0x66,0x66, 0x65,0x72,0x2e,0x69,0x73,0x56,0x69,0x65,0x77,0x28,0x65,0x29,0x29,0x7b,0x69,0x66, 0x28,0x28,0x72,0x3d,0x65,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68, 0x29,0x3d,0x3d,0x3d,0x74,0x2e,0x62,0x79,0x74,0x65,0x4c,0x65,0x6e,0x67,0x74,0x68, 0x29,0x66,0x6f,0x72,0x28,0x3b,0x72,0x2d,0x2d,0x26,0x26,0x65,0x5b,0x72,0x5d,0x3d, 0x3d,0x3d,0x74,0x5b,0x72,0x5d,0x3b,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d, 0x31,0x3d,0x3d,0x3d,0x72,0x7d,0x69,0x66,0x28,0x21,0x6e,0x7c,0x7c,0x22,0x6f,0x62, 0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x6e,0x20,0x69,0x6e,0x20,0x72,0x3d,0x30,0x2c,0x65, 0x29,0x7b,0x69,0x66,0x28,0x4f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x6e,0x29, 0x26,0x26,0x2b,0x2b,0x72,0x26,0x26,0x21,0x4f,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74, 0x2c,0x6e,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x31,0x3b,0x69,0x66,0x28, 0x21,0x28,0x6e,0x20,0x69,0x6e,0x20,0x74,0x29,0x7c,0x7c,0x21,0x45,0x28,0x65,0x5b, 0x6e,0x5d,0x2c,0x74,0x5b,0x6e,0x5d,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21, 0x31,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x6b,0x65,0x79,0x73,0x28,0x74,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x3d, 0x3d,0x72,0x7d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x21,0x3d,0x3d,0x65, 0x26,0x26,0x74,0x21,0x3d,0x3d,0x74,0x7d,0x76,0x61,0x72,0x20,0x6a,0x3d,0x6e,0x28, 0x35,0x37,0x29,0x3b,0x76,0x61,0x72,0x20,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x5b,0x65,0x5b,0x30,0x5d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75, 0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x69,0x66,0x28,0x74,0x28,0x29,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x31,0x5d,0x28,0x6e,0x29,0x7d,0x29, 0x2c,0x5b,0x74,0x2c,0x65,0x5b,0x31,0x5d,0x5d,0x29,0x5d,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x2d,0x22,0x29,0x5b,0x30, 0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x43,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74, 0x3d,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x67,0x65,0x74, 0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65, 0x63,0x74,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x77,0x69,0x64,0x74, 0x68,0x3a,0x6e,0x2e,0x77,0x69,0x64,0x74,0x68,0x2f,0x31,0x2c,0x68,0x65,0x69,0x67, 0x68,0x74,0x3a,0x6e,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2f,0x31,0x2c,0x74,0x6f, 0x70,0x3a,0x6e,0x2e,0x74,0x6f,0x70,0x2f,0x31,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a, 0x6e,0x2e,0x72,0x69,0x67,0x68,0x74,0x2f,0x31,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x3a,0x6e,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2f,0x31,0x2c,0x6c,0x65,0x66,0x74, 0x3a,0x6e,0x2e,0x6c,0x65,0x66,0x74,0x2f,0x31,0x2c,0x78,0x3a,0x6e,0x2e,0x6c,0x65, 0x66,0x74,0x2f,0x31,0x2c,0x79,0x3a,0x6e,0x2e,0x74,0x6f,0x70,0x2f,0x31,0x7d,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x43,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x72,0x3d,0x65,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4d,0x61,0x74,0x68,0x2e,0x61,0x62,0x73,0x28,0x74,0x2e,0x77,0x69,0x64,0x74, 0x68,0x2d,0x6e,0x29,0x3c,0x3d,0x31,0x26,0x26,0x28,0x6e,0x3d,0x74,0x2e,0x77,0x69, 0x64,0x74,0x68,0x29,0x2c,0x4d,0x61,0x74,0x68,0x2e,0x61,0x62,0x73,0x28,0x74,0x2e, 0x68,0x65,0x69,0x67,0x68,0x74,0x2d,0x72,0x29,0x3c,0x3d,0x31,0x26,0x26,0x28,0x72, 0x3d,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x29,0x2c,0x7b,0x78,0x3a,0x65,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x4c,0x65,0x66,0x74,0x2c,0x79,0x3a,0x65,0x2e,0x6f, 0x66,0x66,0x73,0x65,0x74,0x54,0x6f,0x70,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x6e, 0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x72,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x54,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x3b,0x69,0x66,0x28,0x22,0x5b,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x57,0x69, 0x6e,0x64,0x6f,0x77,0x5d,0x22,0x21,0x3d,0x3d,0x65,0x2e,0x74,0x6f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x28,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6f, 0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74, 0x56,0x69,0x65,0x77,0x7c,0x7c,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x20,0x69,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x54,0x28,0x65,0x29,0x2e,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, 0x6f,0x66,0x20,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x44,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x54,0x28,0x65, 0x29,0x2e,0x48,0x54,0x4d,0x4c,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x65, 0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x48,0x54,0x4d,0x4c, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64, 0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x53,0x68,0x61,0x64,0x6f,0x77,0x52,0x6f,0x6f,0x74,0x26,0x26,0x28,0x65,0x20, 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x54,0x28,0x65,0x29,0x2e, 0x53,0x68,0x61,0x64,0x6f,0x77,0x52,0x6f,0x6f,0x74,0x7c,0x7c,0x65,0x20,0x69,0x6e, 0x73,0x74,0x61,0x6e,0x63,0x65,0x6f,0x66,0x20,0x53,0x68,0x61,0x64,0x6f,0x77,0x52, 0x6f,0x6f,0x74,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x49,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x67,0x65,0x74, 0x52,0x6f,0x6f,0x74,0x4e,0x6f,0x64,0x65,0x26,0x26,0x74,0x2e,0x67,0x65,0x74,0x52, 0x6f,0x6f,0x74,0x4e,0x6f,0x64,0x65,0x28,0x29,0x3b,0x69,0x66,0x28,0x65,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x21,0x30,0x3b,0x69,0x66,0x28,0x6e,0x26,0x26,0x4e,0x28,0x6e,0x29,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x3b,0x64,0x6f,0x7b,0x69,0x66,0x28,0x72,0x26, 0x26,0x65,0x2e,0x69,0x73,0x53,0x61,0x6d,0x65,0x4e,0x6f,0x64,0x65,0x28,0x72,0x29, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x30,0x3b,0x72,0x3d,0x72,0x2e,0x70,0x61, 0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7c,0x7c,0x72,0x2e,0x68,0x6f,0x73,0x74, 0x7d,0x77,0x68,0x69,0x6c,0x65,0x28,0x72,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x31,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x52,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3f,0x28,0x65,0x2e,0x6e,0x6f,0x64, 0x65,0x4e,0x61,0x6d,0x65,0x7c,0x7c,0x22,0x22,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x77, 0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x54,0x28,0x65,0x29,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70,0x75, 0x74,0x65,0x64,0x53,0x74,0x79,0x6c,0x65,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x46,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x5b,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x2c,0x22,0x74,0x64,0x22,0x2c,0x22,0x74, 0x68,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x52,0x28,0x65,0x29, 0x29,0x3e,0x3d,0x30,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x28,0x50,0x28,0x65,0x29,0x3f, 0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3a, 0x65,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x7c,0x7c,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x42,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x68,0x74,0x6d,0x6c,0x22,0x3d,0x3d,0x3d,0x52,0x28,0x65,0x29,0x3f, 0x65,0x3a,0x65,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x6c,0x6f,0x74, 0x7c,0x7c,0x65,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7c,0x7c, 0x28,0x4e,0x28,0x65,0x29,0x3f,0x65,0x2e,0x68,0x6f,0x73,0x74,0x3a,0x6e,0x75,0x6c, 0x6c,0x29,0x7c,0x7c,0x4d,0x28,0x65,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x7a,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x28, 0x65,0x29,0x26,0x26,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x21,0x3d,0x3d,0x4c,0x28, 0x65,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3f,0x65,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x50,0x61,0x72,0x65,0x6e,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x28,0x65,0x29,0x7b,0x66,0x6f, 0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x54,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x7a, 0x28,0x65,0x29,0x3b,0x6e,0x26,0x26,0x46,0x28,0x6e,0x29,0x26,0x26,0x22,0x73,0x74, 0x61,0x74,0x69,0x63,0x22,0x3d,0x3d,0x3d,0x4c,0x28,0x6e,0x29,0x2e,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3b,0x29,0x6e,0x3d,0x7a,0x28,0x6e,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x26,0x26,0x28,0x22,0x68,0x74,0x6d,0x6c,0x22,0x3d, 0x3d,0x3d,0x52,0x28,0x6e,0x29,0x7c,0x7c,0x22,0x62,0x6f,0x64,0x79,0x22,0x3d,0x3d, 0x3d,0x52,0x28,0x6e,0x29,0x26,0x26,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x22,0x3d, 0x3d,0x3d,0x4c,0x28,0x6e,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29, 0x3f,0x74,0x3a,0x6e,0x7c,0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x2d,0x31,0x21,0x3d,0x3d,0x6e,0x61,0x76, 0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74, 0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x66,0x69,0x72,0x65,0x66,0x6f,0x78,0x22, 0x29,0x3b,0x69,0x66,0x28,0x2d,0x31,0x21,0x3d,0x3d,0x6e,0x61,0x76,0x69,0x67,0x61, 0x74,0x6f,0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x54,0x72,0x69,0x64,0x65,0x6e,0x74,0x22,0x29, 0x26,0x26,0x44,0x28,0x65,0x29,0x26,0x26,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x3d, 0x3d,0x3d,0x4c,0x28,0x65,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x66,0x6f,0x72,0x28, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x42,0x28,0x65,0x29,0x3b,0x44,0x28,0x6e,0x29,0x26, 0x26,0x5b,0x22,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x22,0x62,0x6f,0x64,0x79,0x22,0x5d, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x52,0x28,0x6e,0x29,0x29,0x3c,0x30, 0x3b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x4c,0x28,0x6e,0x29,0x3b,0x69,0x66, 0x28,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x21,0x3d,0x3d,0x72,0x2e,0x74,0x72,0x61,0x6e, 0x73,0x66,0x6f,0x72,0x6d,0x7c,0x7c,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x21,0x3d,0x3d, 0x72,0x2e,0x70,0x65,0x72,0x73,0x70,0x65,0x63,0x74,0x69,0x76,0x65,0x7c,0x7c,0x22, 0x70,0x61,0x69,0x6e,0x74,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x7c,0x7c,0x2d,0x31,0x21,0x3d,0x3d,0x5b,0x22,0x74,0x72,0x61,0x6e,0x73, 0x66,0x6f,0x72,0x6d,0x22,0x2c,0x22,0x70,0x65,0x72,0x73,0x70,0x65,0x63,0x74,0x69, 0x76,0x65,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x72,0x2e,0x77, 0x69,0x6c,0x6c,0x43,0x68,0x61,0x6e,0x67,0x65,0x29,0x7c,0x7c,0x74,0x26,0x26,0x22, 0x66,0x69,0x6c,0x74,0x65,0x72,0x22,0x3d,0x3d,0x3d,0x72,0x2e,0x77,0x69,0x6c,0x6c, 0x43,0x68,0x61,0x6e,0x67,0x65,0x7c,0x7c,0x74,0x26,0x26,0x72,0x2e,0x66,0x69,0x6c, 0x74,0x65,0x72,0x26,0x26,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x21,0x3d,0x3d,0x72,0x2e, 0x66,0x69,0x6c,0x74,0x65,0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3b, 0x6e,0x3d,0x6e,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x4e,0x6f,0x64,0x65,0x7d,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x7d,0x28,0x65,0x29,0x7c,0x7c, 0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x22,0x74,0x6f,0x70,0x22,0x2c,0x22,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x22,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65, 0x29,0x3e,0x3d,0x30,0x3f,0x22,0x78,0x22,0x3a,0x22,0x79,0x22,0x7d,0x76,0x61,0x72, 0x20,0x24,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x2c,0x48,0x3d,0x4d,0x61, 0x74,0x68,0x2e,0x6d,0x69,0x6e,0x2c,0x56,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f, 0x75,0x6e,0x64,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x47,0x28,0x65, 0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x24,0x28,0x65, 0x2c,0x48,0x28,0x74,0x2c,0x6e,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x71,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x7b, 0x74,0x6f,0x70,0x3a,0x30,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x30,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2c,0x65, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4b,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65,0x64,0x75,0x63, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x6e,0x5d,0x3d,0x65,0x2c,0x74, 0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x7d,0x76,0x61,0x72,0x20,0x59,0x3d,0x22,0x74,0x6f, 0x70,0x22,0x2c,0x51,0x3d,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x2c,0x58,0x3d, 0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x2c,0x4a,0x3d,0x22,0x6c,0x65,0x66,0x74,0x22, 0x2c,0x5a,0x3d,0x22,0x61,0x75,0x74,0x6f,0x22,0x2c,0x65,0x65,0x3d,0x5b,0x59,0x2c, 0x51,0x2c,0x58,0x2c,0x4a,0x5d,0x2c,0x74,0x65,0x3d,0x22,0x73,0x74,0x61,0x72,0x74, 0x22,0x2c,0x6e,0x65,0x3d,0x22,0x65,0x6e,0x64,0x22,0x2c,0x72,0x65,0x3d,0x22,0x76, 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x2c,0x6f,0x65,0x3d,0x22,0x70,0x6f,0x70, 0x70,0x65,0x72,0x22,0x2c,0x69,0x65,0x3d,0x65,0x65,0x2e,0x72,0x65,0x64,0x75,0x63, 0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x5b,0x74,0x2b,0x22,0x2d,0x22,0x2b,0x74,0x65,0x2c,0x74,0x2b,0x22,0x2d,0x22, 0x2b,0x6e,0x65,0x5d,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x61,0x65,0x3d,0x5b, 0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x65,0x2c,0x5b,0x5a,0x5d,0x29, 0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x5b,0x74,0x2c,0x74,0x2b,0x22,0x2d,0x22,0x2b, 0x74,0x65,0x2c,0x74,0x2b,0x22,0x2d,0x22,0x2b,0x6e,0x65,0x5d,0x29,0x7d,0x29,0x2c, 0x5b,0x5d,0x29,0x2c,0x75,0x65,0x3d,0x5b,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x52, 0x65,0x61,0x64,0x22,0x2c,0x22,0x72,0x65,0x61,0x64,0x22,0x2c,0x22,0x61,0x66,0x74, 0x65,0x72,0x52,0x65,0x61,0x64,0x22,0x2c,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x4d, 0x61,0x69,0x6e,0x22,0x2c,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c,0x22,0x61,0x66,0x74, 0x65,0x72,0x4d,0x61,0x69,0x6e,0x22,0x2c,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x57, 0x72,0x69,0x74,0x65,0x22,0x2c,0x22,0x77,0x72,0x69,0x74,0x65,0x22,0x2c,0x22,0x61, 0x66,0x74,0x65,0x72,0x57,0x72,0x69,0x74,0x65,0x22,0x5d,0x3b,0x76,0x61,0x72,0x20, 0x63,0x65,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x61,0x72,0x72,0x6f,0x77,0x22, 0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73, 0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d, 0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65, 0x2c,0x6f,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x69,0x3d,0x6e, 0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c, 0x61,0x3d,0x6e,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74, 0x61,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c, 0x75,0x3d,0x53,0x28,0x6e,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29, 0x2c,0x63,0x3d,0x57,0x28,0x75,0x29,0x2c,0x6c,0x3d,0x5b,0x4a,0x2c,0x58,0x5d,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x75,0x29,0x3e,0x3d,0x30,0x3f,0x22,0x68, 0x65,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3b,0x69, 0x66,0x28,0x69,0x26,0x26,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x71,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x28,0x65,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x65, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b, 0x7d,0x2c,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x7d,0x29,0x29,0x3a,0x65,0x29,0x3f,0x65,0x3a,0x4b,0x28,0x65,0x2c,0x65,0x65,0x29, 0x29,0x7d,0x28,0x6f,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x6e,0x29,0x2c, 0x66,0x3d,0x41,0x28,0x69,0x29,0x2c,0x64,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x63, 0x3f,0x59,0x3a,0x4a,0x2c,0x70,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x63,0x3f,0x51, 0x3a,0x58,0x2c,0x68,0x3d,0x6e,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x5b,0x6c,0x5d,0x2b,0x6e,0x2e,0x72,0x65,0x63,0x74, 0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x5b,0x63,0x5d,0x2d,0x61, 0x5b,0x63,0x5d,0x2d,0x6e,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x5b,0x6c,0x5d,0x2c,0x76,0x3d,0x61,0x5b,0x63,0x5d,0x2d,0x6e,0x2e,0x72, 0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x5b,0x63, 0x5d,0x2c,0x67,0x3d,0x55,0x28,0x69,0x29,0x2c,0x6d,0x3d,0x67,0x3f,0x22,0x79,0x22, 0x3d,0x3d,0x3d,0x63,0x3f,0x67,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69, 0x67,0x68,0x74,0x7c,0x7c,0x30,0x3a,0x67,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57, 0x69,0x64,0x74,0x68,0x7c,0x7c,0x30,0x3a,0x30,0x2c,0x62,0x3d,0x68,0x2f,0x32,0x2d, 0x76,0x2f,0x32,0x2c,0x79,0x3d,0x73,0x5b,0x64,0x5d,0x2c,0x5f,0x3d,0x6d,0x2d,0x66, 0x5b,0x6c,0x5d,0x2d,0x73,0x5b,0x70,0x5d,0x2c,0x77,0x3d,0x6d,0x2f,0x32,0x2d,0x66, 0x5b,0x6c,0x5d,0x2f,0x32,0x2b,0x62,0x2c,0x4f,0x3d,0x47,0x28,0x79,0x2c,0x77,0x2c, 0x5f,0x29,0x2c,0x78,0x3d,0x63,0x3b,0x6e,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, 0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x72,0x5d,0x3d,0x28,0x28,0x74,0x3d,0x7b,0x7d, 0x29,0x5b,0x78,0x5d,0x3d,0x4f,0x2c,0x74,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x4f, 0x66,0x66,0x73,0x65,0x74,0x3d,0x4f,0x2d,0x77,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x65, 0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c, 0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e, 0x3f,0x22,0x5b,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x61, 0x72,0x72,0x6f,0x77,0x5d,0x22,0x3a,0x6e,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72, 0x26,0x26,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x72,0x7c,0x7c,0x28,0x72,0x3d,0x74,0x2e,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2e,0x71,0x75,0x65, 0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x72,0x29,0x29,0x29,0x26, 0x26,0x49,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f, 0x70,0x70,0x65,0x72,0x2c,0x72,0x29,0x26,0x26,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x3d,0x72,0x29,0x7d,0x2c,0x72, 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x3a,0x5b,0x22,0x70,0x6f,0x70,0x70,0x65,0x72, 0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x22,0x5d,0x2c,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74,0x73,0x3a,0x5b,0x22,0x70,0x72,0x65, 0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x22,0x5d,0x7d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x65,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x2d, 0x22,0x29,0x5b,0x31,0x5d,0x7d,0x76,0x61,0x72,0x20,0x73,0x65,0x3d,0x7b,0x74,0x6f, 0x70,0x3a,0x22,0x61,0x75,0x74,0x6f,0x22,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x22, 0x61,0x75,0x74,0x6f,0x22,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x22,0x61,0x75, 0x74,0x6f,0x22,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x22,0x61,0x75,0x74,0x6f,0x22,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72, 0x2c,0x72,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x52,0x65,0x63,0x74,0x2c, 0x6f,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x69,0x3d, 0x65,0x2e,0x76,0x61,0x72,0x69,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x61,0x3d,0x65,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x75,0x3d,0x65,0x2e,0x70,0x6f,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x67,0x70,0x75,0x41,0x63,0x63,0x65, 0x6c,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6c,0x3d,0x65,0x2e,0x61,0x64,0x61, 0x70,0x74,0x69,0x76,0x65,0x2c,0x73,0x3d,0x65,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x4f, 0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x66,0x3d,0x21,0x30,0x3d,0x3d,0x3d,0x73,0x3f, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x78,0x2c,0x6e,0x3d,0x65,0x2e,0x79,0x2c,0x72,0x3d,0x77,0x69, 0x6e,0x64,0x6f,0x77,0x2e,0x64,0x65,0x76,0x69,0x63,0x65,0x50,0x69,0x78,0x65,0x6c, 0x52,0x61,0x74,0x69,0x6f,0x7c,0x7c,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b, 0x78,0x3a,0x56,0x28,0x56,0x28,0x74,0x2a,0x72,0x29,0x2f,0x72,0x29,0x7c,0x7c,0x30, 0x2c,0x79,0x3a,0x56,0x28,0x56,0x28,0x6e,0x2a,0x72,0x29,0x2f,0x72,0x29,0x7c,0x7c, 0x30,0x7d,0x7d,0x28,0x61,0x29,0x3a,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x73,0x3f,0x73,0x28,0x61, 0x29,0x3a,0x61,0x2c,0x64,0x3d,0x66,0x2e,0x78,0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x30,0x3a,0x64,0x2c,0x68,0x3d,0x66,0x2e,0x79, 0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x68,0x3f,0x30,0x3a, 0x68,0x2c,0x67,0x3d,0x61,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x28,0x22,0x78,0x22,0x29,0x2c,0x6d,0x3d,0x61,0x2e,0x68,0x61, 0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x22,0x79,0x22, 0x29,0x2c,0x62,0x3d,0x4a,0x2c,0x79,0x3d,0x59,0x2c,0x5f,0x3d,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x3b,0x69,0x66,0x28,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20,0x77,0x3d,0x55, 0x28,0x6e,0x29,0x2c,0x4f,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69, 0x67,0x68,0x74,0x22,0x2c,0x78,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69, 0x64,0x74,0x68,0x22,0x3b,0x77,0x3d,0x3d,0x3d,0x54,0x28,0x6e,0x29,0x26,0x26,0x22, 0x73,0x74,0x61,0x74,0x69,0x63,0x22,0x21,0x3d,0x3d,0x4c,0x28,0x77,0x3d,0x4d,0x28, 0x6e,0x29,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x26,0x26,0x22,0x61, 0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x3d,0x3d,0x3d,0x75,0x26,0x26,0x28,0x4f, 0x3d,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x22,0x2c, 0x78,0x3d,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68,0x22,0x29, 0x2c,0x77,0x3d,0x77,0x2c,0x6f,0x21,0x3d,0x3d,0x59,0x26,0x26,0x28,0x6f,0x21,0x3d, 0x3d,0x4a,0x26,0x26,0x6f,0x21,0x3d,0x3d,0x58,0x7c,0x7c,0x69,0x21,0x3d,0x3d,0x6e, 0x65,0x29,0x7c,0x7c,0x28,0x79,0x3d,0x51,0x2c,0x76,0x2d,0x3d,0x77,0x5b,0x4f,0x5d, 0x2d,0x72,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2c,0x76,0x2a,0x3d,0x63,0x3f,0x31, 0x3a,0x2d,0x31,0x29,0x2c,0x6f,0x21,0x3d,0x3d,0x4a,0x26,0x26,0x28,0x6f,0x21,0x3d, 0x3d,0x59,0x26,0x26,0x6f,0x21,0x3d,0x3d,0x51,0x7c,0x7c,0x69,0x21,0x3d,0x3d,0x6e, 0x65,0x29,0x7c,0x7c,0x28,0x62,0x3d,0x58,0x2c,0x70,0x2d,0x3d,0x77,0x5b,0x78,0x5d, 0x2d,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x70,0x2a,0x3d,0x63,0x3f,0x31,0x3a, 0x2d,0x31,0x29,0x7d,0x76,0x61,0x72,0x20,0x45,0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x70,0x6f,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x3a,0x75,0x7d,0x2c,0x6c,0x26,0x26,0x73,0x65,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x63,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6a,0x2c,0x28,0x28,0x45,0x3d,0x7b,0x7d, 0x29,0x5b,0x79,0x5d,0x3d,0x6d,0x3f,0x22,0x30,0x22,0x3a,0x22,0x22,0x2c,0x45,0x5b, 0x62,0x5d,0x3d,0x67,0x3f,0x22,0x30,0x22,0x3a,0x22,0x22,0x2c,0x45,0x2e,0x74,0x72, 0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x28,0x5f,0x2e,0x64,0x65,0x76,0x69,0x63, 0x65,0x50,0x69,0x78,0x65,0x6c,0x52,0x61,0x74,0x69,0x6f,0x7c,0x7c,0x31,0x29,0x3c, 0x3d,0x31,0x3f,0x22,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x22,0x2b, 0x70,0x2b,0x22,0x70,0x78,0x2c,0x20,0x22,0x2b,0x76,0x2b,0x22,0x70,0x78,0x29,0x22, 0x3a,0x22,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x33,0x64,0x28,0x22,0x2b, 0x70,0x2b,0x22,0x70,0x78,0x2c,0x20,0x22,0x2b,0x76,0x2b,0x22,0x70,0x78,0x2c,0x20, 0x30,0x29,0x22,0x2c,0x45,0x29,0x29,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6a,0x2c,0x28,0x28,0x74,0x3d,0x7b, 0x7d,0x29,0x5b,0x79,0x5d,0x3d,0x6d,0x3f,0x76,0x2b,0x22,0x70,0x78,0x22,0x3a,0x22, 0x22,0x2c,0x74,0x5b,0x62,0x5d,0x3d,0x67,0x3f,0x70,0x2b,0x22,0x70,0x78,0x22,0x3a, 0x22,0x22,0x2c,0x74,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22, 0x22,0x2c,0x74,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x64,0x65,0x3d,0x7b,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x53,0x74,0x79,0x6c,0x65, 0x73,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68, 0x61,0x73,0x65,0x3a,0x22,0x62,0x65,0x66,0x6f,0x72,0x65,0x57,0x72,0x69,0x74,0x65, 0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e, 0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x6e,0x2e,0x67, 0x70,0x75,0x41,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x6f, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x7c,0x7c,0x72,0x2c,0x69, 0x3d,0x6e,0x2e,0x61,0x64,0x61,0x70,0x74,0x69,0x76,0x65,0x2c,0x61,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x7c,0x7c,0x69,0x2c,0x75,0x3d,0x6e,0x2e, 0x72,0x6f,0x75,0x6e,0x64,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x63,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x7c,0x7c,0x75,0x2c,0x6c,0x3d,0x7b, 0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x53,0x28,0x74,0x2e,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x76,0x61,0x72,0x69,0x61,0x74,0x69, 0x6f,0x6e,0x3a,0x6c,0x65,0x28,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x29,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a,0x74,0x2e,0x65,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x70,0x6f,0x70,0x70, 0x65,0x72,0x52,0x65,0x63,0x74,0x3a,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x2c,0x67,0x70,0x75,0x41,0x63,0x63,0x65,0x6c,0x65,0x72, 0x61,0x74,0x69,0x6f,0x6e,0x3a,0x6f,0x7d,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74, 0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x26,0x26,0x28,0x74, 0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c, 0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c, 0x66,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x7d,0x2c,0x6c,0x2c,0x7b,0x6f,0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x74, 0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x70,0x6f,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e, 0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x2c,0x61,0x64,0x61,0x70,0x74,0x69,0x76, 0x65,0x3a,0x61,0x2c,0x72,0x6f,0x75,0x6e,0x64,0x4f,0x66,0x66,0x73,0x65,0x74,0x73, 0x3a,0x63,0x7d,0x29,0x29,0x29,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e, 0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x61,0x72, 0x72,0x6f,0x77,0x26,0x26,0x28,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x61, 0x72,0x72,0x6f,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x61, 0x72,0x72,0x6f,0x77,0x2c,0x66,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6c,0x2c,0x7b,0x6f,0x66,0x66,0x73, 0x65,0x74,0x73,0x3a,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44, 0x61,0x74,0x61,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x70,0x6f,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x2c,0x61,0x64, 0x61,0x70,0x74,0x69,0x76,0x65,0x3a,0x21,0x31,0x2c,0x72,0x6f,0x75,0x6e,0x64,0x4f, 0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x63,0x7d,0x29,0x29,0x29,0x29,0x2c,0x74,0x2e, 0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65, 0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28, 0x7b,0x7d,0x2c,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x2e, 0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x7b,0x22,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f, 0x70,0x70,0x65,0x72,0x2d,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x22,0x3a, 0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x7d,0x2c,0x64, 0x61,0x74,0x61,0x3a,0x7b,0x7d,0x7d,0x2c,0x70,0x65,0x3d,0x7b,0x70,0x61,0x73,0x73, 0x69,0x76,0x65,0x3a,0x21,0x30,0x7d,0x3b,0x76,0x61,0x72,0x20,0x68,0x65,0x3d,0x7b, 0x6e,0x61,0x6d,0x65,0x3a,0x22,0x65,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65, 0x6e,0x65,0x72,0x73,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30, 0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x77,0x72,0x69,0x74,0x65,0x22,0x2c,0x66, 0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x2c,0x65, 0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c, 0x6e,0x3d,0x65,0x2e,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2c,0x72,0x3d,0x65, 0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x6f,0x3d,0x72,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f, 0x7c,0x7c,0x6f,0x2c,0x61,0x3d,0x72,0x2e,0x72,0x65,0x73,0x69,0x7a,0x65,0x2c,0x75, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x7c,0x7c,0x61,0x2c,0x63, 0x3d,0x54,0x28,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f, 0x70,0x70,0x65,0x72,0x29,0x2c,0x6c,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x50,0x61,0x72,0x65,0x6e,0x74, 0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x74,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x26,0x26,0x6c,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22, 0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x70,0x65,0x29,0x7d,0x29,0x29, 0x2c,0x75,0x26,0x26,0x63,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x72,0x65,0x73,0x69,0x7a,0x65,0x22,0x2c, 0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x70,0x65,0x29,0x2c,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x26,0x26,0x6c,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e,0x74,0x4c, 0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22, 0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x70,0x65,0x29,0x7d,0x29,0x29, 0x2c,0x75,0x26,0x26,0x63,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x45,0x76,0x65,0x6e, 0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x22,0x72,0x65,0x73,0x69,0x7a, 0x65,0x22,0x2c,0x6e,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x2c,0x70,0x65,0x29,0x7d, 0x7d,0x2c,0x64,0x61,0x74,0x61,0x3a,0x7b,0x7d,0x7d,0x2c,0x76,0x65,0x3d,0x7b,0x6c, 0x65,0x66,0x74,0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x2c,0x72,0x69,0x67,0x68, 0x74,0x3a,0x22,0x6c,0x65,0x66,0x74,0x22,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a, 0x22,0x74,0x6f,0x70,0x22,0x2c,0x74,0x6f,0x70,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65,0x70,0x6c, 0x61,0x63,0x65,0x28,0x2f,0x6c,0x65,0x66,0x74,0x7c,0x72,0x69,0x67,0x68,0x74,0x7c, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x7c,0x74,0x6f,0x70,0x2f,0x67,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x76,0x65,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x6d,0x65, 0x3d,0x7b,0x73,0x74,0x61,0x72,0x74,0x3a,0x22,0x65,0x6e,0x64,0x22,0x2c,0x65,0x6e, 0x64,0x3a,0x22,0x73,0x74,0x61,0x72,0x74,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x62,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x73,0x74,0x61,0x72, 0x74,0x7c,0x65,0x6e,0x64,0x2f,0x67,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x65,0x5b,0x65, 0x5d,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x65, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x54,0x28,0x65,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74, 0x3a,0x74,0x2e,0x70,0x61,0x67,0x65,0x58,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x73, 0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3a,0x74,0x2e,0x70,0x61,0x67,0x65,0x59, 0x4f,0x66,0x66,0x73,0x65,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x5f,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x43,0x28, 0x4d,0x28,0x65,0x29,0x29,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x79,0x65,0x28,0x65,0x29, 0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x77,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4c,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x2c,0x72,0x3d,0x74,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x58, 0x2c,0x6f,0x3d,0x74,0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x59,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x2f,0x61,0x75,0x74,0x6f,0x7c,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x7c,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x7c,0x68,0x69,0x64,0x64,0x65,0x6e, 0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x2b,0x6f,0x2b,0x72,0x29,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x5b,0x22,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x22,0x62,0x6f,0x64,0x79, 0x22,0x2c,0x22,0x23,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x22,0x5d,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x52,0x28,0x65,0x29,0x29,0x3e,0x3d,0x30,0x3f, 0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x62,0x6f,0x64,0x79,0x3a,0x44,0x28,0x65,0x29,0x26,0x26,0x77,0x65,0x28,0x65,0x29, 0x3f,0x65,0x3a,0x4f,0x65,0x28,0x42,0x28,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x78,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28, 0x74,0x3d,0x5b,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x4f,0x65,0x28,0x65, 0x29,0x2c,0x6f,0x3d,0x72,0x3d,0x3d,0x3d,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28, 0x6e,0x3d,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6e,0x2e,0x62,0x6f,0x64,0x79, 0x29,0x2c,0x69,0x3d,0x54,0x28,0x72,0x29,0x2c,0x61,0x3d,0x6f,0x3f,0x5b,0x69,0x5d, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x69,0x2e,0x76,0x69,0x73,0x75,0x61,0x6c, 0x56,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x7c,0x7c,0x5b,0x5d,0x2c,0x77,0x65,0x28, 0x72,0x29,0x3f,0x72,0x3a,0x5b,0x5d,0x29,0x3a,0x72,0x2c,0x75,0x3d,0x74,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x3f,0x75,0x3a,0x75,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x78,0x65,0x28, 0x42,0x28,0x61,0x29,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x45,0x65,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c, 0x7b,0x6c,0x65,0x66,0x74,0x3a,0x65,0x2e,0x78,0x2c,0x74,0x6f,0x70,0x3a,0x65,0x2e, 0x79,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x78,0x2b,0x65,0x2e,0x77,0x69, 0x64,0x74,0x68,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x65,0x2e,0x79,0x2b,0x65, 0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x7d,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x6a,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x72,0x65,0x3f,0x45,0x65,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x54,0x28, 0x65,0x29,0x2c,0x6e,0x3d,0x4d,0x28,0x65,0x29,0x2c,0x72,0x3d,0x74,0x2e,0x76,0x69, 0x73,0x75,0x61,0x6c,0x56,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x2c,0x6f,0x3d,0x6e, 0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x69,0x3d,0x6e, 0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x61,0x3d, 0x30,0x2c,0x75,0x3d,0x30,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x26,0x26, 0x28,0x6f,0x3d,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x69,0x3d,0x72,0x2e,0x68, 0x65,0x69,0x67,0x68,0x74,0x2c,0x2f,0x5e,0x28,0x28,0x3f,0x21,0x63,0x68,0x72,0x6f, 0x6d,0x65,0x7c,0x61,0x6e,0x64,0x72,0x6f,0x69,0x64,0x29,0x2e,0x29,0x2a,0x73,0x61, 0x66,0x61,0x72,0x69,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x6e,0x61,0x76,0x69, 0x67,0x61,0x74,0x6f,0x72,0x2e,0x75,0x73,0x65,0x72,0x41,0x67,0x65,0x6e,0x74,0x29, 0x7c,0x7c,0x28,0x61,0x3d,0x72,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x4c,0x65,0x66, 0x74,0x2c,0x75,0x3d,0x72,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x54,0x6f,0x70,0x29, 0x29,0x2c,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a,0x6f,0x2c,0x68,0x65,0x69,0x67,0x68, 0x74,0x3a,0x69,0x2c,0x78,0x3a,0x61,0x2b,0x5f,0x65,0x28,0x65,0x29,0x2c,0x79,0x3a, 0x75,0x7d,0x7d,0x28,0x65,0x29,0x29,0x3a,0x44,0x28,0x74,0x29,0x3f,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x43, 0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x74,0x6f,0x70, 0x3d,0x74,0x2e,0x74,0x6f,0x70,0x2b,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x54, 0x6f,0x70,0x2c,0x74,0x2e,0x6c,0x65,0x66,0x74,0x3d,0x74,0x2e,0x6c,0x65,0x66,0x74, 0x2b,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4c,0x65,0x66,0x74,0x2c,0x74,0x2e, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3d,0x74,0x2e,0x74,0x6f,0x70,0x2b,0x65,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x74,0x2e,0x72,0x69, 0x67,0x68,0x74,0x3d,0x74,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x65,0x2e,0x63,0x6c,0x69, 0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x74,0x2e,0x77,0x69,0x64,0x74,0x68, 0x3d,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x74, 0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x65,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x74,0x2e,0x78,0x3d,0x74,0x2e,0x6c,0x65,0x66, 0x74,0x2c,0x74,0x2e,0x79,0x3d,0x74,0x2e,0x74,0x6f,0x70,0x2c,0x74,0x7d,0x28,0x74, 0x29,0x3a,0x45,0x65,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x4d,0x28,0x65,0x29,0x2c,0x72,0x3d, 0x79,0x65,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x74, 0x3d,0x65,0x2e,0x6f,0x77,0x6e,0x65,0x72,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, 0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2c, 0x69,0x3d,0x24,0x28,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74, 0x68,0x2c,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c, 0x6f,0x3f,0x6f,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x57,0x69,0x64,0x74,0x68,0x3a, 0x30,0x2c,0x6f,0x3f,0x6f,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74, 0x68,0x3a,0x30,0x29,0x2c,0x61,0x3d,0x24,0x28,0x6e,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x6e,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74, 0x48,0x65,0x69,0x67,0x68,0x74,0x2c,0x6f,0x3f,0x6f,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x6f,0x3f,0x6f,0x2e,0x63,0x6c, 0x69,0x65,0x6e,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x29,0x2c,0x75,0x3d, 0x2d,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2b,0x5f,0x65, 0x28,0x65,0x29,0x2c,0x63,0x3d,0x2d,0x72,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54, 0x6f,0x70,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x72,0x74,0x6c,0x22,0x3d,0x3d, 0x3d,0x4c,0x28,0x6f,0x7c,0x7c,0x6e,0x29,0x2e,0x64,0x69,0x72,0x65,0x63,0x74,0x69, 0x6f,0x6e,0x26,0x26,0x28,0x75,0x2b,0x3d,0x24,0x28,0x6e,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x2c,0x6f,0x3f,0x6f,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x3a,0x30,0x29,0x2d,0x69,0x29,0x2c,0x7b,0x77, 0x69,0x64,0x74,0x68,0x3a,0x69,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x61,0x2c, 0x78,0x3a,0x75,0x2c,0x79,0x3a,0x63,0x7d,0x7d,0x28,0x4d,0x28,0x65,0x29,0x29,0x29, 0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6b,0x65,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x22,0x63,0x6c,0x69,0x70,0x70, 0x69,0x6e,0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x22,0x3d,0x3d,0x3d,0x74,0x3f, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x78,0x65,0x28,0x42,0x28,0x65,0x29,0x29,0x2c,0x6e,0x3d,0x5b,0x22,0x61, 0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x2c,0x22,0x66,0x69,0x78,0x65,0x64,0x22, 0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x4c,0x28,0x65,0x29,0x2e,0x70, 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0x3e,0x3d,0x30,0x26,0x26,0x44,0x28,0x65, 0x29,0x3f,0x55,0x28,0x65,0x29,0x3a,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x50,0x28,0x6e,0x29,0x3f,0x74,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x50,0x28,0x65,0x29,0x26,0x26,0x49,0x28,0x65,0x2c,0x6e,0x29,0x26,0x26, 0x22,0x62,0x6f,0x64,0x79,0x22,0x21,0x3d,0x3d,0x52,0x28,0x65,0x29,0x7d,0x29,0x29, 0x3a,0x5b,0x5d,0x7d,0x28,0x65,0x29,0x3a,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x74,0x29,0x2c,0x6f,0x3d,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x72,0x2c,0x5b,0x6e,0x5d,0x29,0x2c,0x69,0x3d,0x6f,0x5b,0x30,0x5d,0x2c,0x61, 0x3d,0x6f,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6a, 0x65,0x28,0x65,0x2c,0x6e,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e, 0x74,0x6f,0x70,0x3d,0x24,0x28,0x72,0x2e,0x74,0x6f,0x70,0x2c,0x74,0x2e,0x74,0x6f, 0x70,0x29,0x2c,0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x3d,0x48,0x28,0x72,0x2e,0x72, 0x69,0x67,0x68,0x74,0x2c,0x74,0x2e,0x72,0x69,0x67,0x68,0x74,0x29,0x2c,0x74,0x2e, 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3d,0x48,0x28,0x72,0x2e,0x62,0x6f,0x74,0x74,0x6f, 0x6d,0x2c,0x74,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x29,0x2c,0x74,0x2e,0x6c,0x65, 0x66,0x74,0x3d,0x24,0x28,0x72,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x74,0x2e,0x6c,0x65, 0x66,0x74,0x29,0x2c,0x74,0x7d,0x29,0x2c,0x6a,0x65,0x28,0x65,0x2c,0x69,0x29,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x77,0x69,0x64,0x74,0x68,0x3d, 0x61,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d,0x61,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x61, 0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x61,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x2d,0x61,0x2e,0x74,0x6f,0x70,0x2c,0x61,0x2e,0x78,0x3d,0x61,0x2e,0x6c,0x65,0x66, 0x74,0x2c,0x61,0x2e,0x79,0x3d,0x61,0x2e,0x74,0x6f,0x70,0x2c,0x61,0x7d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x53,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, 0x2c,0x72,0x3d,0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x65, 0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x69,0x3d,0x6f,0x3f,0x53, 0x28,0x6f,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x3d,0x6f,0x3f,0x6c,0x65,0x28, 0x6f,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x75,0x3d,0x6e,0x2e,0x78,0x2b,0x6e,0x2e, 0x77,0x69,0x64,0x74,0x68,0x2f,0x32,0x2d,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x2f, 0x32,0x2c,0x63,0x3d,0x6e,0x2e,0x79,0x2b,0x6e,0x2e,0x68,0x65,0x69,0x67,0x68,0x74, 0x2f,0x32,0x2d,0x72,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2f,0x32,0x3b,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x69,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x59,0x3a,0x74, 0x3d,0x7b,0x78,0x3a,0x75,0x2c,0x79,0x3a,0x6e,0x2e,0x79,0x2d,0x72,0x2e,0x68,0x65, 0x69,0x67,0x68,0x74,0x7d,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65, 0x20,0x51,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x75,0x2c,0x79,0x3a,0x6e,0x2e,0x79,0x2b, 0x6e,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x7d,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b, 0x63,0x61,0x73,0x65,0x20,0x58,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x6e,0x2e,0x78,0x2b, 0x6e,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x79,0x3a,0x63,0x7d,0x3b,0x62,0x72,0x65, 0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x20,0x4a,0x3a,0x74,0x3d,0x7b,0x78,0x3a,0x6e, 0x2e,0x78,0x2d,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x79,0x3a,0x63,0x7d,0x3b, 0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x74,0x3d, 0x7b,0x78,0x3a,0x6e,0x2e,0x78,0x2c,0x79,0x3a,0x6e,0x2e,0x79,0x7d,0x7d,0x76,0x61, 0x72,0x20,0x6c,0x3d,0x69,0x3f,0x57,0x28,0x69,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x3b, 0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x6c,0x29,0x7b,0x76,0x61,0x72,0x20, 0x73,0x3d,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x6c,0x3f,0x22,0x68,0x65,0x69,0x67,0x68, 0x74,0x22,0x3a,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3b,0x73,0x77,0x69,0x74,0x63, 0x68,0x28,0x61,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x74,0x65,0x3a,0x74,0x5b,0x6c, 0x5d,0x3d,0x74,0x5b,0x6c,0x5d,0x2d,0x28,0x6e,0x5b,0x73,0x5d,0x2f,0x32,0x2d,0x72, 0x5b,0x73,0x5d,0x2f,0x32,0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73, 0x65,0x20,0x6e,0x65,0x3a,0x74,0x5b,0x6c,0x5d,0x3d,0x74,0x5b,0x6c,0x5d,0x2b,0x28, 0x6e,0x5b,0x73,0x5d,0x2f,0x32,0x2d,0x72,0x5b,0x73,0x5d,0x2f,0x32,0x29,0x7d,0x7d, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x43,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x7b,0x7d,0x29,0x3b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x74,0x2c,0x72,0x3d,0x6e,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x2c,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x3f, 0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x72,0x2c,0x69,0x3d, 0x6e,0x2e,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x61,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x3f,0x22,0x63,0x6c,0x69,0x70,0x70,0x69,0x6e, 0x67,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x22,0x3a,0x69,0x2c,0x75,0x3d,0x6e,0x2e, 0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x63,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x3f,0x72,0x65,0x3a,0x75,0x2c,0x6c, 0x3d,0x6e,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x2c,0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6c,0x3f,0x6f, 0x65,0x3a,0x6c,0x2c,0x66,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64, 0x61,0x72,0x79,0x2c,0x64,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x66, 0x26,0x26,0x66,0x2c,0x70,0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c, 0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x70,0x3f,0x30,0x3a,0x70, 0x2c,0x76,0x3d,0x71,0x28,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x21,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x68,0x3f,0x68,0x3a,0x4b,0x28,0x68,0x2c,0x65, 0x65,0x29,0x29,0x2c,0x67,0x3d,0x73,0x3d,0x3d,0x3d,0x6f,0x65,0x3f,0x22,0x72,0x65, 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x22,0x3a,0x6f,0x65,0x2c,0x6d,0x3d,0x65,0x2e, 0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x62,0x3d,0x65, 0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x64,0x3f,0x67,0x3a,0x73,0x5d, 0x2c,0x79,0x3d,0x6b,0x65,0x28,0x50,0x28,0x62,0x29,0x3f,0x62,0x3a,0x62,0x2e,0x63, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x4d, 0x28,0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x29,0x2c,0x61,0x2c,0x63,0x29,0x2c,0x5f,0x3d,0x43,0x28,0x65,0x2e,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, 0x65,0x29,0x2c,0x77,0x3d,0x53,0x65,0x28,0x7b,0x72,0x65,0x66,0x65,0x72,0x65,0x6e, 0x63,0x65,0x3a,0x5f,0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6d,0x2c,0x73, 0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74, 0x65,0x22,0x2c,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6f,0x7d,0x29, 0x2c,0x4f,0x3d,0x45,0x65,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73, 0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6d,0x2c,0x77,0x29,0x29,0x2c,0x78,0x3d,0x73, 0x3d,0x3d,0x3d,0x6f,0x65,0x3f,0x4f,0x3a,0x5f,0x2c,0x45,0x3d,0x7b,0x74,0x6f,0x70, 0x3a,0x79,0x2e,0x74,0x6f,0x70,0x2d,0x78,0x2e,0x74,0x6f,0x70,0x2b,0x76,0x2e,0x74, 0x6f,0x70,0x2c,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x78,0x2e,0x62,0x6f,0x74,0x74, 0x6f,0x6d,0x2d,0x79,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2b,0x76,0x2e,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x79,0x2e,0x6c,0x65,0x66,0x74, 0x2d,0x78,0x2e,0x6c,0x65,0x66,0x74,0x2b,0x76,0x2e,0x6c,0x65,0x66,0x74,0x2c,0x72, 0x69,0x67,0x68,0x74,0x3a,0x78,0x2e,0x72,0x69,0x67,0x68,0x74,0x2d,0x79,0x2e,0x72, 0x69,0x67,0x68,0x74,0x2b,0x76,0x2e,0x72,0x69,0x67,0x68,0x74,0x7d,0x2c,0x6a,0x3d, 0x65,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x3b,0x69,0x66,0x28,0x73,0x3d,0x3d,0x3d,0x6f,0x65, 0x26,0x26,0x6a,0x29,0x7b,0x76,0x61,0x72,0x20,0x6b,0x3d,0x6a,0x5b,0x6f,0x5d,0x3b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x45,0x29,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x5b,0x58,0x2c,0x51,0x5d,0x2e, 0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x3f,0x31,0x3a, 0x2d,0x31,0x2c,0x6e,0x3d,0x5b,0x59,0x2c,0x51,0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x3f,0x22,0x79,0x22,0x3a,0x22,0x78,0x22, 0x3b,0x45,0x5b,0x65,0x5d,0x2b,0x3d,0x6b,0x5b,0x6e,0x5d,0x2a,0x74,0x7d,0x29,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x7d,0x76,0x61,0x72,0x20,0x41,0x65, 0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6c,0x69,0x70,0x22,0x2c,0x65,0x6e, 0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22, 0x6d,0x61,0x69,0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61, 0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72, 0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x3b,0x69,0x66,0x28,0x21,0x74,0x2e,0x6d,0x6f, 0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x72,0x5d,0x2e,0x5f, 0x73,0x6b,0x69,0x70,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x6e,0x2e,0x6d,0x61,0x69,0x6e,0x41,0x78,0x69,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x7c,0x7c,0x6f,0x2c,0x61,0x3d,0x6e,0x2e,0x61, 0x6c,0x74,0x41,0x78,0x69,0x73,0x2c,0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x61,0x7c,0x7c,0x61,0x2c,0x63,0x3d,0x6e,0x2e,0x66,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6c,0x3d, 0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2c,0x73,0x3d,0x6e,0x2e,0x62,0x6f, 0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x66,0x3d,0x6e,0x2e,0x72,0x6f,0x6f,0x74,0x42, 0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x64,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x42, 0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x2c,0x70,0x3d,0x6e,0x2e,0x66,0x6c,0x69,0x70, 0x56,0x61,0x72,0x69,0x61,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x68,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x70,0x7c,0x7c,0x70,0x2c,0x76,0x3d,0x6e,0x2e,0x61, 0x6c,0x6c,0x6f,0x77,0x65,0x64,0x41,0x75,0x74,0x6f,0x50,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x73,0x2c,0x67,0x3d,0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73, 0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6d,0x3d,0x53,0x28,0x67, 0x29,0x2c,0x62,0x3d,0x63,0x7c,0x7c,0x28,0x6d,0x3d,0x3d,0x3d,0x67,0x7c,0x7c,0x21, 0x68,0x3f,0x5b,0x67,0x65,0x28,0x67,0x29,0x5d,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x53,0x28,0x65,0x29,0x3d,0x3d,0x3d, 0x5a,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x5d,0x3b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x67,0x65,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x62,0x65, 0x28,0x65,0x29,0x2c,0x74,0x2c,0x62,0x65,0x28,0x74,0x29,0x5d,0x7d,0x28,0x67,0x29, 0x29,0x2c,0x79,0x3d,0x5b,0x67,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x62, 0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x53,0x28,0x6e,0x29,0x3d,0x3d,0x3d,0x5a, 0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x3d,0x7b,0x7d, 0x29,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2c,0x72,0x3d,0x6e,0x2e,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6f,0x3d,0x6e,0x2e,0x62,0x6f,0x75,0x6e, 0x64,0x61,0x72,0x79,0x2c,0x69,0x3d,0x6e,0x2e,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75, 0x6e,0x64,0x61,0x72,0x79,0x2c,0x61,0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e, 0x67,0x2c,0x75,0x3d,0x6e,0x2e,0x66,0x6c,0x69,0x70,0x56,0x61,0x72,0x69,0x61,0x74, 0x69,0x6f,0x6e,0x73,0x2c,0x63,0x3d,0x6e,0x2e,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64, 0x41,0x75,0x74,0x6f,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6c, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x61,0x65,0x3a,0x63, 0x2c,0x73,0x3d,0x6c,0x65,0x28,0x72,0x29,0x2c,0x66,0x3d,0x73,0x3f,0x75,0x3f,0x69, 0x65,0x3a,0x69,0x65,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6c,0x65,0x28,0x65,0x29,0x3d,0x3d,0x3d,0x73,0x7d,0x29,0x29,0x3a,0x65,0x65,0x2c, 0x64,0x3d,0x66,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6c, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x3e,0x3d,0x30,0x7d,0x29, 0x29,0x3b,0x30,0x3d,0x3d,0x3d,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26, 0x28,0x64,0x3d,0x66,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x64,0x2e,0x72,0x65, 0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x6e,0x5d,0x3d, 0x43,0x65,0x28,0x65,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a, 0x6e,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x6f,0x2c,0x72,0x6f,0x6f, 0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x69,0x2c,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x61,0x7d,0x29,0x5b,0x53,0x28,0x6e,0x29,0x5d,0x2c,0x74,0x7d, 0x29,0x2c,0x7b,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x70,0x29,0x2e,0x73,0x6f,0x72,0x74, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x5b,0x65,0x5d,0x2d,0x70,0x5b,0x74,0x5d, 0x7d,0x29,0x29,0x7d,0x28,0x74,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e, 0x74,0x3a,0x6e,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x73,0x2c,0x72, 0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x66,0x2c,0x70,0x61, 0x64,0x64,0x69,0x6e,0x67,0x3a,0x6c,0x2c,0x66,0x6c,0x69,0x70,0x56,0x61,0x72,0x69, 0x61,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x68,0x2c,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64, 0x41,0x75,0x74,0x6f,0x50,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x3a,0x76, 0x7d,0x29,0x3a,0x6e,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x5f,0x3d,0x74,0x2e, 0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c, 0x77,0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72, 0x2c,0x4f,0x3d,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x78,0x3d,0x21,0x30,0x2c, 0x45,0x3d,0x79,0x5b,0x30,0x5d,0x2c,0x6a,0x3d,0x30,0x3b,0x6a,0x3c,0x79,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x6a,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6b, 0x3d,0x79,0x5b,0x6a,0x5d,0x2c,0x43,0x3d,0x53,0x28,0x6b,0x29,0x2c,0x41,0x3d,0x6c, 0x65,0x28,0x6b,0x29,0x3d,0x3d,0x3d,0x74,0x65,0x2c,0x54,0x3d,0x5b,0x59,0x2c,0x51, 0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x43,0x29,0x3e,0x3d,0x30,0x2c, 0x50,0x3d,0x54,0x3f,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3a,0x22,0x68,0x65,0x69, 0x67,0x68,0x74,0x22,0x2c,0x44,0x3d,0x43,0x65,0x28,0x74,0x2c,0x7b,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6b,0x2c,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72, 0x79,0x3a,0x73,0x2c,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79, 0x3a,0x66,0x2c,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x64, 0x2c,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x6c,0x7d,0x29,0x2c,0x4e,0x3d,0x54, 0x3f,0x41,0x3f,0x58,0x3a,0x4a,0x3a,0x41,0x3f,0x51,0x3a,0x59,0x3b,0x5f,0x5b,0x50, 0x5d,0x3e,0x77,0x5b,0x50,0x5d,0x26,0x26,0x28,0x4e,0x3d,0x67,0x65,0x28,0x4e,0x29, 0x29,0x3b,0x76,0x61,0x72,0x20,0x49,0x3d,0x67,0x65,0x28,0x4e,0x29,0x2c,0x52,0x3d, 0x5b,0x5d,0x3b,0x69,0x66,0x28,0x69,0x26,0x26,0x52,0x2e,0x70,0x75,0x73,0x68,0x28, 0x44,0x5b,0x43,0x5d,0x3c,0x3d,0x30,0x29,0x2c,0x75,0x26,0x26,0x52,0x2e,0x70,0x75, 0x73,0x68,0x28,0x44,0x5b,0x4e,0x5d,0x3c,0x3d,0x30,0x2c,0x44,0x5b,0x49,0x5d,0x3c, 0x3d,0x30,0x29,0x2c,0x52,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x7d,0x29,0x29,0x29,0x7b,0x45,0x3d,0x6b,0x2c,0x78,0x3d,0x21,0x31,0x3b,0x62, 0x72,0x65,0x61,0x6b,0x7d,0x4f,0x2e,0x73,0x65,0x74,0x28,0x6b,0x2c,0x52,0x29,0x7d, 0x69,0x66,0x28,0x78,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x4c,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x79,0x2e,0x66,0x69,0x6e,0x64,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x2e,0x67,0x65,0x74, 0x28,0x74,0x29,0x3b,0x69,0x66,0x28,0x6e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x65,0x29,0x2e,0x65,0x76,0x65, 0x72,0x79,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x69, 0x66,0x28,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x3d,0x74,0x2c,0x22, 0x62,0x72,0x65,0x61,0x6b,0x22,0x7d,0x2c,0x46,0x3d,0x68,0x3f,0x33,0x3a,0x31,0x3b, 0x46,0x3e,0x30,0x3b,0x46,0x2d,0x2d,0x29,0x7b,0x69,0x66,0x28,0x22,0x62,0x72,0x65, 0x61,0x6b,0x22,0x3d,0x3d,0x3d,0x4c,0x28,0x46,0x29,0x29,0x62,0x72,0x65,0x61,0x6b, 0x7d,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x21,0x3d,0x3d,0x45, 0x26,0x26,0x28,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x5b,0x72,0x5d,0x2e,0x5f,0x73,0x6b,0x69,0x70,0x3d,0x21,0x30,0x2c,0x74, 0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3d,0x45,0x2c,0x74,0x2e,0x72, 0x65,0x73,0x65,0x74,0x3d,0x21,0x30,0x29,0x7d,0x7d,0x2c,0x72,0x65,0x71,0x75,0x69, 0x72,0x65,0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74,0x73,0x3a,0x5b,0x22,0x6f,0x66, 0x66,0x73,0x65,0x74,0x22,0x5d,0x2c,0x64,0x61,0x74,0x61,0x3a,0x7b,0x5f,0x73,0x6b, 0x69,0x70,0x3a,0x21,0x31,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x54,0x65,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e, 0x3d,0x7b,0x78,0x3a,0x30,0x2c,0x79,0x3a,0x30,0x7d,0x29,0x2c,0x7b,0x74,0x6f,0x70, 0x3a,0x65,0x2e,0x74,0x6f,0x70,0x2d,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2d, 0x6e,0x2e,0x79,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x65,0x2e,0x72,0x69,0x67,0x68, 0x74,0x2d,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x2b,0x6e,0x2e,0x78,0x2c,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x3a,0x65,0x2e,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x74,0x2e, 0x68,0x65,0x69,0x67,0x68,0x74,0x2b,0x6e,0x2e,0x79,0x2c,0x6c,0x65,0x66,0x74,0x3a, 0x65,0x2e,0x6c,0x65,0x66,0x74,0x2d,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x2d,0x6e, 0x2e,0x78,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x65,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x59,0x2c,0x58,0x2c,0x51,0x2c, 0x4a,0x5d,0x2e,0x73,0x6f,0x6d,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d, 0x3e,0x3d,0x30,0x7d,0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x44,0x65,0x3d,0x7b,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x68,0x69,0x64,0x65,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c, 0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69, 0x6e,0x22,0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x49,0x66,0x45,0x78,0x69, 0x73,0x74,0x73,0x3a,0x5b,0x22,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65, 0x72,0x66,0x6c,0x6f,0x77,0x22,0x5d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73, 0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x72,0x3d, 0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, 0x65,0x2c,0x6f,0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x2c,0x69,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73, 0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72, 0x66,0x6c,0x6f,0x77,0x2c,0x61,0x3d,0x43,0x65,0x28,0x74,0x2c,0x7b,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x3a,0x22,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x22,0x7d,0x29,0x2c,0x75,0x3d,0x43,0x65,0x28,0x74, 0x2c,0x7b,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x21,0x30, 0x7d,0x29,0x2c,0x63,0x3d,0x54,0x65,0x28,0x61,0x2c,0x72,0x29,0x2c,0x6c,0x3d,0x54, 0x65,0x28,0x75,0x2c,0x6f,0x2c,0x69,0x29,0x2c,0x73,0x3d,0x50,0x65,0x28,0x63,0x29, 0x2c,0x66,0x3d,0x50,0x65,0x28,0x6c,0x29,0x3b,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x6e,0x5d,0x3d,0x7b,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x43,0x6c,0x69,0x70,0x70,0x69,0x6e,0x67,0x4f,0x66, 0x66,0x73,0x65,0x74,0x73,0x3a,0x63,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x45,0x73, 0x63,0x61,0x70,0x65,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x3a,0x6c,0x2c,0x69,0x73, 0x52,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x48,0x69,0x64,0x64,0x65,0x6e,0x3a, 0x73,0x2c,0x68,0x61,0x73,0x50,0x6f,0x70,0x70,0x65,0x72,0x45,0x73,0x63,0x61,0x70, 0x65,0x64,0x3a,0x66,0x7d,0x2c,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x61,0x74,0x74, 0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x7b, 0x22,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x72,0x65,0x66, 0x65,0x72,0x65,0x6e,0x63,0x65,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3a,0x73, 0x2c,0x22,0x64,0x61,0x74,0x61,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x2d,0x65,0x73, 0x63,0x61,0x70,0x65,0x64,0x22,0x3a,0x66,0x7d,0x29,0x7d,0x7d,0x3b,0x76,0x61,0x72, 0x20,0x4e,0x65,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6f,0x66,0x66,0x73,0x65, 0x74,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70,0x68, 0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c,0x72,0x65,0x71,0x75,0x69, 0x72,0x65,0x73,0x3a,0x5b,0x22,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73, 0x65,0x74,0x73,0x22,0x5d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61, 0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72, 0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x6f,0x3d,0x6e,0x2e,0x6f,0x66,0x66,0x73, 0x65,0x74,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f, 0x5b,0x30,0x2c,0x30,0x5d,0x3a,0x6f,0x2c,0x61,0x3d,0x61,0x65,0x2e,0x72,0x65,0x64, 0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x6e,0x5d,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76, 0x61,0x72,0x20,0x72,0x3d,0x53,0x28,0x65,0x29,0x2c,0x6f,0x3d,0x5b,0x4a,0x2c,0x59, 0x5d,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x72,0x29,0x3e,0x3d,0x30,0x3f, 0x2d,0x31,0x3a,0x31,0x2c,0x69,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x3f,0x6e,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c, 0x74,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x65,0x7d,0x29, 0x29,0x3a,0x6e,0x2c,0x61,0x3d,0x69,0x5b,0x30,0x5d,0x2c,0x75,0x3d,0x69,0x5b,0x31, 0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x3d,0x61,0x7c,0x7c,0x30,0x2c, 0x75,0x3d,0x28,0x75,0x7c,0x7c,0x30,0x29,0x2a,0x6f,0x2c,0x5b,0x4a,0x2c,0x58,0x5d, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x72,0x29,0x3e,0x3d,0x30,0x3f,0x7b, 0x78,0x3a,0x75,0x2c,0x79,0x3a,0x61,0x7d,0x3a,0x7b,0x78,0x3a,0x61,0x2c,0x79,0x3a, 0x75,0x7d,0x7d,0x28,0x6e,0x2c,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2c,0x69,0x29, 0x2c,0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x2c,0x75,0x3d,0x61,0x5b,0x74,0x2e,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5d,0x2c,0x63,0x3d,0x75,0x2e,0x78,0x2c, 0x6c,0x3d,0x75,0x2e,0x79,0x3b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x2e,0x6d,0x6f, 0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x26,0x26,0x28,0x74,0x2e,0x6d,0x6f, 0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70,0x70, 0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2e,0x78,0x2b,0x3d,0x63,0x2c,0x74, 0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2e,0x79,0x2b,0x3d, 0x6c,0x29,0x2c,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x5b,0x72,0x5d,0x3d,0x61,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x49,0x65, 0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x70,0x6f,0x70,0x70,0x65,0x72,0x4f,0x66, 0x66,0x73,0x65,0x74,0x73,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21, 0x30,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x72,0x65,0x61,0x64,0x22,0x2c,0x66, 0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e, 0x6e,0x61,0x6d,0x65,0x3b,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73, 0x44,0x61,0x74,0x61,0x5b,0x6e,0x5d,0x3d,0x53,0x65,0x28,0x7b,0x72,0x65,0x66,0x65, 0x72,0x65,0x6e,0x63,0x65,0x3a,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x72,0x65, 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a, 0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x73, 0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74, 0x65,0x22,0x2c,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x7d,0x2c,0x64,0x61,0x74,0x61, 0x3a,0x7b,0x7d,0x7d,0x3b,0x76,0x61,0x72,0x20,0x52,0x65,0x3d,0x7b,0x6e,0x61,0x6d, 0x65,0x3a,0x22,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c,0x70, 0x68,0x61,0x73,0x65,0x3a,0x22,0x6d,0x61,0x69,0x6e,0x22,0x2c,0x66,0x6e,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x6f,0x3d, 0x6e,0x2e,0x6d,0x61,0x69,0x6e,0x41,0x78,0x69,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x7c,0x7c,0x6f,0x2c,0x61,0x3d,0x6e,0x2e,0x61, 0x6c,0x74,0x41,0x78,0x69,0x73,0x2c,0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x61,0x26,0x26,0x61,0x2c,0x63,0x3d,0x6e,0x2e,0x62,0x6f,0x75,0x6e,0x64, 0x61,0x72,0x79,0x2c,0x6c,0x3d,0x6e,0x2e,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e, 0x64,0x61,0x72,0x79,0x2c,0x73,0x3d,0x6e,0x2e,0x61,0x6c,0x74,0x42,0x6f,0x75,0x6e, 0x64,0x61,0x72,0x79,0x2c,0x66,0x3d,0x6e,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x2c,0x64,0x3d,0x6e,0x2e,0x74,0x65,0x74,0x68,0x65,0x72,0x2c,0x70,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x7c,0x7c,0x64,0x2c,0x68,0x3d,0x6e,0x2e, 0x74,0x65,0x74,0x68,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x2c,0x76,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x68,0x3f,0x30,0x3a,0x68,0x2c,0x67,0x3d, 0x43,0x65,0x28,0x74,0x2c,0x7b,0x62,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x63, 0x2c,0x72,0x6f,0x6f,0x74,0x42,0x6f,0x75,0x6e,0x64,0x61,0x72,0x79,0x3a,0x6c,0x2c, 0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x66,0x2c,0x61,0x6c,0x74,0x42,0x6f,0x75, 0x6e,0x64,0x61,0x72,0x79,0x3a,0x73,0x7d,0x29,0x2c,0x6d,0x3d,0x53,0x28,0x74,0x2e, 0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x62,0x3d,0x6c,0x65,0x28, 0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x29,0x2c,0x79,0x3d,0x21, 0x62,0x2c,0x5f,0x3d,0x57,0x28,0x6d,0x29,0x2c,0x77,0x3d,0x22,0x78,0x22,0x3d,0x3d, 0x3d,0x5f,0x3f,0x22,0x79,0x22,0x3a,0x22,0x78,0x22,0x2c,0x4f,0x3d,0x74,0x2e,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x70,0x6f,0x70, 0x70,0x65,0x72,0x4f,0x66,0x66,0x73,0x65,0x74,0x73,0x2c,0x78,0x3d,0x74,0x2e,0x72, 0x65,0x63,0x74,0x73,0x2e,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x45, 0x3d,0x74,0x2e,0x72,0x65,0x63,0x74,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c, 0x6a,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x76,0x3f,0x76,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x72,0x65,0x63, 0x74,0x73,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e, 0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x7d,0x29,0x29,0x3a,0x76,0x2c,0x6b, 0x3d,0x7b,0x78,0x3a,0x30,0x2c,0x79,0x3a,0x30,0x7d,0x3b,0x69,0x66,0x28,0x4f,0x29, 0x7b,0x69,0x66,0x28,0x69,0x7c,0x7c,0x75,0x29,0x7b,0x76,0x61,0x72,0x20,0x43,0x3d, 0x22,0x79,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x59,0x3a,0x4a,0x2c,0x54,0x3d,0x22,0x79, 0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x51,0x3a,0x58,0x2c,0x50,0x3d,0x22,0x79,0x22,0x3d, 0x3d,0x3d,0x5f,0x3f,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x77,0x69, 0x64,0x74,0x68,0x22,0x2c,0x44,0x3d,0x4f,0x5b,0x5f,0x5d,0x2c,0x4e,0x3d,0x4f,0x5b, 0x5f,0x5d,0x2b,0x67,0x5b,0x43,0x5d,0x2c,0x49,0x3d,0x4f,0x5b,0x5f,0x5d,0x2d,0x67, 0x5b,0x54,0x5d,0x2c,0x52,0x3d,0x70,0x3f,0x2d,0x45,0x5b,0x50,0x5d,0x2f,0x32,0x3a, 0x30,0x2c,0x4c,0x3d,0x62,0x3d,0x3d,0x3d,0x74,0x65,0x3f,0x78,0x5b,0x50,0x5d,0x3a, 0x45,0x5b,0x50,0x5d,0x2c,0x46,0x3d,0x62,0x3d,0x3d,0x3d,0x74,0x65,0x3f,0x2d,0x45, 0x5b,0x50,0x5d,0x3a,0x2d,0x78,0x5b,0x50,0x5d,0x2c,0x4d,0x3d,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x42,0x3d,0x70, 0x26,0x26,0x4d,0x3f,0x41,0x28,0x4d,0x29,0x3a,0x7b,0x77,0x69,0x64,0x74,0x68,0x3a, 0x30,0x2c,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x30,0x7d,0x2c,0x7a,0x3d,0x74,0x2e, 0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x22,0x61, 0x72,0x72,0x6f,0x77,0x23,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x22, 0x5d,0x3f,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74, 0x61,0x5b,0x22,0x61,0x72,0x72,0x6f,0x77,0x23,0x70,0x65,0x72,0x73,0x69,0x73,0x74, 0x65,0x6e,0x74,0x22,0x5d,0x2e,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x7b,0x74, 0x6f,0x70,0x3a,0x30,0x2c,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x2c,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x3a,0x30,0x2c,0x6c,0x65,0x66,0x74,0x3a,0x30,0x7d,0x2c,0x56,0x3d, 0x7a,0x5b,0x43,0x5d,0x2c,0x71,0x3d,0x7a,0x5b,0x54,0x5d,0x2c,0x4b,0x3d,0x47,0x28, 0x30,0x2c,0x78,0x5b,0x50,0x5d,0x2c,0x42,0x5b,0x50,0x5d,0x29,0x2c,0x5a,0x3d,0x79, 0x3f,0x78,0x5b,0x50,0x5d,0x2f,0x32,0x2d,0x52,0x2d,0x4b,0x2d,0x56,0x2d,0x6a,0x3a, 0x4c,0x2d,0x4b,0x2d,0x56,0x2d,0x6a,0x2c,0x65,0x65,0x3d,0x79,0x3f,0x2d,0x78,0x5b, 0x50,0x5d,0x2f,0x32,0x2b,0x52,0x2b,0x4b,0x2b,0x71,0x2b,0x6a,0x3a,0x46,0x2b,0x4b, 0x2b,0x71,0x2b,0x6a,0x2c,0x6e,0x65,0x3d,0x74,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x26,0x26,0x55,0x28,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x29,0x2c,0x72,0x65, 0x3d,0x6e,0x65,0x3f,0x22,0x79,0x22,0x3d,0x3d,0x3d,0x5f,0x3f,0x6e,0x65,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x54,0x6f,0x70,0x7c,0x7c,0x30,0x3a,0x6e,0x65,0x2e,0x63, 0x6c,0x69,0x65,0x6e,0x74,0x4c,0x65,0x66,0x74,0x7c,0x7c,0x30,0x3a,0x30,0x2c,0x6f, 0x65,0x3d,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74, 0x61,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x3f,0x74,0x2e,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x5b, 0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x5d,0x5b,0x5f,0x5d,0x3a, 0x30,0x2c,0x69,0x65,0x3d,0x4f,0x5b,0x5f,0x5d,0x2b,0x5a,0x2d,0x6f,0x65,0x2d,0x72, 0x65,0x2c,0x61,0x65,0x3d,0x4f,0x5b,0x5f,0x5d,0x2b,0x65,0x65,0x2d,0x6f,0x65,0x3b, 0x69,0x66,0x28,0x69,0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x65,0x3d,0x47,0x28,0x70, 0x3f,0x48,0x28,0x4e,0x2c,0x69,0x65,0x29,0x3a,0x4e,0x2c,0x44,0x2c,0x70,0x3f,0x24, 0x28,0x49,0x2c,0x61,0x65,0x29,0x3a,0x49,0x29,0x3b,0x4f,0x5b,0x5f,0x5d,0x3d,0x75, 0x65,0x2c,0x6b,0x5b,0x5f,0x5d,0x3d,0x75,0x65,0x2d,0x44,0x7d,0x69,0x66,0x28,0x75, 0x29,0x7b,0x76,0x61,0x72,0x20,0x63,0x65,0x3d,0x22,0x78,0x22,0x3d,0x3d,0x3d,0x5f, 0x3f,0x59,0x3a,0x4a,0x2c,0x73,0x65,0x3d,0x22,0x78,0x22,0x3d,0x3d,0x3d,0x5f,0x3f, 0x51,0x3a,0x58,0x2c,0x66,0x65,0x3d,0x4f,0x5b,0x77,0x5d,0x2c,0x64,0x65,0x3d,0x66, 0x65,0x2b,0x67,0x5b,0x63,0x65,0x5d,0x2c,0x70,0x65,0x3d,0x66,0x65,0x2d,0x67,0x5b, 0x73,0x65,0x5d,0x2c,0x68,0x65,0x3d,0x47,0x28,0x70,0x3f,0x48,0x28,0x64,0x65,0x2c, 0x69,0x65,0x29,0x3a,0x64,0x65,0x2c,0x66,0x65,0x2c,0x70,0x3f,0x24,0x28,0x70,0x65, 0x2c,0x61,0x65,0x29,0x3a,0x70,0x65,0x29,0x3b,0x4f,0x5b,0x77,0x5d,0x3d,0x68,0x65, 0x2c,0x6b,0x5b,0x77,0x5d,0x3d,0x68,0x65,0x2d,0x66,0x65,0x7d,0x7d,0x74,0x2e,0x6d, 0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x5b,0x72,0x5d,0x3d, 0x6b,0x7d,0x7d,0x2c,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x49,0x66,0x45,0x78, 0x69,0x73,0x74,0x73,0x3a,0x5b,0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x5d,0x7d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4c,0x65,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26, 0x28,0x6e,0x3d,0x21,0x31,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x44,0x28,0x74, 0x29,0x2c,0x6f,0x3d,0x44,0x28,0x74,0x29,0x26,0x26,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x67,0x65, 0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e,0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52, 0x65,0x63,0x74,0x28,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x77,0x69,0x64,0x74,0x68,0x2f, 0x65,0x2e,0x6f,0x66,0x66,0x73,0x65,0x74,0x57,0x69,0x64,0x74,0x68,0x7c,0x7c,0x31, 0x2c,0x72,0x3d,0x74,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x2f,0x65,0x2e,0x6f,0x66, 0x66,0x73,0x65,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x7c,0x7c,0x31,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x31,0x21,0x3d,0x3d,0x6e,0x7c,0x7c,0x31,0x21,0x3d,0x3d, 0x72,0x7d,0x28,0x74,0x29,0x2c,0x69,0x3d,0x4d,0x28,0x74,0x29,0x2c,0x61,0x3d,0x43, 0x28,0x65,0x2c,0x6f,0x29,0x2c,0x75,0x3d,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c, 0x65,0x66,0x74,0x3a,0x30,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3a, 0x30,0x7d,0x2c,0x63,0x3d,0x7b,0x78,0x3a,0x30,0x2c,0x79,0x3a,0x30,0x7d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x72,0x7c,0x7c,0x21,0x72,0x26,0x26,0x21,0x6e,0x29, 0x26,0x26,0x28,0x28,0x22,0x62,0x6f,0x64,0x79,0x22,0x21,0x3d,0x3d,0x52,0x28,0x74, 0x29,0x7c,0x7c,0x77,0x65,0x28,0x69,0x29,0x29,0x26,0x26,0x28,0x75,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x21,0x3d,0x3d,0x54,0x28,0x65,0x29,0x26,0x26,0x44,0x28,0x65,0x29,0x3f, 0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x3a,0x28,0x74,0x3d,0x65, 0x29,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2c,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x3a,0x74,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54, 0x6f,0x70,0x7d,0x3a,0x79,0x65,0x28,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x7d, 0x28,0x74,0x29,0x29,0x2c,0x44,0x28,0x74,0x29,0x3f,0x28,0x28,0x63,0x3d,0x43,0x28, 0x74,0x2c,0x21,0x30,0x29,0x29,0x2e,0x78,0x2b,0x3d,0x74,0x2e,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x4c,0x65,0x66,0x74,0x2c,0x63,0x2e,0x79,0x2b,0x3d,0x74,0x2e,0x63,0x6c, 0x69,0x65,0x6e,0x74,0x54,0x6f,0x70,0x29,0x3a,0x69,0x26,0x26,0x28,0x63,0x2e,0x78, 0x3d,0x5f,0x65,0x28,0x69,0x29,0x29,0x29,0x2c,0x7b,0x78,0x3a,0x61,0x2e,0x6c,0x65, 0x66,0x74,0x2b,0x75,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x4c,0x65,0x66,0x74,0x2d, 0x63,0x2e,0x78,0x2c,0x79,0x3a,0x61,0x2e,0x74,0x6f,0x70,0x2b,0x75,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x2d,0x63,0x2e,0x79,0x2c,0x77,0x69,0x64,0x74, 0x68,0x3a,0x61,0x2e,0x77,0x69,0x64,0x74,0x68,0x2c,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x61,0x2e,0x68,0x65,0x69,0x67,0x68,0x74,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x46,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x2c,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x53,0x65, 0x74,0x2c,0x72,0x3d,0x5b,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x6f,0x28,0x65,0x29,0x7b,0x6e,0x2e,0x61,0x64,0x64,0x28,0x65,0x2e,0x6e,0x61,0x6d, 0x65,0x29,0x2c,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2e,0x72, 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x7c,0x7c,0x5b,0x5d,0x2c,0x65,0x2e,0x72,0x65, 0x71,0x75,0x69,0x72,0x65,0x73,0x49,0x66,0x45,0x78,0x69,0x73,0x74,0x73,0x7c,0x7c, 0x5b,0x5d,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x21,0x6e,0x2e,0x68, 0x61,0x73,0x28,0x65,0x29,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x67, 0x65,0x74,0x28,0x65,0x29,0x3b,0x72,0x26,0x26,0x6f,0x28,0x72,0x29,0x7d,0x7d,0x29, 0x29,0x2c,0x72,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29,0x7d,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x2e,0x73,0x65,0x74,0x28, 0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x6e,0x2e,0x68,0x61,0x73,0x28,0x65,0x2e,0x6e,0x61,0x6d,0x65, 0x29,0x7c,0x7c,0x6f,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x72,0x7d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7c,0x7c,0x28,0x74, 0x3d,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x50,0x72,0x6f,0x6d,0x69,0x73, 0x65,0x2e,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x29,0x2e,0x74,0x68,0x65,0x6e, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e,0x28,0x65,0x28,0x29,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x29,0x29,0x2c,0x74,0x7d,0x7d,0x76,0x61,0x72,0x20,0x42,0x65,0x3d,0x7b,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x22,0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x5d,0x2c,0x73, 0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x3a,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74, 0x65,0x22,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7a,0x65,0x28, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x3d,0x6e, 0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x30,0x3b, 0x6e,0x3c,0x65,0x3b,0x6e,0x2b,0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x21,0x74,0x2e,0x73,0x6f,0x6d,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x28,0x65,0x26,0x26, 0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x65,0x2e,0x67,0x65,0x74,0x42,0x6f,0x75,0x6e,0x64,0x69,0x6e, 0x67,0x43,0x6c,0x69,0x65,0x6e,0x74,0x52,0x65,0x63,0x74,0x29,0x7d,0x29,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x55,0x65,0x28,0x65,0x29,0x7b,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x7b,0x7d, 0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2c,0x6e,0x3d,0x74,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2c,0x72, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x5b,0x5d,0x3a,0x6e, 0x2c,0x6f,0x3d,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x4f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f, 0x3f,0x42,0x65,0x3a,0x6f,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x69,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a, 0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22,0x2c,0x6f,0x72,0x64,0x65,0x72,0x65,0x64, 0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x5d,0x2c,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x42,0x65,0x2c,0x69,0x29,0x2c,0x6d,0x6f,0x64,0x69, 0x66,0x69,0x65,0x72,0x73,0x44,0x61,0x74,0x61,0x3a,0x7b,0x7d,0x2c,0x65,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x73,0x3a,0x7b,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, 0x3a,0x65,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a,0x74,0x7d,0x2c,0x61,0x74,0x74, 0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x3a,0x7b,0x7d,0x2c,0x73,0x74,0x79,0x6c,0x65, 0x73,0x3a,0x7b,0x7d,0x7d,0x2c,0x61,0x3d,0x5b,0x5d,0x2c,0x75,0x3d,0x21,0x31,0x2c, 0x63,0x3d,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x6f,0x2c,0x73,0x65,0x74,0x4f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x3f,0x6e,0x28, 0x6f,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3a,0x6e,0x3b,0x6c,0x28,0x29, 0x2c,0x6f,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x69,0x2c,0x6f,0x2e, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x75,0x29,0x2c,0x6f,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x50,0x61,0x72,0x65,0x6e,0x74,0x73,0x3d,0x7b,0x72,0x65,0x66,0x65, 0x72,0x65,0x6e,0x63,0x65,0x3a,0x50,0x28,0x65,0x29,0x3f,0x78,0x65,0x28,0x65,0x29, 0x3a,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x3f,0x78,0x65,0x28,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x29,0x3a,0x5b,0x5d,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72, 0x3a,0x78,0x65,0x28,0x74,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20,0x73,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d, 0x46,0x65,0x28,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x65,0x2e, 0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x70,0x68,0x61,0x73,0x65,0x3d,0x3d,0x3d,0x6e,0x7d,0x29, 0x29,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x7d,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x72,0x65, 0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x5b,0x74,0x2e,0x6e,0x61, 0x6d,0x65,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x2e,0x6e, 0x61,0x6d,0x65,0x5d,0x3d,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6e,0x2c,0x74,0x2c,0x7b,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x6e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c, 0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x2c,0x64,0x61,0x74,0x61,0x3a, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d, 0x2c,0x6e,0x2e,0x64,0x61,0x74,0x61,0x2c,0x74,0x2e,0x64,0x61,0x74,0x61,0x29,0x7d, 0x29,0x3a,0x74,0x2c,0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74, 0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x5b,0x65,0x5d,0x7d,0x29, 0x29,0x7d,0x28,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2c,0x6f, 0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, 0x72,0x73,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x2e,0x6f, 0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3d, 0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x65, 0x6e,0x61,0x62,0x6c,0x65,0x64,0x7d,0x29,0x29,0x2c,0x6f,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72, 0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x6e, 0x3d,0x65,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x72,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x7b,0x7d,0x3a,0x6e,0x2c,0x69,0x3d,0x65, 0x2e,0x65,0x66,0x66,0x65,0x63,0x74,0x3b,0x69,0x66,0x28,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x69, 0x29,0x7b,0x76,0x61,0x72,0x20,0x75,0x3d,0x69,0x28,0x7b,0x73,0x74,0x61,0x74,0x65, 0x3a,0x6f,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x74,0x2c,0x69,0x6e,0x73,0x74,0x61,0x6e, 0x63,0x65,0x3a,0x63,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x72,0x7d,0x29, 0x2c,0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x3b, 0x61,0x2e,0x70,0x75,0x73,0x68,0x28,0x75,0x7c,0x7c,0x6c,0x29,0x7d,0x7d,0x29,0x29, 0x2c,0x63,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x29,0x7d,0x2c,0x66,0x6f,0x72, 0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x75,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x6f,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x74,0x3d,0x65,0x2e, 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x70,0x6f, 0x70,0x70,0x65,0x72,0x3b,0x69,0x66,0x28,0x7a,0x65,0x28,0x74,0x2c,0x6e,0x29,0x29, 0x7b,0x6f,0x2e,0x72,0x65,0x63,0x74,0x73,0x3d,0x7b,0x72,0x65,0x66,0x65,0x72,0x65, 0x6e,0x63,0x65,0x3a,0x4c,0x65,0x28,0x74,0x2c,0x55,0x28,0x6e,0x29,0x2c,0x22,0x66, 0x69,0x78,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x6f,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x2e,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x29,0x2c,0x70,0x6f,0x70,0x70, 0x65,0x72,0x3a,0x41,0x28,0x6e,0x29,0x7d,0x2c,0x6f,0x2e,0x72,0x65,0x73,0x65,0x74, 0x3d,0x21,0x31,0x2c,0x6f,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3d, 0x6f,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x6f,0x2e,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f,0x64, 0x69,0x66,0x69,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x44,0x61, 0x74,0x61,0x5b,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x5d,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2e,0x64,0x61, 0x74,0x61,0x29,0x7d,0x29,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x72, 0x3d,0x30,0x3b,0x72,0x3c,0x6f,0x2e,0x6f,0x72,0x64,0x65,0x72,0x65,0x64,0x4d,0x6f, 0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x2b,0x2b,0x29,0x69,0x66,0x28,0x21,0x30,0x21,0x3d,0x3d,0x6f,0x2e,0x72,0x65,0x73, 0x65,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x2e,0x6f,0x72,0x64,0x65, 0x72,0x65,0x64,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x5b,0x72,0x5d,0x2c, 0x61,0x3d,0x69,0x2e,0x66,0x6e,0x2c,0x6c,0x3d,0x69,0x2e,0x6f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x2c,0x73,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6c,0x3f, 0x7b,0x7d,0x3a,0x6c,0x2c,0x66,0x3d,0x69,0x2e,0x6e,0x61,0x6d,0x65,0x3b,0x22,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x61,0x26,0x26,0x28,0x6f,0x3d,0x61,0x28,0x7b,0x73,0x74,0x61,0x74,0x65, 0x3a,0x6f,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x73,0x2c,0x6e,0x61,0x6d, 0x65,0x3a,0x66,0x2c,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x3a,0x63,0x7d,0x29, 0x7c,0x7c,0x6f,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x6f,0x2e,0x72,0x65,0x73,0x65, 0x74,0x3d,0x21,0x31,0x2c,0x72,0x3d,0x2d,0x31,0x7d,0x7d,0x7d,0x2c,0x75,0x70,0x64, 0x61,0x74,0x65,0x3a,0x4d,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x50,0x72, 0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x63,0x2e,0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65, 0x28,0x29,0x2c,0x65,0x28,0x6f,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x64,0x65, 0x73,0x74,0x72,0x6f,0x79,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x6c,0x28,0x29,0x2c,0x75,0x3d,0x21,0x30,0x7d,0x7d,0x3b,0x69,0x66,0x28,0x21, 0x7a,0x65,0x28,0x65,0x2c,0x74,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x28,0x29,0x7b,0x61,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x29,0x7d, 0x29,0x29,0x2c,0x61,0x3d,0x5b,0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63, 0x2e,0x73,0x65,0x74,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x28,0x6e,0x29,0x2e,0x74, 0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x21,0x75,0x26,0x26,0x6e,0x2e,0x6f,0x6e,0x46,0x69,0x72,0x73,0x74,0x55,0x70, 0x64,0x61,0x74,0x65,0x26,0x26,0x6e,0x2e,0x6f,0x6e,0x46,0x69,0x72,0x73,0x74,0x55, 0x70,0x64,0x61,0x74,0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x63,0x7d,0x7d,0x76, 0x61,0x72,0x20,0x57,0x65,0x3d,0x55,0x65,0x28,0x7b,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x44,0x65,0x2c,0x49, 0x65,0x2c,0x64,0x65,0x2c,0x68,0x65,0x2c,0x4e,0x65,0x2c,0x41,0x65,0x2c,0x52,0x65, 0x2c,0x63,0x65,0x5d,0x7d,0x29,0x2c,0x24,0x65,0x3d,0x5b,0x22,0x65,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x22,0x2c,0x22,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x22, 0x2c,0x22,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x22,0x2c,0x22,0x6d,0x6f,0x64, 0x69,0x66,0x69,0x65,0x72,0x73,0x22,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x48,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66,0x6f,0x72,0x28, 0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72, 0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f,0x5b,0x6e,0x5d, 0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d, 0x76,0x61,0x72,0x20,0x56,0x65,0x3d,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x61,0x70, 0x70,0x6c,0x79,0x53,0x74,0x79,0x6c,0x65,0x73,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c, 0x65,0x64,0x3a,0x21,0x31,0x2c,0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x61,0x66,0x74, 0x65,0x72,0x57,0x72,0x69,0x74,0x65,0x22,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x7d,0x2c,0x47,0x65,0x3d,0x7b,0x6e,0x61, 0x6d,0x65,0x3a,0x22,0x61,0x72,0x69,0x61,0x44,0x65,0x73,0x63,0x72,0x69,0x62,0x65, 0x64,0x42,0x79,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c, 0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x61,0x66,0x74,0x65,0x72,0x57,0x72,0x69,0x74, 0x65,0x22,0x2c,0x65,0x66,0x66,0x65,0x63,0x74,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x73,0x74, 0x61,0x74,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x72,0x65,0x66,0x65,0x72, 0x65,0x6e,0x63,0x65,0x2c,0x72,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x3b, 0x69,0x66,0x28,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x22,0x69,0x6e,0x20,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d, 0x28,0x6e,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28, 0x22,0x61,0x72,0x69,0x61,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x62, 0x79,0x22,0x29,0x7c,0x7c,0x22,0x22,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x22, 0x2c,0x22,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x21,0x3d,0x3d,0x72,0x2e,0x69,0x64,0x7d,0x29, 0x29,0x3b,0x6f,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x6e,0x2e,0x73,0x65,0x74, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69,0x61,0x2d, 0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x62,0x79,0x22,0x2c,0x6f,0x2e,0x6a, 0x6f,0x69,0x6e,0x28,0x22,0x2c,0x22,0x29,0x29,0x3a,0x6e,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x61,0x72,0x69, 0x61,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x62,0x79,0x22,0x29,0x7d, 0x7d,0x7d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x74,0x61,0x74, 0x65,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x72,0x3d,0x6e,0x2e,0x70, 0x6f,0x70,0x70,0x65,0x72,0x2c,0x6f,0x3d,0x6e,0x2e,0x72,0x65,0x66,0x65,0x72,0x65, 0x6e,0x63,0x65,0x2c,0x69,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x74,0x3d,0x72, 0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x72, 0x6f,0x6c,0x65,0x22,0x29,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e, 0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x3b,0x69,0x66, 0x28,0x72,0x2e,0x69,0x64,0x26,0x26,0x22,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22, 0x3d,0x3d,0x3d,0x69,0x26,0x26,0x22,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x22,0x69,0x6e,0x20,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d, 0x6f,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22, 0x61,0x72,0x69,0x61,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x62,0x79, 0x22,0x29,0x3b,0x69,0x66,0x28,0x61,0x26,0x26,0x2d,0x31,0x21,0x3d,0x3d,0x61,0x2e, 0x73,0x70,0x6c,0x69,0x74,0x28,0x22,0x2c,0x22,0x29,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x72,0x2e,0x69,0x64,0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b, 0x6f,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22, 0x61,0x72,0x69,0x61,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x62,0x79, 0x22,0x2c,0x61,0x3f,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x2c, 0x22,0x2c,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2e,0x69,0x64, 0x29,0x3a,0x72,0x2e,0x69,0x64,0x29,0x7d,0x7d,0x7d,0x2c,0x71,0x65,0x3d,0x5b,0x5d, 0x3b,0x76,0x61,0x72,0x20,0x4b,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x32,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x32,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x32,0x5d,0x3a,0x7b,0x7d,0x2c,0x72,0x3d,0x6e,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x2c,0x6f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x72,0x7c,0x7c, 0x72,0x2c,0x69,0x3d,0x6e,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x61,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x3f,0x22,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x22,0x3a,0x69,0x2c,0x63,0x3d,0x6e,0x2e,0x73,0x74,0x72,0x61, 0x74,0x65,0x67,0x79,0x2c,0x6c,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x63,0x3f,0x22,0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x22,0x3a,0x63,0x2c,0x66, 0x3d,0x6e,0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x2c,0x64,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x66,0x3f,0x71,0x65,0x3a,0x66,0x2c,0x70, 0x3d,0x48,0x65,0x28,0x6e,0x2c,0x24,0x65,0x29,0x2c,0x68,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x64,0x29,0x2c, 0x76,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65, 0x66,0x29,0x28,0x29,0x2c,0x67,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e, 0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x65,0x3d,0x76,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x29,0x7c,0x7c,0x65,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x29,0x7d,0x29, 0x2c,0x5b,0x5d,0x29,0x2c,0x6d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e, 0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x65,0x3d,0x76,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x29,0x7c,0x7c,0x65,0x2e,0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74, 0x65,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x62,0x3d,0x6b,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29, 0x28,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x61,0x2c,0x75,0x70, 0x64,0x61,0x74,0x65,0x3a,0x67,0x2c,0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61, 0x74,0x65,0x3a,0x6d,0x2c,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x3a, 0x7b,0x7d,0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a,0x7b,0x70,0x6f,0x70,0x70,0x65, 0x72,0x3a,0x7b,0x7d,0x2c,0x61,0x72,0x72,0x6f,0x77,0x3a,0x7b,0x7d,0x7d,0x7d,0x29, 0x29,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28, 0x62,0x2c,0x32,0x29,0x2c,0x77,0x3d,0x79,0x5b,0x30,0x5d,0x2c,0x4f,0x3d,0x79,0x5b, 0x31,0x5d,0x2c,0x78,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22, 0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x65,0x4d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x30,0x2c, 0x70,0x68,0x61,0x73,0x65,0x3a,0x22,0x77,0x72,0x69,0x74,0x65,0x22,0x2c,0x72,0x65, 0x71,0x75,0x69,0x72,0x65,0x73,0x3a,0x5b,0x22,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, 0x53,0x74,0x79,0x6c,0x65,0x73,0x22,0x5d,0x2c,0x66,0x6e,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e, 0x73,0x74,0x61,0x74,0x65,0x2c,0x6e,0x3d,0x7b,0x7d,0x2c,0x72,0x3d,0x7b,0x7d,0x3b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x2e,0x65,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x73,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x5b,0x65, 0x5d,0x3d,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x5b,0x65,0x5d,0x2c,0x72,0x5b, 0x65,0x5d,0x3d,0x74,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x5b, 0x65,0x5d,0x7d,0x29,0x29,0x2c,0x4f,0x28,0x7b,0x73,0x74,0x61,0x74,0x65,0x3a,0x74, 0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a,0x6e,0x2c,0x61,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x73,0x3a,0x72,0x2c,0x75,0x70,0x64,0x61,0x74,0x65,0x3a,0x67,0x2c, 0x66,0x6f,0x72,0x63,0x65,0x55,0x70,0x64,0x61,0x74,0x65,0x3a,0x6d,0x2c,0x70,0x6c, 0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x7d,0x29,0x7d,0x7d,0x7d,0x29,0x2c,0x5b,0x67,0x2c,0x6d,0x2c,0x4f, 0x5d,0x29,0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x45,0x28,0x68,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x2c,0x64,0x29,0x7c,0x7c,0x28,0x68,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x64,0x29,0x2c,0x68,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x7d,0x29,0x2c,0x5b,0x64,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x6f,0x26,0x26,0x76,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x73,0x65,0x74,0x4f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x28,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x61,0x2c, 0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x3a,0x6c,0x2c,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x3a,0x5b,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x5f,0x2e,0x61,0x29,0x28,0x6a,0x29,0x2c,0x5b,0x78, 0x2c,0x56,0x65,0x5d,0x29,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x6c,0x2c,0x61,0x2c,0x78, 0x2c,0x6f,0x2c,0x6a,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e, 0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x6f,0x26,0x26,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x65,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x29,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x76,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x57, 0x65,0x28,0x65,0x2c,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73, 0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x70,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x61,0x2c,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x3a,0x6c, 0x2c,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x3a,0x5b,0x5d,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x5f,0x2e,0x61,0x29, 0x28,0x6a,0x29,0x2c,0x5b,0x47,0x65,0x2c,0x78,0x5d,0x29,0x7d,0x29,0x29,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d, 0x76,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x76,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x2e,0x64,0x65,0x73,0x74,0x72,0x6f,0x79,0x28,0x29,0x2c, 0x76,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x2c,0x4f,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x7b,0x61,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x65,0x73,0x3a,0x7b,0x7d,0x2c,0x73,0x74,0x79,0x6c,0x65,0x73,0x3a, 0x7b,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a,0x7b,0x7d,0x7d,0x7d,0x29,0x7d,0x29,0x29, 0x29,0x7d,0x7d,0x29,0x2c,0x5b,0x6f,0x2c,0x65,0x2c,0x74,0x5d,0x29,0x2c,0x77,0x7d, 0x2c,0x59,0x65,0x3d,0x6e,0x28,0x36,0x38,0x29,0x2c,0x51,0x65,0x3d,0x6e,0x28,0x33, 0x37,0x29,0x2c,0x58,0x65,0x3d,0x6e,0x28,0x34,0x36,0x29,0x2c,0x4a,0x65,0x3d,0x6e, 0x28,0x36,0x35,0x29,0x2c,0x5a,0x65,0x3d,0x6e,0x2e,0x6e,0x28,0x4a,0x65,0x29,0x2c, 0x65,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x74,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x2e,0x62,0x75,0x74,0x74, 0x6f,0x6e,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x74,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x28,0x65,0x2e,0x6d,0x65,0x74, 0x61,0x4b,0x65,0x79,0x7c,0x7c,0x65,0x2e,0x61,0x6c,0x74,0x4b,0x65,0x79,0x7c,0x7c, 0x65,0x2e,0x63,0x74,0x72,0x6c,0x4b,0x65,0x79,0x7c,0x7c,0x65,0x2e,0x73,0x68,0x69, 0x66,0x74,0x4b,0x65,0x79,0x29,0x7d,0x76,0x61,0x72,0x20,0x72,0x74,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x26,0x26,0x28,0x22,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x69,0x6e, 0x20,0x65,0x3f,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3a,0x65,0x29,0x7d, 0x3b,0x76,0x61,0x72,0x20,0x6f,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x32,0x26,0x26, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x5b,0x32,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x32,0x5d,0x3a,0x7b,0x7d,0x2c,0x72,0x3d,0x6e,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x2c,0x6f,0x3d,0x6e,0x2e,0x63,0x6c,0x69,0x63,0x6b,0x54,0x72,0x69,0x67, 0x67,0x65,0x72,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f, 0x3f,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22,0x3a,0x6f,0x2c,0x61,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21,0x31, 0x29,0x2c,0x63,0x3d,0x74,0x7c,0x7c,0x65,0x74,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x72,0x74,0x28,0x65,0x29,0x3b,0x5a,0x65,0x28,0x29,0x28, 0x21,0x21,0x6e,0x2c,0x22,0x52,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65,0x20,0x63, 0x61,0x70,0x74,0x75,0x72,0x65,0x64,0x20,0x61,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20, 0x65,0x76,0x65,0x6e,0x74,0x20,0x62,0x75,0x74,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e, 0x6f,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x72,0x65,0x66,0x20,0x74,0x6f, 0x20,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x20,0x69,0x74,0x20,0x74,0x6f,0x2e,0x20, 0x75,0x73,0x65,0x52,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65,0x28,0x29,0x2c,0x20, 0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x62,0x65,0x20,0x70,0x61,0x73,0x73,0x65,0x64, 0x20,0x61,0x20,0x72,0x65,0x66,0x20,0x74,0x68,0x61,0x74,0x20,0x72,0x65,0x73,0x6f, 0x6c,0x76,0x65,0x73,0x20,0x74,0x6f,0x20,0x61,0x20,0x44,0x4f,0x4d,0x20,0x6e,0x6f, 0x64,0x65,0x22,0x29,0x2c,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21, 0x6e,0x7c,0x7c,0x6e,0x74,0x28,0x74,0x29,0x7c,0x7c,0x21,0x74,0x74,0x28,0x74,0x29, 0x7c,0x7c,0x21,0x21,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x59,0x65,0x2e,0x61,0x29, 0x28,0x6e,0x2c,0x74,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x29,0x7d,0x29,0x2c,0x5b, 0x65,0x5d,0x29,0x2c,0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x61, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x63,0x28,0x65,0x29,0x7d,0x29, 0x29,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x32,0x37,0x3d, 0x3d,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65,0x26,0x26,0x63,0x28,0x65, 0x29,0x7d,0x29,0x29,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x21,0x72,0x26,0x26,0x6e,0x75,0x6c,0x6c, 0x21,0x3d,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x77,0x69,0x6e,0x64,0x6f, 0x77,0x2e,0x65,0x76,0x65,0x6e,0x74,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x58,0x65,0x2e,0x61,0x29,0x28,0x72,0x74,0x28,0x65,0x29,0x29,0x2c,0x6f,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x51,0x65,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x69, 0x2c,0x6c,0x2c,0x21,0x30,0x29,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x51,0x65,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x69,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x21,0x3d,0x3d,0x74,0x3f,0x73,0x28,0x65, 0x29,0x3a,0x74,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x29,0x29,0x2c,0x75,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x51,0x65,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22, 0x6b,0x65,0x79,0x75,0x70,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x65,0x21,0x3d,0x3d,0x74,0x3f,0x66,0x28,0x65,0x29,0x3a,0x74, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d,0x29,0x29,0x2c,0x63,0x3d,0x5b,0x5d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6f,0x6e,0x74,0x6f,0x75,0x63,0x68,0x73,0x74, 0x61,0x72,0x74,0x22,0x69,0x6e,0x20,0x6e,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x63,0x3d,0x5b,0x5d,0x2e, 0x73,0x6c,0x69,0x63,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6e,0x2e,0x62,0x6f,0x64, 0x79,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x29,0x2e,0x6d,0x61,0x70,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x51,0x65,0x2e,0x61,0x29, 0x28,0x65,0x2c,0x22,0x6d,0x6f,0x75,0x73,0x65,0x6d,0x6f,0x76,0x65,0x22,0x2c,0x65, 0x74,0x29,0x7d,0x29,0x29,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x6f,0x28,0x29,0x2c,0x61,0x28,0x29,0x2c,0x75,0x28,0x29,0x2c,0x63,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x28,0x29,0x7d, 0x29,0x29,0x7d,0x7d,0x7d,0x29,0x2c,0x5b,0x65,0x2c,0x72,0x2c,0x69,0x2c,0x6c,0x2c, 0x73,0x2c,0x66,0x5d,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x69,0x74,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76, 0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30, 0x5d,0x3a,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61, 0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x65,0x29,0x3f,0x65,0x3a,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2e,0x6d,0x61, 0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d,0x2e,0x6e,0x61,0x6d,0x65,0x3d, 0x74,0x2c,0x65,0x5b,0x74,0x5d,0x7d,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x61,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e, 0x2c,0x72,0x2c,0x6f,0x2c,0x69,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x2c,0x61,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x45,0x76,0x65,0x6e,0x74, 0x73,0x2c,0x75,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c, 0x63,0x3d,0x65,0x2e,0x66,0x6c,0x69,0x70,0x2c,0x6c,0x3d,0x65,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x2c,0x73,0x3d,0x65,0x2e,0x66,0x69,0x78,0x65,0x64,0x2c,0x66,0x3d, 0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x50,0x61,0x64,0x64,0x69, 0x6e,0x67,0x2c,0x64,0x3d,0x65,0x2e,0x61,0x72,0x72,0x6f,0x77,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x2c,0x70,0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f, 0x6e,0x66,0x69,0x67,0x2c,0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x70,0x3f,0x7b,0x7d,0x3a,0x70,0x2c,0x76,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x7d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72, 0x61,0x79,0x28,0x65,0x29,0x3f,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x7c,0x7c, 0x65,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x74,0x5b,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x5d, 0x3d,0x65,0x7d,0x29,0x29,0x2c,0x74,0x29,0x3a,0x65,0x7c,0x7c,0x74,0x7d,0x28,0x68, 0x2e,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x72,0x73,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x7d,0x2c,0x68,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x3a,0x75,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x69,0x2c,0x73,0x74,0x72, 0x61,0x74,0x65,0x67,0x79,0x3a,0x73,0x3f,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x3a, 0x68,0x2e,0x73,0x74,0x72,0x61,0x74,0x65,0x67,0x79,0x2c,0x6d,0x6f,0x64,0x69,0x66, 0x69,0x65,0x72,0x73,0x3a,0x69,0x74,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61, 0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x76,0x2c,0x7b,0x65,0x76,0x65,0x6e, 0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x3a,0x7b,0x65,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x3a,0x61,0x7d,0x2c,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x76,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e, 0x74,0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2c,0x7b,0x6f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x3a,0x66,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x66,0x7d,0x2c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x74,0x3d,0x76,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e, 0x74,0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3a,0x74,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3a,0x6e,0x75,0x6c, 0x6c,0x3d,0x3d,0x28,0x6e,0x3d,0x76,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x4f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a, 0x6e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7d,0x29,0x2c,0x6f,0x66,0x66,0x73, 0x65,0x74,0x3a,0x7b,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x6f,0x66,0x66,0x73,0x65, 0x74,0x3a,0x6c,0x7d,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x72,0x3d,0x76,0x2e, 0x6f,0x66,0x66,0x73,0x65,0x74,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x72, 0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x7d,0x2c,0x61,0x72,0x72,0x6f,0x77, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b, 0x7d,0x2c,0x76,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x7b,0x65,0x6e,0x61,0x62,0x6c, 0x65,0x64,0x3a,0x21,0x21,0x64,0x2c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x6f,0x3d,0x76,0x2e,0x61,0x72,0x72,0x6f,0x77, 0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x6f,0x2e,0x6f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x2c,0x7b,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x64,0x7d,0x29,0x7d, 0x29,0x2c,0x66,0x6c,0x69,0x70,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x7b,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x21, 0x63,0x7d,0x2c,0x76,0x2e,0x66,0x6c,0x69,0x70,0x29,0x7d,0x29,0x29,0x7d,0x29,0x7d, 0x76,0x61,0x72,0x20,0x75,0x74,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x63,0x74,0x3d,0x5b, 0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x5d,0x3b,0x76,0x61,0x72,0x20, 0x6c,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x28,0x29,0x7b,0x76,0x61, 0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x7b,0x7d,0x2c,0x74,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x29,0x28,0x62,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x79,0x2e,0x61,0x29,0x28,0x29,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x73,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x32,0x29,0x2c,0x6f,0x3d,0x72,0x5b,0x30, 0x5d,0x2c,0x69,0x3d,0x72,0x5b,0x31,0x5d,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21,0x31,0x29,0x2c, 0x63,0x3d,0x65,0x2e,0x66,0x6c,0x69,0x70,0x2c,0x6c,0x3d,0x65,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x2c,0x66,0x3d,0x65,0x2e,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73, 0x65,0x45,0x76,0x65,0x6e,0x74,0x2c,0x64,0x3d,0x65,0x2e,0x66,0x69,0x78,0x65,0x64, 0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x64,0x26,0x26,0x64, 0x2c,0x68,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x76, 0x3d,0x65,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2c, 0x67,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x76,0x3f,0x7b,0x7d,0x3a, 0x76,0x2c,0x6d,0x3d,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x45,0x76,0x65,0x6e, 0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x2c,0x5f,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6d,0x7c,0x7c,0x6d,0x2c,0x77,0x3d,0x65,0x2e,0x75, 0x73,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x2c,0x4f,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x77,0x3f,0x21,0x21,0x74,0x3a,0x77,0x2c,0x78,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3a,0x74,0x2e,0x73,0x68,0x6f,0x77,0x29,0x3f,0x21,0x21,0x65,0x2e, 0x73,0x68,0x6f,0x77,0x3a,0x74,0x2e,0x73,0x68,0x6f,0x77,0x3b,0x78,0x26,0x26,0x21, 0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x61,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x45,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x74,0x7c,0x7c,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x21,0x31, 0x2c,0x65,0x29,0x7d,0x2c,0x6a,0x3d,0x74,0x7c,0x7c,0x7b,0x7d,0x2c,0x6b,0x3d,0x6a, 0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x53,0x3d,0x6a,0x2e,0x73, 0x65,0x74,0x4d,0x65,0x6e,0x75,0x2c,0x43,0x3d,0x6a,0x2e,0x6d,0x65,0x6e,0x75,0x45, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x41,0x3d,0x6a,0x2e,0x74,0x6f,0x67,0x67,0x6c, 0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x54,0x3d,0x4b,0x65,0x28,0x41,0x2c, 0x43,0x2c,0x61,0x74,0x28,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a, 0x68,0x7c,0x7c,0x6b,0x7c,0x7c,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x73,0x74, 0x61,0x72,0x74,0x22,0x2c,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x4f,0x2c,0x65, 0x6e,0x61,0x62,0x6c,0x65,0x45,0x76,0x65,0x6e,0x74,0x73,0x3a,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x5f,0x3f,0x78,0x3a,0x5f,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x6c, 0x2c,0x66,0x6c,0x69,0x70,0x3a,0x63,0x2c,0x66,0x69,0x78,0x65,0x64,0x3a,0x70,0x2c, 0x61,0x72,0x72,0x6f,0x77,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x6f,0x2c,0x70, 0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x67,0x7d,0x29,0x29, 0x2c,0x50,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x72,0x65,0x66,0x3a,0x53,0x7c,0x7c,0x6c,0x74,0x2c,0x22,0x61,0x72,0x69, 0x61,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x6c,0x65,0x64,0x62,0x79,0x22,0x3a,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x41,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x41,0x2e,0x69, 0x64,0x7d,0x2c,0x54,0x2e,0x61,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x2e, 0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x7b,0x73,0x74,0x79,0x6c,0x65,0x3a,0x54,0x2e, 0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x7d,0x29,0x2c, 0x44,0x3d,0x7b,0x73,0x68,0x6f,0x77,0x3a,0x78,0x2c,0x70,0x6c,0x61,0x63,0x65,0x6d, 0x65,0x6e,0x74,0x3a,0x6b,0x2c,0x68,0x61,0x73,0x53,0x68,0x6f,0x77,0x6e,0x3a,0x61, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74, 0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x3a,0x4f, 0x3f,0x54,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x61,0x72,0x72,0x6f,0x77,0x50,0x72,0x6f, 0x70,0x73,0x3a,0x4f,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x72,0x65,0x66,0x3a,0x69,0x7d,0x2c,0x54,0x2e,0x61,0x74,0x74, 0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x2e,0x61,0x72,0x72,0x6f,0x77,0x2c,0x7b,0x73, 0x74,0x79,0x6c,0x65,0x3a,0x54,0x2e,0x73,0x74,0x79,0x6c,0x65,0x73,0x2e,0x61,0x72, 0x72,0x6f,0x77,0x7d,0x29,0x3a,0x7b,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6f,0x74,0x28,0x43,0x2c,0x45,0x2c,0x7b,0x63,0x6c,0x69,0x63,0x6b,0x54,0x72, 0x69,0x67,0x67,0x65,0x72,0x3a,0x66,0x2c,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, 0x3a,0x21,0x78,0x7d,0x29,0x2c,0x5b,0x50,0x2c,0x44,0x5d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x66,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6e,0x3d,0x73,0x74, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c, 0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29, 0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74, 0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c, 0x28,0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x6f,0x7d,0x28,0x65,0x2c,0x63,0x74,0x29,0x29,0x2c,0x72,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x32,0x29,0x2c, 0x6f,0x3d,0x72,0x5b,0x30,0x5d,0x2c,0x69,0x3d,0x72,0x5b,0x31,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x75,0x74,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x74,0x28,0x6f,0x2c,0x69,0x29, 0x7d,0x29,0x7d,0x66,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d, 0x65,0x3d,0x22,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x4d,0x65,0x6e,0x75,0x22, 0x2c,0x66,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73, 0x3d,0x7b,0x75,0x73,0x65,0x50,0x6f,0x70,0x70,0x65,0x72,0x3a,0x21,0x30,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x64,0x74,0x3d,0x66,0x74,0x2c,0x70,0x74,0x3d,0x7b,0x70,0x72, 0x65,0x66,0x69,0x78,0x3a,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x4d,0x61,0x74,0x68, 0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x31,0x65,0x31,0x30,0x2a,0x4d,0x61,0x74,0x68, 0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x29,0x29,0x2c,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3a,0x30,0x7d,0x2c,0x68,0x74,0x3d,0x63,0x2e,0x61,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x70,0x74,0x29,0x3b, 0x76,0x61,0x72,0x20,0x76,0x74,0x3d,0x42,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x28,0x22, 0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70, 0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x26,0x26,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x26,0x26,0x77,0x69,0x6e, 0x64,0x6f,0x77,0x2e,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65, 0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x76,0x61,0x72,0x20, 0x67,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6d,0x65,0x6e,0x75, 0x22,0x3d,0x3d,0x3d,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28,0x74,0x3d,0x65,0x2e, 0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x22,0x72,0x6f, 0x6c,0x65,0x22,0x29,0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x74, 0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x29,0x7d,0x2c,0x6d, 0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x74,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x68,0x74,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x21,0x3d,0x3d,0x70,0x74,0x7c,0x7c,0x76,0x74,0x7c, 0x7c,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x22,0x57, 0x68,0x65,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65, 0x72,0x69,0x6e,0x67,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x75,0x73,0x74,0x20,0x77, 0x72,0x61,0x70,0x20,0x79,0x6f,0x75,0x72,0x20,0x61,0x70,0x70,0x6c,0x69,0x63,0x61, 0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x61,0x6e,0x20,0x3c,0x53,0x53,0x52,0x50, 0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x3e,0x20,0x74,0x6f,0x20,0x65,0x6e,0x73,0x75, 0x72,0x65,0x20,0x63,0x6f,0x6e,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x20,0x69,0x64, 0x73,0x20,0x61,0x72,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20, 0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65, 0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x22,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d, 0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7c,0x7c,0x22,0x72,0x65,0x61,0x63,0x74,0x2d, 0x61,0x72,0x69,0x61,0x22,0x2b,0x74,0x2e,0x70,0x72,0x65,0x66,0x69,0x78,0x2b,0x22, 0x2d,0x22,0x2b,0x20,0x2b,0x2b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7d, 0x29,0x2c,0x5b,0x65,0x5d,0x29,0x7d,0x28,0x29,0x2c,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29, 0x28,0x62,0x29,0x7c,0x7c,0x7b,0x7d,0x2c,0x6e,0x3d,0x74,0x2e,0x73,0x68,0x6f,0x77, 0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x26,0x26,0x6e, 0x2c,0x6f,0x3d,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x69,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x6d,0x74,0x3a,0x6f,0x2c,0x61,0x3d, 0x74,0x2e,0x73,0x65,0x74,0x54,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x63,0x3d,0x74,0x2e, 0x6d,0x65,0x6e,0x75,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x6c,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61, 0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x69,0x28,0x21,0x72,0x2c,0x65,0x29,0x7d,0x29,0x2c,0x5b,0x72,0x2c,0x69,0x5d, 0x29,0x2c,0x73,0x3d,0x7b,0x69,0x64,0x3a,0x65,0x2c,0x72,0x65,0x66,0x3a,0x61,0x7c, 0x7c,0x6d,0x74,0x2c,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x6c,0x2c,0x22,0x61, 0x72,0x69,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x22,0x3a,0x21,0x21, 0x72,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x26,0x26,0x67,0x74,0x28, 0x63,0x29,0x26,0x26,0x28,0x73,0x5b,0x22,0x61,0x72,0x69,0x61,0x2d,0x68,0x61,0x73, 0x70,0x6f,0x70,0x75,0x70,0x22,0x5d,0x3d,0x21,0x30,0x29,0x2c,0x5b,0x73,0x2c,0x7b, 0x73,0x68,0x6f,0x77,0x3a,0x72,0x2c,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x69,0x7d, 0x5d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x79,0x74,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x2c,0x6e,0x3d,0x62,0x74,0x28,0x29,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x32,0x29,0x2c,0x6f,0x3d,0x72,0x5b, 0x30,0x5d,0x2c,0x69,0x3d,0x72,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x75,0x74,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x74,0x28,0x6f,0x2c,0x69,0x29,0x7d,0x29,0x7d,0x79, 0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x44, 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x22,0x3b,0x76, 0x61,0x72,0x20,0x5f,0x74,0x3d,0x79,0x74,0x2c,0x77,0x74,0x3d,0x6e,0x28,0x39,0x29, 0x2c,0x4f,0x74,0x3d,0x6e,0x28,0x32,0x31,0x29,0x2c,0x78,0x74,0x3d,0x6e,0x28,0x36, 0x31,0x29,0x2c,0x45,0x74,0x3d,0x6e,0x28,0x34,0x38,0x29,0x2c,0x6a,0x74,0x3d,0x6e, 0x28,0x33,0x33,0x29,0x2c,0x6b,0x74,0x3d,0x5b,0x22,0x65,0x76,0x65,0x6e,0x74,0x4b, 0x65,0x79,0x22,0x2c,0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x22, 0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x22,0x2c,0x22,0x61,0x63,0x74,0x69,0x76,0x65, 0x22,0x2c,0x22,0x61,0x73,0x22,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x53,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6b, 0x65,0x79,0x2c,0x6e,0x3d,0x65,0x2e,0x68,0x72,0x65,0x66,0x2c,0x72,0x3d,0x65,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x6f,0x3d,0x65,0x2e,0x64,0x69,0x73,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x69,0x3d,0x65,0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x2c, 0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x4f,0x74,0x2e,0x61,0x29,0x2c,0x63,0x3d,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x29,0x28,0x78,0x74,0x2e,0x61,0x29,0x7c,0x7c,0x7b,0x7d,0x29,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x74,0x2e,0x62,0x29,0x28,0x74,0x2c,0x6e,0x29,0x2c,0x73,0x3d, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x72,0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74, 0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x74,0x2e,0x62,0x29,0x28,0x63,0x29, 0x3d,0x3d,0x3d,0x6c,0x3a,0x72,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6d,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x6f,0x7c,0x7c,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x69,0x7c,0x7c,0x69, 0x28,0x65,0x29,0x2c,0x61,0x26,0x26,0x21,0x65,0x2e,0x69,0x73,0x50,0x72,0x6f,0x70, 0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x6f,0x70,0x70,0x65,0x64,0x28,0x29, 0x26,0x26,0x61,0x28,0x6c,0x2c,0x65,0x29,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x77,0x74,0x2e,0x61,0x29, 0x28,0x7b,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x66,0x2c,0x22,0x61,0x72,0x69, 0x61,0x2d,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x6f,0x7c,0x7c,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x22,0x61,0x72,0x69,0x61,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x65,0x64,0x22,0x3a,0x73,0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6a,0x74,0x2e,0x61,0x29,0x28,0x22,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d, 0x69,0x74,0x65,0x6d,0x22,0x29,0x2c,0x22,0x22,0x29,0x2c,0x7b,0x69,0x73,0x41,0x63, 0x74,0x69,0x76,0x65,0x3a,0x73,0x7d,0x5d,0x7d,0x76,0x61,0x72,0x20,0x43,0x74,0x3d, 0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x2c,0x72,0x3d,0x65, 0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x6f,0x3d,0x65,0x2e,0x6f,0x6e, 0x43,0x6c,0x69,0x63,0x6b,0x2c,0x69,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65, 0x2c,0x61,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x75,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x61,0x3f,0x45,0x74,0x2e,0x61,0x3a,0x61,0x2c,0x63,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b, 0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66,0x6f, 0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68, 0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69,0x6e, 0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f,0x5b, 0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6f,0x7d,0x28,0x65,0x2c,0x6b,0x74,0x29,0x2c,0x6c,0x3d,0x53,0x74,0x28,0x7b,0x6b, 0x65,0x79,0x3a,0x6e,0x2c,0x68,0x72,0x65,0x66,0x3a,0x63,0x2e,0x68,0x72,0x65,0x66, 0x2c,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x72,0x2c,0x6f,0x6e,0x43,0x6c, 0x69,0x63,0x6b,0x3a,0x6f,0x2c,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x69,0x7d,0x29, 0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x6c, 0x2c,0x31,0x29,0x5b,0x30,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73,0x78,0x29,0x28,0x75,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c, 0x63,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c,0x66,0x29,0x29,0x7d,0x29,0x29, 0x3b,0x43,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d, 0x22,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x49,0x74,0x65,0x6d,0x22,0x3b,0x76, 0x61,0x72,0x20,0x41,0x74,0x3d,0x43,0x74,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x54,0x74,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x76,0x2e,0x61,0x29,0x28,0x29,0x2c,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75, 0x6c,0x6c,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75, 0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x74,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x6e,0x2c,0x65,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x5d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x5b,0x74,0x2c,0x6e,0x5d,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x50,0x74,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x53,0x68,0x6f,0x77,0x2c,0x6e, 0x3d,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x72,0x3d,0x65,0x2e,0x6f,0x6e,0x53,0x65, 0x6c,0x65,0x63,0x74,0x2c,0x6f,0x3d,0x65,0x2e,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c, 0x65,0x2c,0x69,0x3d,0x65,0x2e,0x69,0x74,0x65,0x6d,0x53,0x65,0x6c,0x65,0x63,0x74, 0x6f,0x72,0x2c,0x61,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x3f, 0x22,0x2a,0x20,0x5b,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6a,0x74,0x2e,0x61,0x29,0x28,0x22,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x22,0x29,0x2c,0x22,0x5d,0x22,0x29,0x3a, 0x69,0x2c,0x63,0x3d,0x65,0x2e,0x66,0x6f,0x63,0x75,0x73,0x46,0x69,0x72,0x73,0x74, 0x49,0x74,0x65,0x6d,0x4f,0x6e,0x53,0x68,0x6f,0x77,0x2c,0x6c,0x3d,0x65,0x2e,0x70, 0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x6c,0x3f,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x73,0x74, 0x61,0x72,0x74,0x22,0x3a,0x6c,0x2c,0x79,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x2c,0x5f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x62, 0x29,0x28,0x6e,0x2c,0x74,0x2c,0x6f,0x29,0x2c,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x5f,0x2c,0x32,0x29,0x2c,0x4f,0x3d,0x77,0x5b, 0x30,0x5d,0x2c,0x78,0x3d,0x77,0x5b,0x31,0x5d,0x2c,0x45,0x3d,0x54,0x74,0x28,0x29, 0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x45, 0x2c,0x32,0x29,0x2c,0x6b,0x3d,0x6a,0x5b,0x30,0x5d,0x2c,0x53,0x3d,0x6a,0x5b,0x31, 0x5d,0x2c,0x43,0x3d,0x6b,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x41,0x3d, 0x54,0x74,0x28,0x29,0x2c,0x54,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e, 0x61,0x29,0x28,0x41,0x2c,0x32,0x29,0x2c,0x50,0x3d,0x54,0x5b,0x30,0x5d,0x2c,0x44, 0x3d,0x54,0x5b,0x31,0x5d,0x2c,0x4e,0x3d,0x50,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x2c,0x49,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x68,0x2e,0x61,0x29,0x28, 0x4f,0x29,0x2c,0x52,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x4c,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x21, 0x31,0x29,0x2c,0x46,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x4f,0x74,0x2e,0x61,0x29,0x2c, 0x4d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x32,0x26, 0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x5b,0x32,0x5d,0x3f,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x32,0x5d,0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x3f,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3a,0x74,0x2e,0x74,0x79,0x70,0x65,0x3b,0x78,0x28,0x65,0x2c,0x7b,0x6f, 0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x3a,0x74,0x2c,0x73, 0x6f,0x75,0x72,0x63,0x65,0x3a,0x6e,0x7d,0x29,0x7d,0x29,0x2c,0x5b,0x78,0x5d,0x29, 0x2c,0x42,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x72,0x7c,0x7c,0x72,0x28,0x65,0x2c,0x74,0x29,0x2c,0x4d,0x28, 0x21,0x31,0x2c,0x74,0x2c,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x29,0x2c,0x74, 0x2e,0x69,0x73,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74, 0x6f,0x70,0x70,0x65,0x64,0x28,0x29,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x46, 0x7c,0x7c,0x46,0x28,0x65,0x2c,0x74,0x29,0x7d,0x29,0x29,0x2c,0x7a,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x4d,0x2c,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x3a,0x76,0x2c,0x73,0x68,0x6f,0x77,0x3a,0x4f,0x2c,0x6d, 0x65,0x6e,0x75,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x43,0x2c,0x74,0x6f,0x67, 0x67,0x6c,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x4e,0x2c,0x73,0x65,0x74, 0x4d,0x65,0x6e,0x75,0x3a,0x53,0x2c,0x73,0x65,0x74,0x54,0x6f,0x67,0x67,0x6c,0x65, 0x3a,0x44,0x7d,0x7d,0x29,0x2c,0x5b,0x4d,0x2c,0x76,0x2c,0x4f,0x2c,0x43,0x2c,0x4e, 0x2c,0x53,0x2c,0x44,0x5d,0x29,0x3b,0x43,0x26,0x26,0x49,0x26,0x26,0x21,0x4f,0x26, 0x26,0x28,0x4c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x43,0x2e,0x63,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x29,0x3b, 0x76,0x61,0x72,0x20,0x55,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4e,0x26, 0x26,0x4e,0x2e,0x66,0x6f,0x63,0x75,0x73,0x26,0x26,0x4e,0x2e,0x66,0x6f,0x63,0x75, 0x73,0x28,0x29,0x7d,0x29,0x29,0x2c,0x57,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6d,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x52,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x2c,0x74,0x3d,0x63,0x3b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x74,0x26, 0x26,0x28,0x74,0x3d,0x21,0x28,0x21,0x6b,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x7c,0x7c,0x21,0x67,0x74,0x28,0x6b,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29, 0x29,0x26,0x26,0x22,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x22,0x29,0x2c,0x21, 0x31,0x21,0x3d,0x3d,0x74,0x26,0x26,0x28,0x22,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72, 0x64,0x22,0x21,0x3d,0x3d,0x74,0x7c,0x7c,0x2f,0x5e,0x6b,0x65,0x79,0x2e,0x2b,0x24, 0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x29,0x29,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29,0x28,0x6b,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x61,0x29,0x5b,0x30,0x5d,0x3b,0x6e,0x26, 0x26,0x6e,0x2e,0x66,0x6f,0x63,0x75,0x73,0x26,0x26,0x6e,0x2e,0x66,0x6f,0x63,0x75, 0x73,0x28,0x29,0x7d,0x7d,0x29,0x29,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75, 0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x4f,0x3f,0x57,0x28,0x29,0x3a,0x4c,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x28,0x4c,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x21,0x31,0x2c,0x55,0x28,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x4f, 0x2c,0x4c,0x2c,0x55,0x2c,0x57,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x52,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x24, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69, 0x66,0x28,0x21,0x6b,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29,0x28,0x6b,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x2c,0x61,0x29,0x2c,0x72,0x3d,0x6e,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x65,0x29,0x2b,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x5b,0x72,0x3d,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x30,0x2c,0x4d, 0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x72,0x2c,0x6e,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x29,0x29,0x5d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61,0x29,0x28,0x22,0x6b,0x65,0x79,0x64,0x6f, 0x77,0x6e,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x2c,0x6e,0x2c,0x72,0x3d,0x65,0x2e,0x6b,0x65,0x79, 0x2c,0x6f,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c,0x69,0x3d,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x28,0x74,0x3d,0x6b,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x29,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x73,0x28,0x6f,0x29,0x2c,0x61,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x28, 0x6e,0x3d,0x50,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x3f,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3a,0x6e,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x6f, 0x29,0x3b,0x69,0x66,0x28,0x28,0x21,0x2f,0x69,0x6e,0x70,0x75,0x74,0x7c,0x74,0x65, 0x78,0x74,0x61,0x72,0x65,0x61,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x6f,0x2e, 0x74,0x61,0x67,0x4e,0x61,0x6d,0x65,0x29,0x7c,0x7c,0x21,0x28,0x22,0x20,0x22,0x3d, 0x3d,0x3d,0x72,0x7c,0x7c,0x22,0x45,0x73,0x63,0x61,0x70,0x65,0x22,0x21,0x3d,0x3d, 0x72,0x26,0x26,0x69,0x29,0x29,0x26,0x26,0x28,0x69,0x7c,0x7c,0x61,0x29,0x26,0x26, 0x28,0x22,0x54,0x61,0x62,0x22,0x21,0x3d,0x3d,0x72,0x7c,0x7c,0x6b,0x2e,0x63,0x75, 0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x4f,0x29,0x29,0x7b,0x52,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x3b,0x76,0x61,0x72,0x20, 0x75,0x3d,0x7b,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74, 0x3a,0x65,0x2c,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x65,0x2e,0x74,0x79,0x70,0x65, 0x7d,0x3b,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x72,0x29,0x7b,0x63,0x61,0x73,0x65, 0x22,0x41,0x72,0x72,0x6f,0x77,0x55,0x70,0x22,0x3a,0x76,0x61,0x72,0x20,0x63,0x3d, 0x24,0x28,0x6f,0x2c,0x2d,0x31,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63, 0x26,0x26,0x63,0x2e,0x66,0x6f,0x63,0x75,0x73,0x26,0x26,0x63,0x2e,0x66,0x6f,0x63, 0x75,0x73,0x28,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x65,0x2e,0x70,0x72,0x65,0x76, 0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x63,0x61,0x73, 0x65,0x22,0x41,0x72,0x72,0x6f,0x77,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x69,0x66,0x28, 0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74, 0x28,0x29,0x2c,0x4f,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x24,0x28,0x6f,0x2c, 0x31,0x29,0x3b,0x6c,0x26,0x26,0x6c,0x2e,0x66,0x6f,0x63,0x75,0x73,0x26,0x26,0x6c, 0x2e,0x66,0x6f,0x63,0x75,0x73,0x28,0x29,0x7d,0x65,0x6c,0x73,0x65,0x20,0x78,0x28, 0x21,0x30,0x2c,0x75,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x63,0x61,0x73, 0x65,0x22,0x54,0x61,0x62,0x22,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e, 0x61,0x29,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2c,0x22,0x6b,0x65,0x79, 0x75,0x70,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x28,0x22,0x54,0x61,0x62,0x22,0x21,0x3d,0x3d, 0x65,0x2e,0x6b,0x65,0x79,0x7c,0x7c,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x29, 0x26,0x26,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28,0x74,0x3d,0x6b,0x2e,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x29,0x26,0x26,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x73,0x28,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x29,0x7c,0x7c,0x78,0x28,0x21, 0x31,0x2c,0x75,0x29,0x7d,0x29,0x2c,0x7b,0x6f,0x6e,0x63,0x65,0x3a,0x21,0x30,0x7d, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x45,0x73,0x63, 0x61,0x70,0x65,0x22,0x3a,0x22,0x45,0x73,0x63,0x61,0x70,0x65,0x22,0x3d,0x3d,0x3d, 0x72,0x26,0x26,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66, 0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f, 0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x29,0x2c,0x78,0x28,0x21,0x31, 0x2c,0x75,0x29,0x7d,0x7d,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x74,0x2e,0x6a,0x73,0x78,0x29,0x28,0x4f,0x74,0x2e,0x61,0x2e,0x50,0x72,0x6f, 0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x42,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75, 0x74,0x2e,0x6a,0x73,0x78,0x29,0x28,0x62,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65, 0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x7a,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x79,0x7d,0x29,0x7d,0x29,0x7d,0x50,0x74,0x2e,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x44,0x72,0x6f,0x70,0x64,0x6f, 0x77,0x6e,0x22,0x2c,0x50,0x74,0x2e,0x4d,0x65,0x6e,0x75,0x3d,0x64,0x74,0x2c,0x50, 0x74,0x2e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x3d,0x5f,0x74,0x2c,0x50,0x74,0x2e,0x49, 0x74,0x65,0x6d,0x3d,0x41,0x74,0x3b,0x76,0x61,0x72,0x20,0x44,0x74,0x3d,0x50,0x74, 0x2c,0x4e,0x74,0x3d,0x6e,0x28,0x35,0x31,0x29,0x2c,0x49,0x74,0x3d,0x75,0x2e,0x63, 0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x7b,0x7d,0x29, 0x3b,0x49,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d, 0x22,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x22,0x3b,0x76,0x61,0x72,0x20,0x52,0x74,0x3d,0x49,0x74,0x2c,0x4c,0x74,0x3d,0x6e, 0x28,0x39,0x32,0x29,0x2c,0x46,0x74,0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66, 0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c, 0x22,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x22,0x2c,0x22,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x22,0x2c,0x22,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x22,0x2c, 0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d,0x2c,0x4d, 0x74,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69, 0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x65, 0x2e,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x2c,0x63,0x3d,0x65,0x2e,0x64,0x69, 0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x66,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x63,0x26,0x26,0x63,0x2c,0x64,0x3d,0x65,0x2e,0x6f,0x6e,0x43,0x6c,0x69, 0x63,0x6b,0x2c,0x70,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x68,0x3d, 0x65,0x2e,0x61,0x73,0x2c,0x76,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x68,0x3f,0x4c,0x74,0x2e,0x61,0x3a,0x68,0x2c,0x67,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x46,0x74,0x29,0x2c,0x6d,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x64,0x72, 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x22,0x29,0x2c,0x62,0x3d, 0x53,0x74,0x28,0x7b,0x6b,0x65,0x79,0x3a,0x75,0x2c,0x68,0x72,0x65,0x66,0x3a,0x67, 0x2e,0x68,0x72,0x65,0x66,0x2c,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x66, 0x2c,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x64,0x2c,0x61,0x63,0x74,0x69,0x76, 0x65,0x3a,0x70,0x7d,0x29,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73, 0x2e,0x61,0x29,0x28,0x62,0x2c,0x32,0x29,0x2c,0x5f,0x3d,0x79,0x5b,0x30,0x5d,0x2c, 0x77,0x3d,0x79,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73,0x78,0x29,0x28,0x76,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x67,0x29,0x2c,0x5f,0x29,0x2c,0x7b,0x7d,0x2c,0x7b, 0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x61,0x28,0x29,0x28,0x69,0x2c,0x6d,0x2c,0x77,0x2e,0x69,0x73,0x41,0x63,0x74,0x69, 0x76,0x65,0x26,0x26,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x2c,0x66,0x26,0x26, 0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x29,0x3b,0x4d,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65, 0x3d,0x22,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x49,0x74,0x65,0x6d,0x22,0x3b, 0x76,0x61,0x72,0x20,0x42,0x74,0x3d,0x4d,0x74,0x2c,0x7a,0x74,0x3d,0x6e,0x28,0x31, 0x34,0x31,0x29,0x2c,0x55,0x74,0x3d,0x6e,0x28,0x34,0x37,0x29,0x2c,0x57,0x74,0x3d, 0x75,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28, 0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x57,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x4e,0x61,0x6d,0x65,0x3d,0x22,0x49,0x6e,0x70,0x75,0x74,0x47,0x72,0x6f,0x75,0x70, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x24,0x74,0x3d, 0x57,0x74,0x2c,0x48,0x74,0x3d,0x6e,0x28,0x32,0x37,0x29,0x3b,0x6e,0x28,0x36,0x36, 0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x74,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x76,0x61,0x72,0x20, 0x47,0x74,0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x61,0x6c,0x69,0x67, 0x6e,0x22,0x2c,0x22,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65,0x45,0x76,0x65, 0x6e,0x74,0x22,0x2c,0x22,0x66,0x6c,0x69,0x70,0x22,0x2c,0x22,0x73,0x68,0x6f,0x77, 0x22,0x2c,0x22,0x72,0x65,0x6e,0x64,0x65,0x72,0x4f,0x6e,0x4d,0x6f,0x75,0x6e,0x74, 0x22,0x2c,0x22,0x61,0x73,0x22,0x2c,0x22,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f, 0x6e,0x66,0x69,0x67,0x22,0x2c,0x22,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x22,0x5d, 0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x74,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x3f,0x6e,0x3f,0x22,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22,0x62,0x6f, 0x74,0x74,0x6f,0x6d,0x2d,0x65,0x6e,0x64,0x22,0x3a,0x6e,0x3f,0x22,0x62,0x6f,0x74, 0x74,0x6f,0x6d,0x2d,0x65,0x6e,0x64,0x22,0x3a,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75, 0x70,0x22,0x3d,0x3d,0x3d,0x74,0x3f,0x72,0x3d,0x65,0x3f,0x6e,0x3f,0x22,0x74,0x6f, 0x70,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22,0x74,0x6f,0x70,0x2d,0x65,0x6e, 0x64,0x22,0x3a,0x6e,0x3f,0x22,0x74,0x6f,0x70,0x2d,0x65,0x6e,0x64,0x22,0x3a,0x22, 0x74,0x6f,0x70,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22,0x65,0x6e,0x64,0x22, 0x3d,0x3d,0x3d,0x74,0x3f,0x72,0x3d,0x65,0x3f,0x6e,0x3f,0x22,0x6c,0x65,0x66,0x74, 0x2d,0x65,0x6e,0x64,0x22,0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x2d,0x65,0x6e,0x64, 0x22,0x3a,0x6e,0x3f,0x22,0x6c,0x65,0x66,0x74,0x2d,0x73,0x74,0x61,0x72,0x74,0x22, 0x3a,0x22,0x72,0x69,0x67,0x68,0x74,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22, 0x73,0x74,0x61,0x72,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x26,0x26,0x28,0x72,0x3d,0x65, 0x3f,0x6e,0x3f,0x22,0x72,0x69,0x67,0x68,0x74,0x2d,0x65,0x6e,0x64,0x22,0x3a,0x22, 0x6c,0x65,0x66,0x74,0x2d,0x65,0x6e,0x64,0x22,0x3a,0x6e,0x3f,0x22,0x72,0x69,0x67, 0x68,0x74,0x2d,0x73,0x74,0x61,0x72,0x74,0x22,0x3a,0x22,0x6c,0x65,0x66,0x74,0x2d, 0x73,0x74,0x61,0x72,0x74,0x22,0x29,0x2c,0x72,0x7d,0x76,0x61,0x72,0x20,0x4b,0x74, 0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d, 0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x65,0x2e, 0x61,0x6c,0x69,0x67,0x6e,0x2c,0x66,0x3d,0x65,0x2e,0x72,0x6f,0x6f,0x74,0x43,0x6c, 0x6f,0x73,0x65,0x45,0x76,0x65,0x6e,0x74,0x2c,0x64,0x3d,0x65,0x2e,0x66,0x6c,0x69, 0x70,0x2c,0x70,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x68,0x3d,0x65,0x2e,0x72, 0x65,0x6e,0x64,0x65,0x72,0x4f,0x6e,0x4d,0x6f,0x75,0x6e,0x74,0x2c,0x76,0x3d,0x65, 0x2e,0x61,0x73,0x2c,0x67,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x76, 0x3f,0x22,0x64,0x69,0x76,0x22,0x3a,0x76,0x2c,0x6d,0x3d,0x65,0x2e,0x70,0x6f,0x70, 0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x62,0x3d,0x65,0x2e,0x76,0x61, 0x72,0x69,0x61,0x6e,0x74,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f, 0x2e,0x61,0x29,0x28,0x65,0x2c,0x47,0x74,0x29,0x2c,0x5f,0x3d,0x21,0x31,0x2c,0x77, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x29,0x28,0x48,0x74,0x2e,0x61,0x29,0x2c,0x4f,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x2d,0x6d,0x65,0x6e,0x75,0x22,0x29,0x2c,0x78,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x29,0x28,0x52,0x74,0x29,0x2c,0x45,0x3d,0x78,0x2e,0x61,0x6c,0x69,0x67, 0x6e,0x2c,0x6a,0x3d,0x78,0x2e,0x64,0x72,0x6f,0x70,0x2c,0x6b,0x3d,0x78,0x2e,0x69, 0x73,0x52,0x54,0x4c,0x3b,0x63,0x3d,0x63,0x7c,0x7c,0x45,0x3b,0x76,0x61,0x72,0x20, 0x53,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x24,0x74,0x29,0x2c,0x43,0x3d,0x5b,0x5d,0x3b, 0x69,0x66,0x28,0x63,0x29,0x69,0x66,0x28,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x29,0x7b,0x76,0x61,0x72, 0x20,0x41,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x63, 0x29,0x3b,0x69,0x66,0x28,0x41,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x76, 0x61,0x72,0x20,0x54,0x3d,0x41,0x5b,0x30,0x5d,0x2c,0x50,0x3d,0x63,0x5b,0x54,0x5d, 0x3b,0x5f,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x22,0x3d,0x3d,0x3d,0x50,0x2c,0x43, 0x2e,0x70,0x75,0x73,0x68,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x4f,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x54,0x2c, 0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x50,0x29,0x29,0x7d, 0x7d,0x65,0x6c,0x73,0x65,0x22,0x65,0x6e,0x64,0x22,0x3d,0x3d,0x3d,0x63,0x26,0x26, 0x28,0x5f,0x3d,0x21,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x44,0x3d,0x71,0x74,0x28, 0x5f,0x2c,0x6a,0x2c,0x6b,0x29,0x2c,0x4e,0x3d,0x73,0x74,0x28,0x7b,0x66,0x6c,0x69, 0x70,0x3a,0x64,0x2c,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65,0x45,0x76,0x65, 0x6e,0x74,0x3a,0x66,0x2c,0x73,0x68,0x6f,0x77,0x3a,0x70,0x2c,0x75,0x73,0x65,0x50, 0x6f,0x70,0x70,0x65,0x72,0x3a,0x21,0x77,0x26,0x26,0x30,0x3d,0x3d,0x3d,0x43,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x5b,0x30, 0x2c,0x32,0x5d,0x2c,0x70,0x6f,0x70,0x70,0x65,0x72,0x43,0x6f,0x6e,0x66,0x69,0x67, 0x3a,0x6d,0x2c,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x44,0x7d,0x29, 0x2c,0x49,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28,0x4e, 0x2c,0x32,0x29,0x2c,0x52,0x3d,0x49,0x5b,0x30,0x5d,0x2c,0x4c,0x3d,0x49,0x5b,0x31, 0x5d,0x2c,0x46,0x3d,0x4c,0x2e,0x68,0x61,0x73,0x53,0x68,0x6f,0x77,0x6e,0x2c,0x4d, 0x3d,0x4c,0x2e,0x70,0x6f,0x70,0x70,0x65,0x72,0x2c,0x42,0x3d,0x4c,0x2e,0x73,0x68, 0x6f,0x77,0x2c,0x7a,0x3d,0x4c,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3b,0x69,0x66, 0x28,0x52,0x2e,0x72,0x65,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x55,0x74, 0x2e,0x61,0x29,0x28,0x56,0x74,0x28,0x74,0x29,0x2c,0x52,0x2e,0x72,0x65,0x66,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x7a,0x74,0x2e,0x61,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x42,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x4d,0x7c,0x7c,0x4d,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28, 0x29,0x29,0x7d,0x29,0x2c,0x5b,0x42,0x5d,0x29,0x2c,0x21,0x46,0x26,0x26,0x21,0x68, 0x26,0x26,0x21,0x53,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c, 0x3b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65, 0x6f,0x66,0x20,0x67,0x26,0x26,0x28,0x52,0x2e,0x73,0x68,0x6f,0x77,0x3d,0x42,0x2c, 0x52,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x7a,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x7a,0x28,0x21,0x31,0x29,0x7d,0x2c, 0x52,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x3d,0x63,0x29,0x3b,0x76,0x61,0x72,0x20,0x55, 0x3d,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x4d,0x26,0x26,0x4d,0x2e,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x26,0x26,0x28,0x55,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x7b,0x7d,0x2c,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x29,0x2c,0x52,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x29,0x2c,0x79,0x5b,0x22,0x78,0x2d,0x70,0x6c,0x61,0x63,0x65, 0x6d,0x65,0x6e,0x74,0x22,0x5d,0x3d,0x4d,0x2e,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65, 0x6e,0x74,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x67,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x79,0x29,0x2c,0x52,0x29,0x2c,0x7b,0x7d, 0x2c,0x7b,0x73,0x74,0x79,0x6c,0x65,0x3a,0x55,0x7d,0x2c,0x28,0x43,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x7c,0x7c,0x77,0x29,0x26,0x26,0x7b,0x22,0x64,0x61,0x74,0x61, 0x2d,0x62,0x73,0x2d,0x70,0x6f,0x70,0x70,0x65,0x72,0x22,0x3a,0x22,0x73,0x74,0x61, 0x74,0x69,0x63,0x22,0x7d,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3a,0x61,0x2e,0x61,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76, 0x6f,0x69,0x64,0x20,0x30,0x2c,0x5b,0x69,0x2c,0x4f,0x2c,0x42,0x26,0x26,0x22,0x73, 0x68,0x6f,0x77,0x22,0x2c,0x5f,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x4f,0x2c,0x22,0x2d,0x65,0x6e,0x64,0x22,0x29,0x2c,0x62,0x26,0x26,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f,0x2c,0x22,0x2d,0x22,0x29,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x62,0x29,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x43,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x4b,0x74,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x44,0x72,0x6f,0x70, 0x64,0x6f,0x77,0x6e,0x4d,0x65,0x6e,0x75,0x22,0x2c,0x4b,0x74,0x2e,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x66,0x6c,0x69,0x70,0x3a, 0x21,0x30,0x7d,0x3b,0x76,0x61,0x72,0x20,0x59,0x74,0x3d,0x4b,0x74,0x2c,0x51,0x74, 0x3d,0x6e,0x28,0x31,0x34,0x32,0x29,0x2c,0x58,0x74,0x3d,0x5b,0x22,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x73,0x70,0x6c,0x69,0x74,0x22,0x2c,0x22, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c, 0x64,0x42,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d, 0x2c,0x4a,0x74,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78, 0x2c,0x69,0x3d,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x2c,0x63,0x3d,0x65,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x66,0x3d,0x65,0x2e,0x63,0x68,0x69, 0x6c,0x64,0x42,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x64,0x3d,0x65,0x2e,0x61, 0x73,0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x51, 0x74,0x2e,0x61,0x3a,0x64,0x2c,0x68,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f, 0x2e,0x61,0x29,0x28,0x65,0x2c,0x58,0x74,0x29,0x2c,0x76,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x22,0x29,0x2c,0x67,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x29,0x28,0x62,0x29,0x2c,0x6d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x24,0x74, 0x29,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x66,0x26,0x26,0x28,0x68, 0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x3d,0x66,0x29,0x3b,0x76,0x61,0x72, 0x20,0x79,0x3d,0x62,0x74,0x28,0x29,0x2c,0x5f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x73,0x2e,0x61,0x29,0x28,0x79,0x2c,0x31,0x29,0x5b,0x30,0x5d,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x5f,0x2e,0x72,0x65,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x55,0x74,0x2e,0x61,0x29,0x28,0x5f,0x2e,0x72,0x65,0x66,0x2c,0x56,0x74, 0x28,0x74,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x70,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61, 0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x63,0x2c,0x76, 0x2c,0x69,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x76,0x2c, 0x22,0x2d,0x73,0x70,0x6c,0x69,0x74,0x22,0x29,0x2c,0x21,0x21,0x6d,0x26,0x26,0x28, 0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x67,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x67, 0x2e,0x73,0x68,0x6f,0x77,0x29,0x26,0x26,0x22,0x73,0x68,0x6f,0x77,0x22,0x29,0x7d, 0x2c,0x5f,0x29,0x2c,0x68,0x29,0x29,0x7d,0x29,0x29,0x3b,0x4a,0x74,0x2e,0x64,0x69, 0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x44,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x22,0x3b,0x76,0x61,0x72,0x20,0x5a, 0x74,0x3d,0x4a,0x74,0x2c,0x65,0x6e,0x3d,0x6e,0x28,0x32,0x38,0x29,0x2c,0x74,0x6e, 0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x64,0x72, 0x6f,0x70,0x22,0x2c,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x61,0x6c,0x69,0x67,0x6e,0x22,0x2c,0x22, 0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x6f,0x6e,0x54,0x6f,0x67, 0x67,0x6c,0x65,0x22,0x2c,0x22,0x66,0x6f,0x63,0x75,0x73,0x46,0x69,0x72,0x73,0x74, 0x49,0x74,0x65,0x6d,0x4f,0x6e,0x53,0x68,0x6f,0x77,0x22,0x2c,0x22,0x61,0x73,0x22, 0x2c,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x22,0x2c,0x22,0x61,0x75,0x74,0x6f,0x43, 0x6c,0x6f,0x73,0x65,0x22,0x5d,0x2c,0x6e,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x65,0x6e,0x2e,0x61,0x29,0x28,0x22,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e, 0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x2c,0x7b,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x50,0x72,0x6f,0x70,0x73,0x3a,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x22,0x68,0x65, 0x61,0x64,0x69,0x6e,0x67,0x22,0x7d,0x7d,0x29,0x2c,0x72,0x6e,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x65,0x6e,0x2e,0x61,0x29,0x28,0x22,0x64,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x2d,0x64,0x69,0x76,0x69,0x64,0x65,0x72,0x22,0x2c,0x7b,0x43,0x6f, 0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3a,0x22,0x68,0x72,0x22,0x2c,0x64,0x65,0x66, 0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3a,0x7b,0x72,0x6f,0x6c,0x65,0x3a, 0x22,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x6f,0x72,0x22,0x7d,0x7d,0x29,0x2c,0x6f, 0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x6e,0x2e,0x61,0x29,0x28,0x22, 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x2d,0x74,0x65, 0x78,0x74,0x22,0x2c,0x7b,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3a,0x22, 0x73,0x70,0x61,0x6e,0x22,0x7d,0x29,0x2c,0x61,0x6e,0x3d,0x75,0x2e,0x66,0x6f,0x72, 0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x70,0x2e,0x61,0x29,0x28,0x65,0x2c,0x7b,0x73,0x68,0x6f,0x77, 0x3a,0x22,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x22,0x7d,0x29,0x2c,0x69,0x3d, 0x6e,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x63,0x3d,0x6e,0x2e,0x64, 0x72,0x6f,0x70,0x2c,0x73,0x3d,0x6e,0x2e,0x73,0x68,0x6f,0x77,0x2c,0x66,0x3d,0x6e, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x64,0x3d,0x6e,0x2e,0x61, 0x6c,0x69,0x67,0x6e,0x2c,0x68,0x3d,0x6e,0x2e,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63, 0x74,0x2c,0x76,0x3d,0x6e,0x2e,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x67, 0x3d,0x6e,0x2e,0x66,0x6f,0x63,0x75,0x73,0x46,0x69,0x72,0x73,0x74,0x49,0x74,0x65, 0x6d,0x4f,0x6e,0x53,0x68,0x6f,0x77,0x2c,0x6d,0x3d,0x6e,0x2e,0x61,0x73,0x2c,0x62, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6d,0x3f,0x22,0x64,0x69,0x76, 0x22,0x3a,0x6d,0x2c,0x79,0x3d,0x28,0x6e,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2c, 0x6e,0x2e,0x61,0x75,0x74,0x6f,0x43,0x6c,0x6f,0x73,0x65,0x29,0x2c,0x5f,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x74,0x6e,0x29, 0x2c,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x24,0x74,0x29,0x2c,0x4f,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x69,0x2c,0x22,0x64,0x72,0x6f, 0x70,0x64,0x6f,0x77,0x6e,0x22,0x29,0x2c,0x78,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6c,0x2e,0x62,0x29,0x28,0x29,0x2c,0x45,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4e,0x74,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x74,0x2e,0x6f,0x72, 0x69,0x67,0x69,0x6e,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x54,0x61,0x72,0x67,0x65,0x74,0x21,0x3d,0x3d,0x64,0x6f,0x63,0x75, 0x6d,0x65,0x6e,0x74,0x7c,0x7c,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x3d, 0x3d,0x3d,0x74,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x26,0x26,0x22,0x45,0x73,0x63, 0x61,0x70,0x65,0x22,0x21,0x3d,0x3d,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61, 0x6c,0x45,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x65,0x79,0x7c,0x7c,0x28,0x74,0x2e,0x73, 0x6f,0x75,0x72,0x63,0x65,0x3d,0x22,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65, 0x22,0x29,0x2c,0x6e,0x3d,0x74,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x28,0x21, 0x31,0x3d,0x3d,0x3d,0x79,0x3f,0x22,0x63,0x6c,0x69,0x63,0x6b,0x22,0x3d,0x3d,0x3d, 0x6e,0x3a,0x22,0x69,0x6e,0x73,0x69,0x64,0x65,0x22,0x3d,0x3d,0x3d,0x79,0x3f,0x22, 0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65,0x22,0x21,0x3d,0x3d,0x6e,0x3a,0x22, 0x6f,0x75,0x74,0x73,0x69,0x64,0x65,0x22,0x21,0x3d,0x3d,0x79,0x7c,0x7c,0x22,0x73, 0x65,0x6c,0x65,0x63,0x74,0x22,0x21,0x3d,0x3d,0x6e,0x29,0x26,0x26,0x28,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x76,0x7c,0x7c,0x76,0x28,0x65,0x2c,0x74,0x29,0x29,0x7d,0x29, 0x29,0x2c,0x6a,0x3d,0x71,0x74,0x28,0x22,0x65,0x6e,0x64,0x22,0x3d,0x3d,0x3d,0x64, 0x2c,0x63,0x2c,0x78,0x29,0x2c,0x6b,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75, 0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x61,0x6c,0x69, 0x67,0x6e,0x3a,0x64,0x2c,0x64,0x72,0x6f,0x70,0x3a,0x63,0x2c,0x69,0x73,0x52,0x54, 0x4c,0x3a,0x78,0x7d,0x7d,0x29,0x2c,0x5b,0x64,0x2c,0x63,0x2c,0x78,0x5d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x52,0x74,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65, 0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6b,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x44,0x74,0x2c,0x7b,0x70,0x6c,0x61,0x63,0x65,0x6d,0x65,0x6e,0x74, 0x3a,0x6a,0x2c,0x73,0x68,0x6f,0x77,0x3a,0x73,0x2c,0x6f,0x6e,0x53,0x65,0x6c,0x65, 0x63,0x74,0x3a,0x68,0x2c,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x45,0x2c, 0x66,0x6f,0x63,0x75,0x73,0x46,0x69,0x72,0x73,0x74,0x49,0x74,0x65,0x6d,0x4f,0x6e, 0x53,0x68,0x6f,0x77,0x3a,0x67,0x2c,0x69,0x74,0x65,0x6d,0x53,0x65,0x6c,0x65,0x63, 0x74,0x6f,0x72,0x3a,0x22,0x2e,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x4f, 0x2c,0x22,0x2d,0x69,0x74,0x65,0x6d,0x3a,0x6e,0x6f,0x74,0x28,0x2e,0x64,0x69,0x73, 0x61,0x62,0x6c,0x65,0x64,0x29,0x3a,0x6e,0x6f,0x74,0x28,0x3a,0x64,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x29,0x22,0x29,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x77,0x3f,0x5f,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73,0x78,0x29,0x28,0x62,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x5f,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x61,0x28,0x29,0x28,0x66,0x2c,0x73,0x26,0x26,0x22,0x73,0x68,0x6f,0x77,0x22, 0x2c,0x28,0x21,0x63,0x7c,0x7c,0x22,0x64,0x6f,0x77,0x6e,0x22,0x3d,0x3d,0x3d,0x63, 0x29,0x26,0x26,0x4f,0x2c,0x22,0x75,0x70,0x22,0x3d,0x3d,0x3d,0x63,0x26,0x26,0x22, 0x64,0x72,0x6f,0x70,0x75,0x70,0x22,0x2c,0x22,0x65,0x6e,0x64,0x22,0x3d,0x3d,0x3d, 0x63,0x26,0x26,0x22,0x64,0x72,0x6f,0x70,0x65,0x6e,0x64,0x22,0x2c,0x22,0x73,0x74, 0x61,0x72,0x74,0x22,0x3d,0x3d,0x3d,0x63,0x26,0x26,0x22,0x64,0x72,0x6f,0x70,0x73, 0x74,0x61,0x72,0x74,0x22,0x29,0x7d,0x29,0x29,0x7d,0x29,0x7d,0x29,0x7d,0x29,0x29, 0x3b,0x61,0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d, 0x22,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x61,0x6e,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x6e,0x61,0x76,0x62, 0x61,0x72,0x3a,0x21,0x31,0x2c,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x22,0x73,0x74,0x61, 0x72,0x74,0x22,0x2c,0x61,0x75,0x74,0x6f,0x43,0x6c,0x6f,0x73,0x65,0x3a,0x21,0x30, 0x7d,0x3b,0x76,0x61,0x72,0x20,0x75,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x61,0x6e,0x2c,0x7b,0x54,0x6f,0x67,0x67,0x6c, 0x65,0x3a,0x5a,0x74,0x2c,0x4d,0x65,0x6e,0x75,0x3a,0x59,0x74,0x2c,0x49,0x74,0x65, 0x6d,0x3a,0x42,0x74,0x2c,0x49,0x74,0x65,0x6d,0x54,0x65,0x78,0x74,0x3a,0x6f,0x6e, 0x2c,0x44,0x69,0x76,0x69,0x64,0x65,0x72,0x3a,0x72,0x6e,0x2c,0x48,0x65,0x61,0x64, 0x65,0x72,0x3a,0x6e,0x6e,0x7d,0x29,0x2c,0x63,0x6e,0x3d,0x6e,0x28,0x38,0x37,0x29, 0x2c,0x6c,0x6e,0x3d,0x5b,0x22,0x69,0x64,0x22,0x2c,0x22,0x74,0x69,0x74,0x6c,0x65, 0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x22,0x62,0x73, 0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x22,0x2c,0x22,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65,0x45,0x76, 0x65,0x6e,0x74,0x22,0x2c,0x22,0x6d,0x65,0x6e,0x75,0x52,0x6f,0x6c,0x65,0x22,0x2c, 0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x22,0x61,0x63,0x74,0x69, 0x76,0x65,0x22,0x2c,0x22,0x72,0x65,0x6e,0x64,0x65,0x72,0x4d,0x65,0x6e,0x75,0x4f, 0x6e,0x4d,0x6f,0x75,0x6e,0x74,0x22,0x2c,0x22,0x6d,0x65,0x6e,0x75,0x56,0x61,0x72, 0x69,0x61,0x6e,0x74,0x22,0x5d,0x2c,0x73,0x6e,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77, 0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x69,0x64, 0x2c,0x69,0x3d,0x65,0x2e,0x74,0x69,0x74,0x6c,0x65,0x2c,0x75,0x3d,0x65,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72, 0x65,0x66,0x69,0x78,0x2c,0x73,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x2c,0x66,0x3d,0x65,0x2e,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f,0x73,0x65, 0x45,0x76,0x65,0x6e,0x74,0x2c,0x64,0x3d,0x65,0x2e,0x6d,0x65,0x6e,0x75,0x52,0x6f, 0x6c,0x65,0x2c,0x70,0x3d,0x65,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c, 0x68,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x2c,0x76,0x3d,0x65,0x2e,0x72, 0x65,0x6e,0x64,0x65,0x72,0x4d,0x65,0x6e,0x75,0x4f,0x6e,0x4d,0x6f,0x75,0x6e,0x74, 0x2c,0x67,0x3d,0x65,0x2e,0x6d,0x65,0x6e,0x75,0x56,0x61,0x72,0x69,0x61,0x6e,0x74, 0x2c,0x6d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65, 0x2c,0x6c,0x6e,0x29,0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e, 0x61,0x29,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x22,0x6e,0x61,0x76,0x2d,0x69, 0x74,0x65,0x6d,0x22,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x75,0x6e,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c, 0x6d,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x61,0x28,0x29,0x28,0x73,0x2c,0x62,0x29,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x75,0x6e,0x2e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x7b,0x69,0x64, 0x3a,0x6e,0x2c,0x65,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x3a,0x6e,0x75,0x6c,0x6c, 0x2c,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x68,0x2c,0x64,0x69,0x73,0x61,0x62,0x6c, 0x65,0x64,0x3a,0x70,0x2c,0x63,0x68,0x69,0x6c,0x64,0x42,0x73,0x50,0x72,0x65,0x66, 0x69,0x78,0x3a,0x63,0x2c,0x61,0x73,0x3a,0x63,0x6e,0x2e,0x61,0x2c,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x69,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x75,0x74,0x2e,0x6a,0x73,0x78,0x29,0x28,0x75,0x6e,0x2e,0x4d,0x65,0x6e,0x75, 0x2c,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x64,0x2c,0x72,0x65,0x6e,0x64,0x65,0x72,0x4f, 0x6e,0x4d,0x6f,0x75,0x6e,0x74,0x3a,0x76,0x2c,0x72,0x6f,0x6f,0x74,0x43,0x6c,0x6f, 0x73,0x65,0x45,0x76,0x65,0x6e,0x74,0x3a,0x66,0x2c,0x76,0x61,0x72,0x69,0x61,0x6e, 0x74,0x3a,0x67,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x75,0x7d,0x29, 0x5d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x73,0x6e,0x2e,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x44,0x72,0x6f,0x70,0x64, 0x6f,0x77,0x6e,0x22,0x3b,0x74,0x2e,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x73,0x6e,0x2c,0x7b,0x49,0x74,0x65,0x6d,0x3a, 0x75,0x6e,0x2e,0x49,0x74,0x65,0x6d,0x2c,0x49,0x74,0x65,0x6d,0x54,0x65,0x78,0x74, 0x3a,0x75,0x6e,0x2e,0x49,0x74,0x65,0x6d,0x54,0x65,0x78,0x74,0x2c,0x44,0x69,0x76, 0x69,0x64,0x65,0x72,0x3a,0x75,0x6e,0x2e,0x44,0x69,0x76,0x69,0x64,0x65,0x72,0x2c, 0x48,0x65,0x61,0x64,0x65,0x72,0x3a,0x75,0x6e,0x2e,0x48,0x65,0x61,0x64,0x65,0x72, 0x7d,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22, 0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x29,0x2c,0x6f,0x3d,0x6e,0x28, 0x33,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x61,0x3d,0x6e,0x2e,0x6e,0x28, 0x69,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x63,0x3d,0x6e,0x2e,0x6e,0x28, 0x75,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x32,0x31,0x29,0x2c,0x73,0x3d,0x6e,0x28,0x35, 0x30,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x32,0x38,0x29,0x2c,0x64,0x3d,0x6e,0x28,0x37, 0x29,0x2c,0x70,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x68,0x3d,0x5b,0x22,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d,0x2c,0x76,0x3d,0x75,0x2e,0x66,0x6f,0x72, 0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62, 0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x63,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x68,0x29,0x3b, 0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29,0x28,0x6e,0x2c, 0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x62,0x72,0x61,0x6e,0x64,0x22,0x29,0x3b, 0x76,0x61,0x72,0x20,0x6c,0x3d,0x75,0x7c,0x7c,0x28,0x63,0x2e,0x68,0x72,0x65,0x66, 0x3f,0x22,0x61,0x22,0x3a,0x22,0x73,0x70,0x61,0x6e,0x22,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x6c,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x63, 0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x69,0x2c,0x6e,0x29,0x7d,0x29, 0x29,0x7d,0x29,0x29,0x3b,0x76,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61, 0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x62,0x61,0x72,0x42,0x72,0x61,0x6e,0x64,0x22, 0x3b,0x76,0x61,0x72,0x20,0x67,0x3d,0x76,0x2c,0x6d,0x3d,0x6e,0x28,0x39,0x29,0x2c, 0x62,0x3d,0x6e,0x28,0x34,0x36,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x79,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x62,0x2e,0x61,0x29,0x28,0x65,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x74,0x2e,0x64,0x65,0x66,0x61, 0x75,0x6c,0x74,0x56,0x69,0x65,0x77,0x7c,0x7c,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7d, 0x28,0x65,0x29,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6d,0x70,0x75,0x74,0x65,0x64,0x53, 0x74,0x79,0x6c,0x65,0x28,0x65,0x2c,0x74,0x29,0x7d,0x76,0x61,0x72,0x20,0x5f,0x3d, 0x2f,0x28,0x5b,0x41,0x2d,0x5a,0x5d,0x29,0x2f,0x67,0x3b,0x76,0x61,0x72,0x20,0x77, 0x3d,0x2f,0x5e,0x6d,0x73,0x2d,0x2f,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x4f,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x5f,0x2c,0x22,0x2d,0x24,0x31, 0x22,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x77,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29, 0x7d,0x28,0x65,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x77,0x2c,0x22, 0x2d,0x6d,0x73,0x2d,0x22,0x29,0x7d,0x76,0x61,0x72,0x20,0x78,0x3d,0x2f,0x5e,0x28, 0x28,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x7c,0x72,0x6f,0x74,0x61,0x74, 0x65,0x7c,0x73,0x63,0x61,0x6c,0x65,0x29,0x28,0x58,0x7c,0x59,0x7c,0x5a,0x7c,0x33, 0x64,0x29,0x3f,0x7c,0x6d,0x61,0x74,0x72,0x69,0x78,0x28,0x33,0x64,0x29,0x3f,0x7c, 0x70,0x65,0x72,0x73,0x70,0x65,0x63,0x74,0x69,0x76,0x65,0x7c,0x73,0x6b,0x65,0x77, 0x28,0x58,0x7c,0x59,0x29,0x3f,0x29,0x24,0x2f,0x69,0x3b,0x76,0x61,0x72,0x20,0x45, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x22,0x22,0x2c,0x72,0x3d,0x22,0x22,0x3b,0x69,0x66,0x28, 0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f, 0x66,0x20,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x2e,0x67,0x65,0x74,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x56,0x61, 0x6c,0x75,0x65,0x28,0x4f,0x28,0x74,0x29,0x29,0x7c,0x7c,0x79,0x28,0x65,0x29,0x2e, 0x67,0x65,0x74,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x56,0x61,0x6c,0x75,0x65, 0x28,0x4f,0x28,0x74,0x29,0x29,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65, 0x79,0x73,0x28,0x74,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x29,0x7b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x74,0x5b,0x6f,0x5d,0x3b,0x69,0x7c,0x7c,0x30,0x3d,0x3d,0x3d,0x69,0x3f,0x21, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x28,0x21,0x65,0x7c,0x7c,0x21,0x78,0x2e,0x74,0x65,0x73,0x74,0x28, 0x65,0x29,0x29,0x7d,0x28,0x6f,0x29,0x3f,0x6e,0x2b,0x3d,0x4f,0x28,0x6f,0x29,0x2b, 0x22,0x3a,0x20,0x22,0x2b,0x69,0x2b,0x22,0x3b,0x22,0x3a,0x72,0x2b,0x3d,0x6f,0x2b, 0x22,0x28,0x22,0x2b,0x69,0x2b,0x22,0x29,0x20,0x22,0x3a,0x65,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x28,0x4f,0x28,0x6f,0x29,0x29,0x7d,0x29,0x29,0x2c,0x72,0x26,0x26,0x28,0x6e, 0x2b,0x3d,0x22,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3a,0x20,0x22,0x2b, 0x72,0x2b,0x22,0x3b,0x22,0x29,0x2c,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63, 0x73,0x73,0x54,0x65,0x78,0x74,0x2b,0x3d,0x22,0x3b,0x22,0x2b,0x6e,0x7d,0x2c,0x6a, 0x3d,0x6e,0x28,0x34,0x35,0x29,0x2c,0x6b,0x3d,0x6e,0x28,0x33,0x39,0x29,0x2c,0x53, 0x3d,0x6e,0x28,0x32,0x30,0x29,0x2c,0x43,0x3d,0x6e,0x2e,0x6e,0x28,0x53,0x29,0x2c, 0x41,0x3d,0x6e,0x28,0x32,0x36,0x29,0x2c,0x54,0x3d,0x6e,0x2e,0x6e,0x28,0x41,0x29, 0x2c,0x50,0x3d,0x21,0x31,0x2c,0x44,0x3d,0x63,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61, 0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x2c, 0x4e,0x3d,0x22,0x75,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x65,0x64,0x22,0x2c,0x49,0x3d, 0x22,0x65,0x78,0x69,0x74,0x65,0x64,0x22,0x2c,0x52,0x3d,0x22,0x65,0x6e,0x74,0x65, 0x72,0x69,0x6e,0x67,0x22,0x2c,0x4c,0x3d,0x22,0x65,0x6e,0x74,0x65,0x72,0x65,0x64, 0x22,0x2c,0x46,0x3d,0x22,0x65,0x78,0x69,0x74,0x69,0x6e,0x67,0x22,0x2c,0x4d,0x3d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20, 0x72,0x3b,0x72,0x3d,0x65,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c, 0x74,0x2c,0x6e,0x29,0x7c,0x7c,0x74,0x68,0x69,0x73,0x3b,0x76,0x61,0x72,0x20,0x6f, 0x2c,0x69,0x3d,0x6e,0x26,0x26,0x21,0x6e,0x2e,0x69,0x73,0x4d,0x6f,0x75,0x6e,0x74, 0x69,0x6e,0x67,0x3f,0x74,0x2e,0x65,0x6e,0x74,0x65,0x72,0x3a,0x74,0x2e,0x61,0x70, 0x70,0x65,0x61,0x72,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x2e,0x61,0x70, 0x70,0x65,0x61,0x72,0x53,0x74,0x61,0x74,0x75,0x73,0x3d,0x6e,0x75,0x6c,0x6c,0x2c, 0x74,0x2e,0x69,0x6e,0x3f,0x69,0x3f,0x28,0x6f,0x3d,0x49,0x2c,0x72,0x2e,0x61,0x70, 0x70,0x65,0x61,0x72,0x53,0x74,0x61,0x74,0x75,0x73,0x3d,0x52,0x29,0x3a,0x6f,0x3d, 0x4c,0x3a,0x6f,0x3d,0x74,0x2e,0x75,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45, 0x78,0x69,0x74,0x7c,0x7c,0x74,0x2e,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x6e, 0x74,0x65,0x72,0x3f,0x4e,0x3a,0x49,0x2c,0x72,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d, 0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x6f,0x7d,0x2c,0x72,0x2e,0x6e,0x65,0x78, 0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x6e,0x75,0x6c,0x6c,0x2c,0x72, 0x7d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x74,0x2c,0x65, 0x29,0x2c,0x74,0x2e,0x67,0x65,0x74,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x53,0x74, 0x61,0x74,0x65,0x46,0x72,0x6f,0x6d,0x50,0x72,0x6f,0x70,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x69,0x6e,0x26,0x26,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73, 0x3d,0x3d,0x3d,0x4e,0x3f,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x49,0x7d,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e, 0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x44,0x69,0x64,0x4d,0x6f,0x75, 0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x68, 0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x28, 0x21,0x30,0x2c,0x74,0x68,0x69,0x73,0x2e,0x61,0x70,0x70,0x65,0x61,0x72,0x53,0x74, 0x61,0x74,0x75,0x73,0x29,0x7d,0x2c,0x6e,0x2e,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65, 0x6e,0x74,0x44,0x69,0x64,0x55,0x70,0x64,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x75, 0x6c,0x6c,0x3b,0x69,0x66,0x28,0x65,0x21,0x3d,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70, 0x72,0x6f,0x70,0x73,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x73,0x74,0x61,0x74,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x3b,0x74,0x68, 0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x69,0x6e,0x3f,0x6e,0x21,0x3d,0x3d, 0x52,0x26,0x26,0x6e,0x21,0x3d,0x3d,0x4c,0x26,0x26,0x28,0x74,0x3d,0x52,0x29,0x3a, 0x6e,0x21,0x3d,0x3d,0x52,0x26,0x26,0x6e,0x21,0x3d,0x3d,0x4c,0x7c,0x7c,0x28,0x74, 0x3d,0x46,0x29,0x7d,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x53, 0x74,0x61,0x74,0x75,0x73,0x28,0x21,0x31,0x2c,0x74,0x29,0x7d,0x2c,0x6e,0x2e,0x63, 0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x57,0x69,0x6c,0x6c,0x55,0x6e,0x6d,0x6f, 0x75,0x6e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x68,0x69,0x73,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x4e,0x65,0x78,0x74,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x29,0x7d,0x2c,0x6e,0x2e,0x67,0x65,0x74,0x54, 0x69,0x6d,0x65,0x6f,0x75,0x74,0x73,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x2c,0x74,0x2c,0x6e,0x2c,0x72,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3d,0x74,0x3d,0x6e,0x3d,0x72, 0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x72,0x26,0x26,0x22,0x6e,0x75,0x6d,0x62,0x65, 0x72,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x72,0x26,0x26,0x28, 0x65,0x3d,0x72,0x2e,0x65,0x78,0x69,0x74,0x2c,0x74,0x3d,0x72,0x2e,0x65,0x6e,0x74, 0x65,0x72,0x2c,0x6e,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x72,0x2e, 0x61,0x70,0x70,0x65,0x61,0x72,0x3f,0x72,0x2e,0x61,0x70,0x70,0x65,0x61,0x72,0x3a, 0x74,0x29,0x2c,0x7b,0x65,0x78,0x69,0x74,0x3a,0x65,0x2c,0x65,0x6e,0x74,0x65,0x72, 0x3a,0x74,0x2c,0x61,0x70,0x70,0x65,0x61,0x72,0x3a,0x6e,0x7d,0x7d,0x2c,0x6e,0x2e, 0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x21,0x31,0x29,0x2c,0x6e,0x75, 0x6c,0x6c,0x21,0x3d,0x3d,0x74,0x3f,0x28,0x74,0x68,0x69,0x73,0x2e,0x63,0x61,0x6e, 0x63,0x65,0x6c,0x4e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28, 0x29,0x2c,0x74,0x3d,0x3d,0x3d,0x52,0x3f,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x72, 0x66,0x6f,0x72,0x6d,0x45,0x6e,0x74,0x65,0x72,0x28,0x65,0x29,0x3a,0x74,0x68,0x69, 0x73,0x2e,0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x45,0x78,0x69,0x74,0x28,0x29,0x29, 0x3a,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x75,0x6e,0x6d,0x6f, 0x75,0x6e,0x74,0x4f,0x6e,0x45,0x78,0x69,0x74,0x26,0x26,0x74,0x68,0x69,0x73,0x2e, 0x73,0x74,0x61,0x74,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x3d,0x3d,0x3d,0x49, 0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28, 0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x4e,0x7d,0x29,0x7d,0x2c,0x6e,0x2e,0x70, 0x65,0x72,0x66,0x6f,0x72,0x6d,0x45,0x6e,0x74,0x65,0x72,0x3d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68, 0x69,0x73,0x2c,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e, 0x65,0x6e,0x74,0x65,0x72,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x3f,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x2e,0x69,0x73,0x4d,0x6f,0x75,0x6e,0x74,0x69,0x6e,0x67,0x3a,0x65,0x2c,0x6f, 0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6e,0x6f,0x64,0x65, 0x52,0x65,0x66,0x3f,0x5b,0x72,0x5d,0x3a,0x5b,0x54,0x2e,0x61,0x2e,0x66,0x69,0x6e, 0x64,0x44,0x4f,0x4d,0x4e,0x6f,0x64,0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x2c,0x72, 0x5d,0x2c,0x69,0x3d,0x6f,0x5b,0x30,0x5d,0x2c,0x61,0x3d,0x6f,0x5b,0x31,0x5d,0x2c, 0x75,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x73,0x28,0x29,0x2c,0x63,0x3d,0x72,0x3f,0x75,0x2e,0x61,0x70,0x70,0x65,0x61, 0x72,0x3a,0x75,0x2e,0x65,0x6e,0x74,0x65,0x72,0x3b,0x21,0x65,0x26,0x26,0x21,0x6e, 0x7c,0x7c,0x50,0x3f,0x74,0x68,0x69,0x73,0x2e,0x73,0x61,0x66,0x65,0x53,0x65,0x74, 0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x4c,0x7d, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x70, 0x72,0x6f,0x70,0x73,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x28,0x69, 0x29,0x7d,0x29,0x29,0x3a,0x28,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x28,0x69,0x2c,0x61,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x73,0x61,0x66,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28, 0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x52,0x7d,0x2c,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f, 0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x28,0x69,0x2c,0x61,0x29,0x2c,0x74, 0x2e,0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64, 0x28,0x63,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74, 0x2e,0x73,0x61,0x66,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x73, 0x74,0x61,0x74,0x75,0x73,0x3a,0x4c,0x7d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f,0x6e,0x45, 0x6e,0x74,0x65,0x72,0x65,0x64,0x28,0x69,0x2c,0x61,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x29,0x7d,0x29,0x29,0x29,0x7d,0x2c,0x6e,0x2e,0x70,0x65,0x72,0x66,0x6f,0x72,0x6d, 0x45,0x78,0x69,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x65,0x3d,0x74,0x68,0x69,0x73,0x2c,0x74,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x65,0x78,0x69,0x74,0x2c,0x6e,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x73,0x28, 0x29,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6e, 0x6f,0x64,0x65,0x52,0x65,0x66,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a,0x54,0x2e, 0x61,0x2e,0x66,0x69,0x6e,0x64,0x44,0x4f,0x4d,0x4e,0x6f,0x64,0x65,0x28,0x74,0x68, 0x69,0x73,0x29,0x3b,0x74,0x26,0x26,0x21,0x50,0x3f,0x28,0x74,0x68,0x69,0x73,0x2e, 0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x28,0x72,0x29,0x2c, 0x74,0x68,0x69,0x73,0x2e,0x73,0x61,0x66,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74, 0x65,0x28,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x46,0x7d,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x28,0x72,0x29,0x2c,0x65,0x2e, 0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x28, 0x6e,0x2e,0x65,0x78,0x69,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x65,0x2e,0x73,0x61,0x66,0x65,0x53,0x65,0x74,0x53,0x74,0x61,0x74, 0x65,0x28,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x49,0x7d,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x70,0x72,0x6f,0x70,0x73, 0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x28,0x72,0x29,0x7d,0x29,0x29,0x7d, 0x29,0x29,0x7d,0x29,0x29,0x29,0x3a,0x74,0x68,0x69,0x73,0x2e,0x73,0x61,0x66,0x65, 0x53,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x7b,0x73,0x74,0x61,0x74,0x75,0x73, 0x3a,0x49,0x7d,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x65,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64, 0x28,0x72,0x29,0x7d,0x29,0x29,0x7d,0x2c,0x6e,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c, 0x4e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c, 0x62,0x61,0x63,0x6b,0x2e,0x63,0x61,0x6e,0x63,0x65,0x6c,0x28,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d, 0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c,0x6e,0x2e,0x73,0x61,0x66,0x65,0x53,0x65,0x74, 0x53,0x74,0x61,0x74,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x4e,0x65, 0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x74,0x29,0x2c,0x74,0x68, 0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x65,0x2c,0x74,0x29, 0x7d,0x2c,0x6e,0x2e,0x73,0x65,0x74,0x4e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2c,0x6e,0x3d,0x21,0x30,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74, 0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x72,0x29,0x7b,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x21,0x31,0x2c,0x74,0x2e, 0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3d,0x6e,0x75,0x6c, 0x6c,0x2c,0x65,0x28,0x72,0x29,0x29,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65, 0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2e,0x63,0x61,0x6e,0x63,0x65, 0x6c,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x3d,0x21, 0x31,0x7d,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c, 0x62,0x61,0x63,0x6b,0x7d,0x2c,0x6e,0x2e,0x6f,0x6e,0x54,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x45,0x6e,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x4e,0x65, 0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x74,0x29,0x3b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6e, 0x6f,0x64,0x65,0x52,0x65,0x66,0x3f,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x6e,0x6f,0x64,0x65,0x52,0x65,0x66,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3a,0x54,0x2e,0x61,0x2e,0x66,0x69,0x6e,0x64,0x44,0x4f,0x4d,0x4e,0x6f,0x64, 0x65,0x28,0x74,0x68,0x69,0x73,0x29,0x2c,0x72,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x65,0x26,0x26,0x21,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x61, 0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3b,0x69,0x66, 0x28,0x6e,0x26,0x26,0x21,0x72,0x29,0x7b,0x69,0x66,0x28,0x74,0x68,0x69,0x73,0x2e, 0x70,0x72,0x6f,0x70,0x73,0x2e,0x61,0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74, 0x65,0x6e,0x65,0x72,0x29,0x7b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x6e,0x6f,0x64,0x65,0x52,0x65,0x66,0x3f,0x5b, 0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x5d,0x3a,0x5b,0x6e,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x5d,0x2c,0x69,0x3d,0x6f,0x5b,0x30,0x5d,0x2c, 0x61,0x3d,0x6f,0x5b,0x31,0x5d,0x3b,0x74,0x68,0x69,0x73,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x61,0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72, 0x28,0x69,0x2c,0x61,0x29,0x7d,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x73, 0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x68,0x69,0x73,0x2e,0x6e, 0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x65,0x29,0x7d,0x65, 0x6c,0x73,0x65,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74, 0x68,0x69,0x73,0x2e,0x6e,0x65,0x78,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b, 0x2c,0x30,0x29,0x7d,0x2c,0x6e,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73, 0x3b,0x69,0x66,0x28,0x65,0x3d,0x3d,0x3d,0x4e,0x29,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x70,0x73,0x2c,0x6e,0x3d,0x74,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x2c,0x72,0x3d,0x28,0x74,0x2e,0x69,0x6e,0x2c,0x74,0x2e,0x6d,0x6f, 0x75,0x6e,0x74,0x4f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x2c,0x74,0x2e,0x75,0x6e,0x6d, 0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x78,0x69,0x74,0x2c,0x74,0x2e,0x61,0x70,0x70, 0x65,0x61,0x72,0x2c,0x74,0x2e,0x65,0x6e,0x74,0x65,0x72,0x2c,0x74,0x2e,0x65,0x78, 0x69,0x74,0x2c,0x74,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2c,0x74,0x2e,0x61, 0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x2c,0x74,0x2e, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x2c,0x74,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65, 0x72,0x69,0x6e,0x67,0x2c,0x74,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64, 0x2c,0x74,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x2c,0x74,0x2e,0x6f,0x6e,0x45,0x78, 0x69,0x74,0x69,0x6e,0x67,0x2c,0x74,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64, 0x2c,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x52,0x65,0x66,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x74,0x2c,0x5b,0x22,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x22,0x2c,0x22,0x69,0x6e,0x22,0x2c,0x22,0x6d,0x6f,0x75,0x6e,0x74, 0x4f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x22,0x2c,0x22,0x75,0x6e,0x6d,0x6f,0x75,0x6e, 0x74,0x4f,0x6e,0x45,0x78,0x69,0x74,0x22,0x2c,0x22,0x61,0x70,0x70,0x65,0x61,0x72, 0x22,0x2c,0x22,0x65,0x6e,0x74,0x65,0x72,0x22,0x2c,0x22,0x65,0x78,0x69,0x74,0x22, 0x2c,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x2c,0x22,0x61,0x64,0x64,0x45, 0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x22,0x2c,0x22,0x6f,0x6e,0x45, 0x6e,0x74,0x65,0x72,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e, 0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x22,0x2c,0x22, 0x6f,0x6e,0x45,0x78,0x69,0x74,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69, 0x6e,0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x22,0x2c,0x22, 0x6e,0x6f,0x64,0x65,0x52,0x65,0x66,0x22,0x5d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x63,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65, 0x6d,0x65,0x6e,0x74,0x28,0x44,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c, 0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x6e,0x3f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x3a,0x63,0x2e,0x61,0x2e,0x63,0x6c, 0x6f,0x6e,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x63,0x2e,0x61,0x2e,0x43, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6f,0x6e,0x6c,0x79,0x28,0x6e,0x29,0x2c, 0x72,0x29,0x29,0x7d,0x2c,0x74,0x7d,0x28,0x63,0x2e,0x61,0x2e,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x42,0x28,0x29,0x7b,0x7d,0x4d,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x54,0x79, 0x70,0x65,0x3d,0x44,0x2c,0x4d,0x2e,0x70,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73, 0x3d,0x7b,0x7d,0x2c,0x4d,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f, 0x70,0x73,0x3d,0x7b,0x69,0x6e,0x3a,0x21,0x31,0x2c,0x6d,0x6f,0x75,0x6e,0x74,0x4f, 0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x21,0x31,0x2c,0x75,0x6e,0x6d,0x6f,0x75,0x6e, 0x74,0x4f,0x6e,0x45,0x78,0x69,0x74,0x3a,0x21,0x31,0x2c,0x61,0x70,0x70,0x65,0x61, 0x72,0x3a,0x21,0x31,0x2c,0x65,0x6e,0x74,0x65,0x72,0x3a,0x21,0x30,0x2c,0x65,0x78, 0x69,0x74,0x3a,0x21,0x30,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x42,0x2c, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x3a,0x42,0x2c,0x6f,0x6e,0x45, 0x6e,0x74,0x65,0x72,0x65,0x64,0x3a,0x42,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x3a, 0x42,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x3a,0x42,0x2c,0x6f,0x6e, 0x45,0x78,0x69,0x74,0x65,0x64,0x3a,0x42,0x7d,0x2c,0x4d,0x2e,0x55,0x4e,0x4d,0x4f, 0x55,0x4e,0x54,0x45,0x44,0x3d,0x4e,0x2c,0x4d,0x2e,0x45,0x58,0x49,0x54,0x45,0x44, 0x3d,0x49,0x2c,0x4d,0x2e,0x45,0x4e,0x54,0x45,0x52,0x49,0x4e,0x47,0x3d,0x52,0x2c, 0x4d,0x2e,0x45,0x4e,0x54,0x45,0x52,0x45,0x44,0x3d,0x4c,0x2c,0x4d,0x2e,0x45,0x58, 0x49,0x54,0x49,0x4e,0x47,0x3d,0x46,0x3b,0x76,0x61,0x72,0x20,0x7a,0x3d,0x4d,0x2c, 0x55,0x3d,0x6e,0x28,0x33,0x37,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x57,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x6e,0x26,0x26,0x28,0x6e,0x3d,0x35,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x21,0x31,0x2c,0x6f,0x3d,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75, 0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x7c, 0x7c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x2c, 0x72,0x29,0x7b,0x69,0x66,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e, 0x26,0x26,0x28,0x6e,0x3d,0x21,0x31,0x29,0x2c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x72,0x26,0x26,0x28,0x72,0x3d,0x21,0x30,0x29,0x2c,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6f,0x3d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x45,0x76,0x65,0x6e,0x74,0x28,0x22,0x48,0x54,0x4d,0x4c,0x45, 0x76,0x65,0x6e,0x74,0x73,0x22,0x29,0x3b,0x6f,0x2e,0x69,0x6e,0x69,0x74,0x45,0x76, 0x65,0x6e,0x74,0x28,0x74,0x2c,0x6e,0x2c,0x72,0x29,0x2c,0x65,0x2e,0x64,0x69,0x73, 0x70,0x61,0x74,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x6f,0x29,0x7d,0x7d,0x28, 0x65,0x2c,0x22,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64, 0x22,0x2c,0x21,0x30,0x29,0x7d,0x29,0x2c,0x74,0x2b,0x6e,0x29,0x2c,0x69,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x55,0x2e,0x61,0x29,0x28,0x65,0x2c,0x22,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x3d,0x21,0x30,0x7d,0x29,0x2c, 0x7b,0x6f,0x6e,0x63,0x65,0x3a,0x21,0x30,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x63,0x6c,0x65, 0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x6f,0x29,0x2c,0x69,0x28,0x29, 0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x24,0x28,0x65,0x2c,0x74, 0x2c,0x6e,0x2c,0x72,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x26,0x26,0x28, 0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61, 0x72,0x20,0x74,0x3d,0x45,0x28,0x65,0x2c,0x22,0x74,0x72,0x61,0x6e,0x73,0x69,0x74, 0x69,0x6f,0x6e,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x29,0x7c,0x7c,0x22, 0x22,0x2c,0x6e,0x3d,0x2d,0x31,0x3d,0x3d,0x3d,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78, 0x4f,0x66,0x28,0x22,0x6d,0x73,0x22,0x29,0x3f,0x31,0x65,0x33,0x3a,0x31,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74, 0x28,0x74,0x29,0x2a,0x6e,0x7d,0x28,0x65,0x29,0x7c,0x7c,0x30,0x29,0x3b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x57,0x28,0x65,0x2c,0x6e,0x2c,0x72,0x29,0x2c,0x69,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x55,0x2e,0x61,0x29,0x28,0x65,0x2c,0x22,0x74,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x65,0x6e,0x64,0x22,0x2c,0x74,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x6f,0x28,0x29,0x2c,0x69,0x28,0x29,0x7d,0x7d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x48,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x45,0x28,0x65,0x2c,0x74,0x29,0x7c,0x7c,0x22,0x22,0x2c,0x72,0x3d,0x2d,0x31, 0x3d,0x3d,0x3d,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x22,0x6d,0x73, 0x22,0x29,0x3f,0x31,0x65,0x33,0x3a,0x31,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,0x6e,0x29,0x2a,0x72,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x48,0x28,0x65,0x2c,0x22,0x74,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x29,0x2c, 0x72,0x3d,0x48,0x28,0x65,0x2c,0x22,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, 0x6e,0x44,0x65,0x6c,0x61,0x79,0x22,0x29,0x2c,0x6f,0x3d,0x24,0x28,0x65,0x2c,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x6e,0x2e,0x74,0x61, 0x72,0x67,0x65,0x74,0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x6f,0x28,0x29,0x2c,0x74, 0x28,0x6e,0x29,0x29,0x7d,0x29,0x2c,0x6e,0x2b,0x72,0x29,0x7d,0x76,0x61,0x72,0x20, 0x47,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x65,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72, 0x72,0x61,0x79,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x30,0x3b,0x6e,0x3c,0x65,0x3b,0x6e, 0x2b,0x2b,0x29,0x74,0x5b,0x6e,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x5b,0x6e,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x66,0x69, 0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65, 0x7d,0x29,0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x22,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66, 0x20,0x74,0x29,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72, 0x6f,0x72,0x28,0x22,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x41,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x20,0x54,0x79,0x70,0x65,0x2c,0x20,0x6d,0x75,0x73,0x74,0x20, 0x6f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x20,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x64,0x2c,0x20,0x6f,0x72,0x20,0x6e,0x75,0x6c,0x6c,0x2e,0x22,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x65,0x3f,0x74,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x2c,0x72,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61, 0x79,0x28,0x6e,0x29,0x2c,0x6f,0x3d,0x30,0x3b,0x6f,0x3c,0x6e,0x3b,0x6f,0x2b,0x2b, 0x29,0x72,0x5b,0x6f,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b, 0x6f,0x5d,0x3b,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c, 0x72,0x29,0x2c,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c, 0x72,0x29,0x7d,0x7d,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x28,0x65,0x29,0x7b,0x65,0x2e,0x6f,0x66,0x66, 0x73,0x65,0x74,0x48,0x65,0x69,0x67,0x68,0x74,0x7d,0x76,0x61,0x72,0x20,0x4b,0x3d, 0x6e,0x28,0x34,0x37,0x29,0x3b,0x76,0x61,0x72,0x20,0x59,0x2c,0x51,0x3d,0x5b,0x22, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65, 0x72,0x69,0x6e,0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64, 0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78, 0x69,0x74,0x69,0x6e,0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64, 0x22,0x2c,0x22,0x61,0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65, 0x72,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x22,0x63, 0x68,0x69,0x6c,0x64,0x52,0x65,0x66,0x22,0x5d,0x2c,0x58,0x3d,0x63,0x2e,0x61,0x2e, 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x2c,0x69,0x3d,0x65,0x2e,0x6f,0x6e, 0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x2c,0x61,0x3d,0x65,0x2e,0x6f,0x6e,0x45, 0x6e,0x74,0x65,0x72,0x65,0x64,0x2c,0x6c,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69, 0x74,0x2c,0x73,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x2c, 0x66,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x2c,0x64,0x3d,0x65, 0x2e,0x61,0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x2c, 0x68,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x76,0x3d,0x65, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x52,0x65,0x66,0x2c,0x67,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x51,0x29,0x2c,0x6d,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28, 0x6e,0x75,0x6c,0x6c,0x29,0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4b, 0x2e,0x61,0x29,0x28,0x6d,0x2c,0x76,0x29,0x2c,0x79,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x62,0x28,0x28, 0x74,0x3d,0x65,0x29,0x26,0x26,0x22,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x22, 0x69,0x6e,0x20,0x74,0x3f,0x54,0x2e,0x61,0x2e,0x66,0x69,0x6e,0x64,0x44,0x4f,0x4d, 0x4e,0x6f,0x64,0x65,0x28,0x74,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x74,0x3f, 0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x2c,0x5f,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x26,0x26,0x6d,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x65,0x28,0x6d,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29, 0x28,0x5f,0x28,0x6e,0x29,0x2c,0x5b,0x6e,0x5d,0x29,0x2c,0x4f,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x29,0x28,0x5f,0x28,0x69,0x29,0x2c,0x5b,0x69,0x5d,0x29,0x2c,0x78,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x29,0x28,0x5f,0x28,0x61,0x29,0x2c,0x5b,0x61,0x5d,0x29,0x2c,0x45, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c, 0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x5f,0x28,0x6c,0x29,0x2c,0x5b,0x6c,0x5d,0x29, 0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43, 0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x5f,0x28,0x73,0x29,0x2c,0x5b,0x73, 0x5d,0x29,0x2c,0x6b,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x5f,0x28,0x66,0x29,0x2c, 0x5b,0x66,0x5d,0x29,0x2c,0x53,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e, 0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x5f,0x28,0x64, 0x29,0x2c,0x5b,0x64,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x7a,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c,0x67,0x29, 0x2c,0x7b,0x7d,0x2c,0x7b,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x77,0x2c,0x6f, 0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x3a,0x78,0x2c,0x6f,0x6e,0x45,0x6e,0x74, 0x65,0x72,0x69,0x6e,0x67,0x3a,0x4f,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x3a,0x45, 0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x3a,0x6b,0x2c,0x6f,0x6e,0x45,0x78, 0x69,0x74,0x69,0x6e,0x67,0x3a,0x6a,0x2c,0x61,0x64,0x64,0x45,0x6e,0x64,0x4c,0x69, 0x73,0x74,0x65,0x6e,0x65,0x72,0x3a,0x53,0x2c,0x6e,0x6f,0x64,0x65,0x52,0x65,0x66, 0x3a,0x6d,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x68,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x28,0x65,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66, 0x3a,0x79,0x7d,0x29,0x29,0x7d,0x3a,0x63,0x2e,0x61,0x2e,0x63,0x6c,0x6f,0x6e,0x65, 0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x68,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x79, 0x7d,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x2c,0x4a,0x3d,0x5b,0x22,0x6f,0x6e,0x45, 0x6e,0x74,0x65,0x72,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e, 0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x22,0x2c,0x22, 0x6f,0x6e,0x45,0x78,0x69,0x74,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69, 0x6e,0x67,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c, 0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x22,0x64,0x69,0x6d,0x65, 0x6e,0x73,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e, 0x73,0x69,0x6f,0x6e,0x56,0x61,0x6c,0x75,0x65,0x22,0x5d,0x2c,0x5a,0x3d,0x7b,0x68, 0x65,0x69,0x67,0x68,0x74,0x3a,0x5b,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x54,0x6f, 0x70,0x22,0x2c,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x42,0x6f,0x74,0x74,0x6f,0x6d, 0x22,0x5d,0x2c,0x77,0x69,0x64,0x74,0x68,0x3a,0x5b,0x22,0x6d,0x61,0x72,0x67,0x69, 0x6e,0x4c,0x65,0x66,0x74,0x22,0x2c,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x52,0x69, 0x67,0x68,0x74,0x22,0x5d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x65,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x5b, 0x22,0x6f,0x66,0x66,0x73,0x65,0x74,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x65,0x5b,0x30,0x5d,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65, 0x28,0x29,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x2e,0x73,0x6c,0x69, 0x63,0x65,0x28,0x31,0x29,0x29,0x5d,0x2c,0x72,0x3d,0x5a,0x5b,0x65,0x5d,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x2b,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74, 0x28,0x45,0x28,0x74,0x2c,0x72,0x5b,0x30,0x5d,0x29,0x2c,0x31,0x30,0x29,0x2b,0x70, 0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x45,0x28,0x74,0x2c,0x72,0x5b,0x31,0x5d, 0x29,0x2c,0x31,0x30,0x29,0x7d,0x76,0x61,0x72,0x20,0x74,0x65,0x3d,0x28,0x59,0x3d, 0x7b,0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x59, 0x2c,0x49,0x2c,0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x59,0x2c,0x46,0x2c,0x22, 0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x22,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x59,0x2c,0x52,0x2c,0x22,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x59,0x2c,0x4c,0x2c,0x22,0x63,0x6f,0x6c,0x6c, 0x61,0x70,0x73,0x65,0x20,0x73,0x68,0x6f,0x77,0x22,0x29,0x2c,0x59,0x29,0x2c,0x6e, 0x65,0x3d,0x7b,0x69,0x6e,0x3a,0x21,0x31,0x2c,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74, 0x3a,0x33,0x30,0x30,0x2c,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x6e,0x74,0x65, 0x72,0x3a,0x21,0x31,0x2c,0x75,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x78, 0x69,0x74,0x3a,0x21,0x31,0x2c,0x61,0x70,0x70,0x65,0x61,0x72,0x3a,0x21,0x31,0x2c, 0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x56,0x61,0x6c,0x75, 0x65,0x3a,0x65,0x65,0x7d,0x2c,0x72,0x65,0x3d,0x63,0x2e,0x61,0x2e,0x66,0x6f,0x72, 0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x6f, 0x6e,0x45,0x6e,0x74,0x65,0x72,0x2c,0x69,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x6e,0x74, 0x65,0x72,0x69,0x6e,0x67,0x2c,0x6c,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65, 0x72,0x65,0x64,0x2c,0x73,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x2c,0x66, 0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x2c,0x64,0x3d,0x65, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x68,0x3d,0x65,0x2e,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x76,0x3d,0x65,0x2e,0x64,0x69,0x6d,0x65, 0x6e,0x73,0x69,0x6f,0x6e,0x2c,0x67,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x76,0x3f,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x22,0x3a,0x76,0x2c,0x6d,0x3d, 0x65,0x2e,0x67,0x65,0x74,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x56,0x61, 0x6c,0x75,0x65,0x2c,0x62,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6d, 0x3f,0x65,0x65,0x3a,0x6d,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f, 0x2e,0x61,0x29,0x28,0x65,0x2c,0x4a,0x29,0x2c,0x5f,0x3d,0x22,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x67, 0x3f,0x67,0x28,0x29,0x3a,0x67,0x2c,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x5b,0x5f,0x5d,0x3d,0x22,0x30,0x22,0x7d,0x29,0x2c,0x6e,0x29, 0x7d,0x29,0x2c,0x5b,0x5f,0x2c,0x6e,0x5d,0x29,0x2c,0x4f,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x47,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x5f,0x5b,0x30,0x5d,0x2e,0x74,0x6f,0x55,0x70,0x70, 0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x5f,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x31,0x29,0x29,0x3b,0x65,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x5b,0x5f,0x5d,0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x65,0x5b,0x74,0x5d,0x2c,0x22,0x70,0x78,0x22,0x29,0x7d,0x29,0x2c,0x69, 0x29,0x7d,0x29,0x2c,0x5b,0x5f,0x2c,0x69,0x5d,0x29,0x2c,0x78,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x47,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x5f,0x5d,0x3d,0x6e,0x75,0x6c,0x6c, 0x7d,0x29,0x2c,0x6c,0x29,0x7d,0x29,0x2c,0x5b,0x5f,0x2c,0x6c,0x5d,0x29,0x2c,0x45, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d, 0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x5f,0x5d,0x3d, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x62,0x28,0x5f,0x2c,0x65,0x29, 0x2c,0x22,0x70,0x78,0x22,0x29,0x2c,0x71,0x28,0x65,0x29,0x7d,0x29,0x2c,0x73,0x29, 0x7d,0x29,0x2c,0x5b,0x73,0x2c,0x62,0x2c,0x5f,0x5d,0x29,0x2c,0x6a,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x47,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x5f,0x5d,0x3d,0x6e,0x75,0x6c, 0x6c,0x7d,0x29,0x2c,0x66,0x29,0x7d,0x29,0x2c,0x5b,0x5f,0x2c,0x66,0x5d,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x58,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b, 0x72,0x65,0x66,0x3a,0x74,0x2c,0x61,0x64,0x64,0x45,0x6e,0x64,0x4c,0x69,0x73,0x74, 0x65,0x6e,0x65,0x72,0x3a,0x56,0x7d,0x2c,0x79,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x22, 0x61,0x72,0x69,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x22,0x3a,0x79, 0x2e,0x72,0x6f,0x6c,0x65,0x3f,0x79,0x2e,0x69,0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x77,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65, 0x72,0x69,0x6e,0x67,0x3a,0x4f,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64, 0x3a,0x78,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x3a,0x45,0x2c,0x6f,0x6e,0x45,0x78, 0x69,0x74,0x69,0x6e,0x67,0x3a,0x6a,0x2c,0x63,0x68,0x69,0x6c,0x64,0x52,0x65,0x66, 0x3a,0x68,0x2e,0x72,0x65,0x66,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x63,0x2e,0x61,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x45,0x6c, 0x65,0x6d,0x65,0x6e,0x74,0x28,0x68,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x74,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x64,0x2c,0x68,0x2e,0x70,0x72,0x6f,0x70, 0x73,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x74,0x65,0x5b,0x65, 0x5d,0x2c,0x22,0x77,0x69,0x64,0x74,0x68,0x22,0x3d,0x3d,0x3d,0x5f,0x26,0x26,0x22, 0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x2d,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e, 0x74,0x61,0x6c,0x22,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x72,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d, 0x6e,0x65,0x3b,0x76,0x61,0x72,0x20,0x6f,0x65,0x3d,0x72,0x65,0x2c,0x69,0x65,0x3d, 0x6e,0x28,0x32,0x37,0x29,0x2c,0x61,0x65,0x3d,0x5b,0x22,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x22,0x2c,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x5d, 0x2c,0x75,0x65,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x2c,0x69,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x61,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x61,0x65, 0x29,0x3b,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29,0x28, 0x69,0x2c,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70, 0x73,0x65,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x63,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28, 0x69,0x65,0x2e,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6f,0x65,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x69,0x6e,0x3a,0x21,0x28,0x21,0x63,0x7c,0x7c, 0x21,0x63,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x7d,0x2c,0x61,0x29, 0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69,0x76, 0x22,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x3a,0x69,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x6e,0x7d, 0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x75,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c, 0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x62,0x61,0x72,0x43,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x22,0x3b,0x76,0x61,0x72,0x20,0x63,0x65,0x3d,0x75, 0x65,0x2c,0x6c,0x65,0x3d,0x6e,0x28,0x35,0x31,0x29,0x2c,0x73,0x65,0x3d,0x5b,0x22, 0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22, 0x2c,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x22,0x61,0x73,0x22,0x2c,0x22,0x6f, 0x6e,0x43,0x6c,0x69,0x63,0x6b,0x22,0x5d,0x2c,0x66,0x65,0x3d,0x75,0x2e,0x66,0x6f, 0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x2c,0x6c,0x3d,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x2c,0x73,0x3d, 0x65,0x2e,0x61,0x73,0x2c,0x66,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x73,0x3f,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x3a,0x73,0x2c,0x68,0x3d,0x65, 0x2e,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x2c,0x76,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x73,0x65,0x29,0x3b,0x6e,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x6e,0x61, 0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x72,0x22,0x29,0x3b,0x76, 0x61,0x72,0x20,0x67,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x69,0x65,0x2e,0x61,0x29,0x7c, 0x7c,0x7b,0x7d,0x2c,0x6d,0x3d,0x67,0x2e,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65, 0x2c,0x62,0x3d,0x67,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x2c,0x79,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x68,0x26,0x26,0x68,0x28,0x65, 0x29,0x2c,0x6d,0x26,0x26,0x6d,0x28,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x66,0x26,0x26, 0x28,0x76,0x2e,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x66,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x76,0x29,0x2c, 0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x6f,0x6e,0x43,0x6c,0x69,0x63, 0x6b,0x3a,0x79,0x2c,0x22,0x61,0x72,0x69,0x61,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22, 0x3a,0x6c,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29, 0x28,0x69,0x2c,0x6e,0x2c,0x21,0x62,0x26,0x26,0x22,0x63,0x6f,0x6c,0x6c,0x61,0x70, 0x73,0x65,0x64,0x22,0x29,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x63, 0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x22,0x73,0x70,0x61,0x6e,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2c,0x22,0x2d, 0x69,0x63,0x6f,0x6e,0x22,0x29,0x7d,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x66, 0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e, 0x61,0x76,0x62,0x61,0x72,0x54,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x66,0x65,0x2e, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x6c,0x61, 0x62,0x65,0x6c,0x3a,0x22,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x6e,0x61,0x76,0x69, 0x67,0x61,0x74,0x69,0x6f,0x6e,0x22,0x7d,0x3b,0x76,0x61,0x72,0x20,0x64,0x65,0x3d, 0x66,0x65,0x2c,0x70,0x65,0x3d,0x6e,0x28,0x35,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x68,0x65,0x28,0x65,0x29,0x7b,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x65,0x26,0x26,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x62,0x2e,0x61,0x29,0x28,0x29,0x29,0x3b,0x74,0x72,0x79,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x26,0x26,0x74,0x2e,0x6e,0x6f, 0x64,0x65,0x4e,0x61,0x6d,0x65,0x3f,0x74,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x63,0x61, 0x74,0x63,0x68,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x62,0x6f,0x64,0x79,0x7d,0x7d,0x76,0x61,0x72,0x20,0x76,0x65,0x3d,0x6e,0x28,0x36, 0x38,0x29,0x2c,0x67,0x65,0x3d,0x6e,0x28,0x38,0x32,0x29,0x2c,0x6d,0x65,0x3d,0x6e, 0x28,0x35,0x37,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x65, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x65,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, 0x3d,0x65,0x2c,0x74,0x7d,0x28,0x65,0x29,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x28,0x29,0x7d,0x7d,0x29, 0x2c,0x5b,0x5d,0x29,0x7d,0x76,0x61,0x72,0x20,0x79,0x65,0x3d,0x6e,0x28,0x35,0x38, 0x29,0x2c,0x5f,0x65,0x3d,0x6e,0x28,0x31,0x36,0x29,0x2c,0x77,0x65,0x3d,0x6e,0x28, 0x31,0x39,0x29,0x2c,0x4f,0x65,0x3d,0x6e,0x28,0x31,0x30,0x29,0x2c,0x78,0x65,0x3d, 0x6e,0x28,0x31,0x31,0x29,0x2c,0x45,0x65,0x3d,0x6e,0x28,0x33,0x33,0x29,0x3b,0x76, 0x61,0x72,0x20,0x6a,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x45,0x65,0x2e, 0x61,0x29,0x28,0x22,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x6f,0x70,0x65,0x6e,0x22,0x29, 0x2c,0x6b,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67, 0x74,0x68,0x3e,0x30,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3f,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x3a,0x7b,0x7d,0x2c,0x6e,0x3d,0x74,0x2e, 0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x4f, 0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x6e,0x7c,0x7c,0x6e,0x2c,0x6f,0x3d,0x74,0x2e,0x69,0x73,0x52,0x54, 0x4c,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6f,0x26,0x26, 0x6f,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x65,0x2e,0x61,0x29,0x28,0x74, 0x68,0x69,0x73,0x2c,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64, 0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x4f,0x76,0x65,0x72,0x66, 0x6c,0x6f,0x77,0x3d,0x72,0x2c,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x52,0x54,0x4c, 0x3d,0x69,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x73,0x3d,0x5b, 0x5d,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x78,0x65,0x2e,0x61,0x29,0x28,0x65,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x67, 0x65,0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x62,0x61,0x72,0x57,0x69,0x64,0x74,0x68, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4d,0x61,0x74,0x68,0x2e,0x61, 0x62,0x73,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x57, 0x69,0x64,0x74,0x68,0x2d,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x64,0x6f, 0x63,0x75,0x6d,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c, 0x69,0x65,0x6e,0x74,0x57,0x69,0x64,0x74,0x68,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65, 0x79,0x3a,0x22,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e, 0x62,0x6f,0x64,0x79,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x65,0x74, 0x4d,0x6f,0x64,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x73,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x4d,0x6f,0x64,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65, 0x73,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x65, 0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x53,0x74,0x79,0x6c,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x7b,0x6f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x3a,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x7d,0x2c,0x6e,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x69,0x73,0x52,0x54,0x4c,0x3f,0x22,0x70,0x61,0x64,0x64,0x69, 0x6e,0x67,0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, 0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65, 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x3b,0x65,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x7b, 0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65, 0x2e,0x6f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x7d,0x2c,0x6e,0x2c,0x72,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x5b,0x6e,0x5d,0x29,0x2c,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c, 0x6c,0x42,0x61,0x72,0x57,0x69,0x64,0x74,0x68,0x26,0x26,0x28,0x74,0x5b,0x6e,0x5d, 0x3d,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x70,0x61,0x72,0x73,0x65, 0x49,0x6e,0x74,0x28,0x45,0x28,0x72,0x2c,0x6e,0x29,0x7c,0x7c,0x22,0x30,0x22,0x2c, 0x31,0x30,0x29,0x2b,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x42,0x61,0x72,0x57, 0x69,0x64,0x74,0x68,0x2c,0x22,0x70,0x78,0x22,0x29,0x29,0x2c,0x72,0x2e,0x73,0x65, 0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x6a,0x65,0x2c,0x22,0x22, 0x29,0x2c,0x45,0x28,0x72,0x2c,0x74,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x72,0x65,0x73,0x65,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x74, 0x68,0x69,0x73,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x77,0x65,0x2e,0x61,0x29, 0x28,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x73,0x29,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x28,0x74,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x53,0x74,0x79,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74, 0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29, 0x3b,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x28,0x6a,0x65,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73, 0x73,0x69,0x67,0x6e,0x28,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c,0x65,0x2e,0x73, 0x74,0x79,0x6c,0x65,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x61,0x64, 0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x73,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x2d,0x31,0x21,0x3d,0x3d,0x74,0x3f,0x74, 0x3a,0x28,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x73,0x2e, 0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e, 0x73,0x65,0x74,0x4d,0x6f,0x64,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74, 0x65,0x73,0x28,0x65,0x29,0x2c,0x30,0x21,0x3d,0x3d,0x74,0x7c,0x7c,0x28,0x74,0x68, 0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x3d,0x7b,0x73,0x63,0x72,0x6f,0x6c,0x6c, 0x42,0x61,0x72,0x57,0x69,0x64,0x74,0x68,0x3a,0x74,0x68,0x69,0x73,0x2e,0x67,0x65, 0x74,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x62,0x61,0x72,0x57,0x69,0x64,0x74,0x68,0x28, 0x29,0x2c,0x73,0x74,0x79,0x6c,0x65,0x3a,0x7b,0x7d,0x7d,0x2c,0x74,0x68,0x69,0x73, 0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72, 0x4f,0x76,0x65,0x72,0x66,0x6c,0x6f,0x77,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x73, 0x65,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x53,0x74,0x79,0x6c,0x65, 0x28,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x29,0x29,0x2c,0x74,0x29, 0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x73,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x65,0x29,0x3b, 0x2d,0x31,0x21,0x3d,0x3d,0x74,0x26,0x26,0x28,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f, 0x64,0x61,0x6c,0x73,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x74,0x2c,0x31,0x29, 0x2c,0x21,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61,0x6c,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x4f,0x76,0x65,0x72,0x66,0x6c, 0x6f,0x77,0x26,0x26,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x53,0x74,0x79,0x6c,0x65,0x28,0x74,0x68, 0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x29,0x2c,0x74,0x68,0x69,0x73,0x2e,0x72, 0x65,0x6d,0x6f,0x76,0x65,0x4d,0x6f,0x64,0x61,0x6c,0x41,0x74,0x74,0x72,0x69,0x62, 0x75,0x74,0x65,0x73,0x28,0x65,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a, 0x22,0x69,0x73,0x54,0x6f,0x70,0x4d,0x6f,0x64,0x61,0x6c,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x26,0x26,0x74,0x68,0x69,0x73,0x2e, 0x6d,0x6f,0x64,0x61,0x6c,0x73,0x5b,0x74,0x68,0x69,0x73,0x2e,0x6d,0x6f,0x64,0x61, 0x6c,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x5d,0x3d,0x3d,0x3d,0x65, 0x7d,0x7d,0x5d,0x29,0x2c,0x65,0x7d,0x28,0x29,0x2c,0x53,0x65,0x3d,0x6b,0x65,0x2c, 0x43,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3f,0x6e,0x75,0x6c,0x6c,0x3a,0x6e,0x75, 0x6c,0x6c,0x3d,0x3d,0x65,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x62,0x2e,0x61, 0x29,0x28,0x29,0x2e,0x62,0x6f,0x64,0x79,0x3a,0x28,0x22,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x22,0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x26, 0x26,0x28,0x65,0x3d,0x65,0x28,0x29,0x29,0x2c,0x65,0x26,0x26,0x22,0x63,0x75,0x72, 0x72,0x65,0x6e,0x74,0x22,0x69,0x6e,0x20,0x65,0x26,0x26,0x28,0x65,0x3d,0x65,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x28, 0x74,0x3d,0x65,0x29,0x26,0x26,0x74,0x2e,0x6e,0x6f,0x64,0x65,0x54,0x79,0x70,0x65, 0x26,0x26,0x65,0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x41,0x65,0x2c,0x54,0x65,0x3d,0x5b,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x22,0x72, 0x6f,0x6c,0x65,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22, 0x2c,0x22,0x73,0x74,0x79,0x6c,0x65,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x22,0x2c,0x22,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x2c,0x22, 0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x22,0x2c,0x22,0x6f,0x6e,0x42,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x43,0x6c,0x69,0x63,0x6b,0x22,0x2c,0x22,0x6f,0x6e,0x45, 0x73,0x63,0x61,0x70,0x65,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x22,0x74, 0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x22,0x62,0x61,0x63,0x6b, 0x64,0x72,0x6f,0x70,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x22,0x2c, 0x22,0x61,0x75,0x74,0x6f,0x46,0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x65,0x6e,0x66, 0x6f,0x72,0x63,0x65,0x46,0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x72,0x65,0x73,0x74, 0x6f,0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x72,0x65,0x73,0x74,0x6f, 0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x2c, 0x22,0x72,0x65,0x6e,0x64,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x22,0x2c,0x22, 0x72,0x65,0x6e,0x64,0x65,0x72,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x2c, 0x22,0x6d,0x61,0x6e,0x61,0x67,0x65,0x72,0x22,0x2c,0x22,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x65,0x72,0x22,0x2c,0x22,0x6f,0x6e,0x53,0x68,0x6f,0x77,0x22,0x2c,0x22, 0x6f,0x6e,0x48,0x69,0x64,0x65,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x22, 0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x22,0x2c,0x22,0x6f,0x6e,0x45, 0x78,0x69,0x74,0x69,0x6e,0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72, 0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x22,0x2c,0x22, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x22,0x5d,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x50,0x65,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x65,0x7c,0x7c,0x28,0x41,0x65,0x7c,0x7c,0x28,0x41,0x65,0x3d,0x6e,0x65,0x77, 0x20,0x53,0x65,0x29,0x2c,0x41,0x65,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x7b,0x64,0x69,0x61, 0x6c,0x6f,0x67,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f, 0x70,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x6e,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2c,0x7b,0x61,0x64,0x64,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, 0x2e,0x61,0x64,0x64,0x28,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7d, 0x2c,0x72,0x65,0x6d,0x6f,0x76,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65,0x6d,0x6f, 0x76,0x65,0x28,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7d,0x2c,0x69, 0x73,0x54,0x6f,0x70,0x4d,0x6f,0x64,0x61,0x6c,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x69,0x73, 0x54,0x6f,0x70,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x29,0x7d,0x2c,0x73,0x65,0x74,0x44,0x69,0x61,0x6c,0x6f,0x67,0x52,0x65, 0x66,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x64, 0x69,0x61,0x6c,0x6f,0x67,0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x2c,0x73,0x65, 0x74,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x52,0x65,0x66,0x3a,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63, 0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x6e,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x62,0x61,0x63,0x6b,0x64,0x72, 0x6f,0x70,0x3d,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x7d,0x29,0x7d,0x76,0x61,0x72, 0x20,0x44,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x66,0x6f,0x72, 0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x73,0x68,0x6f,0x77,0x2c,0x72,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x6e,0x26,0x26,0x6e,0x2c,0x6f,0x3d,0x65,0x2e,0x72,0x6f,0x6c,0x65,0x2c,0x69,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x22,0x64,0x69,0x61,0x6c, 0x6f,0x67,0x22,0x3a,0x6f,0x2c,0x61,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c,0x6c,0x3d, 0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x73,0x3d,0x65,0x2e,0x62, 0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2c,0x66,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x3d,0x3d,0x3d,0x73,0x7c,0x7c,0x73,0x2c,0x64,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x62, 0x6f,0x61,0x72,0x64,0x2c,0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d, 0x64,0x7c,0x7c,0x64,0x2c,0x76,0x3d,0x65,0x2e,0x6f,0x6e,0x42,0x61,0x63,0x6b,0x64, 0x72,0x6f,0x70,0x43,0x6c,0x69,0x63,0x6b,0x2c,0x67,0x3d,0x65,0x2e,0x6f,0x6e,0x45, 0x73,0x63,0x61,0x70,0x65,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x2c,0x6d,0x3d,0x65, 0x2e,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2c,0x62,0x3d,0x65,0x2e, 0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69, 0x6f,0x6e,0x2c,0x79,0x3d,0x65,0x2e,0x61,0x75,0x74,0x6f,0x46,0x6f,0x63,0x75,0x73, 0x2c,0x5f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x79,0x7c,0x7c,0x79, 0x2c,0x77,0x3d,0x65,0x2e,0x65,0x6e,0x66,0x6f,0x72,0x63,0x65,0x46,0x6f,0x63,0x75, 0x73,0x2c,0x4f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x77,0x7c,0x7c, 0x77,0x2c,0x78,0x3d,0x65,0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x46,0x6f,0x63, 0x75,0x73,0x2c,0x45,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x78,0x7c, 0x7c,0x78,0x2c,0x6a,0x3d,0x65,0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x46,0x6f, 0x63,0x75,0x73,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x6b,0x3d,0x65,0x2e,0x72, 0x65,0x6e,0x64,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x2c,0x53,0x3d,0x65,0x2e, 0x72,0x65,0x6e,0x64,0x65,0x72,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2c,0x43, 0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x53,0x3f,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69, 0x76,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e, 0x28,0x7b,0x7d,0x2c,0x65,0x29,0x29,0x7d,0x3a,0x53,0x2c,0x41,0x3d,0x65,0x2e,0x6d, 0x61,0x6e,0x61,0x67,0x65,0x72,0x2c,0x50,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61, 0x69,0x6e,0x65,0x72,0x2c,0x44,0x3d,0x65,0x2e,0x6f,0x6e,0x53,0x68,0x6f,0x77,0x2c, 0x4e,0x3d,0x65,0x2e,0x6f,0x6e,0x48,0x69,0x64,0x65,0x2c,0x49,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x4e,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x7d,0x3a,0x4e,0x2c,0x52,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69, 0x74,0x2c,0x4c,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x2c,0x46, 0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x2c,0x4d,0x3d,0x65, 0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x2c,0x42,0x3d,0x65,0x2e,0x6f,0x6e,0x45, 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x2c,0x7a,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x6e, 0x74,0x65,0x72,0x65,0x64,0x2c,0x57,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65, 0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c, 0x72,0x2c,0x6f,0x3d,0x7b,0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b, 0x72,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e, 0x3d,0x69,0x5b,0x72,0x5d,0x2c,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28, 0x6e,0x29,0x3e,0x3d,0x30,0x7c,0x7c,0x28,0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e, 0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x28,0x65,0x2c,0x54, 0x65,0x29,0x2c,0x24,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x75,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x43, 0x65,0x28,0x65,0x29,0x7d,0x29,0x29,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x70,0x65,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x32,0x29,0x2c,0x6f,0x3d,0x72,0x5b, 0x30,0x5d,0x2c,0x69,0x3d,0x72,0x5b,0x31,0x5d,0x3b,0x69,0x66,0x28,0x21,0x6f,0x29, 0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x43,0x65,0x28,0x65,0x29,0x3b,0x61,0x26,0x26, 0x69,0x28,0x61,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x26,0x26,0x6f, 0x26,0x26,0x74,0x28,0x6f,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x2c,0x6f,0x5d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65, 0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x43,0x65,0x28,0x65,0x29,0x3b,0x74,0x21,0x3d,0x3d, 0x6f,0x26,0x26,0x69,0x28,0x74,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x2c,0x6f,0x5d,0x29, 0x2c,0x6f,0x7d,0x28,0x50,0x29,0x2c,0x48,0x3d,0x50,0x65,0x28,0x41,0x29,0x2c,0x56, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x65,0x2e,0x61,0x29,0x28,0x29,0x2c, 0x47,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x79,0x65,0x2e,0x61,0x29,0x28,0x72, 0x29,0x2c,0x71,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65, 0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x21,0x72,0x29,0x2c,0x4b,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x70,0x65,0x2e,0x61,0x29,0x28,0x71,0x2c,0x32,0x29,0x2c,0x59, 0x3d,0x4b,0x5b,0x30,0x5d,0x2c,0x51,0x3d,0x4b,0x5b,0x31,0x5d,0x2c,0x58,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28, 0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75, 0x73,0x65,0x49,0x6d,0x70,0x65,0x72,0x61,0x74,0x69,0x76,0x65,0x48,0x61,0x6e,0x64, 0x6c,0x65,0x29,0x28,0x74,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x48,0x7d,0x29,0x2c,0x5b,0x48,0x5d, 0x29,0x2c,0x67,0x65,0x2e,0x61,0x26,0x26,0x21,0x47,0x26,0x26,0x72,0x26,0x26,0x28, 0x58,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x68,0x65,0x28,0x29,0x29,0x2c, 0x6d,0x7c,0x7c,0x72,0x7c,0x7c,0x59,0x3f,0x72,0x26,0x26,0x59,0x26,0x26,0x51,0x28, 0x21,0x31,0x29,0x3a,0x51,0x28,0x21,0x30,0x29,0x3b,0x76,0x61,0x72,0x20,0x4a,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x5f,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x48,0x2e,0x61,0x64, 0x64,0x28,0x29,0x2c,0x6f,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x55,0x2e,0x61,0x29,0x28,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x2c,0x22,0x6b,0x65,0x79,0x64,0x6f,0x77,0x6e,0x22,0x2c,0x6e,0x65, 0x29,0x2c,0x72,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x55,0x2e,0x61,0x29,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x2c,0x22,0x66,0x6f,0x63,0x75,0x73,0x22,0x2c,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x65,0x74, 0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x65,0x29,0x7d,0x29,0x2c,0x21,0x30, 0x29,0x2c,0x44,0x26,0x26,0x44,0x28,0x29,0x2c,0x5f,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x68,0x65,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x48, 0x2e,0x64,0x69,0x61,0x6c,0x6f,0x67,0x26,0x26,0x65,0x26,0x26,0x21,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x76,0x65,0x2e,0x61,0x29,0x28,0x48,0x2e,0x64,0x69,0x61,0x6c, 0x6f,0x67,0x2c,0x65,0x29,0x26,0x26,0x28,0x58,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e, 0x74,0x3d,0x65,0x2c,0x48,0x2e,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2e,0x66,0x6f,0x63, 0x75,0x73,0x28,0x29,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x5a,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x5f,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x28,0x48,0x2e,0x72,0x65, 0x6d,0x6f,0x76,0x65,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6f,0x65,0x2e, 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x6f,0x65,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x72,0x65,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x72,0x65,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x28,0x29,0x2c,0x45,0x29,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d, 0x28,0x65,0x3d,0x58,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7c,0x7c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x2e,0x66,0x6f,0x63,0x75,0x73,0x7c,0x7c,0x65,0x2e, 0x66,0x6f,0x63,0x75,0x73,0x28,0x6a,0x29,0x2c,0x58,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x6e,0x75,0x6c,0x6c,0x29,0x7d,0x29,0x29,0x3b,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x26,0x26,0x24, 0x26,0x26,0x4a,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x72,0x2c,0x24,0x2c,0x4a,0x5d,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x45,0x66,0x66, 0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x59,0x26,0x26,0x5a,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x59,0x2c,0x5a,0x5d,0x29, 0x2c,0x62,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x5a,0x28,0x29,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x65,0x65,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x5f,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x66,0x28,0x4f,0x26,0x26,0x56,0x28,0x29, 0x26,0x26,0x48,0x2e,0x69,0x73,0x54,0x6f,0x70,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x68,0x65,0x28,0x29,0x3b,0x48,0x2e,0x64, 0x69,0x61,0x6c,0x6f,0x67,0x26,0x26,0x65,0x26,0x26,0x21,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x76,0x65,0x2e,0x61,0x29,0x28,0x48,0x2e,0x64,0x69,0x61,0x6c,0x6f,0x67, 0x2c,0x65,0x29,0x26,0x26,0x48,0x2e,0x64,0x69,0x61,0x6c,0x6f,0x67,0x2e,0x66,0x6f, 0x63,0x75,0x73,0x28,0x29,0x7d,0x7d,0x29,0x29,0x2c,0x74,0x65,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x5f,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3d, 0x3d,0x3d,0x65,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x61,0x72,0x67,0x65, 0x74,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x76,0x7c,0x7c,0x76,0x28,0x65, 0x29,0x2c,0x21,0x30,0x3d,0x3d,0x3d,0x66,0x26,0x26,0x49,0x28,0x29,0x29,0x7d,0x29, 0x29,0x2c,0x6e,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x5f,0x65,0x2e,0x61, 0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x68, 0x26,0x26,0x32,0x37,0x3d,0x3d,0x3d,0x65,0x2e,0x6b,0x65,0x79,0x43,0x6f,0x64,0x65, 0x26,0x26,0x48,0x2e,0x69,0x73,0x54,0x6f,0x70,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29, 0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x67,0x7c,0x7c,0x67,0x28,0x65,0x29, 0x2c,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x65,0x76,0x65,0x6e, 0x74,0x65,0x64,0x7c,0x7c,0x49,0x28,0x29,0x29,0x7d,0x29,0x29,0x2c,0x72,0x65,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29, 0x28,0x29,0x2c,0x6f,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75, 0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x29,0x2c,0x69,0x65,0x3d,0x6d,0x3b,0x69,0x66, 0x28,0x21,0x24,0x7c,0x7c,0x21,0x28,0x72,0x7c,0x7c,0x69,0x65,0x26,0x26,0x21,0x59, 0x29,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61, 0x72,0x20,0x61,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x69,0x2c,0x72,0x65,0x66,0x3a,0x48, 0x2e,0x73,0x65,0x74,0x44,0x69,0x61,0x6c,0x6f,0x67,0x52,0x65,0x66,0x2c,0x22,0x61, 0x72,0x69,0x61,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x3a,0x22,0x64,0x69,0x61,0x6c, 0x6f,0x67,0x22,0x3d,0x3d,0x3d,0x69,0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x7d, 0x2c,0x57,0x2c,0x7b,0x73,0x74,0x79,0x6c,0x65,0x3a,0x63,0x2c,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x2c,0x74,0x61,0x62,0x49,0x6e,0x64,0x65,0x78, 0x3a,0x2d,0x31,0x7d,0x29,0x2c,0x75,0x65,0x3d,0x6b,0x3f,0x6b,0x28,0x61,0x65,0x29, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x64,0x69,0x76,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69, 0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x61,0x65,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x75,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x6c,0x2c,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x22,0x64,0x6f,0x63,0x75,0x6d, 0x65,0x6e,0x74,0x22,0x7d,0x29,0x7d,0x29,0x29,0x3b,0x69,0x65,0x26,0x26,0x28,0x75, 0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x69,0x65,0x2c,0x7b,0x61,0x70,0x70,0x65,0x61,0x72,0x3a,0x21,0x30,0x2c,0x75,0x6e, 0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x78,0x69,0x74,0x3a,0x21,0x30,0x2c,0x69, 0x6e,0x3a,0x21,0x21,0x72,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x3a,0x52,0x2c,0x6f, 0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x3a,0x46,0x2c,0x6f,0x6e,0x45,0x78,0x69, 0x74,0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x51, 0x28,0x21,0x30,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x4c,0x7c,0x7c,0x4c,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x72,0x67, 0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72, 0x3a,0x4d,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x3a,0x42,0x2c, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x3a,0x7a,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x75,0x65,0x7d,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x63, 0x65,0x3d,0x6e,0x75,0x6c,0x6c,0x3b,0x69,0x66,0x28,0x66,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6c,0x65,0x3d,0x62,0x3b,0x63,0x65,0x3d,0x43,0x28,0x7b,0x72,0x65,0x66,0x3a, 0x48,0x2e,0x73,0x65,0x74,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x52,0x65,0x66, 0x2c,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x74,0x65,0x7d,0x29,0x2c,0x6c,0x65, 0x26,0x26,0x28,0x63,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x6c,0x65,0x2c,0x7b,0x61,0x70,0x70,0x65,0x61,0x72,0x3a,0x21, 0x30,0x2c,0x69,0x6e,0x3a,0x21,0x21,0x72,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x63,0x65,0x7d,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x70,0x2e,0x46, 0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x54,0x2e,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x50,0x6f,0x72,0x74, 0x61,0x6c,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x73, 0x29,0x28,0x70,0x2e,0x46,0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x2c,0x7b,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x63,0x65,0x2c,0x75,0x65,0x5d,0x7d,0x29, 0x2c,0x24,0x29,0x7d,0x29,0x7d,0x29,0x29,0x3b,0x44,0x65,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4d,0x6f,0x64,0x61,0x6c,0x22,0x3b, 0x76,0x61,0x72,0x20,0x4e,0x65,0x2c,0x49,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x44,0x65,0x2c,0x7b,0x4d,0x61,0x6e,0x61, 0x67,0x65,0x72,0x3a,0x53,0x65,0x7d,0x29,0x2c,0x52,0x65,0x3d,0x5b,0x22,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x22,0x2c,0x22,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x43, 0x6c,0x61,0x73,0x73,0x65,0x73,0x22,0x5d,0x2c,0x4c,0x65,0x3d,0x28,0x4e,0x65,0x3d, 0x7b,0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x4e, 0x65,0x2c,0x52,0x2c,0x22,0x73,0x68,0x6f,0x77,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x4e,0x65,0x2c,0x4c,0x2c,0x22,0x73,0x68, 0x6f,0x77,0x22,0x29,0x2c,0x4e,0x65,0x29,0x2c,0x46,0x65,0x3d,0x75,0x2e,0x66,0x6f, 0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x43,0x6c,0x61,0x73,0x73,0x65,0x73,0x2c,0x6c,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x7b,0x7d,0x3a,0x63,0x2c,0x73, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x52, 0x65,0x29,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73, 0x65,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x71,0x28,0x65,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x73,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x7c,0x7c, 0x73,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x28,0x65,0x2c,0x74,0x29,0x7d,0x29, 0x2c,0x5b,0x73,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x58,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x61,0x64,0x64,0x45, 0x6e,0x64,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3a,0x56,0x7d,0x2c,0x73,0x29, 0x2c,0x7b,0x7d,0x2c,0x7b,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x66,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x52,0x65,0x66,0x3a,0x69,0x2e,0x72,0x65,0x66,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x63,0x6c, 0x6f,0x6e,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x69,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x22,0x66,0x61, 0x64,0x65,0x22,0x2c,0x6e,0x2c,0x69,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x4c,0x65,0x5b,0x65,0x5d,0x2c,0x6c,0x5b, 0x65,0x5d,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x46,0x65, 0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x69, 0x6e,0x3a,0x21,0x31,0x2c,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x33,0x30,0x30, 0x2c,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x21,0x31, 0x2c,0x75,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x78,0x69,0x74,0x3a,0x21, 0x31,0x2c,0x61,0x70,0x70,0x65,0x61,0x72,0x3a,0x21,0x31,0x7d,0x2c,0x46,0x65,0x2e, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x61,0x64, 0x65,0x22,0x3b,0x76,0x61,0x72,0x20,0x4d,0x65,0x2c,0x42,0x65,0x3d,0x46,0x65,0x2c, 0x7a,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29,0x28,0x22, 0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x62,0x6f,0x64,0x79,0x22,0x29, 0x2c,0x55,0x65,0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c, 0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x22,0x5d,0x2c,0x57,0x65,0x3d,0x28,0x4d,0x65,0x3d,0x7b, 0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x4d,0x65, 0x2c,0x52,0x2c,0x22,0x73,0x68,0x6f,0x77,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6d,0x2e,0x61,0x29,0x28,0x4d,0x65,0x2c,0x4c,0x2c,0x22,0x73,0x68,0x6f, 0x77,0x22,0x29,0x2c,0x4d,0x65,0x29,0x2c,0x24,0x65,0x3d,0x75,0x2e,0x66,0x6f,0x72, 0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62, 0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29, 0x28,0x65,0x2c,0x55,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x6f, 0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x58,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x61,0x64,0x64,0x45,0x6e,0x64, 0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x3a,0x56,0x7d,0x2c,0x6c,0x29,0x2c,0x7b, 0x7d,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x52,0x65,0x66,0x3a,0x63,0x2e,0x72,0x65, 0x66,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x75,0x2e,0x63,0x6c,0x6f,0x6e,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x63, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x29,0x2c,0x7b, 0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29, 0x28,0x69,0x2c,0x63,0x2e,0x70,0x72,0x6f,0x70,0x73,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x28,0x65,0x3d,0x3d,0x3d,0x52,0x7c,0x7c,0x65,0x3d,0x3d, 0x3d,0x46,0x29,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e, 0x2c,0x22,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x69,0x6e,0x67,0x22,0x29,0x2c,0x57,0x65, 0x5b,0x65,0x5d,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x24, 0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b, 0x69,0x6e,0x3a,0x21,0x31,0x2c,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45,0x6e,0x74, 0x65,0x72,0x3a,0x21,0x31,0x2c,0x75,0x6e,0x6d,0x6f,0x75,0x6e,0x74,0x4f,0x6e,0x45, 0x78,0x69,0x74,0x3a,0x21,0x31,0x2c,0x61,0x70,0x70,0x65,0x61,0x72,0x3a,0x21,0x31, 0x7d,0x2c,0x24,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65, 0x3d,0x22,0x4f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x54,0x6f,0x67,0x67,0x6c, 0x69,0x6e,0x67,0x22,0x3b,0x76,0x61,0x72,0x20,0x48,0x65,0x3d,0x24,0x65,0x2c,0x56, 0x65,0x3d,0x75,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78, 0x74,0x28,0x7b,0x6f,0x6e,0x48,0x69,0x64,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x7d,0x7d,0x29,0x2c,0x47,0x65,0x3d,0x5b,0x22,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x76,0x61,0x72,0x69,0x61,0x6e, 0x74,0x22,0x5d,0x2c,0x71,0x65,0x3d,0x7b,0x22,0x61,0x72,0x69,0x61,0x2d,0x6c,0x61, 0x62,0x65,0x6c,0x22,0x3a,0x43,0x2e,0x61,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x2c, 0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x43,0x2e,0x61,0x2e,0x66,0x75,0x6e,0x63, 0x2c,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x3a,0x43,0x2e,0x61,0x2e,0x6f,0x6e,0x65, 0x4f,0x66,0x28,0x5b,0x22,0x77,0x68,0x69,0x74,0x65,0x22,0x5d,0x29,0x7d,0x2c,0x4b, 0x65,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c, 0x69,0x3d,0x65,0x2e,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x2c,0x75,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x47,0x65,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74, 0x2c,0x74,0x79,0x70,0x65,0x3a,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x22,0x62,0x74, 0x6e,0x2d,0x63,0x6c,0x6f,0x73,0x65,0x22,0x2c,0x69,0x26,0x26,0x22,0x62,0x74,0x6e, 0x2d,0x63,0x6c,0x6f,0x73,0x65,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x69,0x29,0x2c,0x6e,0x29,0x7d,0x2c,0x75,0x29,0x29,0x7d,0x29,0x29,0x3b,0x4b,0x65, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x43,0x6c, 0x6f,0x73,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x4b,0x65,0x2e,0x70,0x72, 0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x3d,0x71,0x65,0x2c,0x4b,0x65,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x22,0x61,0x72,0x69, 0x61,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3a,0x22,0x43,0x6c,0x6f,0x73,0x65,0x22, 0x7d,0x3b,0x76,0x61,0x72,0x20,0x59,0x65,0x3d,0x4b,0x65,0x2c,0x51,0x65,0x3d,0x5b, 0x22,0x63,0x6c,0x6f,0x73,0x65,0x4c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x22,0x63,0x6c, 0x6f,0x73,0x65,0x56,0x61,0x72,0x69,0x61,0x6e,0x74,0x22,0x2c,0x22,0x63,0x6c,0x6f, 0x73,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x22,0x2c,0x22,0x6f,0x6e,0x48,0x69,0x64, 0x65,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x5d,0x2c,0x58, 0x65,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x65,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x4c,0x61,0x62,0x65,0x6c, 0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x56,0x61,0x72,0x69,0x61,0x6e, 0x74,0x2c,0x61,0x3d,0x65,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x42,0x75,0x74,0x74,0x6f, 0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x6f,0x6e,0x48,0x69,0x64,0x65,0x2c,0x6c,0x3d,0x65, 0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x73,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x51,0x65,0x29,0x2c,0x66,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74, 0x65,0x78,0x74,0x29,0x28,0x56,0x65,0x29,0x2c,0x64,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6c,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x66,0x7c,0x7c,0x66,0x2e,0x6f, 0x6e,0x48,0x69,0x64,0x65,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x63,0x7c, 0x7c,0x63,0x28,0x29,0x7d,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64, 0x69,0x76,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66, 0x3a,0x74,0x7d,0x2c,0x73,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x6c,0x2c,0x61,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x59,0x65,0x2c,0x7b,0x22,0x61,0x72,0x69, 0x61,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3a,0x6e,0x2c,0x76,0x61,0x72,0x69,0x61, 0x6e,0x74,0x3a,0x69,0x2c,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x3a,0x64,0x7d,0x29, 0x5d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x58,0x65,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x63,0x6c,0x6f,0x73,0x65,0x4c,0x61, 0x62,0x65,0x6c,0x3a,0x22,0x43,0x6c,0x6f,0x73,0x65,0x22,0x2c,0x63,0x6c,0x6f,0x73, 0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x21,0x31,0x7d,0x3b,0x76,0x61,0x72,0x20, 0x4a,0x65,0x3d,0x58,0x65,0x2c,0x5a,0x65,0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65, 0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22, 0x5d,0x2c,0x65,0x74,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65, 0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69, 0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c, 0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c, 0x5a,0x65,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x6f,0x66,0x66,0x63, 0x61,0x6e,0x76,0x61,0x73,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x4a,0x65,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c, 0x75,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x61,0x28,0x29,0x28,0x69,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x65,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22, 0x4f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x48,0x65,0x61,0x64,0x65,0x72,0x22, 0x2c,0x65,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73, 0x3d,0x7b,0x63,0x6c,0x6f,0x73,0x65,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x43,0x6c, 0x6f,0x73,0x65,0x22,0x2c,0x63,0x6c,0x6f,0x73,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e, 0x3a,0x21,0x31,0x7d,0x3b,0x76,0x61,0x72,0x20,0x74,0x74,0x2c,0x6e,0x74,0x3d,0x65, 0x74,0x2c,0x72,0x74,0x3d,0x28,0x74,0x74,0x3d,0x22,0x68,0x35,0x22,0x2c,0x75,0x2e, 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x64,0x69,0x76,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c, 0x65,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x74,0x74,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29, 0x29,0x2c,0x6f,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29, 0x28,0x22,0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x2d,0x74,0x69,0x74,0x6c, 0x65,0x22,0x2c,0x7b,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x3a,0x72,0x74, 0x7d,0x29,0x2c,0x69,0x74,0x3d,0x6e,0x28,0x31,0x37,0x29,0x2c,0x61,0x74,0x3d,0x6e, 0x28,0x31,0x32,0x29,0x2c,0x75,0x74,0x3d,0x6e,0x28,0x32,0x32,0x29,0x2c,0x63,0x74, 0x3d,0x6e,0x28,0x32,0x33,0x29,0x3b,0x76,0x61,0x72,0x20,0x6c,0x74,0x3d,0x6e,0x28, 0x33,0x35,0x29,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x72,0x65, 0x70,0x6c,0x61,0x63,0x65,0x28,0x6e,0x65,0x77,0x20,0x52,0x65,0x67,0x45,0x78,0x70, 0x28,0x22,0x28,0x5e,0x7c,0x5c,0x5c,0x73,0x29,0x22,0x2b,0x74,0x2b,0x22,0x28,0x3f, 0x3a,0x5c,0x5c,0x73,0x7c,0x24,0x29,0x22,0x2c,0x22,0x67,0x22,0x29,0x2c,0x22,0x24, 0x31,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x73,0x2b, 0x2f,0x67,0x2c,0x22,0x20,0x22,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28, 0x2f,0x5e,0x5c,0x73,0x2a,0x7c,0x5c,0x73,0x2a,0x24,0x2f,0x67,0x2c,0x22,0x22,0x29, 0x7d,0x76,0x61,0x72,0x20,0x66,0x74,0x2c,0x64,0x74,0x3d,0x22,0x2e,0x66,0x69,0x78, 0x65,0x64,0x2d,0x74,0x6f,0x70,0x2c,0x20,0x2e,0x66,0x69,0x78,0x65,0x64,0x2d,0x62, 0x6f,0x74,0x74,0x6f,0x6d,0x2c,0x20,0x2e,0x69,0x73,0x2d,0x66,0x69,0x78,0x65,0x64, 0x2c,0x20,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x74,0x6f,0x70,0x22,0x2c,0x70, 0x74,0x3d,0x22,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x74,0x6f,0x70,0x22,0x2c, 0x68,0x74,0x3d,0x22,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74,0x6f,0x67,0x67, 0x6c,0x65,0x72,0x22,0x2c,0x76,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x74,0x2e,0x61,0x29, 0x28,0x6e,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x63,0x74,0x2e,0x61,0x29,0x28,0x6e,0x29,0x3b,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x65,0x2e,0x61,0x29,0x28,0x74,0x68,0x69, 0x73,0x2c,0x6e,0x29,0x2c,0x74,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69, 0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x78,0x65,0x2e,0x61,0x29, 0x28,0x6e,0x2c,0x5b,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x61,0x64,0x6a,0x75,0x73,0x74, 0x41,0x6e,0x64,0x53,0x74,0x6f,0x72,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x5b,0x65,0x5d, 0x3b,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x5b,0x65,0x5d,0x3d,0x72,0x2c, 0x45,0x28,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x65,0x2c,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x70, 0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,0x45,0x28,0x74,0x2c,0x65,0x29, 0x29,0x2b,0x6e,0x2c,0x22,0x70,0x78,0x22,0x29,0x29,0x29,0x7d,0x7d,0x2c,0x7b,0x6b, 0x65,0x79,0x3a,0x22,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74, 0x5b,0x65,0x5d,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x6e,0x26,0x26, 0x28,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65, 0x74,0x5b,0x65,0x5d,0x2c,0x45,0x28,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6d,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x2c,0x6e,0x29,0x29,0x29,0x7d,0x7d, 0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x73,0x65,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69, 0x6e,0x65,0x72,0x53,0x74,0x79,0x6c,0x65,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x74, 0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x74,0x2e,0x61,0x29, 0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x29,0x2c,0x22,0x73, 0x65,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x53,0x74,0x79,0x6c,0x65, 0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69, 0x73,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x29,0x3b,0x69,0x66,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x65,0x2e, 0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x3f,0x65,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x74,0x29,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x3f,0x21,0x21, 0x74,0x26,0x26,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63, 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x29,0x3a,0x2d,0x31,0x21,0x3d,0x3d, 0x28,0x22,0x20,0x22,0x2b,0x28,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x2e,0x62,0x61,0x73,0x65,0x56,0x61,0x6c,0x7c,0x7c,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x29,0x2b,0x22,0x20,0x22,0x29,0x2e,0x69,0x6e,0x64, 0x65,0x78,0x4f,0x66,0x28,0x22,0x20,0x22,0x2b,0x74,0x2b,0x22,0x20,0x22,0x29,0x7d, 0x28,0x65,0x2c,0x74,0x29,0x7c,0x7c,0x28,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3f,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2b,0x22,0x20, 0x22,0x2b,0x74,0x3a,0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x28,0x22,0x63,0x6c,0x61,0x73,0x73,0x22,0x2c,0x28,0x65,0x2e,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x26,0x26,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2e,0x62,0x61,0x73,0x65,0x56,0x61,0x6c,0x7c,0x7c,0x22,0x22, 0x29,0x2b,0x22,0x20,0x22,0x2b,0x74,0x29,0x29,0x7d,0x28,0x72,0x2c,0x22,0x6d,0x6f, 0x64,0x61,0x6c,0x2d,0x6f,0x70,0x65,0x6e,0x22,0x29,0x2c,0x65,0x2e,0x73,0x63,0x72, 0x6f,0x6c,0x6c,0x42,0x61,0x72,0x57,0x69,0x64,0x74,0x68,0x29,0x7b,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x52,0x54,0x4c,0x3f,0x22,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x70,0x61,0x64, 0x64,0x69,0x6e,0x67,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x69,0x3d,0x74,0x68,0x69, 0x73,0x2e,0x69,0x73,0x52,0x54,0x4c,0x3f,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4c, 0x65,0x66,0x74,0x22,0x3a,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x52,0x69,0x67,0x68, 0x74,0x22,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x74,0x2e,0x61,0x29,0x28, 0x72,0x2c,0x64,0x74,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x74,0x2e,0x61,0x64,0x6a,0x75,0x73,0x74,0x41,0x6e,0x64,0x53,0x74,0x6f, 0x72,0x65,0x28,0x6f,0x2c,0x6e,0x2c,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x42, 0x61,0x72,0x57,0x69,0x64,0x74,0x68,0x29,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6c,0x74,0x2e,0x61,0x29,0x28,0x72,0x2c,0x70,0x74,0x29,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x61,0x64,0x6a, 0x75,0x73,0x74,0x41,0x6e,0x64,0x53,0x74,0x6f,0x72,0x65,0x28,0x69,0x2c,0x6e,0x2c, 0x2d,0x65,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x42,0x61,0x72,0x57,0x69,0x64,0x74, 0x68,0x29,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x74,0x2e, 0x61,0x29,0x28,0x72,0x2c,0x68,0x74,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x61,0x64,0x6a,0x75,0x73,0x74,0x41,0x6e,0x64, 0x53,0x74,0x6f,0x72,0x65,0x28,0x69,0x2c,0x6e,0x2c,0x65,0x2e,0x73,0x63,0x72,0x6f, 0x6c,0x6c,0x42,0x61,0x72,0x57,0x69,0x64,0x74,0x68,0x29,0x7d,0x29,0x29,0x7d,0x7d, 0x7d,0x2c,0x7b,0x6b,0x65,0x79,0x3a,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x6f, 0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x53,0x74,0x79,0x6c,0x65,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x74,0x68,0x69,0x73,0x3b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x69,0x74,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x74,0x2e,0x61,0x29,0x28,0x6e,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65, 0x29,0x2c,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e, 0x65,0x72,0x53,0x74,0x79,0x6c,0x65,0x22,0x2c,0x74,0x68,0x69,0x73,0x29,0x2e,0x63, 0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x65,0x29,0x3b,0x76,0x61,0x72,0x20, 0x72,0x3d,0x74,0x68,0x69,0x73,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e, 0x74,0x28,0x29,0x3b,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x3f,0x65, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76, 0x65,0x28,0x74,0x29,0x3a,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d,0x3d,0x3d, 0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x3f,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3d,0x73, 0x74,0x28,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x74,0x29, 0x3a,0x65,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28, 0x22,0x63,0x6c,0x61,0x73,0x73,0x22,0x2c,0x73,0x74,0x28,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x26,0x26,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x2e,0x62,0x61,0x73,0x65,0x56,0x61,0x6c,0x7c,0x7c,0x22,0x22,0x2c, 0x74,0x29,0x29,0x7d,0x28,0x72,0x2c,0x22,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x6f,0x70, 0x65,0x6e,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x6f,0x3d,0x74,0x68,0x69,0x73,0x2e, 0x69,0x73,0x52,0x54,0x4c,0x3f,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x4c,0x65, 0x66,0x74,0x22,0x3a,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x52,0x69,0x67,0x68, 0x74,0x22,0x2c,0x69,0x3d,0x74,0x68,0x69,0x73,0x2e,0x69,0x73,0x52,0x54,0x4c,0x3f, 0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x6d,0x61, 0x72,0x67,0x69,0x6e,0x52,0x69,0x67,0x68,0x74,0x22,0x3b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6c,0x74,0x2e,0x61,0x29,0x28,0x72,0x2c,0x64,0x74,0x29,0x2e,0x66,0x6f, 0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65,0x73,0x74, 0x6f,0x72,0x65,0x28,0x6f,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6c,0x74,0x2e,0x61,0x29,0x28,0x72,0x2c,0x70,0x74,0x29,0x2e,0x66, 0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65,0x73, 0x74,0x6f,0x72,0x65,0x28,0x69,0x2c,0x65,0x29,0x7d,0x29,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6c,0x74,0x2e,0x61,0x29,0x28,0x72,0x2c,0x68,0x74,0x29,0x2e, 0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x2e,0x72,0x65, 0x73,0x74,0x6f,0x72,0x65,0x28,0x69,0x2c,0x65,0x29,0x7d,0x29,0x29,0x7d,0x7d,0x5d, 0x29,0x2c,0x6e,0x7d,0x28,0x53,0x65,0x29,0x3b,0x76,0x61,0x72,0x20,0x67,0x74,0x3d, 0x76,0x74,0x2c,0x6d,0x74,0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78, 0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x22,0x61,0x72,0x69,0x61,0x2d,0x6c, 0x61,0x62,0x65,0x6c,0x6c,0x65,0x64,0x62,0x79,0x22,0x2c,0x22,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x22,0x2c,0x22,0x73,0x68,0x6f,0x77,0x22,0x2c,0x22,0x62, 0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x2c,0x22,0x6b,0x65,0x79,0x62,0x6f,0x61, 0x72,0x64,0x22,0x2c,0x22,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x22,0x6f,0x6e, 0x45,0x73,0x63,0x61,0x70,0x65,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x22, 0x6f,0x6e,0x53,0x68,0x6f,0x77,0x22,0x2c,0x22,0x6f,0x6e,0x48,0x69,0x64,0x65,0x22, 0x2c,0x22,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x2c,0x22,0x61,0x75, 0x74,0x6f,0x46,0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x65,0x6e,0x66,0x6f,0x72,0x63, 0x65,0x46,0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x72,0x65,0x73,0x74,0x6f,0x72,0x65, 0x46,0x6f,0x63,0x75,0x73,0x22,0x2c,0x22,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x46, 0x6f,0x63,0x75,0x73,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x2c,0x22,0x6f,0x6e, 0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74, 0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x22,0x2c,0x22,0x6f, 0x6e,0x45,0x6e,0x74,0x65,0x72,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72, 0x69,0x6e,0x67,0x22,0x2c,0x22,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x22,0x2c, 0x22,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x22,0x2c,0x22,0x6d,0x61,0x6e,0x61,0x67,0x65,0x72,0x22,0x5d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x74,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x48,0x65,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x65,0x29,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x79,0x74,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x42,0x65,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65, 0x29,0x29,0x7d,0x76,0x61,0x72,0x20,0x5f,0x74,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77, 0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73, 0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x2c,0x6c,0x3d,0x65,0x5b,0x22,0x61,0x72,0x69,0x61,0x2d,0x6c,0x61,0x62,0x65, 0x6c,0x6c,0x65,0x64,0x62,0x79,0x22,0x5d,0x2c,0x73,0x3d,0x65,0x2e,0x70,0x6c,0x61, 0x63,0x65,0x6d,0x65,0x6e,0x74,0x2c,0x66,0x3d,0x65,0x2e,0x73,0x68,0x6f,0x77,0x2c, 0x68,0x3d,0x65,0x2e,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x2c,0x76,0x3d,0x65, 0x2e,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x2c,0x67,0x3d,0x65,0x2e,0x73,0x63, 0x72,0x6f,0x6c,0x6c,0x2c,0x6d,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x73,0x63,0x61,0x70, 0x65,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x2c,0x62,0x3d,0x65,0x2e,0x6f,0x6e,0x53, 0x68,0x6f,0x77,0x2c,0x79,0x3d,0x65,0x2e,0x6f,0x6e,0x48,0x69,0x64,0x65,0x2c,0x5f, 0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x77,0x3d,0x65, 0x2e,0x61,0x75,0x74,0x6f,0x46,0x6f,0x63,0x75,0x73,0x2c,0x4f,0x3d,0x65,0x2e,0x65, 0x6e,0x66,0x6f,0x72,0x63,0x65,0x46,0x6f,0x63,0x75,0x73,0x2c,0x78,0x3d,0x65,0x2e, 0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x2c,0x45,0x3d,0x65, 0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x4f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x2c,0x6a,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72, 0x65,0x64,0x2c,0x6b,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x2c,0x53,0x3d, 0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x2c,0x43,0x3d,0x65,0x2e, 0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x2c,0x41,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x6e, 0x74,0x65,0x72,0x69,0x6e,0x67,0x2c,0x54,0x3d,0x65,0x2e,0x6f,0x6e,0x45,0x78,0x69, 0x74,0x65,0x64,0x2c,0x50,0x3d,0x65,0x2e,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70, 0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x44,0x3d,0x65,0x2e,0x6d,0x61, 0x6e,0x61,0x67,0x65,0x72,0x2c,0x4e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f, 0x2e,0x61,0x29,0x28,0x65,0x2c,0x6d,0x74,0x29,0x2c,0x49,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x29,0x3b,0x6e, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22, 0x6f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x22,0x29,0x3b,0x76,0x61,0x72,0x20, 0x52,0x3d,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43, 0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x69,0x65,0x2e,0x61,0x29,0x7c,0x7c,0x7b, 0x7d,0x29,0x2e,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x4c,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6c,0x65,0x2e,0x61,0x29,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x52,0x7c,0x7c, 0x52,0x28,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x79,0x7c,0x7c,0x79,0x28,0x29, 0x7d,0x29,0x29,0x2c,0x46,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75, 0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x6f,0x6e,0x48,0x69,0x64, 0x65,0x3a,0x4c,0x7d,0x7d,0x29,0x2c,0x5b,0x4c,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20, 0x4d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61, 0x6c,0x6c,0x62,0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x29,0x2c,0x7b,0x7d, 0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2c,0x22,0x2d,0x62,0x61, 0x63,0x6b,0x64,0x72,0x6f,0x70,0x22,0x29,0x2c,0x50,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x2c,0x5b,0x50,0x2c,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x56,0x65,0x2e, 0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x46,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x49,0x65,0x2c,0x7b,0x73,0x68,0x6f, 0x77,0x3a,0x66,0x2c,0x72,0x65,0x66,0x3a,0x74,0x2c,0x62,0x61,0x63,0x6b,0x64,0x72, 0x6f,0x70,0x3a,0x68,0x2c,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x5f, 0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x3a,0x76,0x2c,0x61,0x75,0x74,0x6f, 0x46,0x6f,0x63,0x75,0x73,0x3a,0x77,0x2c,0x65,0x6e,0x66,0x6f,0x72,0x63,0x65,0x46, 0x6f,0x63,0x75,0x73,0x3a,0x4f,0x26,0x26,0x21,0x67,0x2c,0x72,0x65,0x73,0x74,0x6f, 0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x3a,0x78,0x2c,0x72,0x65,0x73,0x74,0x6f,0x72, 0x65,0x46,0x6f,0x63,0x75,0x73,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x45,0x2c, 0x6f,0x6e,0x45,0x73,0x63,0x61,0x70,0x65,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x3a, 0x6d,0x2c,0x6f,0x6e,0x53,0x68,0x6f,0x77,0x3a,0x62,0x2c,0x6f,0x6e,0x48,0x69,0x64, 0x65,0x3a,0x4c,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x26,0x26,0x28,0x65,0x2e,0x73,0x74, 0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3d,0x22, 0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x22,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61, 0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65, 0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x6e,0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79, 0x28,0x74,0x3e,0x31,0x3f,0x74,0x2d,0x31,0x3a,0x30,0x29,0x2c,0x72,0x3d,0x31,0x3b, 0x72,0x3c,0x74,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x5b,0x72,0x2d,0x31,0x5d,0x3d,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5b,0x72,0x5d,0x3b,0x6e,0x75,0x6c,0x6c, 0x3d,0x3d,0x43,0x7c,0x7c,0x43,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69, 0x64,0x20,0x30,0x2c,0x5b,0x65,0x5d,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e, 0x29,0x29,0x7d,0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x3a,0x41, 0x2c,0x6f,0x6e,0x45,0x6e,0x74,0x65,0x72,0x65,0x64,0x3a,0x6a,0x2c,0x6f,0x6e,0x45, 0x78,0x69,0x74,0x3a,0x6b,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x69,0x6e,0x67,0x3a, 0x53,0x2c,0x6f,0x6e,0x45,0x78,0x69,0x74,0x65,0x64,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x65,0x26,0x26,0x28,0x65,0x2e,0x73,0x74,0x79, 0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x3d,0x22,0x22, 0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x61,0x72,0x67,0x75, 0x6d,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x6e,0x3d,0x6e, 0x65,0x77,0x20,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x3e,0x31,0x3f,0x74,0x2d,0x31, 0x3a,0x30,0x29,0x2c,0x72,0x3d,0x31,0x3b,0x72,0x3c,0x74,0x3b,0x72,0x2b,0x2b,0x29, 0x6e,0x5b,0x72,0x2d,0x31,0x5d,0x3d,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x5b,0x72,0x5d,0x3b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x54,0x7c,0x7c,0x54,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x6e,0x29,0x7d,0x2c, 0x6d,0x61,0x6e,0x61,0x67,0x65,0x72,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x44,0x7c,0x7c,0x28,0x67,0x3f, 0x28,0x49,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x7c,0x7c,0x28,0x49,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x6e,0x65,0x77,0x20,0x67,0x74,0x28,0x7b,0x68, 0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x4f,0x76, 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3a,0x21,0x31,0x7d,0x29,0x29,0x2c,0x49,0x2e,0x63, 0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x3a,0x28,0x66,0x74,0x7c,0x7c,0x28,0x66,0x74, 0x3d,0x6e,0x65,0x77,0x20,0x76,0x74,0x28,0x65,0x29,0x29,0x2c,0x66,0x74,0x29,0x29, 0x3b,0x76,0x61,0x72,0x20,0x65,0x7d,0x28,0x29,0x2c,0x74,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x3a,0x62,0x74,0x2c,0x62,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70, 0x54,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x79,0x74,0x2c,0x72,0x65, 0x6e,0x64,0x65,0x72,0x42,0x61,0x63,0x6b,0x64,0x72,0x6f,0x70,0x3a,0x4d,0x2c,0x72, 0x65,0x6e,0x64,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69, 0x76,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x22,0x64,0x69, 0x61,0x6c,0x6f,0x67,0x22,0x7d,0x2c,0x65,0x29,0x2c,0x4e,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x69, 0x2c,0x6e,0x2c,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2c,0x22, 0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x73,0x29,0x29,0x2c,0x22, 0x61,0x72,0x69,0x61,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x6c,0x65,0x64,0x62,0x79,0x22, 0x3a,0x6c,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x63,0x7d,0x29,0x29, 0x7d,0x7d,0x29,0x7d,0x29,0x7d,0x29,0x29,0x3b,0x5f,0x74,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4f,0x66,0x66,0x63,0x61,0x6e,0x76, 0x61,0x73,0x22,0x2c,0x5f,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72, 0x6f,0x70,0x73,0x3d,0x7b,0x73,0x68,0x6f,0x77,0x3a,0x21,0x31,0x2c,0x62,0x61,0x63, 0x6b,0x64,0x72,0x6f,0x70,0x3a,0x21,0x30,0x2c,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72, 0x64,0x3a,0x21,0x30,0x2c,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x21,0x31,0x2c,0x61, 0x75,0x74,0x6f,0x46,0x6f,0x63,0x75,0x73,0x3a,0x21,0x30,0x2c,0x65,0x6e,0x66,0x6f, 0x72,0x63,0x65,0x46,0x6f,0x63,0x75,0x73,0x3a,0x21,0x30,0x2c,0x72,0x65,0x73,0x74, 0x6f,0x72,0x65,0x46,0x6f,0x63,0x75,0x73,0x3a,0x21,0x30,0x2c,0x70,0x6c,0x61,0x63, 0x65,0x6d,0x65,0x6e,0x74,0x3a,0x22,0x73,0x74,0x61,0x72,0x74,0x22,0x7d,0x3b,0x76, 0x61,0x72,0x20,0x77,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73, 0x69,0x67,0x6e,0x28,0x5f,0x74,0x2c,0x7b,0x42,0x6f,0x64,0x79,0x3a,0x7a,0x65,0x2c, 0x48,0x65,0x61,0x64,0x65,0x72,0x3a,0x6e,0x74,0x2c,0x54,0x69,0x74,0x6c,0x65,0x3a, 0x6f,0x74,0x7d,0x29,0x2c,0x4f,0x74,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72, 0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x69, 0x65,0x2e,0x61,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x77,0x74,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c, 0x73,0x68,0x6f,0x77,0x3a,0x21,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x6e,0x7c,0x7c, 0x21,0x6e,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x7d,0x2c,0x65,0x29, 0x29,0x7d,0x29,0x29,0x3b,0x4f,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e, 0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x62,0x61,0x72,0x4f,0x66,0x66,0x63,0x61, 0x6e,0x76,0x61,0x73,0x22,0x3b,0x76,0x61,0x72,0x20,0x78,0x74,0x3d,0x4f,0x74,0x2c, 0x45,0x74,0x3d,0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22, 0x65,0x78,0x70,0x61,0x6e,0x64,0x22,0x2c,0x22,0x76,0x61,0x72,0x69,0x61,0x6e,0x74, 0x22,0x2c,0x22,0x62,0x67,0x22,0x2c,0x22,0x66,0x69,0x78,0x65,0x64,0x22,0x2c,0x22, 0x73,0x74,0x69,0x63,0x6b,0x79,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x22,0x2c,0x22,0x61,0x73,0x22,0x2c,0x22,0x65,0x78,0x70,0x61,0x6e,0x64, 0x65,0x64,0x22,0x2c,0x22,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x22,0x2c,0x22, 0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x63,0x6f,0x6c,0x6c,0x61, 0x70,0x73,0x65,0x4f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x22,0x5d,0x2c,0x6a,0x74, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29,0x28,0x22,0x6e,0x61, 0x76,0x62,0x61,0x72,0x2d,0x74,0x65,0x78,0x74,0x22,0x2c,0x7b,0x43,0x6f,0x6d,0x70, 0x6f,0x6e,0x65,0x6e,0x74,0x3a,0x22,0x73,0x70,0x61,0x6e,0x22,0x7d,0x29,0x2c,0x6b, 0x74,0x3d,0x75,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x61,0x29,0x28, 0x65,0x2c,0x7b,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x3a,0x22,0x6f,0x6e,0x54, 0x6f,0x67,0x67,0x6c,0x65,0x22,0x7d,0x29,0x2c,0x69,0x3d,0x6e,0x2e,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x2c,0x63,0x3d,0x6e,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64, 0x2c,0x66,0x3d,0x6e,0x2e,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x2c,0x68,0x3d,0x6e, 0x2e,0x62,0x67,0x2c,0x76,0x3d,0x6e,0x2e,0x66,0x69,0x78,0x65,0x64,0x2c,0x67,0x3d, 0x6e,0x2e,0x73,0x74,0x69,0x63,0x6b,0x79,0x2c,0x6d,0x3d,0x6e,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x62,0x3d,0x6e,0x2e,0x61,0x73,0x2c,0x79,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x62,0x3f,0x22,0x6e,0x61,0x76,0x22, 0x3a,0x62,0x2c,0x5f,0x3d,0x6e,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x2c, 0x77,0x3d,0x6e,0x2e,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x2c,0x4f,0x3d,0x6e, 0x2e,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2c,0x78,0x3d,0x6e,0x2e,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x4f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2c,0x45, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x45, 0x74,0x29,0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x64,0x2e,0x61,0x29, 0x28,0x69,0x2c,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x22,0x29,0x2c,0x6b,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x43,0x61,0x6c,0x6c,0x62, 0x61,0x63,0x6b,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x4f,0x7c,0x7c,0x4f,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x76,0x6f,0x69,0x64,0x20,0x30,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x2c,0x78,0x26,0x26,0x5f,0x26,0x26,0x28,0x6e,0x75,0x6c,0x6c,0x3d, 0x3d,0x77,0x7c,0x7c,0x77,0x28,0x21,0x31,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x4f,0x2c, 0x78,0x2c,0x5f,0x2c,0x77,0x5d,0x29,0x3b,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d, 0x3d,0x45,0x2e,0x72,0x6f,0x6c,0x65,0x26,0x26,0x22,0x6e,0x61,0x76,0x22,0x21,0x3d, 0x3d,0x79,0x26,0x26,0x28,0x45,0x2e,0x72,0x6f,0x6c,0x65,0x3d,0x22,0x6e,0x61,0x76, 0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x53,0x3d, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6a,0x2c,0x22,0x2d,0x65,0x78, 0x70,0x61,0x6e,0x64,0x22,0x29,0x3b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x3d, 0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x26,0x26,0x28,0x53,0x3d,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x53,0x2c,0x22,0x2d,0x22,0x29,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x63,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x43, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x75,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d, 0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x7b,0x6f,0x6e,0x54,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x77,0x3f,0x76,0x6f,0x69,0x64,0x20,0x30,0x3a, 0x77,0x28,0x21,0x5f,0x29,0x7d,0x2c,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x3a, 0x6a,0x2c,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x3a,0x21,0x21,0x5f,0x7d,0x7d, 0x29,0x2c,0x5b,0x6a,0x2c,0x5f,0x2c,0x77,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x69,0x65,0x2e,0x61,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x43,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6c,0x2e, 0x61,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x6b,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x70,0x2e,0x6a,0x73,0x78,0x29,0x28,0x79,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d,0x2c,0x45,0x29,0x2c, 0x7b,0x7d,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28, 0x29,0x28,0x6d,0x2c,0x6a,0x2c,0x63,0x26,0x26,0x53,0x2c,0x66,0x26,0x26,0x22,0x22, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6a,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x66,0x29,0x2c,0x68,0x26,0x26,0x22,0x62,0x67,0x2d, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x68,0x29,0x2c,0x67,0x26,0x26,0x22, 0x73,0x74,0x69,0x63,0x6b,0x79,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x67,0x29,0x2c,0x76,0x26,0x26,0x22,0x66,0x69,0x78,0x65,0x64,0x2d,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x76,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x7d,0x29, 0x7d,0x29,0x29,0x3b,0x6b,0x74,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x50,0x72, 0x6f,0x70,0x73,0x3d,0x7b,0x65,0x78,0x70,0x61,0x6e,0x64,0x3a,0x21,0x30,0x2c,0x76, 0x61,0x72,0x69,0x61,0x6e,0x74,0x3a,0x22,0x6c,0x69,0x67,0x68,0x74,0x22,0x2c,0x63, 0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x4f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x3a, 0x21,0x31,0x7d,0x2c,0x6b,0x74,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61, 0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x62,0x61,0x72,0x22,0x3b,0x74,0x2e,0x61,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x6b,0x74, 0x2c,0x7b,0x42,0x72,0x61,0x6e,0x64,0x3a,0x67,0x2c,0x43,0x6f,0x6c,0x6c,0x61,0x70, 0x73,0x65,0x3a,0x63,0x65,0x2c,0x4f,0x66,0x66,0x63,0x61,0x6e,0x76,0x61,0x73,0x3a, 0x78,0x74,0x2c,0x54,0x65,0x78,0x74,0x3a,0x6a,0x74,0x2c,0x54,0x6f,0x67,0x67,0x6c, 0x65,0x3a,0x64,0x65,0x7d,0x29,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72, 0x69,0x63,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x72,0x3d,0x6e,0x28,0x32,0x29,0x2c, 0x6f,0x3d,0x6e,0x28,0x33,0x29,0x2c,0x69,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x61,0x3d, 0x6e,0x2e,0x6e,0x28,0x69,0x29,0x2c,0x75,0x3d,0x6e,0x28,0x32,0x30,0x29,0x2c,0x63, 0x3d,0x6e,0x2e,0x6e,0x28,0x75,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x73, 0x3d,0x6e,0x28,0x31,0x29,0x2c,0x66,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x74,0x79,0x70,0x65,0x22, 0x2c,0x22,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x22,0x5d,0x2c,0x64,0x3d,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x63,0x2e,0x61,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x2c,0x74, 0x6f,0x6f,0x6c,0x74,0x69,0x70,0x3a,0x63,0x2e,0x61,0x2e,0x62,0x6f,0x6f,0x6c,0x2c, 0x61,0x73,0x3a,0x63,0x2e,0x61,0x2e,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79, 0x70,0x65,0x7d,0x2c,0x70,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52, 0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x69,0x3d,0x76, 0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x22,0x64,0x69,0x76,0x22,0x3a, 0x6e,0x2c,0x75,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c, 0x63,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c,0x6c,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x22,0x76,0x61,0x6c,0x69,0x64,0x22,0x3a,0x63,0x2c, 0x64,0x3d,0x65,0x2e,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2c,0x70,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x64,0x26,0x26,0x64,0x2c,0x68,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x66,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x69,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61, 0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d, 0x2c,0x68,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x75,0x2c,0x22,0x22, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6c,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x70,0x3f,0x22,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x22,0x3a,0x22,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x22,0x29,0x29,0x7d,0x29, 0x29,0x7d,0x29,0x29,0x3b,0x70,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61, 0x6d,0x65,0x3d,0x22,0x46,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x22,0x2c,0x70,0x2e, 0x70,0x72,0x6f,0x70,0x54,0x79,0x70,0x65,0x73,0x3d,0x64,0x3b,0x76,0x61,0x72,0x20, 0x68,0x3d,0x70,0x2c,0x76,0x3d,0x6c,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x28,0x7b,0x7d,0x29,0x2c,0x67,0x3d,0x6e,0x28,0x37,0x29, 0x2c,0x6d,0x3d,0x5b,0x22,0x69,0x64,0x22,0x2c,0x22,0x62,0x73,0x50,0x72,0x65,0x66, 0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c, 0x22,0x74,0x79,0x70,0x65,0x22,0x2c,0x22,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x22, 0x2c,0x22,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x61,0x73, 0x22,0x5d,0x2c,0x62,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65, 0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x69,0x64,0x2c,0x69,0x3d,0x65,0x2e, 0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x75,0x3d,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x74,0x79,0x70,0x65,0x2c, 0x66,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x63,0x3f,0x22,0x63,0x68, 0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3a,0x63,0x2c,0x64,0x3d,0x65,0x2e,0x69,0x73, 0x56,0x61,0x6c,0x69,0x64,0x2c,0x70,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d, 0x3d,0x64,0x26,0x26,0x64,0x2c,0x68,0x3d,0x65,0x2e,0x69,0x73,0x49,0x6e,0x76,0x61, 0x6c,0x69,0x64,0x2c,0x62,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x68, 0x26,0x26,0x68,0x2c,0x79,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x5f,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3d,0x3d,0x3d,0x79,0x3f,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a, 0x79,0x2c,0x77,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28, 0x65,0x2c,0x6d,0x29,0x2c,0x4f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e, 0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x29,0x2e,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61,0x29,0x28,0x69,0x2c, 0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b,0x2d,0x69,0x6e,0x70,0x75, 0x74,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x5f,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x77, 0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x74,0x79,0x70,0x65, 0x3a,0x66,0x2c,0x69,0x64,0x3a,0x6e,0x7c,0x7c,0x4f,0x2c,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x75,0x2c,0x69,0x2c,0x70,0x26,0x26, 0x22,0x69,0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x62,0x26,0x26,0x22,0x69, 0x73,0x2d,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x29,0x3b,0x62,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d, 0x22,0x46,0x6f,0x72,0x6d,0x43,0x68,0x65,0x63,0x6b,0x49,0x6e,0x70,0x75,0x74,0x22, 0x3b,0x76,0x61,0x72,0x20,0x79,0x3d,0x62,0x2c,0x5f,0x3d,0x5b,0x22,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x22,0x2c,0x22,0x68,0x74,0x6d,0x6c,0x46,0x6f,0x72,0x22,0x5d,0x2c,0x77,0x3d, 0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x65,0x2e,0x68, 0x74,0x6d,0x6c,0x46,0x6f,0x72,0x2c,0x63,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x5f,0x29,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6c,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29, 0x28,0x76,0x29,0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e, 0x61,0x29,0x28,0x6e,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63,0x6b, 0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x63,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x68,0x74,0x6d,0x6c,0x46,0x6f,0x72,0x3a,0x75, 0x7c,0x7c,0x66,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28, 0x29,0x28,0x69,0x2c,0x6e,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x77,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d, 0x43,0x68,0x65,0x63,0x6b,0x4c,0x61,0x62,0x65,0x6c,0x22,0x3b,0x76,0x61,0x72,0x20, 0x4f,0x3d,0x77,0x2c,0x78,0x3d,0x5b,0x22,0x69,0x64,0x22,0x2c,0x22,0x62,0x73,0x50, 0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x62,0x73,0x53,0x77,0x69,0x74,0x63,0x68, 0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x22, 0x2c,0x22,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x22,0x69,0x73,0x56, 0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, 0x22,0x2c,0x22,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x54,0x6f,0x6f,0x6c,0x74, 0x69,0x70,0x22,0x2c,0x22,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x22,0x2c,0x22, 0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x54,0x79,0x70,0x65,0x22,0x2c,0x22,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x73,0x74,0x79,0x6c,0x65, 0x22,0x2c,0x22,0x74,0x69,0x74,0x6c,0x65,0x22,0x2c,0x22,0x74,0x79,0x70,0x65,0x22, 0x2c,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d,0x2c,0x45,0x3d,0x6c,0x2e,0x66,0x6f, 0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e, 0x69,0x64,0x2c,0x69,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c, 0x75,0x3d,0x65,0x2e,0x62,0x73,0x53,0x77,0x69,0x74,0x63,0x68,0x50,0x72,0x65,0x66, 0x69,0x78,0x2c,0x63,0x3d,0x65,0x2e,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2c,0x66,0x3d, 0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x63,0x26,0x26,0x63,0x2c,0x64,0x3d, 0x65,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,0x70,0x3d,0x76,0x6f,0x69, 0x64,0x20,0x30,0x21,0x3d,0x3d,0x64,0x26,0x26,0x64,0x2c,0x6d,0x3d,0x65,0x2e,0x69, 0x73,0x56,0x61,0x6c,0x69,0x64,0x2c,0x62,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x6d,0x26,0x26,0x6d,0x2c,0x5f,0x3d,0x65,0x2e,0x69,0x73,0x49,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x2c,0x77,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d, 0x5f,0x26,0x26,0x5f,0x2c,0x45,0x3d,0x65,0x2e,0x66,0x65,0x65,0x64,0x62,0x61,0x63, 0x6b,0x54,0x6f,0x6f,0x6c,0x74,0x69,0x70,0x2c,0x6a,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x21,0x3d,0x3d,0x45,0x26,0x26,0x45,0x2c,0x6b,0x3d,0x65,0x2e,0x66,0x65,0x65, 0x64,0x62,0x61,0x63,0x6b,0x2c,0x53,0x3d,0x65,0x2e,0x66,0x65,0x65,0x64,0x62,0x61, 0x63,0x6b,0x54,0x79,0x70,0x65,0x2c,0x43,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x41,0x3d,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2c,0x54, 0x3d,0x65,0x2e,0x74,0x69,0x74,0x6c,0x65,0x2c,0x50,0x3d,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3d,0x3d,0x3d,0x54,0x3f,0x22,0x22,0x3a,0x54,0x2c,0x44,0x3d,0x65,0x2e,0x74, 0x79,0x70,0x65,0x2c,0x4e,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x44, 0x3f,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x3a,0x44,0x2c,0x49,0x3d, 0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x2c,0x52,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x2c,0x4c,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x46,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x4c,0x3f,0x22,0x69,0x6e,0x70,0x75,0x74,0x22, 0x3a,0x4c,0x2c,0x4d,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29, 0x28,0x65,0x2c,0x78,0x29,0x3b,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67, 0x2e,0x61,0x29,0x28,0x69,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x68,0x65,0x63, 0x6b,0x22,0x29,0x2c,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61, 0x29,0x28,0x75,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x77,0x69,0x74,0x63,0x68, 0x22,0x29,0x3b,0x76,0x61,0x72,0x20,0x42,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6c,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x29, 0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x2c,0x7a,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6c,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3a,0x6e,0x7c,0x7c,0x42, 0x7d,0x7d,0x29,0x2c,0x5b,0x42,0x2c,0x6e,0x5d,0x29,0x2c,0x55,0x3d,0x6e,0x75,0x6c, 0x6c,0x21,0x3d,0x49,0x26,0x26,0x21,0x31,0x21,0x3d,0x3d,0x49,0x26,0x26,0x21,0x52, 0x2c,0x57,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x79,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x4d,0x29, 0x2c,0x7b,0x7d,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x73,0x77,0x69,0x74,0x63, 0x68,0x22,0x3d,0x3d,0x3d,0x4e,0x3f,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78, 0x22,0x3a,0x4e,0x2c,0x72,0x65,0x66,0x3a,0x74,0x2c,0x69,0x73,0x56,0x61,0x6c,0x69, 0x64,0x3a,0x62,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x77,0x2c, 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3a,0x70,0x2c,0x61,0x73,0x3a,0x46,0x7d, 0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x76,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64, 0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x7a,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x73,0x74,0x79,0x6c,0x65,0x3a, 0x41,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28, 0x43,0x2c,0x49,0x26,0x26,0x69,0x2c,0x66,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x69,0x2c,0x22,0x2d,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x22,0x29, 0x2c,0x22,0x73,0x77,0x69,0x74,0x63,0x68,0x22,0x3d,0x3d,0x3d,0x4e,0x26,0x26,0x75, 0x29,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x52,0x7c,0x7c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x73,0x2e,0x46, 0x72,0x61,0x67,0x6d,0x65,0x6e,0x74,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x5b,0x57,0x2c,0x55,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x4f,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x50, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x49,0x7d,0x29,0x2c,0x6b,0x26, 0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x68, 0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x53,0x2c,0x74,0x6f,0x6f,0x6c,0x74,0x69,0x70, 0x3a,0x6a,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x6b,0x7d,0x29,0x5d, 0x7d,0x29,0x7d,0x29,0x7d,0x29,0x7d,0x29,0x29,0x3b,0x45,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x43,0x68,0x65, 0x63,0x6b,0x22,0x3b,0x76,0x61,0x72,0x20,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x45,0x2c,0x7b,0x49,0x6e,0x70,0x75,0x74, 0x3a,0x79,0x2c,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x4f,0x7d,0x29,0x2c,0x6b,0x3d,0x6e, 0x28,0x39,0x29,0x2c,0x53,0x3d,0x28,0x6e,0x28,0x36,0x35,0x29,0x2c,0x5b,0x22,0x62, 0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x74,0x79,0x70,0x65,0x22,0x2c, 0x22,0x73,0x69,0x7a,0x65,0x22,0x2c,0x22,0x68,0x74,0x6d,0x6c,0x53,0x69,0x7a,0x65, 0x22,0x2c,0x22,0x69,0x64,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x22,0x2c,0x22,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x69,0x73, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x70,0x6c,0x61,0x69,0x6e,0x74, 0x65,0x78,0x74,0x22,0x2c,0x22,0x72,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x22,0x2c, 0x22,0x61,0x73,0x22,0x5d,0x29,0x2c,0x43,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61, 0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x69,0x2c,0x75,0x3d,0x65, 0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x63,0x3d,0x65,0x2e,0x74,0x79, 0x70,0x65,0x2c,0x66,0x3d,0x65,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x64,0x3d,0x65,0x2e, 0x68,0x74,0x6d,0x6c,0x53,0x69,0x7a,0x65,0x2c,0x70,0x3d,0x65,0x2e,0x69,0x64,0x2c, 0x68,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x6d,0x3d, 0x65,0x2e,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x2c,0x62,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x21,0x3d,0x3d,0x6d,0x26,0x26,0x6d,0x2c,0x79,0x3d,0x65,0x2e,0x69,0x73, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2c,0x5f,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30, 0x21,0x3d,0x3d,0x79,0x26,0x26,0x79,0x2c,0x77,0x3d,0x65,0x2e,0x70,0x6c,0x61,0x69, 0x6e,0x74,0x65,0x78,0x74,0x2c,0x4f,0x3d,0x65,0x2e,0x72,0x65,0x61,0x64,0x4f,0x6e, 0x6c,0x79,0x2c,0x78,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x45,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x78,0x3f,0x22,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x78, 0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65, 0x2c,0x53,0x29,0x2c,0x43,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x75, 0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x29,0x2e,0x63,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3b,0x28,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x67,0x2e,0x61,0x29,0x28,0x75,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x29,0x2c,0x77,0x29,0x3f,0x6e,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x22,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x75,0x2c,0x22,0x2d,0x70,0x6c,0x61,0x69,0x6e, 0x74,0x65,0x78,0x74,0x22,0x29,0x2c,0x21,0x30,0x29,0x3a,0x28,0x69,0x3d,0x7b,0x7d, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x69,0x2c,0x75, 0x2c,0x21,0x30,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29, 0x28,0x69,0x2c,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x75,0x2c,0x22, 0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x66,0x29,0x2c,0x66,0x29, 0x2c,0x6e,0x3d,0x69,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x45,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x6a,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x63,0x2c,0x73,0x69,0x7a,0x65,0x3a,0x64,0x2c,0x72,0x65,0x66, 0x3a,0x74,0x2c,0x72,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x3a,0x4f,0x2c,0x69,0x64, 0x3a,0x70,0x7c,0x7c,0x43,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x61,0x28,0x29,0x28,0x68,0x2c,0x6e,0x2c,0x62,0x26,0x26,0x22,0x69,0x73,0x2d,0x76, 0x61,0x6c,0x69,0x64,0x22,0x2c,0x5f,0x26,0x26,0x22,0x69,0x73,0x2d,0x69,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x22,0x3d,0x3d,0x3d, 0x63,0x26,0x26,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x75,0x2c,0x22, 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x22,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x43,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46, 0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x22,0x3b,0x76,0x61,0x72,0x20, 0x41,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28, 0x43,0x2c,0x7b,0x46,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x3a,0x68,0x7d,0x29,0x2c, 0x54,0x3d,0x6e,0x28,0x32,0x38,0x29,0x2c,0x50,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x54,0x2e,0x61,0x29,0x28,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61, 0x74,0x69,0x6e,0x67,0x22,0x29,0x2c,0x44,0x3d,0x5b,0x22,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x49,0x64,0x22,0x2c,0x22,0x61,0x73,0x22,0x5d,0x2c,0x4e,0x3d,0x6c,0x2e, 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d, 0x65,0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x2c,0x69,0x3d,0x65,0x2e, 0x61,0x73,0x2c,0x61,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x69,0x3f, 0x22,0x64,0x69,0x76,0x22,0x3a,0x69,0x2c,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x44,0x29,0x2c,0x63,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6c,0x2e,0x75,0x73,0x65,0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x7b,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3a,0x6e,0x7d,0x7d,0x29, 0x2c,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x76,0x2e,0x50,0x72,0x6f, 0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x63,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x61,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x75,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x7d, 0x29,0x29,0x7d,0x29,0x7d,0x29,0x29,0x3b,0x4e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x47,0x72,0x6f,0x75,0x70, 0x22,0x3b,0x76,0x61,0x72,0x20,0x49,0x3d,0x4e,0x2c,0x52,0x3d,0x6e,0x28,0x31,0x33, 0x38,0x29,0x2c,0x4c,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22,0x62,0x73,0x50,0x72, 0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x22,0x2c,0x22, 0x76,0x69,0x73,0x75,0x61,0x6c,0x6c,0x79,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x2c, 0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x68,0x74,0x6d, 0x6c,0x46,0x6f,0x72,0x22,0x5d,0x2c,0x46,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61, 0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x61,0x73,0x2c, 0x69,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x6e,0x3f,0x22,0x6c,0x61, 0x62,0x65,0x6c,0x22,0x3a,0x6e,0x2c,0x75,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65, 0x66,0x69,0x78,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x2c,0x66, 0x3d,0x65,0x2e,0x76,0x69,0x73,0x75,0x61,0x6c,0x6c,0x79,0x48,0x69,0x64,0x64,0x65, 0x6e,0x2c,0x64,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c, 0x70,0x3d,0x65,0x2e,0x68,0x74,0x6d,0x6c,0x46,0x6f,0x72,0x2c,0x68,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x4c,0x29,0x2c,0x6d, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x29,0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x49,0x64,0x3b,0x75,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61,0x29, 0x28,0x75,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x29, 0x3b,0x76,0x61,0x72,0x20,0x62,0x3d,0x22,0x63,0x6f,0x6c,0x2d,0x66,0x6f,0x72,0x6d, 0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3b,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22, 0x3d,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x63,0x26,0x26,0x28,0x62,0x3d, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x62,0x2c,0x22,0x20,0x22,0x29, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x62,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x63,0x29,0x29,0x3b,0x76,0x61,0x72,0x20,0x79,0x3d, 0x61,0x28,0x29,0x28,0x64,0x2c,0x75,0x2c,0x66,0x26,0x26,0x22,0x76,0x69,0x73,0x75, 0x61,0x6c,0x6c,0x79,0x2d,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x2c,0x63,0x26,0x26, 0x62,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x3d,0x70,0x7c,0x7c,0x6d, 0x2c,0x63,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x52,0x2e,0x61,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29, 0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x61,0x73,0x3a,0x22,0x6c,0x61,0x62,0x65, 0x6c,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x79,0x2c,0x68, 0x74,0x6d,0x6c,0x46,0x6f,0x72,0x3a,0x70,0x7d,0x2c,0x68,0x29,0x29,0x3a,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x69,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74, 0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x79,0x2c,0x68,0x74,0x6d, 0x6c,0x46,0x6f,0x72,0x3a,0x70,0x7d,0x2c,0x68,0x29,0x29,0x7d,0x29,0x29,0x3b,0x46, 0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f, 0x72,0x6d,0x4c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x46,0x2e,0x64,0x65,0x66,0x61,0x75, 0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x3a, 0x21,0x31,0x2c,0x76,0x69,0x73,0x75,0x61,0x6c,0x6c,0x79,0x48,0x69,0x64,0x64,0x65, 0x6e,0x3a,0x21,0x31,0x7d,0x3b,0x76,0x61,0x72,0x20,0x4d,0x3d,0x46,0x2c,0x42,0x3d, 0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x69,0x64,0x22,0x5d,0x2c,0x7a,0x3d, 0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65, 0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x65,0x2e,0x69, 0x64,0x2c,0x63,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28, 0x65,0x2c,0x42,0x29,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e, 0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x29,0x2e,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61,0x29,0x28,0x6e,0x2c, 0x22,0x66,0x6f,0x72,0x6d,0x2d,0x72,0x61,0x6e,0x67,0x65,0x22,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x69,0x6e,0x70, 0x75,0x74,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x63, 0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x72,0x61,0x6e,0x67, 0x65,0x22,0x2c,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x69,0x2c,0x6e,0x29,0x2c,0x69,0x64,0x3a,0x75, 0x7c,0x7c,0x66,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x7a,0x2e,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x52,0x61,0x6e, 0x67,0x65,0x22,0x3b,0x76,0x61,0x72,0x20,0x55,0x3d,0x7a,0x2c,0x57,0x3d,0x5b,0x22, 0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x73,0x69,0x7a,0x65,0x22, 0x2c,0x22,0x68,0x74,0x6d,0x6c,0x53,0x69,0x7a,0x65,0x22,0x2c,0x22,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x69,0x73,0x56,0x61,0x6c,0x69,0x64, 0x22,0x2c,0x22,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x22,0x69, 0x64,0x22,0x5d,0x2c,0x24,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52, 0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66, 0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x73,0x69,0x7a,0x65,0x2c,0x75,0x3d,0x65,0x2e, 0x68,0x74,0x6d,0x6c,0x53,0x69,0x7a,0x65,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x66,0x3d,0x65,0x2e,0x69,0x73,0x56,0x61,0x6c, 0x69,0x64,0x2c,0x64,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x66,0x26, 0x26,0x66,0x2c,0x70,0x3d,0x65,0x2e,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, 0x2c,0x68,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x70,0x26,0x26,0x70, 0x2c,0x6d,0x3d,0x65,0x2e,0x69,0x64,0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x57,0x29,0x2c,0x79,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6c,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74, 0x29,0x28,0x76,0x29,0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67, 0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72, 0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x62,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x73,0x69, 0x7a,0x65,0x3a,0x75,0x2c,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x63,0x2c,0x6e,0x2c,0x69,0x26,0x26, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x2c,0x22,0x2d,0x22,0x29, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x69,0x29,0x2c,0x64,0x26,0x26,0x22,0x69, 0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x68,0x26,0x26,0x22,0x69,0x73,0x2d, 0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x29,0x2c,0x69,0x64,0x3a,0x6d,0x7c,0x7c, 0x79,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x24,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x53,0x65,0x6c,0x65,0x63, 0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x48,0x3d,0x24,0x2c,0x56,0x3d,0x5b,0x22,0x62, 0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x22,0x2c,0x22,0x61,0x73,0x22,0x2c,0x22,0x6d,0x75,0x74,0x65,0x64, 0x22,0x5d,0x2c,0x47,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65, 0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69, 0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c, 0x75,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d, 0x3d,0x3d,0x75,0x3f,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3a,0x75,0x2c,0x6c,0x3d, 0x65,0x2e,0x6d,0x75,0x74,0x65,0x64,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x56,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61,0x29,0x28, 0x6e,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x74,0x65,0x78,0x74,0x22,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28,0x63,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x66,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x61,0x28,0x29,0x28,0x69,0x2c,0x6e,0x2c,0x6c,0x26,0x26,0x22,0x74,0x65,0x78, 0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x22,0x29,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b, 0x47,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46, 0x6f,0x72,0x6d,0x54,0x65,0x78,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x71,0x3d,0x47, 0x2c,0x4b,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x6a,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61, 0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d, 0x2c,0x65,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x74,0x79, 0x70,0x65,0x3a,0x22,0x73,0x77,0x69,0x74,0x63,0x68,0x22,0x7d,0x29,0x29,0x7d,0x29, 0x29,0x3b,0x4b,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d, 0x22,0x53,0x77,0x69,0x74,0x63,0x68,0x22,0x3b,0x76,0x61,0x72,0x20,0x59,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x4b,0x2c,0x7b, 0x49,0x6e,0x70,0x75,0x74,0x3a,0x6a,0x2e,0x49,0x6e,0x70,0x75,0x74,0x2c,0x4c,0x61, 0x62,0x65,0x6c,0x3a,0x6a,0x2e,0x4c,0x61,0x62,0x65,0x6c,0x7d,0x29,0x2c,0x51,0x3d, 0x5b,0x22,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x22,0x2c,0x22,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x22,0x2c,0x22, 0x6c,0x61,0x62,0x65,0x6c,0x22,0x5d,0x2c,0x58,0x3d,0x6c,0x2e,0x66,0x6f,0x72,0x77, 0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x65,0x2e,0x62,0x73, 0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x69,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x75,0x3d,0x65,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x2c,0x63,0x3d,0x65,0x2e,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49,0x64,0x2c, 0x6c,0x3d,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x51,0x29,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x67,0x2e,0x61, 0x29,0x28,0x6e,0x2c,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x66,0x6c,0x6f,0x61,0x74,0x69, 0x6e,0x67,0x22,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73, 0x78,0x73,0x29,0x28,0x49,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61, 0x29,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x72, 0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61, 0x28,0x29,0x28,0x69,0x2c,0x6e,0x29,0x2c,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x49, 0x64,0x3a,0x63,0x7d,0x2c,0x66,0x29,0x2c,0x7b,0x7d,0x2c,0x7b,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x5b,0x75,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x7b,0x68, 0x74,0x6d,0x6c,0x46,0x6f,0x72,0x3a,0x63,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x6c,0x7d,0x29,0x5d,0x7d,0x29,0x29,0x7d,0x29,0x29,0x3b,0x58,0x2e,0x64, 0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x46,0x6c,0x6f,0x61, 0x74,0x69,0x6e,0x67,0x4c,0x61,0x62,0x65,0x6c,0x22,0x3b,0x76,0x61,0x72,0x20,0x4a, 0x3d,0x58,0x2c,0x5a,0x3d,0x5b,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x22,0x2c,0x22,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x22,0x2c,0x22,0x61, 0x73,0x22,0x5d,0x2c,0x65,0x65,0x3d,0x7b,0x5f,0x72,0x65,0x66,0x3a,0x63,0x2e,0x61, 0x2e,0x61,0x6e,0x79,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x3a,0x63, 0x2e,0x61,0x2e,0x62,0x6f,0x6f,0x6c,0x2c,0x61,0x73,0x3a,0x63,0x2e,0x61,0x2e,0x65, 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x7d,0x2c,0x74,0x65,0x3d,0x6c, 0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x69,0x3d,0x65, 0x2e,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x2c,0x75,0x3d,0x65,0x2e,0x61, 0x73,0x2c,0x63,0x3d,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x75,0x3f,0x22, 0x66,0x6f,0x72,0x6d,0x22,0x3a,0x75,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6f,0x2e,0x61,0x29,0x28,0x65,0x2c,0x5a,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x63,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x6c,0x29,0x2c, 0x7b,0x7d,0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x61,0x28,0x29,0x28,0x6e,0x2c,0x69,0x26,0x26,0x22,0x77,0x61, 0x73,0x2d,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x22,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x29,0x3b,0x74,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61, 0x6d,0x65,0x3d,0x22,0x46,0x6f,0x72,0x6d,0x22,0x2c,0x74,0x65,0x2e,0x70,0x72,0x6f, 0x70,0x54,0x79,0x70,0x65,0x73,0x3d,0x65,0x65,0x3b,0x74,0x2e,0x61,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x74,0x65,0x2c,0x7b, 0x47,0x72,0x6f,0x75,0x70,0x3a,0x49,0x2c,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3a, 0x41,0x2c,0x46,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x3a,0x50,0x2c,0x43,0x68,0x65, 0x63,0x6b,0x3a,0x6a,0x2c,0x53,0x77,0x69,0x74,0x63,0x68,0x3a,0x59,0x2c,0x4c,0x61, 0x62,0x65,0x6c,0x3a,0x4d,0x2c,0x54,0x65,0x78,0x74,0x3a,0x71,0x2c,0x52,0x61,0x6e, 0x67,0x65,0x3a,0x55,0x2c,0x53,0x65,0x6c,0x65,0x63,0x74,0x3a,0x48,0x2c,0x46,0x6c, 0x6f,0x61,0x74,0x69,0x6e,0x67,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x4a,0x7d,0x29,0x7d, 0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74,0x72,0x69,0x63,0x74,0x22,0x3b,0x76,0x61, 0x72,0x20,0x72,0x3d,0x6e,0x28,0x39,0x29,0x2c,0x6f,0x3d,0x6e,0x28,0x32,0x29,0x2c, 0x69,0x3d,0x6e,0x28,0x33,0x29,0x2c,0x61,0x3d,0x6e,0x28,0x34,0x29,0x2c,0x75,0x3d, 0x6e,0x2e,0x6e,0x28,0x61,0x29,0x2c,0x63,0x3d,0x28,0x6e,0x28,0x31,0x35,0x38,0x29, 0x2c,0x6e,0x28,0x30,0x29,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x35,0x30,0x29,0x2c,0x73, 0x3d,0x6e,0x28,0x33,0x35,0x29,0x2c,0x66,0x3d,0x6e,0x28,0x38,0x35,0x29,0x2c,0x64, 0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x26,0x26,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x3f,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x65,0x2e,0x63,0x75,0x72,0x72,0x65, 0x6e,0x74,0x3d,0x74,0x7d,0x3a,0x65,0x7d,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x75,0x73,0x65, 0x4d,0x65,0x6d,0x6f,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x64,0x28,0x65, 0x29,0x2c,0x72,0x3d,0x64,0x28,0x74,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x26,0x26,0x6e, 0x28,0x65,0x29,0x2c,0x72,0x26,0x26,0x72,0x28,0x65,0x29,0x7d,0x7d,0x28,0x65,0x2c, 0x74,0x29,0x7d,0x29,0x2c,0x5b,0x65,0x2c,0x74,0x5d,0x29,0x7d,0x2c,0x68,0x3d,0x6e, 0x28,0x36,0x31,0x29,0x2c,0x76,0x3d,0x6e,0x28,0x32,0x31,0x29,0x2c,0x67,0x3d,0x63, 0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x6e, 0x75,0x6c,0x6c,0x29,0x2c,0x6d,0x3d,0x6e,0x28,0x33,0x33,0x29,0x2c,0x62,0x3d,0x6e, 0x28,0x38,0x36,0x29,0x2c,0x79,0x3d,0x6e,0x28,0x31,0x29,0x2c,0x5f,0x3d,0x5b,0x22, 0x61,0x73,0x22,0x2c,0x22,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22, 0x61,0x63,0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x22,0x2c,0x22,0x72,0x6f,0x6c,0x65, 0x22,0x2c,0x22,0x6f,0x6e,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x22,0x5d,0x3b,0x76, 0x61,0x72,0x20,0x77,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x7d,0x2c,0x4f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d,0x2e,0x61,0x29,0x28, 0x22,0x65,0x76,0x65,0x6e,0x74,0x2d,0x6b,0x65,0x79,0x22,0x29,0x2c,0x78,0x3d,0x63, 0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e, 0x2c,0x72,0x2c,0x6f,0x3d,0x65,0x2e,0x61,0x73,0x2c,0x69,0x3d,0x76,0x6f,0x69,0x64, 0x20,0x30,0x3d,0x3d,0x3d,0x6f,0x3f,0x22,0x64,0x69,0x76,0x22,0x3a,0x6f,0x2c,0x61, 0x3d,0x65,0x2e,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2c,0x75,0x3d,0x65,0x2e, 0x61,0x63,0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x2c,0x6c,0x3d,0x65,0x2e,0x72,0x6f, 0x6c,0x65,0x2c,0x64,0x3d,0x65,0x2e,0x6f,0x6e,0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e, 0x2c,0x62,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x29,0x72,0x65,0x74,0x75, 0x72,0x6e,0x7b,0x7d,0x3b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x72,0x2c,0x6f,0x3d,0x7b, 0x7d,0x2c,0x69,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28, 0x65,0x29,0x3b,0x66,0x6f,0x72,0x28,0x72,0x3d,0x30,0x3b,0x72,0x3c,0x69,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x6e,0x3d,0x69,0x5b,0x72,0x5d, 0x2c,0x74,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x6e,0x29,0x3e,0x3d,0x30, 0x7c,0x7c,0x28,0x6f,0x5b,0x6e,0x5d,0x3d,0x65,0x5b,0x6e,0x5d,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6f,0x7d,0x28,0x65,0x2c,0x5f,0x29,0x2c,0x78,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x66,0x2e,0x61,0x29,0x28,0x29,0x2c,0x45,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28, 0x21,0x31,0x29,0x2c,0x6a,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x75, 0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x76,0x2e,0x61,0x29,0x2c, 0x6b,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x75,0x73,0x65,0x43,0x6f, 0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x67,0x29,0x3b,0x6b,0x26,0x26,0x28,0x6c,0x3d, 0x6c,0x7c,0x7c,0x22,0x74,0x61,0x62,0x6c,0x69,0x73,0x74,0x22,0x2c,0x75,0x3d,0x6b, 0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x2c,0x6e,0x3d,0x6b,0x2e,0x67, 0x65,0x74,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x64,0x49,0x64,0x2c,0x72, 0x3d,0x6b,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, 0x49,0x64,0x29,0x3b,0x76,0x61,0x72,0x20,0x53,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x63,0x2e,0x75,0x73,0x65,0x52,0x65,0x66,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x29, 0x2c,0x43,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x53,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3b,0x69, 0x66,0x28,0x21,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c, 0x3b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x2e, 0x61,0x29,0x28,0x74,0x2c,0x22,0x5b,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x4f,0x2c,0x22,0x5d,0x3a,0x6e,0x6f,0x74,0x28,0x5b,0x61,0x72,0x69,0x61,0x2d,0x64, 0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3d,0x74,0x72,0x75,0x65,0x5d,0x29,0x22,0x29, 0x29,0x2c,0x72,0x3d,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63, 0x74,0x6f,0x72,0x28,0x22,0x5b,0x61,0x72,0x69,0x61,0x2d,0x73,0x65,0x6c,0x65,0x63, 0x74,0x65,0x64,0x3d,0x74,0x72,0x75,0x65,0x5d,0x22,0x29,0x3b,0x69,0x66,0x28,0x21, 0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61, 0x72,0x20,0x6f,0x3d,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28,0x72,0x29, 0x3b,0x69,0x66,0x28,0x2d,0x31,0x3d,0x3d,0x3d,0x6f,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x6f,0x2b,0x65, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x3e,0x3d,0x6e,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x26,0x26,0x28,0x69,0x3d,0x30,0x29,0x2c,0x69,0x3c,0x30,0x26,0x26, 0x28,0x69,0x3d,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2d,0x31,0x29,0x2c,0x6e, 0x5b,0x69,0x5d,0x7d,0x2c,0x41,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x65,0x26,0x26,0x28,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x61,0x7c,0x7c,0x61,0x28,0x65,0x2c,0x74,0x29,0x2c,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x6a,0x7c,0x7c,0x6a,0x28,0x65,0x2c,0x74,0x29,0x29,0x7d, 0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x75,0x73,0x65,0x45,0x66,0x66, 0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x69,0x66,0x28,0x53,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x26,0x26,0x45, 0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x53,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53, 0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x22,0x5b,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x4f,0x2c,0x22,0x5d,0x5b,0x61,0x72,0x69,0x61,0x2d,0x73,0x65,0x6c, 0x65,0x63,0x74,0x65,0x64,0x3d,0x74,0x72,0x75,0x65,0x5d,0x22,0x29,0x29,0x3b,0x6e, 0x75,0x6c,0x6c,0x3d,0x3d,0x65,0x7c,0x7c,0x65,0x2e,0x66,0x6f,0x63,0x75,0x73,0x28, 0x29,0x7d,0x45,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x3d,0x21,0x31,0x7d,0x29, 0x29,0x3b,0x76,0x61,0x72,0x20,0x54,0x3d,0x70,0x28,0x74,0x2c,0x53,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x79,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x76,0x2e,0x61,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72, 0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x41,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x79,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x68,0x2e,0x61,0x2e,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x7b,0x72,0x6f,0x6c,0x65,0x3a,0x6c,0x2c,0x61,0x63,0x74, 0x69,0x76,0x65,0x4b,0x65,0x79,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x76,0x2e, 0x62,0x29,0x28,0x75,0x29,0x2c,0x67,0x65,0x74,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, 0x6c,0x65,0x64,0x49,0x64,0x3a,0x6e,0x7c,0x7c,0x77,0x2c,0x67,0x65,0x74,0x43,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x49,0x64,0x3a,0x72,0x7c,0x7c,0x77,0x7d, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x79,0x2e,0x6a,0x73,0x78,0x29,0x28,0x69,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x7b,0x7d,0x2c,0x62,0x2c,0x7b,0x6f,0x6e, 0x4b,0x65,0x79,0x44,0x6f,0x77,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x69,0x66,0x28,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x64,0x7c,0x7c, 0x64,0x28,0x65,0x29,0x2c,0x6b,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x73,0x77, 0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x6b,0x65,0x79,0x29,0x7b,0x63,0x61,0x73,0x65, 0x22,0x41,0x72,0x72,0x6f,0x77,0x4c,0x65,0x66,0x74,0x22,0x3a,0x63,0x61,0x73,0x65, 0x22,0x41,0x72,0x72,0x6f,0x77,0x55,0x70,0x22,0x3a,0x74,0x3d,0x43,0x28,0x2d,0x31, 0x29,0x3b,0x62,0x72,0x65,0x61,0x6b,0x3b,0x63,0x61,0x73,0x65,0x22,0x41,0x72,0x72, 0x6f,0x77,0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x63,0x61,0x73,0x65,0x22,0x41,0x72, 0x72,0x6f,0x77,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x74,0x3d,0x43,0x28,0x31,0x29,0x3b, 0x62,0x72,0x65,0x61,0x6b,0x3b,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x7d,0x74,0x26,0x26,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x65, 0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x41,0x28,0x74,0x2e, 0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6d, 0x2e,0x62,0x29,0x28,0x22,0x45,0x76,0x65,0x6e,0x74,0x4b,0x65,0x79,0x22,0x29,0x5d, 0x7c,0x7c,0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x29,0x2c,0x45,0x2e,0x63,0x75,0x72,0x72, 0x65,0x6e,0x74,0x3d,0x21,0x30,0x2c,0x78,0x28,0x29,0x29,0x7d,0x7d,0x2c,0x72,0x65, 0x66,0x3a,0x54,0x2c,0x72,0x6f,0x6c,0x65,0x3a,0x6c,0x7d,0x29,0x29,0x7d,0x29,0x7d, 0x29,0x7d,0x29,0x29,0x3b,0x78,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61, 0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x22,0x3b,0x76,0x61,0x72,0x20,0x45,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67,0x6e,0x28,0x78,0x2c,0x7b, 0x49,0x74,0x65,0x6d,0x3a,0x62,0x2e,0x61,0x7d,0x29,0x2c,0x6a,0x3d,0x6e,0x28,0x37, 0x29,0x2c,0x6b,0x3d,0x6e,0x28,0x32,0x37,0x29,0x2c,0x53,0x3d,0x63,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x28,0x6e,0x75,0x6c,0x6c, 0x29,0x3b,0x53,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3d, 0x22,0x43,0x61,0x72,0x64,0x48,0x65,0x61,0x64,0x65,0x72,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x22,0x3b,0x76,0x61,0x72,0x20,0x43,0x3d,0x53,0x2c,0x41,0x3d,0x6e,0x28, 0x32,0x38,0x29,0x2c,0x54,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x41,0x2e,0x61, 0x29,0x28,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x29,0x2c,0x50,0x3d, 0x6e,0x28,0x38,0x37,0x29,0x2c,0x44,0x3d,0x5b,0x22,0x61,0x73,0x22,0x2c,0x22,0x62, 0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x22,0x2c,0x22,0x76,0x61,0x72,0x69,0x61,0x6e, 0x74,0x22,0x2c,0x22,0x66,0x69,0x6c,0x6c,0x22,0x2c,0x22,0x6a,0x75,0x73,0x74,0x69, 0x66,0x79,0x22,0x2c,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x22,0x2c,0x22,0x6e,0x61, 0x76,0x62,0x61,0x72,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x2c,0x22,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x4b, 0x65,0x79,0x22,0x5d,0x2c,0x4e,0x3d,0x63,0x2e,0x66,0x6f,0x72,0x77,0x61,0x72,0x64, 0x52,0x65,0x66,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x2c,0x61,0x2c,0x73,0x2c,0x66,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6c,0x2e,0x61,0x29,0x28,0x65,0x2c,0x7b,0x61,0x63, 0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x3a,0x22,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63, 0x74,0x22,0x7d,0x29,0x2c,0x64,0x3d,0x66,0x2e,0x61,0x73,0x2c,0x70,0x3d,0x76,0x6f, 0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x64,0x3f,0x22,0x64,0x69,0x76,0x22,0x3a,0x64, 0x2c,0x68,0x3d,0x66,0x2e,0x62,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x2c,0x76,0x3d, 0x66,0x2e,0x76,0x61,0x72,0x69,0x61,0x6e,0x74,0x2c,0x67,0x3d,0x66,0x2e,0x66,0x69, 0x6c,0x6c,0x2c,0x6d,0x3d,0x66,0x2e,0x6a,0x75,0x73,0x74,0x69,0x66,0x79,0x2c,0x62, 0x3d,0x66,0x2e,0x6e,0x61,0x76,0x62,0x61,0x72,0x2c,0x5f,0x3d,0x66,0x2e,0x6e,0x61, 0x76,0x62,0x61,0x72,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x2c,0x77,0x3d,0x66,0x2e,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x4f,0x3d,0x66,0x2e,0x61,0x63,0x74, 0x69,0x76,0x65,0x4b,0x65,0x79,0x2c,0x78,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x69,0x2e,0x61,0x29,0x28,0x66,0x2c,0x44,0x29,0x2c,0x53,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x68,0x2c,0x22,0x6e,0x61,0x76,0x22,0x29, 0x2c,0x41,0x3d,0x21,0x31,0x2c,0x54,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63, 0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x6b,0x2e,0x61, 0x29,0x2c,0x50,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x63,0x2e,0x75,0x73,0x65, 0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x43,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x54,0x3f,0x28,0x61,0x3d,0x54,0x2e,0x62,0x73,0x50,0x72,0x65,0x66, 0x69,0x78,0x2c,0x41,0x3d,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x62,0x7c,0x7c,0x62,0x29, 0x3a,0x50,0x26,0x26,0x28,0x73,0x3d,0x50,0x2e,0x63,0x61,0x72,0x64,0x48,0x65,0x61, 0x64,0x65,0x72,0x42,0x73,0x50,0x72,0x65,0x66,0x69,0x78,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x79,0x2e,0x6a,0x73,0x78,0x29,0x28,0x45,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6f,0x2e,0x61,0x29,0x28,0x7b,0x61,0x73,0x3a,0x70,0x2c,0x72, 0x65,0x66,0x3a,0x74,0x2c,0x61,0x63,0x74,0x69,0x76,0x65,0x4b,0x65,0x79,0x3a,0x4f, 0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x75,0x28,0x29,0x28,0x77, 0x2c,0x28,0x6e,0x3d,0x7b,0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e, 0x61,0x29,0x28,0x6e,0x2c,0x53,0x2c,0x21,0x41,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x61,0x2c,0x22,0x2d,0x6e,0x61,0x76,0x22,0x29,0x2c,0x41,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x22, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x2c,0x22,0x2d,0x6e,0x61,0x76,0x2d, 0x73,0x63,0x72,0x6f,0x6c,0x6c,0x22,0x29,0x2c,0x41,0x26,0x26,0x5f,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x73,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x76,0x29,0x2c,0x21,0x21,0x73,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x22,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x53,0x2c,0x22,0x2d,0x22,0x29,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x76,0x29,0x2c,0x21,0x21,0x76,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63, 0x61,0x74,0x28,0x53,0x2c,0x22,0x2d,0x66,0x69,0x6c,0x6c,0x22,0x29,0x2c,0x67,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x72,0x2e,0x61,0x29,0x28,0x6e,0x2c,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x53,0x2c,0x22,0x2d,0x6a,0x75,0x73, 0x74,0x69,0x66,0x69,0x65,0x64,0x22,0x29,0x2c,0x6d,0x29,0x2c,0x6e,0x29,0x29,0x7d, 0x2c,0x78,0x29,0x29,0x7d,0x29,0x29,0x3b,0x4e,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61, 0x79,0x4e,0x61,0x6d,0x65,0x3d,0x22,0x4e,0x61,0x76,0x22,0x2c,0x4e,0x2e,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x50,0x72,0x6f,0x70,0x73,0x3d,0x7b,0x6a,0x75,0x73,0x74, 0x69,0x66,0x79,0x3a,0x21,0x31,0x2c,0x66,0x69,0x6c,0x6c,0x3a,0x21,0x31,0x7d,0x3b, 0x74,0x2e,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x61,0x73,0x73,0x69,0x67, 0x6e,0x28,0x4e,0x2c,0x7b,0x49,0x74,0x65,0x6d,0x3a,0x54,0x2c,0x4c,0x69,0x6e,0x6b, 0x3a,0x50,0x2e,0x61,0x7d,0x29,0x7d,0x5d,0x5d,0x29,0x3b,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__static_js_2_e635c71b_chunk_js_LICENSE_txt = 3; #endif static const unsigned char FSDATA_ALIGN_PRE data__static_js_2_e635c71b_chunk_js_LICENSE_txt[] FSDATA_ALIGN_POST = { /* /static/js/2.e635c71b.chunk.js.LICENSE.txt (43 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32,0x2e,0x65,0x36,0x33, 0x35,0x63,0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x2e,0x4c, 0x49,0x43,0x45,0x4e,0x53,0x45,0x2e,0x74,0x78,0x74,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 1998 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x31,0x39,0x39,0x38,0x0d,0x0a, /* "Content-Type: text/plain " (28 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x70,0x6c,0x61,0x69,0x6e,0x0d,0x0a,0x0d,0x0a, /* raw file data (1998 bytes) */ 0x2f,0x2a,0x0a,0x6f,0x62,0x6a,0x65,0x63,0x74,0x2d,0x61,0x73,0x73,0x69,0x67,0x6e, 0x0a,0x28,0x63,0x29,0x20,0x53,0x69,0x6e,0x64,0x72,0x65,0x20,0x53,0x6f,0x72,0x68, 0x75,0x73,0x0a,0x40,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x4d,0x49,0x54,0x0a, 0x2a,0x2f,0x0a,0x0a,0x2f,0x2a,0x21,0x0a,0x20,0x20,0x43,0x6f,0x70,0x79,0x72,0x69, 0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x32,0x30,0x31,0x38,0x20,0x4a,0x65,0x64, 0x20,0x57,0x61,0x74,0x73,0x6f,0x6e,0x2e,0x0a,0x20,0x20,0x4c,0x69,0x63,0x65,0x6e, 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x4d,0x49, 0x54,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x28,0x4d,0x49,0x54,0x29,0x2c, 0x20,0x73,0x65,0x65,0x0a,0x20,0x20,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6a,0x65, 0x64,0x77,0x61,0x74,0x73,0x6f,0x6e,0x2e,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x69, 0x6f,0x2f,0x63,0x6c,0x61,0x73,0x73,0x6e,0x61,0x6d,0x65,0x73,0x0a,0x2a,0x2f,0x0a, 0x0a,0x2f,0x2a,0x2a,0x0a,0x20,0x2a,0x20,0x40,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65, 0x0a,0x20,0x2a,0x20,0x4c,0x6f,0x64,0x61,0x73,0x68,0x20,0x3c,0x68,0x74,0x74,0x70, 0x73,0x3a,0x2f,0x2f,0x6c,0x6f,0x64,0x61,0x73,0x68,0x2e,0x63,0x6f,0x6d,0x2f,0x3e, 0x0a,0x20,0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x4f,0x70, 0x65,0x6e,0x4a,0x53,0x20,0x46,0x6f,0x75,0x6e,0x64,0x61,0x74,0x69,0x6f,0x6e,0x20, 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69, 0x62,0x75,0x74,0x6f,0x72,0x73,0x20,0x3c,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f, 0x6f,0x70,0x65,0x6e,0x6a,0x73,0x66,0x2e,0x6f,0x72,0x67,0x2f,0x3e,0x0a,0x20,0x2a, 0x20,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20, 0x4d,0x49,0x54,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x3c,0x68,0x74,0x74, 0x70,0x73,0x3a,0x2f,0x2f,0x6c,0x6f,0x64,0x61,0x73,0x68,0x2e,0x63,0x6f,0x6d,0x2f, 0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x3e,0x0a,0x20,0x2a,0x20,0x42,0x61,0x73,0x65, 0x64,0x20,0x6f,0x6e,0x20,0x55,0x6e,0x64,0x65,0x72,0x73,0x63,0x6f,0x72,0x65,0x2e, 0x6a,0x73,0x20,0x31,0x2e,0x38,0x2e,0x33,0x20,0x3c,0x68,0x74,0x74,0x70,0x3a,0x2f, 0x2f,0x75,0x6e,0x64,0x65,0x72,0x73,0x63,0x6f,0x72,0x65,0x6a,0x73,0x2e,0x6f,0x72, 0x67,0x2f,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x3e,0x0a,0x20,0x2a,0x20,0x43,0x6f, 0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x4a,0x65,0x72,0x65,0x6d,0x79,0x20,0x41, 0x73,0x68,0x6b,0x65,0x6e,0x61,0x73,0x2c,0x20,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x43,0x6c,0x6f,0x75,0x64,0x20,0x61,0x6e,0x64,0x20,0x49,0x6e,0x76,0x65,0x73, 0x74,0x69,0x67,0x61,0x74,0x69,0x76,0x65,0x20,0x52,0x65,0x70,0x6f,0x72,0x74,0x65, 0x72,0x73,0x20,0x26,0x20,0x45,0x64,0x69,0x74,0x6f,0x72,0x73,0x0a,0x20,0x2a,0x2f, 0x0a,0x0a,0x2f,0x2a,0x2a,0x20,0x40,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x52, 0x65,0x61,0x63,0x74,0x20,0x76,0x30,0x2e,0x32,0x30,0x2e,0x32,0x0a,0x20,0x2a,0x20, 0x73,0x63,0x68,0x65,0x64,0x75,0x6c,0x65,0x72,0x2e,0x70,0x72,0x6f,0x64,0x75,0x63, 0x74,0x69,0x6f,0x6e,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x0a,0x20,0x2a,0x0a,0x20, 0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20, 0x46,0x61,0x63,0x65,0x62,0x6f,0x6f,0x6b,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x20,0x61, 0x6e,0x64,0x20,0x69,0x74,0x73,0x20,0x61,0x66,0x66,0x69,0x6c,0x69,0x61,0x74,0x65, 0x73,0x2e,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x6f, 0x75,0x72,0x63,0x65,0x20,0x63,0x6f,0x64,0x65,0x20,0x69,0x73,0x20,0x6c,0x69,0x63, 0x65,0x6e,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, 0x4d,0x49,0x54,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x66,0x6f,0x75,0x6e, 0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x0a,0x20,0x2a,0x20,0x4c,0x49,0x43,0x45, 0x4e,0x53,0x45,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, 0x72,0x6f,0x6f,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x20,0x6f, 0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x74,0x72, 0x65,0x65,0x2e,0x0a,0x20,0x2a,0x2f,0x0a,0x0a,0x2f,0x2a,0x2a,0x20,0x40,0x6c,0x69, 0x63,0x65,0x6e,0x73,0x65,0x20,0x52,0x65,0x61,0x63,0x74,0x20,0x76,0x31,0x36,0x2e, 0x31,0x33,0x2e,0x31,0x0a,0x20,0x2a,0x20,0x72,0x65,0x61,0x63,0x74,0x2d,0x69,0x73, 0x2e,0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x6d,0x69,0x6e,0x2e, 0x6a,0x73,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67, 0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x46,0x61,0x63,0x65,0x62,0x6f,0x6f,0x6b,0x2c, 0x20,0x49,0x6e,0x63,0x2e,0x20,0x61,0x6e,0x64,0x20,0x69,0x74,0x73,0x20,0x61,0x66, 0x66,0x69,0x6c,0x69,0x61,0x74,0x65,0x73,0x2e,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20, 0x54,0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x63,0x6f,0x64,0x65, 0x20,0x69,0x73,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x20,0x75,0x6e,0x64, 0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x4d,0x49,0x54,0x20,0x6c,0x69,0x63,0x65,0x6e, 0x73,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x0a, 0x20,0x2a,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x69,0x6c,0x65,0x20, 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6f,0x74,0x20,0x64,0x69,0x72,0x65, 0x63,0x74,0x6f,0x72,0x79,0x20,0x6f,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x6f, 0x75,0x72,0x63,0x65,0x20,0x74,0x72,0x65,0x65,0x2e,0x0a,0x20,0x2a,0x2f,0x0a,0x0a, 0x2f,0x2a,0x2a,0x20,0x40,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x52,0x65,0x61, 0x63,0x74,0x20,0x76,0x31,0x37,0x2e,0x30,0x2e,0x32,0x0a,0x20,0x2a,0x20,0x72,0x65, 0x61,0x63,0x74,0x2d,0x64,0x6f,0x6d,0x2e,0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x69, 0x6f,0x6e,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20, 0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x46,0x61, 0x63,0x65,0x62,0x6f,0x6f,0x6b,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x20,0x61,0x6e,0x64, 0x20,0x69,0x74,0x73,0x20,0x61,0x66,0x66,0x69,0x6c,0x69,0x61,0x74,0x65,0x73,0x2e, 0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72, 0x63,0x65,0x20,0x63,0x6f,0x64,0x65,0x20,0x69,0x73,0x20,0x6c,0x69,0x63,0x65,0x6e, 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x4d,0x49, 0x54,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20, 0x69,0x6e,0x20,0x74,0x68,0x65,0x0a,0x20,0x2a,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53, 0x45,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f, 0x6f,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x20,0x6f,0x66,0x20, 0x74,0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x74,0x72,0x65,0x65, 0x2e,0x0a,0x20,0x2a,0x2f,0x0a,0x0a,0x2f,0x2a,0x2a,0x20,0x40,0x6c,0x69,0x63,0x65, 0x6e,0x73,0x65,0x20,0x52,0x65,0x61,0x63,0x74,0x20,0x76,0x31,0x37,0x2e,0x30,0x2e, 0x32,0x0a,0x20,0x2a,0x20,0x72,0x65,0x61,0x63,0x74,0x2d,0x69,0x73,0x2e,0x70,0x72, 0x6f,0x64,0x75,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x0a, 0x20,0x2a,0x0a,0x20,0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20, 0x28,0x63,0x29,0x20,0x46,0x61,0x63,0x65,0x62,0x6f,0x6f,0x6b,0x2c,0x20,0x49,0x6e, 0x63,0x2e,0x20,0x61,0x6e,0x64,0x20,0x69,0x74,0x73,0x20,0x61,0x66,0x66,0x69,0x6c, 0x69,0x61,0x74,0x65,0x73,0x2e,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x54,0x68,0x69, 0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x63,0x6f,0x64,0x65,0x20,0x69,0x73, 0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20, 0x74,0x68,0x65,0x20,0x4d,0x49,0x54,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20, 0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x0a,0x20,0x2a,0x20, 0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20, 0x74,0x68,0x65,0x20,0x72,0x6f,0x6f,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, 0x72,0x79,0x20,0x6f,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72,0x63, 0x65,0x20,0x74,0x72,0x65,0x65,0x2e,0x0a,0x20,0x2a,0x2f,0x0a,0x0a,0x2f,0x2a,0x2a, 0x20,0x40,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x52,0x65,0x61,0x63,0x74,0x20, 0x76,0x31,0x37,0x2e,0x30,0x2e,0x32,0x0a,0x20,0x2a,0x20,0x72,0x65,0x61,0x63,0x74, 0x2d,0x6a,0x73,0x78,0x2d,0x72,0x75,0x6e,0x74,0x69,0x6d,0x65,0x2e,0x70,0x72,0x6f, 0x64,0x75,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x0a,0x20, 0x2a,0x0a,0x20,0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28, 0x63,0x29,0x20,0x46,0x61,0x63,0x65,0x62,0x6f,0x6f,0x6b,0x2c,0x20,0x49,0x6e,0x63, 0x2e,0x20,0x61,0x6e,0x64,0x20,0x69,0x74,0x73,0x20,0x61,0x66,0x66,0x69,0x6c,0x69, 0x61,0x74,0x65,0x73,0x2e,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x54,0x68,0x69,0x73, 0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x63,0x6f,0x64,0x65,0x20,0x69,0x73,0x20, 0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74, 0x68,0x65,0x20,0x4d,0x49,0x54,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x66, 0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x0a,0x20,0x2a,0x20,0x4c, 0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x74, 0x68,0x65,0x20,0x72,0x6f,0x6f,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, 0x79,0x20,0x6f,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65, 0x20,0x74,0x72,0x65,0x65,0x2e,0x0a,0x20,0x2a,0x2f,0x0a,0x0a,0x2f,0x2a,0x2a,0x20, 0x40,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x52,0x65,0x61,0x63,0x74,0x20,0x76, 0x31,0x37,0x2e,0x30,0x2e,0x32,0x0a,0x20,0x2a,0x20,0x72,0x65,0x61,0x63,0x74,0x2e, 0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x6d,0x69,0x6e,0x2e,0x6a, 0x73,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68, 0x74,0x20,0x28,0x63,0x29,0x20,0x46,0x61,0x63,0x65,0x62,0x6f,0x6f,0x6b,0x2c,0x20, 0x49,0x6e,0x63,0x2e,0x20,0x61,0x6e,0x64,0x20,0x69,0x74,0x73,0x20,0x61,0x66,0x66, 0x69,0x6c,0x69,0x61,0x74,0x65,0x73,0x2e,0x0a,0x20,0x2a,0x0a,0x20,0x2a,0x20,0x54, 0x68,0x69,0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x63,0x6f,0x64,0x65,0x20, 0x69,0x73,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, 0x72,0x20,0x74,0x68,0x65,0x20,0x4d,0x49,0x54,0x20,0x6c,0x69,0x63,0x65,0x6e,0x73, 0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x0a,0x20, 0x2a,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, 0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6f,0x74,0x20,0x64,0x69,0x72,0x65,0x63, 0x74,0x6f,0x72,0x79,0x20,0x6f,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x6f,0x75, 0x72,0x63,0x65,0x20,0x74,0x72,0x65,0x65,0x2e,0x0a,0x20,0x2a,0x2f,0x0a,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__static_js_main_9f77a883_chunk_js = 4; #endif static const unsigned char FSDATA_ALIGN_PRE data__static_js_main_9f77a883_chunk_js[] FSDATA_ALIGN_POST = { /* /static/js/main.9f77a883.chunk.js (34 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x6d,0x61,0x69,0x6e,0x2e, 0x39,0x66,0x37,0x37,0x61,0x38,0x38,0x33,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a, 0x73,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 33967 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x33,0x33,0x39,0x36,0x37,0x0d,0x0a, /* "Content-Type: application/javascript " (40 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63, 0x72,0x69,0x70,0x74,0x0d,0x0a,0x0d,0x0a, /* raw file data (33967 bytes) */ 0x28,0x74,0x68,0x69,0x73,0x5b,0x22,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x4a,0x73, 0x6f,0x6e,0x70,0x67,0x70,0x32,0x30,0x34,0x30,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x5d,0x3d,0x74,0x68,0x69,0x73,0x5b,0x22,0x77, 0x65,0x62,0x70,0x61,0x63,0x6b,0x4a,0x73,0x6f,0x6e,0x70,0x67,0x70,0x32,0x30,0x34, 0x30,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x5d, 0x7c,0x7c,0x5b,0x5d,0x29,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x5b,0x30,0x5d,0x2c, 0x7b,0x31,0x35,0x37,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x29,0x7b,0x7d,0x2c,0x31,0x38,0x33,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x7d,0x2c,0x31,0x38,0x35, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29, 0x7b,0x7d,0x2c,0x32,0x38,0x34,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x7d,0x2c,0x32,0x38,0x36,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x7d,0x2c,0x32, 0x38,0x37,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x2c, 0x6e,0x29,0x7b,0x7d,0x2c,0x33,0x31,0x30,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x22,0x75,0x73,0x65,0x20,0x73,0x74, 0x72,0x69,0x63,0x74,0x22,0x3b,0x6e,0x2e,0x72,0x28,0x74,0x29,0x3b,0x76,0x61,0x72, 0x20,0x61,0x3d,0x6e,0x28,0x30,0x29,0x2c,0x72,0x3d,0x6e,0x28,0x32,0x36,0x29,0x2c, 0x63,0x3d,0x6e,0x2e,0x6e,0x28,0x72,0x29,0x2c,0x73,0x3d,0x6e,0x28,0x32,0x35,0x29, 0x2c,0x69,0x3d,0x6e,0x28,0x35,0x29,0x2c,0x6c,0x3d,0x6e,0x28,0x31,0x35,0x29,0x2c, 0x6f,0x3d,0x7b,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73,0x3a, 0x22,0x67,0x70,0x32,0x30,0x34,0x30,0x22,0x7d,0x2c,0x75,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x6f,0x6e,0x74,0x65, 0x78,0x74,0x29,0x28,0x6f,0x29,0x2c,0x64,0x3d,0x6e,0x28,0x33,0x31,0x38,0x29,0x2c, 0x62,0x3d,0x6e,0x28,0x33,0x32,0x30,0x29,0x2c,0x70,0x3d,0x6e,0x28,0x33,0x31,0x37, 0x29,0x2c,0x6a,0x3d,0x6e,0x28,0x32,0x29,0x2c,0x68,0x3d,0x6e,0x28,0x33,0x29,0x2c, 0x6d,0x3d,0x6e,0x28,0x33,0x31,0x39,0x29,0x2c,0x4f,0x3d,0x6e,0x28,0x31,0x29,0x2c, 0x66,0x3d,0x5b,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x22,0x65,0x72,0x72,0x6f, 0x72,0x22,0x2c,0x22,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x22,0x5d,0x2c,0x78,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c, 0x2c,0x6e,0x3d,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x2c,0x61,0x3d,0x65,0x2e,0x67, 0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x72,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x68,0x2e,0x61,0x29,0x28,0x65,0x2c,0x66,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x47,0x72,0x6f,0x75,0x70, 0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x74,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x4c,0x61,0x62, 0x65,0x6c,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x74,0x7d,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d, 0x2e,0x61,0x2e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x72,0x29,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x43, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x46,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x2c, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x6e,0x7d,0x29,0x5d,0x7d,0x29,0x7d, 0x2c,0x76,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73, 0x22,0x2c,0x67,0x3d,0x6e,0x28,0x33,0x34,0x29,0x2c,0x79,0x3d,0x28,0x6e,0x28,0x31, 0x35,0x37,0x29,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75, 0x73,0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x75,0x29,0x2c,0x6e,0x3d, 0x74,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73,0x2c,0x72, 0x3d,0x74,0x2e,0x73,0x65,0x74,0x42,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65, 0x6c,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x64,0x2e,0x61,0x2c,0x7b,0x63,0x6f, 0x6c,0x6c,0x61,0x70,0x73,0x65,0x4f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x3a,0x21, 0x30,0x2c,0x62,0x67,0x3a,0x22,0x64,0x61,0x72,0x6b,0x22,0x2c,0x76,0x61,0x72,0x69, 0x61,0x6e,0x74,0x3a,0x22,0x64,0x61,0x72,0x6b,0x22,0x2c,0x65,0x78,0x70,0x61,0x6e, 0x64,0x3a,0x22,0x6d,0x64,0x22,0x2c,0x66,0x69,0x78,0x65,0x64,0x3a,0x22,0x74,0x6f, 0x70,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x64,0x2e,0x61,0x2e, 0x42,0x72,0x61,0x6e,0x64,0x2c,0x7b,0x68,0x72,0x65,0x66,0x3a,0x22,0x2f,0x22,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x69,0x6d,0x67,0x22,0x2c,0x7b,0x73, 0x72,0x63,0x3a,0x22,0x69,0x6d,0x61,0x67,0x65,0x73,0x2f,0x6c,0x6f,0x67,0x6f,0x2e, 0x70,0x6e,0x67,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x74,0x69,0x74,0x6c,0x65,0x2d,0x6c,0x6f,0x67,0x6f,0x22,0x2c,0x61,0x6c,0x74,0x3a, 0x22,0x6c,0x6f,0x67,0x6f,0x22,0x7d,0x29,0x2c,0x22,0x20,0x22,0x2c,0x22,0x47,0x50, 0x32,0x30,0x34,0x30,0x22,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x2e,0x61,0x2e,0x43,0x6f,0x6c,0x6c,0x61, 0x70,0x73,0x65,0x2c,0x7b,0x69,0x64,0x3a,0x22,0x62,0x61,0x73,0x69,0x63,0x2d,0x6e, 0x61,0x76,0x62,0x61,0x72,0x2d,0x6e,0x61,0x76,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x73,0x29,0x28,0x62,0x2e,0x61,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x6d,0x65,0x2d,0x61,0x75,0x74,0x6f,0x22,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x62,0x2e,0x61,0x2e,0x4c,0x69,0x6e,0x6b,0x2c,0x7b,0x61,0x73, 0x3a,0x73,0x2e,0x62,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c,0x74,0x6f, 0x3a,0x22,0x2f,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x48, 0x6f,0x6d,0x65,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x62,0x2e,0x61,0x2e,0x4c,0x69,0x6e,0x6b,0x2c,0x7b,0x61, 0x73,0x3a,0x73,0x2e,0x62,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c,0x74, 0x6f,0x3a,0x22,0x2f,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73, 0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x73,0x29,0x28,0x70,0x2e,0x61,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x43, 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x70,0x2e,0x61,0x2e,0x49,0x74,0x65,0x6d,0x2c,0x7b, 0x61,0x73,0x3a,0x73,0x2e,0x62,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c, 0x74,0x6f,0x3a,0x22,0x2f,0x70,0x69,0x6e,0x2d,0x6d,0x61,0x70,0x70,0x69,0x6e,0x67, 0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x50,0x69,0x6e,0x20, 0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x70,0x2e,0x61,0x2e,0x49,0x74,0x65, 0x6d,0x2c,0x7b,0x61,0x73,0x3a,0x73,0x2e,0x62,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a, 0x21,0x30,0x2c,0x74,0x6f,0x3a,0x22,0x2f,0x6c,0x65,0x64,0x2d,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x4c,0x45, 0x44,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x70,0x2e,0x61,0x2e,0x49,0x74,0x65,0x6d,0x2c,0x7b,0x61,0x73,0x3a,0x73,0x2e, 0x62,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c,0x74,0x6f,0x3a,0x22,0x2f, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x44,0x69,0x73,0x70,0x6c,0x61, 0x79,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22, 0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x73,0x29,0x28,0x70,0x2e,0x61,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a, 0x22,0x4c,0x69,0x6e,0x6b,0x73,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x70,0x2e,0x61,0x2e,0x49,0x74,0x65,0x6d,0x2c,0x7b,0x61,0x73,0x3a,0x73,0x2e,0x62, 0x2c,0x74,0x6f,0x3a,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x70,0x32, 0x30,0x34,0x30,0x2e,0x69,0x6e,0x66,0x6f,0x2f,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x22,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69, 0x6f,0x6e,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x70,0x2e,0x61,0x2e,0x49,0x74,0x65,0x6d,0x2c,0x7b,0x61,0x73, 0x3a,0x73,0x2e,0x62,0x2c,0x74,0x6f,0x3a,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f, 0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x46,0x65,0x72,0x61, 0x6c,0x41,0x49,0x2f,0x47,0x50,0x32,0x30,0x34,0x30,0x2f,0x22,0x2c,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x47,0x69,0x74,0x68,0x75,0x62,0x22,0x7d,0x29, 0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x70,0x2e,0x61,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x44,0x41, 0x4e,0x47,0x45,0x52,0x20,0x5a,0x4f,0x4e,0x45,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72, 0x20,0x64,0x61,0x6e,0x67,0x65,0x72,0x2d,0x7a,0x6f,0x6e,0x65,0x22,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x70,0x2e,0x61,0x2e,0x49,0x74,0x65,0x6d,0x2c,0x7b,0x61, 0x73,0x3a,0x73,0x2e,0x62,0x2c,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c,0x74, 0x6f,0x3a,0x22,0x2f,0x72,0x65,0x73,0x65,0x74,0x2d,0x73,0x65,0x74,0x74,0x69,0x6e, 0x67,0x73,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x52,0x65, 0x73,0x65,0x74,0x20,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x7d,0x29,0x7d, 0x29,0x5d,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d,0x74, 0x6f,0x6f,0x6c,0x73,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x78,0x2c, 0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62, 0x65,0x6c,0x73,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x6e,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72, 0x20,0x74,0x3b,0x74,0x3d,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x2c,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65, 0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x76,0x2c,0x74,0x29,0x2c,0x72,0x28, 0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x7d, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x6b,0x65,0x79,0x73,0x28,0x67,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x67,0x5b,0x65,0x5d,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x67,0x5b,0x65,0x5d,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d, 0x2c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x2d,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74, 0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x2e,0x61,0x2e,0x54,0x6f,0x67,0x67,0x6c,0x65, 0x2c,0x7b,0x22,0x61,0x72,0x69,0x61,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73, 0x22,0x3a,0x22,0x62,0x61,0x73,0x69,0x63,0x2d,0x6e,0x61,0x76,0x62,0x61,0x72,0x2d, 0x6e,0x61,0x76,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x29,0x2c,0x53, 0x3d,0x6e,0x28,0x33,0x36,0x29,0x2c,0x4c,0x3d,0x6e,0x2e,0x6e,0x28,0x53,0x29,0x2c, 0x4e,0x3d,0x6e,0x28,0x38,0x38,0x29,0x2c,0x42,0x3d,0x28,0x6e,0x28,0x31,0x38,0x33, 0x29,0x2c,0x5b,0x22,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x22,0x2c,0x22,0x74, 0x69,0x74,0x6c,0x65,0x22,0x5d,0x29,0x2c,0x43,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x2c,0x6e,0x3d,0x65,0x2e,0x74,0x69,0x74,0x6c,0x65, 0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x68,0x2e,0x61,0x29,0x28,0x65, 0x2c,0x42,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c, 0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64, 0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x2e,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x29,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x63,0x61,0x72,0x64,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x22,0x2e,0x63, 0x6f,0x6e,0x63,0x61,0x74,0x28,0x61,0x2e,0x74,0x69,0x74,0x6c,0x65,0x43,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x29,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x73,0x74,0x72,0x6f,0x6e,0x67,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x6e,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64,0x2d,0x62,0x6f,0x64, 0x79,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x74,0x7d,0x29,0x5d, 0x7d,0x29,0x7d,0x2c,0x44,0x3d,0x22,0x76,0x30,0x2e,0x34,0x2e,0x33,0x22,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74, 0x61,0x74,0x65,0x29,0x28,0x22,0x22,0x29,0x2c,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x65,0x2c,0x32,0x29,0x2c,0x6e,0x3d,0x74,0x5b, 0x30,0x5d,0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45,0x66,0x66, 0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x4c,0x2e,0x61,0x2e,0x67,0x65,0x74,0x28,0x22,0x68,0x74,0x74,0x70,0x73,0x3a, 0x2f,0x2f,0x61,0x70,0x69,0x2e,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d, 0x2f,0x72,0x65,0x70,0x6f,0x73,0x2f,0x46,0x65,0x72,0x61,0x6c,0x41,0x49,0x2f,0x47, 0x50,0x32,0x30,0x34,0x30,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x22,0x29, 0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4e,0x2e,0x6f,0x72,0x64,0x65,0x72,0x42,0x79,0x29,0x28,0x65,0x2e,0x64,0x61,0x74, 0x61,0x2c,0x22,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x5f,0x61,0x74,0x22, 0x2c,0x22,0x64,0x65,0x73,0x63,0x22,0x29,0x3b,0x72,0x28,0x74,0x5b,0x30,0x5d,0x2e, 0x6e,0x61,0x6d,0x65,0x29,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x63, 0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x7d,0x29,0x2c, 0x5b,0x72,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x68,0x31,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x22,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x74,0x68, 0x65,0x20,0x47,0x50,0x32,0x30,0x34,0x30,0x20,0x57,0x65,0x62,0x20,0x43,0x6f,0x6e, 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x21,0x22,0x7d,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x70,0x22,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x50,0x6c,0x65,0x61,0x73, 0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x6d,0x65,0x6e,0x75,0x20, 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x65, 0x64,0x2e,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x43,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x46,0x69, 0x72,0x6d,0x77,0x61,0x72,0x65,0x20,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x22,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64,0x2d,0x62, 0x6f,0x64,0x79,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64, 0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x63,0x61,0x72,0x64,0x2d,0x74,0x65,0x78,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x22,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x56,0x65, 0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x22,0x2c,0x44,0x5d,0x7d,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69, 0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63, 0x61,0x72,0x64,0x2d,0x74,0x65,0x78,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x5b,0x22,0x4c,0x61,0x74,0x65,0x73,0x74,0x20,0x56,0x65,0x72,0x73, 0x69,0x6f,0x6e,0x3a,0x20,0x22,0x2c,0x6e,0x5d,0x7d,0x29,0x2c,0x6e,0x26,0x26,0x44, 0x21,0x3d,0x3d,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x6d,0x74,0x2d,0x33,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x22,0x61,0x22,0x2c,0x7b,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x22,0x5f, 0x62,0x6c,0x61,0x6e,0x6b,0x22,0x2c,0x72,0x65,0x6c,0x3a,0x22,0x6e,0x6f,0x72,0x65, 0x66,0x65,0x72,0x72,0x65,0x72,0x22,0x2c,0x68,0x72,0x65,0x66,0x3a,0x22,0x68,0x74, 0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d, 0x2f,0x46,0x65,0x72,0x61,0x6c,0x41,0x49,0x2f,0x47,0x50,0x32,0x30,0x34,0x30,0x2f, 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x6e,0x29,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x62,0x74,0x6e,0x20,0x62,0x74,0x6e,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x22, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x47,0x65,0x74,0x20,0x4c, 0x61,0x74,0x65,0x73,0x74,0x20,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x22,0x7d,0x29, 0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x5d,0x7d,0x29,0x7d,0x29,0x5d,0x7d,0x29,0x7d, 0x76,0x61,0x72,0x20,0x50,0x3d,0x6e,0x28,0x33,0x32,0x29,0x2c,0x49,0x3d,0x6e,0x28, 0x38,0x29,0x2c,0x52,0x3d,0x6e,0x2e,0x6e,0x28,0x49,0x29,0x2c,0x6b,0x3d,0x6e,0x28, 0x31,0x33,0x29,0x2c,0x4d,0x3d,0x6e,0x28,0x31,0x34,0x32,0x29,0x2c,0x41,0x3d,0x22, 0x22,0x2c,0x45,0x3d,0x7b,0x55,0x70,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c, 0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x44,0x6f,0x77,0x6e, 0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e, 0x75,0x6c,0x6c,0x7d,0x2c,0x4c,0x65,0x66,0x74,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d, 0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x52,0x69, 0x67,0x68,0x74,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f, 0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x42,0x31,0x3a,0x7b,0x70,0x69,0x6e,0x3a, 0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x42, 0x32,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a, 0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x42,0x33,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31, 0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x42,0x34,0x3a, 0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75, 0x6c,0x6c,0x7d,0x2c,0x4c,0x31,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65, 0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x52,0x31,0x3a,0x7b,0x70, 0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c, 0x7d,0x2c,0x4c,0x32,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72, 0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x52,0x32,0x3a,0x7b,0x70,0x69,0x6e, 0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c, 0x53,0x31,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72, 0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x53,0x32,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d, 0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x4c,0x33, 0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e, 0x75,0x6c,0x6c,0x7d,0x2c,0x52,0x33,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c, 0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x2c,0x41,0x31,0x3a,0x7b, 0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c, 0x6c,0x7d,0x2c,0x41,0x32,0x3a,0x7b,0x70,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x65,0x72, 0x72,0x6f,0x72,0x3a,0x6e,0x75,0x6c,0x6c,0x7d,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x47,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x47, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61, 0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20, 0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77, 0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65, 0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61, 0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x62, 0x72,0x75,0x70,0x74,0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e, 0x61,0x2e,0x67,0x65,0x74,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x41,0x2c,0x22,0x2f,0x61,0x70,0x69,0x2f,0x72,0x65,0x73,0x65,0x74,0x53,0x65,0x74, 0x74,0x69,0x6e,0x67,0x73,0x22,0x29,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x64,0x61,0x74,0x61,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63, 0x68,0x28,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e, 0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70, 0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x46,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x46,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b, 0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65, 0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28,0x22,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e,0x61,0x2e,0x67,0x65,0x74,0x28,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x41,0x2c,0x22,0x2f,0x61,0x70,0x69, 0x2f,0x67,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x22,0x29,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x64,0x61,0x74,0x61,0x2e,0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73,0x73, 0x26,0x26,0x28,0x65,0x2e,0x64,0x61,0x74,0x61,0x2e,0x69,0x32,0x63,0x41,0x64,0x64, 0x72,0x65,0x73,0x73,0x3d,0x22,0x30,0x78,0x22,0x2b,0x65,0x2e,0x64,0x61,0x74,0x61, 0x2e,0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x2e,0x74,0x6f,0x53,0x74, 0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x29,0x2c,0x65,0x2e,0x64,0x61,0x74,0x61, 0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x63,0x6f,0x6e,0x73,0x6f,0x6c, 0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31, 0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29, 0x7d,0x29,0x29,0x29,0x29,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73, 0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x55,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28, 0x55,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e, 0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x65,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29, 0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e, 0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74, 0x75,0x72,0x6e,0x28,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61, 0x29,0x28,0x7b,0x7d,0x2c,0x74,0x29,0x29,0x2e,0x69,0x32,0x63,0x41,0x64,0x64,0x72, 0x65,0x73,0x73,0x3d,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x74,0x2e,0x69, 0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x29,0x2c,0x65,0x2e,0x61,0x62,0x72, 0x75,0x70,0x74,0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e,0x61, 0x2e,0x70,0x6f,0x73,0x74,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x41,0x2c,0x22,0x2f,0x61,0x70,0x69,0x2f,0x73,0x65,0x74,0x44,0x69,0x73,0x70,0x6c, 0x61,0x79,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x29,0x2c,0x6e,0x29,0x2e,0x74, 0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e, 0x6c,0x6f,0x67,0x28,0x65,0x2e,0x64,0x61,0x74,0x61,0x29,0x2c,0x21,0x30,0x7d,0x29, 0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73, 0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x2c,0x21,0x31,0x7d, 0x29,0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x63,0x61,0x73,0x65,0x22, 0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74, 0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x56, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x56,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76, 0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28, 0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e,0x61,0x2e,0x67,0x65,0x74, 0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x41,0x2c,0x22,0x2f,0x61, 0x70,0x69,0x2f,0x67,0x65,0x74,0x47,0x61,0x6d,0x65,0x70,0x61,0x64,0x4f,0x70,0x74, 0x69,0x6f,0x6e,0x73,0x22,0x29,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x64,0x61,0x74,0x61,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63,0x68, 0x28,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e,0x64, 0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28, 0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x71,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x71,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b, 0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65, 0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28,0x22,0x72, 0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e,0x61,0x2e,0x70,0x6f,0x73,0x74,0x28, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x41,0x2c,0x22,0x2f,0x61,0x70, 0x69,0x2f,0x73,0x65,0x74,0x47,0x61,0x6d,0x65,0x70,0x61,0x64,0x4f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x22,0x29,0x2c,0x74,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x65,0x2e, 0x64,0x61,0x74,0x61,0x29,0x2c,0x21,0x30,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74,0x63, 0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72, 0x72,0x6f,0x72,0x28,0x65,0x29,0x2c,0x21,0x31,0x7d,0x29,0x29,0x29,0x3b,0x63,0x61, 0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e,0x64,0x22,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x7d,0x7d, 0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x54,0x28,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x28,0x54,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61, 0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69, 0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78, 0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28,0x22,0x72,0x65,0x74,0x75,0x72, 0x6e,0x22,0x2c,0x4c,0x2e,0x61,0x2e,0x67,0x65,0x74,0x28,0x22,0x22,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x41,0x2c,0x22,0x2f,0x61,0x70,0x69,0x2f,0x67,0x65,0x74, 0x4c,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x29,0x29,0x2e,0x74,0x68, 0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x61,0x74,0x61,0x7d,0x29,0x29, 0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65, 0x72,0x72,0x6f,0x72,0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61, 0x73,0x65,0x22,0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29, 0x29,0x29,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x48,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x48,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d, 0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28, 0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72, 0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e, 0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x62,0x72, 0x75,0x70,0x74,0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e,0x61, 0x2e,0x70,0x6f,0x73,0x74,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28, 0x41,0x2c,0x22,0x2f,0x61,0x70,0x69,0x2f,0x73,0x65,0x74,0x4c,0x65,0x64,0x4f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x22,0x29,0x2c,0x74,0x29,0x2e,0x74,0x68,0x65,0x6e,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28, 0x65,0x2e,0x64,0x61,0x74,0x61,0x29,0x2c,0x21,0x30,0x7d,0x29,0x29,0x2e,0x63,0x61, 0x74,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e, 0x65,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x2c,0x21,0x31,0x7d,0x29,0x29,0x29,0x3b, 0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e,0x64,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29, 0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x57,0x28,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x28,0x57,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b, 0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73, 0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e, 0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x65,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28,0x22,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e,0x61,0x2e,0x67,0x65,0x74,0x28,0x22,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x41,0x2c,0x22,0x2f,0x61,0x70,0x69,0x2f,0x67, 0x65,0x74,0x50,0x69,0x6e,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x73,0x22,0x29,0x29, 0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x45,0x29,0x2c,0x6e, 0x3d,0x30,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73, 0x28,0x65,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x6e,0x3c,0x61,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x3b,0x6e,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x61, 0x5b,0x6e,0x5d,0x3b,0x74,0x5b,0x72,0x5d,0x2e,0x70,0x69,0x6e,0x3d,0x70,0x61,0x72, 0x73,0x65,0x49,0x6e,0x74,0x28,0x65,0x2e,0x64,0x61,0x74,0x61,0x5b,0x72,0x5d,0x29, 0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x29,0x29,0x2e,0x63,0x61,0x74, 0x63,0x68,0x28,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72, 0x29,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0x63,0x61,0x73,0x65,0x22,0x65, 0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f, 0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4a,0x28, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x4a,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x76, 0x61,0x72,0x20,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e, 0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28, 0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63, 0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x3d,0x7b, 0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x74,0x29, 0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x61,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x5b,0x65,0x5d,0x3d, 0x74,0x5b,0x65,0x5d,0x2e,0x70,0x69,0x6e,0x7d,0x29,0x29,0x2c,0x65,0x2e,0x61,0x62, 0x72,0x75,0x70,0x74,0x28,0x22,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x2c,0x4c,0x2e, 0x61,0x2e,0x70,0x6f,0x73,0x74,0x28,0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74, 0x28,0x41,0x2c,0x22,0x2f,0x61,0x70,0x69,0x2f,0x73,0x65,0x74,0x50,0x69,0x6e,0x4d, 0x61,0x70,0x70,0x69,0x6e,0x67,0x73,0x22,0x29,0x2c,0x6e,0x29,0x2e,0x74,0x68,0x65, 0x6e,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f, 0x67,0x28,0x65,0x2e,0x64,0x61,0x74,0x61,0x29,0x2c,0x21,0x30,0x7d,0x29,0x29,0x2e, 0x63,0x61,0x74,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c, 0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x65,0x29,0x2c,0x21,0x31,0x7d,0x29,0x29, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e, 0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70, 0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61,0x70, 0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e, 0x74,0x73,0x29,0x7d,0x76,0x61,0x72,0x20,0x58,0x3d,0x7b,0x72,0x65,0x73,0x65,0x74, 0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x47,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x29,0x7d,0x2c,0x67,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4f,0x70, 0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x46,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28, 0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d, 0x2c,0x73,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x55,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x2c,0x67, 0x65,0x74,0x47,0x61,0x6d,0x65,0x70,0x61,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x56,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c, 0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x2c,0x73,0x65,0x74,0x47, 0x61,0x6d,0x65,0x70,0x61,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x71,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x2c,0x67,0x65,0x74,0x4c,0x65,0x64, 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x54,0x2e,0x61,0x70,0x70,0x6c, 0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73, 0x29,0x7d,0x2c,0x73,0x65,0x74,0x4c,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73, 0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x48,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73, 0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x2c,0x67,0x65,0x74, 0x50,0x69,0x6e,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x73,0x3a,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x57,0x2e, 0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d, 0x65,0x6e,0x74,0x73,0x29,0x7d,0x2c,0x73,0x65,0x74,0x50,0x69,0x6e,0x4d,0x61,0x70, 0x70,0x69,0x6e,0x67,0x73,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x2e,0x61,0x70,0x70,0x6c,0x79, 0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29, 0x7d,0x7d,0x2c,0x5a,0x3d,0x58,0x2c,0x24,0x3d,0x6e,0x28,0x36,0x39,0x29,0x2c,0x4b, 0x3d,0x28,0x6e,0x28,0x31,0x38,0x35,0x29,0x2c,0x5b,0x22,0x42,0x31,0x22,0x2c,0x22, 0x42,0x32,0x22,0x2c,0x22,0x42,0x33,0x22,0x2c,0x22,0x53,0x32,0x22,0x5d,0x29,0x3b, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x59,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x2c,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73, 0x65,0x43,0x6f,0x6e,0x74,0x65,0x78,0x74,0x29,0x28,0x75,0x29,0x2e,0x62,0x75,0x74, 0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x21, 0x31,0x29,0x2c,0x72,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29, 0x28,0x6e,0x2c,0x32,0x29,0x2c,0x63,0x3d,0x72,0x5b,0x30,0x5d,0x2c,0x6c,0x3d,0x72, 0x5b,0x31,0x5d,0x2c,0x6f,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75, 0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x22,0x22,0x29,0x2c,0x64,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x6f,0x2c,0x32,0x29,0x2c, 0x62,0x3d,0x64,0x5b,0x30,0x5d,0x2c,0x70,0x3d,0x64,0x5b,0x31,0x5d,0x2c,0x68,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74, 0x65,0x29,0x28,0x45,0x29,0x2c,0x66,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69, 0x2e,0x61,0x29,0x28,0x68,0x2c,0x32,0x29,0x2c,0x78,0x3d,0x66,0x5b,0x30,0x5d,0x2c, 0x76,0x3d,0x66,0x5b,0x31,0x5d,0x2c,0x79,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x22,0x70,0x69,0x63, 0x6f,0x22,0x29,0x2c,0x53,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61, 0x29,0x28,0x79,0x2c,0x31,0x29,0x5b,0x30,0x5d,0x2c,0x4c,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x22, 0x70,0x69,0x63,0x6f,0x22,0x29,0x2c,0x4e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x69,0x2e,0x61,0x29,0x28,0x4c,0x2c,0x31,0x29,0x5b,0x30,0x5d,0x3b,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52, 0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61, 0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68, 0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b, 0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x74,0x30,0x3d,0x76,0x2c,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x33,0x2c,0x5a,0x2e, 0x67,0x65,0x74,0x50,0x69,0x6e,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x73,0x28,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x65,0x2e,0x74,0x31,0x3d,0x65,0x2e,0x73, 0x65,0x6e,0x74,0x2c,0x28,0x30,0x2c,0x65,0x2e,0x74,0x30,0x29,0x28,0x65,0x2e,0x74, 0x31,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x63,0x61,0x73,0x65,0x22,0x65, 0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f, 0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x76, 0x2c,0x53,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x42,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x2c,0x61,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52, 0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74, 0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x69,0x66,0x28,0x74,0x2e,0x70,0x72, 0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x74, 0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29, 0x28,0x7b,0x7d,0x2c,0x78,0x29,0x2c,0x44,0x28,0x6e,0x29,0x2c,0x21,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x6e,0x29,0x2e,0x66,0x69,0x6c,0x74, 0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x21,0x6e,0x5b,0x65,0x5d,0x2e,0x65,0x72,0x72, 0x6f,0x72,0x7d,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x7b,0x65,0x2e, 0x6e,0x65,0x78,0x74,0x3d,0x37,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x70,0x28,0x22,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f, 0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x73,0x2c,0x20,0x73,0x65,0x65,0x20,0x61,0x62, 0x6f,0x76,0x65,0x22,0x29,0x2c,0x65,0x2e,0x61,0x62,0x72,0x75,0x70,0x74,0x28,0x22, 0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x37,0x3a, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x39,0x2c, 0x5a,0x2e,0x73,0x65,0x74,0x50,0x69,0x6e,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x73, 0x28,0x6e,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x39,0x3a,0x61,0x3d,0x65,0x2e,0x73, 0x65,0x6e,0x74,0x2c,0x70,0x28,0x61,0x3f,0x22,0x53,0x61,0x76,0x65,0x64,0x21,0x22, 0x3a,0x22,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x53,0x61,0x76,0x65, 0x22,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x31,0x3a,0x63,0x61,0x73,0x65,0x22, 0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74, 0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79, 0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29, 0x7d,0x7d,0x28,0x29,0x2c,0x44,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x65,0x29,0x2c,0x6e,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x72, 0x5b,0x61,0x5d,0x3b,0x65,0x5b,0x6e,0x5d,0x2e,0x65,0x72,0x72,0x6f,0x72,0x3d,0x6e, 0x75,0x6c,0x6c,0x3b,0x76,0x61,0x72,0x20,0x63,0x2c,0x73,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x50,0x2e,0x61,0x29,0x28,0x74,0x29,0x3b,0x74,0x72,0x79,0x7b,0x76, 0x61,0x72,0x20,0x69,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x63,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x69,0x66, 0x28,0x6e,0x3d,0x3d,0x3d,0x74,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x63,0x6f, 0x6e,0x74,0x69,0x6e,0x75,0x65,0x22,0x3b,0x22,0x22,0x21,0x3d,0x3d,0x65,0x5b,0x6e, 0x5d,0x2e,0x70,0x69,0x6e,0x7c,0x7c,0x4b,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x6e,0x3d,0x3d,0x3d,0x65,0x5b,0x74,0x5d,0x2e,0x62,0x75,0x74, 0x74,0x6f,0x6e,0x7d,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3f,0x65,0x5b, 0x6e,0x5d,0x2e,0x70,0x69,0x6e,0x3d,0x3d,0x3d,0x65,0x5b,0x74,0x5d,0x2e,0x70,0x69, 0x6e,0x3f,0x65,0x5b,0x6e,0x5d,0x2e,0x65,0x72,0x72,0x6f,0x72,0x3d,0x22,0x50,0x69, 0x6e,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2e, 0x70,0x69,0x6e,0x2c,0x22,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79, 0x20,0x61,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x22,0x29,0x3a,0x24,0x5b,0x4e,0x5d, 0x2e,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x50,0x69,0x6e,0x73,0x2e,0x66,0x69,0x6c, 0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x65,0x5b,0x6e,0x5d, 0x2e,0x70,0x69,0x6e,0x7d,0x29,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3e,0x30, 0x26,0x26,0x28,0x65,0x5b,0x6e,0x5d,0x2e,0x65,0x72,0x72,0x6f,0x72,0x3d,0x22,0x50, 0x69,0x6e,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x5b,0x6e,0x5d, 0x2e,0x70,0x69,0x6e,0x2c,0x22,0x20,0x69,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x62,0x6f,0x61,0x72,0x64, 0x22,0x29,0x29,0x3a,0x65,0x5b,0x6e,0x5d,0x2e,0x65,0x72,0x72,0x6f,0x72,0x3d,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x65,0x5b,0x6e,0x5d,0x2e,0x62,0x75, 0x74,0x74,0x6f,0x6e,0x2c,0x22,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x64,0x22,0x29,0x7d,0x3b,0x66,0x6f,0x72,0x28,0x73,0x2e,0x73,0x28,0x29,0x3b, 0x21,0x28,0x63,0x3d,0x73,0x2e,0x6e,0x28,0x29,0x29,0x2e,0x64,0x6f,0x6e,0x65,0x3b, 0x29,0x69,0x28,0x29,0x7d,0x63,0x61,0x74,0x63,0x68,0x28,0x6c,0x29,0x7b,0x73,0x2e, 0x65,0x28,0x6c,0x29,0x7d,0x66,0x69,0x6e,0x61,0x6c,0x6c,0x79,0x7b,0x73,0x2e,0x66, 0x28,0x29,0x7d,0x7d,0x2c,0x61,0x3d,0x30,0x2c,0x72,0x3d,0x74,0x3b,0x61,0x3c,0x72, 0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x61,0x2b,0x2b,0x29,0x6e,0x28,0x29,0x3b, 0x76,0x28,0x65,0x29,0x2c,0x6c,0x28,0x21,0x30,0x29,0x7d,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x43,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x50,0x69,0x6e,0x20,0x4d, 0x61,0x70,0x70,0x69,0x6e,0x67,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28, 0x6d,0x2e,0x61,0x2c,0x7b,0x6e,0x6f,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x3a, 0x21,0x30,0x2c,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x3a,0x63,0x2c,0x6f, 0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x42,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x22,0x70,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x22,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x62,0x65, 0x6c,0x6f,0x77,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, 0x72,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x74, 0x6f,0x2d,0x70,0x69,0x6e,0x20,0x6d,0x61,0x70,0x70,0x69,0x6e,0x67,0x2e,0x22,0x7d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29, 0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x61,0x6c,0x65,0x72,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x2d,0x77, 0x61,0x72,0x6e,0x69,0x6e,0x67,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x5b,0x22,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x20,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x73,0x20,0x74,0x6f,0x20,0x70,0x69,0x6e,0x73,0x20,0x74,0x68,0x61,0x74,0x20, 0x61,0x72,0x65,0x6e,0x27,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64, 0x20,0x6f,0x72,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x63,0x61, 0x6e,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x76,0x69, 0x63,0x65,0x20,0x69,0x6e,0x20,0x6e,0x6f,0x6e,0x2d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x61,0x6c,0x20,0x73,0x74,0x61,0x74,0x65,0x2e,0x20,0x54,0x6f,0x20,0x63, 0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, 0x6f,0x6e,0x20,0x67,0x6f,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x73,0x2e,0x62, 0x2c,0x7b,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c,0x74,0x6f,0x3a,0x22,0x2f, 0x72,0x65,0x73,0x65,0x74,0x2d,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x52,0x65,0x73,0x65,0x74,0x20, 0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x7d,0x29,0x2c,0x22,0x20,0x70,0x61, 0x67,0x65,0x2e,0x22,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x2c,0x7b, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x61,0x62,0x6c,0x65, 0x20,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x6d,0x20,0x70,0x69,0x6e,0x2d,0x6d,0x61, 0x70,0x70,0x69,0x6e,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x2c,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x65,0x61,0x64,0x22,0x2c,0x7b,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x61,0x62,0x6c,0x65,0x2d,0x68,0x65,0x61, 0x64,0x65,0x72,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x6c,0x61,0x62,0x65,0x6c, 0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x67,0x5b,0x74,0x5d,0x2e, 0x6c,0x61,0x62,0x65,0x6c,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x22,0x50,0x69,0x6e,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x7d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x22,0x74,0x62,0x6f,0x64,0x79,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x67,0x5b,0x74,0x5d,0x29,0x29,0x7c,0x7c, 0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x65,0x3f,0x76,0x6f,0x69,0x64,0x20, 0x30,0x3a,0x65,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6c, 0x61,0x62,0x65,0x6c,0x22,0x21,0x3d,0x3d,0x65,0x26,0x26,0x22,0x76,0x61,0x6c,0x75, 0x65,0x22,0x21,0x3d,0x3d,0x65,0x7d,0x29,0x29,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72, 0x20,0x61,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63, 0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x63,0x26,0x26,0x78,0x5b,0x65,0x5d, 0x2e,0x65,0x72,0x72,0x6f,0x72,0x3f,0x22,0x74,0x61,0x62,0x6c,0x65,0x2d,0x64,0x61, 0x6e,0x67,0x65,0x72,0x22,0x3a,0x22,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x67,0x5b,0x74,0x5d,0x5b,0x65,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x43,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72, 0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x70,0x69,0x6e, 0x2d,0x69,0x6e,0x70,0x75,0x74,0x20,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x78,0x5b, 0x65,0x5d,0x2e,0x70,0x69,0x6e,0x2c,0x6d,0x69,0x6e,0x3a,0x24,0x5b,0x4e,0x5d,0x2e, 0x6d,0x69,0x6e,0x50,0x69,0x6e,0x2c,0x6d,0x61,0x78,0x3a,0x24,0x5b,0x4e,0x5d,0x2e, 0x6d,0x61,0x78,0x50,0x69,0x6e,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, 0x3a,0x21,0x21,0x78,0x5b,0x65,0x5d,0x2e,0x65,0x72,0x72,0x6f,0x72,0x2c,0x72,0x65, 0x71,0x75,0x69,0x72,0x65,0x64,0x3a,0x4b,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x74,0x3d,0x3d,0x3d,0x65,0x7d,0x29,0x29,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x76,0x61, 0x72,0x20,0x6e,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28, 0x7b,0x7d,0x2c,0x78,0x29,0x3b,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x3f,0x6e,0x5b,0x74,0x5d,0x2e,0x70,0x69,0x6e,0x3d,0x70,0x61, 0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x29,0x3a,0x6e,0x5b,0x74,0x5d,0x2e,0x70,0x69,0x6e,0x3d, 0x22,0x22,0x2c,0x44,0x28,0x6e,0x29,0x7d,0x28,0x74,0x2c,0x65,0x29,0x7d,0x7d,0x29, 0x2c,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x28,0x61,0x3d,0x24,0x5b,0x4e,0x5d,0x29, 0x7c,0x7c,0x76,0x6f,0x69,0x64,0x20,0x30,0x3d,0x3d,0x3d,0x61,0x3f,0x76,0x6f,0x69, 0x64,0x20,0x30,0x3a,0x61,0x2e,0x6d,0x69,0x6e,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x43,0x6f,0x6e,0x74, 0x72,0x6f,0x6c,0x2e,0x46,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x2c,0x7b,0x74,0x79, 0x70,0x65,0x3a,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x78,0x5b,0x65,0x5d,0x2e,0x65,0x72,0x72,0x6f,0x72, 0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x2c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d, 0x6d,0x61,0x70,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x29,0x29, 0x7d,0x29,0x29,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x4d,0x2e,0x61,0x2c,0x7b,0x74,0x79,0x70,0x65, 0x3a,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x22,0x53,0x61,0x76,0x65,0x22,0x7d,0x29,0x2c,0x62,0x3f,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x73,0x70,0x61, 0x6e,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x61, 0x6c,0x65,0x72,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x62, 0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x5d,0x7d,0x29,0x7d,0x29,0x7d,0x76,0x61,0x72, 0x20,0x5f,0x3d,0x5b,0x22,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22,0x2c, 0x22,0x74,0x69,0x74,0x6c,0x65,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x22, 0x5d,0x2c,0x7a,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x74,0x69,0x74,0x6c,0x65,0x43,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x2c,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x68,0x2e, 0x61,0x29,0x28,0x65,0x2c,0x5f,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x43,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x64,0x61, 0x6e,0x67,0x65,0x72,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29, 0x2c,0x74,0x69,0x74,0x6c,0x65,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x74,0x65,0x78,0x74,0x2d,0x77,0x68,0x69,0x74,0x65,0x20,0x62,0x67,0x2d,0x64, 0x61,0x6e,0x67,0x65,0x72,0x20,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e, 0x29,0x7d,0x2c,0x61,0x29,0x29,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x51,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b, 0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b, 0x76,0x61,0x72,0x20,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61, 0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68, 0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b, 0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x69,0x66,0x28,0x74,0x2e,0x70,0x72,0x65,0x76, 0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x2c,0x74,0x2e,0x73, 0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x2c,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d, 0x28,0x22,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74, 0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x3f,0x22,0x29,0x29,0x7b,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d, 0x38,0x3b,0x62,0x72,0x65,0x61,0x6b,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x2e,0x6e,0x65,0x78,0x74,0x3d,0x35,0x2c,0x5a,0x2e,0x72,0x65,0x73,0x65,0x74,0x53, 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x35, 0x3a,0x6e,0x3d,0x65,0x2e,0x73,0x65,0x6e,0x74,0x2c,0x63,0x6f,0x6e,0x73,0x6f,0x6c, 0x65,0x2e,0x6c,0x6f,0x67,0x28,0x6e,0x29,0x2c,0x73,0x65,0x74,0x54,0x69,0x6d,0x65, 0x6f,0x75,0x74,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b, 0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e, 0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x7d,0x29,0x2c,0x32,0x65,0x33,0x29,0x3b, 0x63,0x61,0x73,0x65,0x20,0x38,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e,0x64,0x22, 0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29, 0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69, 0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x7d,0x28,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x7a,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a, 0x22,0x52,0x65,0x73,0x65,0x74,0x20,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x70,0x22,0x2c,0x7b,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64,0x2d,0x74,0x65, 0x78,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x54,0x68, 0x69,0x73,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x73, 0x20,0x61,0x6c,0x6c,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69, 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x73,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75, 0x72,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x2e,0x20,0x55,0x73, 0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x73, 0x20,0x61,0x20,0x6c,0x61,0x73,0x74,0x20,0x72,0x65,0x73,0x6f,0x72,0x74,0x20,0x6f, 0x72,0x20,0x77,0x68,0x65,0x6e,0x20,0x74,0x72,0x79,0x69,0x6e,0x67,0x20,0x74,0x6f, 0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x65,0x20,0x6f,0x64,0x64,0x20,0x69,0x73, 0x73,0x75,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x79,0x6f,0x75,0x72,0x20,0x63, 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x2e,0x22,0x7d,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x70,0x22,0x2c, 0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64, 0x2d,0x74,0x65,0x78,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x22,0x54,0x68,0x69,0x73,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x77,0x69, 0x6c,0x6c,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79, 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, 0x6f,0x6c,0x6c,0x65,0x72,0x2e,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22, 0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x74,0x6e, 0x20,0x62,0x74,0x6e,0x2d,0x64,0x61,0x6e,0x67,0x65,0x72,0x22,0x2c,0x6f,0x6e,0x43, 0x6c,0x69,0x63,0x6b,0x3a,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x22,0x52,0x65,0x73,0x65,0x74,0x20,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22, 0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x76,0x61,0x72,0x20,0x65,0x65,0x3d,0x6e,0x28,0x34, 0x32,0x29,0x2c,0x74,0x65,0x3d,0x6e,0x28,0x31,0x34,0x29,0x2c,0x6e,0x65,0x3d,0x5b, 0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x58,0x49,0x6e,0x70,0x75,0x74,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a, 0x22,0x4e,0x69,0x6e,0x74,0x65,0x6e,0x64,0x6f,0x20,0x53,0x77,0x69,0x74,0x63,0x68, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x31,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65, 0x6c,0x3a,0x22,0x50,0x53,0x33,0x2f,0x44,0x69,0x72,0x65,0x63,0x74,0x49,0x6e,0x70, 0x75,0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x32,0x7d,0x5d,0x2c,0x61,0x65, 0x3d,0x5b,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x44,0x2d,0x70,0x61,0x64,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c, 0x3a,0x22,0x4c,0x65,0x66,0x74,0x20,0x41,0x6e,0x61,0x6c,0x6f,0x67,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x31,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22, 0x52,0x69,0x67,0x68,0x74,0x20,0x41,0x6e,0x61,0x6c,0x6f,0x67,0x22,0x2c,0x76,0x61, 0x6c,0x75,0x65,0x3a,0x32,0x7d,0x5d,0x2c,0x72,0x65,0x3d,0x5b,0x7b,0x6c,0x61,0x62, 0x65,0x6c,0x3a,0x22,0x55,0x70,0x20,0x50,0x72,0x69,0x6f,0x72,0x69,0x74,0x79,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c, 0x3a,0x22,0x4e,0x65,0x75,0x74,0x72,0x61,0x6c,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x31,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x4c,0x61,0x73,0x74, 0x20,0x57,0x69,0x6e,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x32,0x7d,0x5d,0x2c, 0x63,0x65,0x3d,0x74,0x65,0x2e,0x62,0x28,0x29,0x2e,0x73,0x68,0x61,0x70,0x65,0x28, 0x7b,0x64,0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29, 0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29,0x2e,0x6f,0x6e,0x65,0x4f, 0x66,0x28,0x61,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x7d,0x29,0x29,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22, 0x44,0x2d,0x50,0x61,0x64,0x20,0x4d,0x6f,0x64,0x65,0x22,0x29,0x2c,0x69,0x6e,0x70, 0x75,0x74,0x4d,0x6f,0x64,0x65,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65, 0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29,0x2e,0x6f,0x6e,0x65,0x4f,0x66,0x28,0x6e, 0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76,0x61,0x6c,0x75, 0x65,0x7d,0x29,0x29,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x49,0x6e,0x70, 0x75,0x74,0x20,0x4d,0x6f,0x64,0x65,0x22,0x29,0x2c,0x73,0x6f,0x63,0x64,0x4d,0x6f, 0x64,0x65,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x64,0x28,0x29,0x2e,0x6f,0x6e,0x65,0x4f,0x66,0x28,0x72,0x65,0x2e,0x6d,0x61, 0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x29,0x29, 0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x53,0x4f,0x43,0x44,0x20,0x4d,0x6f, 0x64,0x65,0x22,0x29,0x7d,0x29,0x2c,0x73,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x65,0x65,0x2e,0x62,0x29,0x28,0x29,0x2c,0x74,0x3d,0x65,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x65,0x74,0x56,0x61,0x6c,0x75, 0x65,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x61,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e, 0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65, 0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72, 0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e, 0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73, 0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x74,0x30,0x3d, 0x6e,0x2c,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x33,0x2c,0x5a,0x2e,0x67,0x65,0x74, 0x47,0x61,0x6d,0x65,0x70,0x61,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x28,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x33,0x3a,0x65,0x2e,0x74,0x31,0x3d,0x65,0x2e,0x73, 0x65,0x6e,0x74,0x2c,0x28,0x30,0x2c,0x65,0x2e,0x74,0x30,0x29,0x28,0x65,0x2e,0x74, 0x31,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x63,0x61,0x73,0x65,0x22,0x65, 0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f, 0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x6e, 0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45, 0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x74,0x2e,0x64,0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x26,0x26,0x28, 0x74,0x2e,0x64,0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x3d,0x70,0x61,0x72,0x73,0x65, 0x49,0x6e,0x74,0x28,0x74,0x2e,0x64,0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x29,0x29, 0x2c,0x74,0x2e,0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x26,0x26,0x28,0x74, 0x2e,0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x3d,0x70,0x61,0x72,0x73,0x65, 0x49,0x6e,0x74,0x28,0x74,0x2e,0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x29, 0x29,0x2c,0x74,0x2e,0x73,0x6f,0x63,0x64,0x4d,0x6f,0x64,0x65,0x26,0x26,0x28,0x74, 0x2e,0x73,0x6f,0x63,0x64,0x4d,0x6f,0x64,0x65,0x3d,0x70,0x61,0x72,0x73,0x65,0x49, 0x6e,0x74,0x28,0x74,0x2e,0x73,0x6f,0x63,0x64,0x4d,0x6f,0x64,0x65,0x29,0x29,0x7d, 0x29,0x2c,0x5b,0x74,0x2c,0x6e,0x5d,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x65,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53, 0x74,0x61,0x74,0x65,0x29,0x28,0x22,0x22,0x29,0x2c,0x74,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x65,0x2c,0x32,0x29,0x2c,0x6e,0x3d,0x74, 0x5b,0x30,0x5d,0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x2c,0x63,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61, 0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x74, 0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52, 0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74, 0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x6e,0x3d,0x5a,0x2e,0x73,0x65,0x74, 0x47,0x61,0x6d,0x65,0x70,0x61,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x28,0x74, 0x29,0x2c,0x72,0x28,0x6e,0x3f,0x22,0x53,0x61,0x76,0x65,0x64,0x21,0x22,0x3a,0x22, 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x53,0x61,0x76,0x65,0x22,0x29, 0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x61,0x73,0x65,0x22,0x65,0x6e,0x64, 0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x28, 0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x7d,0x28, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x65,0x65,0x2e,0x61,0x2c,0x7b,0x76,0x61,0x6c, 0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65,0x6d,0x61,0x3a,0x63,0x65, 0x2c,0x6f,0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x63,0x2c,0x69,0x6e,0x69,0x74, 0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x73,0x3a,0x7b,0x7d,0x2c,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65, 0x53,0x75,0x62,0x6d,0x69,0x74,0x2c,0x61,0x3d,0x65,0x2e,0x68,0x61,0x6e,0x64,0x6c, 0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x2c,0x72,0x3d,0x28,0x65,0x2e,0x68,0x61,0x6e, 0x64,0x6c,0x65,0x42,0x6c,0x75,0x72,0x2c,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73, 0x29,0x2c,0x63,0x3d,0x28,0x65,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65,0x64,0x2c,0x65, 0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x43,0x2c, 0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73, 0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6d,0x2e,0x61,0x2c,0x7b,0x6e, 0x6f,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x3a,0x21,0x30,0x2c,0x6f,0x6e,0x53, 0x75,0x62,0x6d,0x69,0x74,0x3a,0x74,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29, 0x28,0x6d,0x2e,0x61,0x2e,0x47,0x72,0x6f,0x75,0x70,0x2c,0x7b,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x72,0x6f,0x77,0x20,0x6d,0x62,0x2d,0x33,0x22, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x4c,0x61,0x62, 0x65,0x6c,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x49,0x6e, 0x70,0x75,0x74,0x20,0x4d,0x6f,0x64,0x65,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22, 0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c, 0x2d,0x73,0x6d,0x2d,0x33,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d, 0x2e,0x61,0x2e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a, 0x22,0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x22,0x2c,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x2d,0x73,0x6d,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x69, 0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67, 0x65,0x3a,0x61,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e, 0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x6e,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f, 0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e, 0x76,0x61,0x6c,0x75,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65, 0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d,0x2c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d, 0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x6d,0x2e,0x61,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x46,0x65,0x65, 0x64,0x62,0x61,0x63,0x6b,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x69,0x6e,0x76, 0x61,0x6c,0x69,0x64,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x63, 0x2e,0x69,0x6e,0x70,0x75,0x74,0x4d,0x6f,0x64,0x65,0x7d,0x29,0x5d,0x7d,0x29,0x5d, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73, 0x29,0x28,0x6d,0x2e,0x61,0x2e,0x47,0x72,0x6f,0x75,0x70,0x2c,0x7b,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x72,0x6f,0x77,0x20,0x6d,0x62,0x2d,0x33, 0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x4c,0x61, 0x62,0x65,0x6c,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x44, 0x2d,0x50,0x61,0x64,0x20,0x4d,0x6f,0x64,0x65,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76, 0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f, 0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x6d,0x2e,0x61,0x2e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2c,0x7b,0x6e,0x61,0x6d,0x65, 0x3a,0x22,0x64,0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x22,0x2c,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65, 0x63,0x74,0x2d,0x73,0x6d,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x64, 0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65, 0x3a,0x61,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e,0x64, 0x70,0x61,0x64,0x4d,0x6f,0x64,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x61,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c, 0x61,0x62,0x65,0x6c,0x7d,0x2c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x64,0x70, 0x61,0x64,0x4d,0x6f,0x64,0x65,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e, 0x61,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x46,0x65,0x65,0x64,0x62,0x61, 0x63,0x6b,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x63,0x2e,0x64,0x70, 0x61,0x64,0x4d,0x6f,0x64,0x65,0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6d,0x2e, 0x61,0x2e,0x47,0x72,0x6f,0x75,0x70,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61, 0x6d,0x65,0x3a,0x22,0x72,0x6f,0x77,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x4c,0x61,0x62,0x65,0x6c,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x53,0x4f,0x43,0x44,0x20, 0x4d,0x6f,0x64,0x65,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c, 0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d, 0x33,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x53, 0x65,0x6c,0x65,0x63,0x74,0x2c,0x7b,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x73,0x6f,0x63, 0x64,0x4d,0x6f,0x64,0x65,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x73,0x6f,0x63,0x64,0x4d,0x6f, 0x64,0x65,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x69,0x73, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e,0x73,0x6f,0x63,0x64,0x4d,0x6f, 0x64,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x72,0x65,0x2e,0x6d, 0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c, 0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d, 0x2c,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2d,0x73,0x6f,0x63,0x64,0x4d,0x6f,0x64, 0x65,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61, 0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x43,0x6f,0x6e, 0x74,0x72,0x6f,0x6c,0x2e,0x46,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x2c,0x7b,0x74, 0x79,0x70,0x65,0x3a,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x63,0x2e,0x73,0x6f,0x63,0x64,0x4d,0x6f,0x64, 0x65,0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x4d,0x2e,0x61,0x2c,0x7b,0x74,0x79,0x70, 0x65,0x3a,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x22,0x53,0x61,0x76,0x65,0x22,0x7d,0x29,0x2c,0x6e,0x3f,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x73,0x70, 0x61,0x6e,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x61,0x6c,0x65,0x72,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x6e,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x73,0x65,0x2c,0x7b,0x7d,0x29,0x5d,0x7d,0x29, 0x7d,0x29,0x7d,0x7d,0x29,0x7d,0x76,0x61,0x72,0x20,0x6c,0x65,0x3d,0x6e,0x28,0x33, 0x31,0x36,0x29,0x2c,0x6f,0x65,0x3d,0x6e,0x28,0x31,0x33,0x38,0x29,0x2c,0x75,0x65, 0x3d,0x5b,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x2c,0x22,0x65,0x72,0x72,0x6f,0x72, 0x22,0x2c,0x22,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x22,0x5d,0x2c,0x64,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c, 0x2c,0x6e,0x3d,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x2c,0x61,0x3d,0x65,0x2e,0x67, 0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x2c,0x72,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x68,0x2e,0x61,0x29,0x28,0x65,0x2c,0x75,0x65, 0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x47,0x72,0x6f,0x75, 0x70,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x61,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x4c,0x61,0x62,0x65,0x6c, 0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x74,0x7d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61, 0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x72,0x29,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6d,0x2e,0x61,0x2e,0x43,0x6f, 0x6e,0x74,0x72,0x6f,0x6c,0x2e,0x46,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x2c,0x7b, 0x74,0x79,0x70,0x65,0x3a,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x22,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x6e,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x2c, 0x62,0x65,0x3d,0x5b,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x44,0x69,0x73,0x61, 0x62,0x6c,0x65,0x64,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d,0x2c,0x7b, 0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x31,0x7d,0x5d,0x2c,0x70,0x65,0x3d,0x5b,0x7b,0x6c, 0x61,0x62,0x65,0x6c,0x3a,0x22,0x69,0x32,0x63,0x30,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x30,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x69,0x32,0x63, 0x31,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x31,0x7d,0x5d,0x2c,0x6a,0x65,0x3d, 0x7b,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x21,0x31,0x2c,0x73,0x64,0x61,0x50, 0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x73,0x63,0x6c,0x50,0x69,0x6e,0x3a,0x2d,0x31,0x2c, 0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3a,0x22,0x30,0x78,0x33,0x43, 0x22,0x2c,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63,0x6b,0x3a,0x30,0x2c,0x69,0x32,0x63, 0x53,0x70,0x65,0x65,0x64,0x3a,0x34,0x65,0x35,0x2c,0x66,0x6c,0x69,0x70,0x44,0x69, 0x73,0x70,0x6c,0x61,0x79,0x3a,0x21,0x31,0x2c,0x69,0x6e,0x76,0x65,0x72,0x74,0x44, 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x21,0x31,0x7d,0x2c,0x68,0x65,0x3d,0x5b,0x5d, 0x2c,0x6d,0x65,0x3d,0x74,0x65,0x2e,0x62,0x28,0x29,0x2e,0x73,0x68,0x61,0x70,0x65, 0x28,0x7b,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29, 0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3f, 0x22,0x29,0x2c,0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3a,0x74,0x65, 0x2e,0x63,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29,0x2e, 0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x49,0x32,0x43,0x20,0x41,0x64,0x64,0x72,0x65, 0x73,0x73,0x22,0x29,0x2c,0x73,0x64,0x61,0x50,0x69,0x6e,0x3a,0x74,0x65,0x2e,0x61, 0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29,0x2e,0x6d,0x69, 0x6e,0x28,0x2d,0x31,0x29,0x2e,0x6d,0x61,0x78,0x28,0x32,0x39,0x29,0x2e,0x74,0x65, 0x73,0x74,0x28,0x22,0x22,0x2c,0x22,0x24,0x7b,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61, 0x6c,0x56,0x61,0x6c,0x75,0x65,0x7d,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61, 0x64,0x79,0x20,0x61,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x21,0x22,0x2c,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x2d,0x31,0x3d,0x3d,0x3d,0x68,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66, 0x28,0x65,0x29,0x7d,0x29,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x53,0x44, 0x41,0x20,0x50,0x69,0x6e,0x22,0x29,0x2c,0x73,0x63,0x6c,0x50,0x69,0x6e,0x3a,0x74, 0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29, 0x2e,0x6d,0x69,0x6e,0x28,0x2d,0x31,0x29,0x2e,0x6d,0x61,0x78,0x28,0x32,0x39,0x29, 0x2e,0x74,0x65,0x73,0x74,0x28,0x22,0x22,0x2c,0x22,0x24,0x7b,0x6f,0x72,0x69,0x67, 0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x7d,0x20,0x69,0x73,0x20,0x61,0x6c, 0x72,0x65,0x61,0x64,0x79,0x20,0x61,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x21,0x22, 0x2c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x2d,0x31,0x3d,0x3d,0x3d,0x68,0x65,0x2e,0x69,0x6e,0x64,0x65, 0x78,0x4f,0x66,0x28,0x65,0x29,0x7d,0x29,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28, 0x22,0x53,0x43,0x4c,0x20,0x50,0x69,0x6e,0x22,0x29,0x2c,0x69,0x32,0x63,0x42,0x6c, 0x6f,0x63,0x6b,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69, 0x72,0x65,0x64,0x28,0x29,0x2e,0x6f,0x6e,0x65,0x4f,0x66,0x28,0x70,0x65,0x2e,0x6d, 0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x29, 0x29,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x49,0x32,0x43,0x20,0x42,0x6c, 0x6f,0x63,0x6b,0x22,0x29,0x2c,0x69,0x32,0x63,0x53,0x70,0x65,0x65,0x64,0x3a,0x74, 0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29, 0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x49,0x32,0x43,0x20,0x53,0x70,0x65,0x65, 0x64,0x22,0x29,0x2c,0x66,0x6c,0x69,0x70,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a, 0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x46,0x6c, 0x69,0x70,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x29,0x2c,0x69,0x6e,0x76, 0x65,0x72,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x74,0x65,0x2e,0x61,0x28, 0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x49,0x6e,0x76,0x65,0x72,0x74,0x20, 0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x29,0x7d,0x29,0x2c,0x4f,0x65,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x65,0x65,0x2e,0x62,0x29,0x28,0x29,0x2c,0x74, 0x3d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x73,0x65, 0x74,0x56,0x61,0x6c,0x75,0x65,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63, 0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29, 0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b, 0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d, 0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x32,0x2c,0x5a, 0x2e,0x67,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4f,0x70,0x74,0x69,0x6f, 0x6e,0x73,0x28,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x74,0x3d,0x65,0x2e, 0x73,0x65,0x6e,0x74,0x2c,0x68,0x65,0x3d,0x74,0x2e,0x75,0x73,0x65,0x64,0x50,0x69, 0x6e,0x73,0x2c,0x6e,0x28,0x74,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x35,0x3a,0x63, 0x61,0x73,0x65,0x22,0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x73,0x74,0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29, 0x29,0x29,0x29,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61, 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x21,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x29,0x7b,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68, 0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x28,0x29, 0x7d,0x29,0x2c,0x5b,0x6e,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x74,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65, 0x64,0x26,0x26,0x28,0x74,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3d,0x70,0x61, 0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x74,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64, 0x29,0x29,0x2c,0x74,0x2e,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63,0x6b,0x26,0x26,0x28, 0x74,0x2e,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63,0x6b,0x3d,0x70,0x61,0x72,0x73,0x65, 0x49,0x6e,0x74,0x28,0x74,0x2e,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63,0x6b,0x29,0x29, 0x2c,0x74,0x2e,0x66,0x6c,0x69,0x70,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x26,0x26, 0x28,0x74,0x2e,0x66,0x6c,0x69,0x70,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,0x70, 0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x74,0x2e,0x66,0x6c,0x69,0x70,0x44,0x69, 0x73,0x70,0x6c,0x61,0x79,0x29,0x29,0x2c,0x74,0x2e,0x69,0x6e,0x76,0x65,0x72,0x74, 0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x26,0x26,0x28,0x74,0x2e,0x69,0x6e,0x76,0x65, 0x72,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x3d,0x70,0x61,0x72,0x73,0x65,0x49, 0x6e,0x74,0x28,0x74,0x2e,0x69,0x6e,0x76,0x65,0x72,0x74,0x44,0x69,0x73,0x70,0x6c, 0x61,0x79,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x74,0x2c,0x6e,0x5d,0x29,0x2c,0x6e,0x75, 0x6c,0x6c,0x7d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x28, 0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x22,0x22,0x29,0x2c,0x74, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x65,0x2c,0x32, 0x29,0x2c,0x6e,0x3d,0x74,0x5b,0x30,0x5d,0x2c,0x72,0x3d,0x74,0x5b,0x31,0x5d,0x2c, 0x63,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72, 0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29,0x28,0x52, 0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b, 0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65, 0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x6e,0x3d, 0x5a,0x2e,0x73,0x65,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x4f,0x70,0x74,0x69, 0x6f,0x6e,0x73,0x28,0x74,0x29,0x2c,0x72,0x28,0x6e,0x3f,0x22,0x53,0x61,0x76,0x65, 0x64,0x21,0x22,0x3a,0x22,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x53, 0x61,0x76,0x65,0x22,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x61,0x73, 0x65,0x22,0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e, 0x73,0x74,0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29, 0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70, 0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74, 0x73,0x29,0x7d,0x7d,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x65,0x65,0x2e,0x61, 0x2c,0x7b,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65, 0x6d,0x61,0x3a,0x6d,0x65,0x2c,0x6f,0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x63, 0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x73,0x3a,0x6a, 0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x68, 0x61,0x6e,0x64,0x6c,0x65,0x53,0x75,0x62,0x6d,0x69,0x74,0x2c,0x61,0x3d,0x65,0x2e, 0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x2c,0x72,0x3d,0x28, 0x65,0x2e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x42,0x6c,0x75,0x72,0x2c,0x65,0x2e,0x76, 0x61,0x6c,0x75,0x65,0x73,0x29,0x2c,0x63,0x3d,0x28,0x65,0x2e,0x74,0x6f,0x75,0x63, 0x68,0x65,0x64,0x2c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x73,0x29,0x28,0x43,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65,0x3a,0x22,0x44,0x69, 0x73,0x70,0x6c,0x61,0x79,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74, 0x69,0x6f,0x6e,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x70,0x22, 0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x41,0x20,0x6d,0x6f, 0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x20,0x63,0x61,0x6e,0x20,0x62,0x65,0x20,0x75,0x73,0x65,0x64,0x20,0x74,0x6f,0x20, 0x73,0x68,0x6f,0x77,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, 0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x6e,0x64,0x20,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x20,0x61,0x63,0x74,0x69,0x76,0x69,0x74,0x79,0x2e,0x20,0x45,0x6e,0x73,0x75, 0x72,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20, 0x6d,0x6f,0x64,0x75,0x6c,0x65,0x20,0x68,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x66, 0x6f,0x6c,0x6c,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x74,0x74,0x72,0x69,0x62,0x75, 0x74,0x65,0x73,0x3a,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x75,0x6c,0x22,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x22,0x6c,0x69,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x22,0x4d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x31,0x32,0x38, 0x78,0x36,0x34,0x20,0x72,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x22,0x7d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x22,0x6c,0x69,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22, 0x55,0x73,0x65,0x73,0x20,0x49,0x32,0x43,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20, 0x53,0x53,0x44,0x31,0x33,0x30,0x36,0x2c,0x20,0x53,0x48,0x31,0x31,0x30,0x36,0x2c, 0x20,0x53,0x48,0x31,0x31,0x30,0x37,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72, 0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x64,0x69,0x73,0x70, 0x6c,0x61,0x79,0x20,0x49,0x43,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6c,0x69,0x22,0x2c,0x7b,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x53,0x75,0x70,0x70,0x6f,0x72,0x74,0x73, 0x20,0x33,0x2e,0x33,0x76,0x20,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22, 0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x22,0x70,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x22,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x74,0x61,0x62, 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65, 0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x49,0x32,0x43,0x20,0x62,0x6c,0x6f,0x63,0x6b, 0x20,0x74,0x6f,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x62,0x61,0x73,0x65,0x64, 0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, 0x65,0x64,0x20,0x53,0x44,0x41,0x20,0x61,0x6e,0x64,0x20,0x53,0x43,0x4c,0x20,0x70, 0x69,0x6e,0x73,0x3a,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6c,0x65,0x2e,0x61,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x6f,0x65,0x2e,0x61,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x73,0x29,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x61,0x62, 0x6c,0x65,0x2d,0x73,0x6d,0x20,0x6d,0x62,0x2d,0x34,0x22,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x65,0x61,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x74,0x68,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x22,0x53,0x44,0x41,0x2f,0x53,0x43,0x4c,0x20,0x50,0x69,0x6e,0x73,0x22, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x22,0x74,0x68,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x22,0x49,0x32,0x43,0x20,0x42,0x6c,0x6f,0x63,0x6b,0x22,0x7d,0x29,0x5d,0x7d,0x29, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73, 0x29,0x28,0x22,0x74,0x62,0x6f,0x64,0x79,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x22,0x30,0x2f,0x31,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x30,0x22,0x7d,0x29,0x5d,0x7d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29, 0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x32, 0x2f,0x33,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x31,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74, 0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22, 0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x34,0x2f,0x35,0x22, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x22,0x69,0x32,0x63,0x30,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x36,0x2f,0x37,0x22,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74, 0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32, 0x63,0x31,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x22,0x38,0x2f,0x39,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x30,0x22, 0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x22,0x31,0x30,0x2f,0x31,0x31,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x31,0x22,0x7d, 0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6f,0x65,0x2e,0x61,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22, 0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x61,0x62, 0x6c,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x2d,0x73,0x6d,0x20,0x6d,0x62,0x2d,0x34, 0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x65,0x61,0x64, 0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x22,0x2c,0x7b,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x53,0x44,0x41,0x2f,0x53,0x43,0x4c, 0x20,0x50,0x69,0x6e,0x73,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x68,0x22,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x49,0x32,0x43,0x20,0x42,0x6c,0x6f,0x63,0x6b, 0x22,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x62,0x6f,0x64,0x79,0x22,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x31,0x32,0x2f,0x31,0x33,0x22,0x7d,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22, 0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69, 0x32,0x63,0x30,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x31,0x34,0x2f,0x31,0x35,0x22,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74, 0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32, 0x63,0x31,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x22,0x31,0x36,0x2f,0x31,0x37,0x22,0x7d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64, 0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63, 0x30,0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x22,0x31,0x38,0x2f,0x31,0x39,0x22,0x7d,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22, 0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x31, 0x22,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x22,0x32,0x30,0x2f,0x32,0x31,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c, 0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x30,0x22, 0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x73,0x29,0x28,0x22,0x74,0x72,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x22,0x32,0x36,0x2f,0x32,0x37,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x74,0x64,0x22,0x2c,0x7b, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x69,0x32,0x63,0x31,0x22,0x7d, 0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x29,0x5d,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6d, 0x2e,0x61,0x2c,0x7b,0x6e,0x6f,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x3a,0x21, 0x30,0x2c,0x6f,0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x74,0x2c,0x63,0x68,0x69, 0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x73,0x29,0x28,0x6c,0x65,0x2e,0x61,0x2c,0x7b,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x78,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x55,0x73, 0x65,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a, 0x22,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74, 0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62, 0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x65,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x63,0x2e,0x65,0x6e,0x61,0x62, 0x6c,0x65,0x64,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e, 0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65, 0x3a,0x61,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x62,0x65,0x2e,0x6d, 0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c, 0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d, 0x2c,0x22,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x78,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x49,0x32,0x43,0x20,0x42, 0x6c,0x6f,0x63,0x6b,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x69,0x32,0x63,0x42, 0x6c,0x6f,0x63,0x6b,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d,0x22, 0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63,0x6b, 0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x63,0x2e,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63, 0x6b,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e,0x69,0x32, 0x63,0x42,0x6c,0x6f,0x63,0x6b,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a, 0x61,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x70,0x65,0x2e,0x6d,0x61, 0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x7b, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d,0x2c, 0x22,0x69,0x32,0x63,0x42,0x6c,0x6f,0x63,0x6b,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x64,0x65,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65, 0x72,0x22,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x53,0x44,0x41,0x20,0x50,0x69, 0x6e,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x73,0x64,0x61,0x50,0x69,0x6e,0x22, 0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72,0x6f, 0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c, 0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x72,0x2e,0x73,0x64,0x61,0x50,0x69,0x6e,0x2c,0x65,0x72,0x72,0x6f,0x72, 0x3a,0x63,0x2e,0x73,0x64,0x61,0x50,0x69,0x6e,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61, 0x6c,0x69,0x64,0x3a,0x63,0x2e,0x73,0x64,0x61,0x50,0x69,0x6e,0x2c,0x6f,0x6e,0x43, 0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x6d,0x69,0x6e,0x3a,0x2d,0x31,0x2c,0x6d, 0x61,0x78,0x3a,0x32,0x39,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x65,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22, 0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x53, 0x43,0x4c,0x20,0x50,0x69,0x6e,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x73,0x63, 0x6c,0x50,0x69,0x6e,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d, 0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62,0x2d,0x33,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x73,0x63,0x6c,0x50,0x69,0x6e,0x2c, 0x65,0x72,0x72,0x6f,0x72,0x3a,0x63,0x2e,0x73,0x63,0x6c,0x50,0x69,0x6e,0x2c,0x69, 0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e,0x73,0x63,0x6c,0x50,0x69, 0x6e,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x6d,0x69,0x6e, 0x3a,0x2d,0x31,0x2c,0x6d,0x61,0x78,0x3a,0x32,0x39,0x7d,0x29,0x5d,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6c, 0x65,0x2e,0x61,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x6d,0x62,0x2d,0x33,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x65, 0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x74,0x65,0x78,0x74,0x22,0x2c,0x6c,0x61, 0x62,0x65,0x6c,0x3a,0x22,0x49,0x32,0x43,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73, 0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65, 0x73,0x73,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66, 0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x22,0x2c, 0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22, 0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73, 0x73,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x63,0x2e,0x69,0x32,0x63,0x41,0x64,0x64, 0x72,0x65,0x73,0x73,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63, 0x2e,0x69,0x32,0x63,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x2c,0x6f,0x6e,0x43,0x68, 0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x6d,0x61,0x78,0x4c,0x65,0x6e,0x67,0x74,0x68, 0x3a,0x34,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x64,0x65,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x6e,0x75,0x6d, 0x62,0x65,0x72,0x22,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x49,0x32,0x43,0x20, 0x53,0x70,0x65,0x65,0x64,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x69,0x32,0x63, 0x53,0x70,0x65,0x65,0x64,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73, 0x6d,0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62,0x2d,0x33, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x69,0x32,0x63,0x53,0x70,0x65, 0x65,0x64,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x63,0x2e,0x69,0x32,0x63,0x53,0x70, 0x65,0x65,0x64,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e, 0x69,0x32,0x63,0x53,0x70,0x65,0x65,0x64,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67, 0x65,0x3a,0x61,0x2c,0x6d,0x69,0x6e,0x3a,0x31,0x65,0x35,0x7d,0x29,0x2c,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x78,0x2c,0x7b,0x6c, 0x61,0x62,0x65,0x6c,0x3a,0x22,0x46,0x6c,0x69,0x70,0x20,0x44,0x69,0x73,0x70,0x6c, 0x61,0x79,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6c,0x69,0x70,0x44,0x69, 0x73,0x70,0x6c,0x61,0x79,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d, 0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33,0x20,0x6d,0x62,0x2d,0x33,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x66,0x6c,0x69,0x70,0x44,0x69,0x73, 0x70,0x6c,0x61,0x79,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x63,0x2e,0x66,0x6c,0x69, 0x70,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c, 0x69,0x64,0x3a,0x63,0x2e,0x66,0x6c,0x69,0x70,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, 0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x62,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d,0x2c,0x22,0x66,0x6c,0x69,0x70,0x44, 0x69,0x73,0x70,0x6c,0x61,0x79,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x22,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x78,0x2c, 0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x49,0x6e,0x76,0x65,0x72,0x74,0x20,0x44, 0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x69,0x6e, 0x76,0x65,0x72,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x2c,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c, 0x65,0x63,0x74,0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x33, 0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x72,0x2e,0x69, 0x6e,0x76,0x65,0x72,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2c,0x65,0x72,0x72, 0x6f,0x72,0x3a,0x63,0x2e,0x69,0x6e,0x76,0x65,0x72,0x74,0x44,0x69,0x73,0x70,0x6c, 0x61,0x79,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x63,0x2e,0x69, 0x6e,0x76,0x65,0x72,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2c,0x6f,0x6e,0x43, 0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x62,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f,0x70,0x74, 0x69,0x6f,0x6e,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x76,0x61, 0x6c,0x75,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c, 0x61,0x62,0x65,0x6c,0x7d,0x2c,0x22,0x69,0x6e,0x76,0x65,0x72,0x74,0x44,0x69,0x73, 0x70,0x6c,0x61,0x79,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x22,0x2e,0x63,0x6f, 0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29,0x5d,0x7d,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28, 0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x6d,0x74,0x2d,0x33,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x4d,0x2e,0x61,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x73,0x75,0x62,0x6d,0x69, 0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x53,0x61,0x76, 0x65,0x22,0x7d,0x29,0x2c,0x6e,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e, 0x6a,0x73,0x78,0x29,0x28,0x22,0x73,0x70,0x61,0x6e,0x22,0x2c,0x7b,0x63,0x6c,0x61, 0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x61,0x6c,0x65,0x72,0x74,0x22,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x6e,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c, 0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x4f,0x65,0x2c,0x7b,0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x7d, 0x29,0x7d,0x76,0x61,0x72,0x20,0x78,0x65,0x3d,0x6e,0x28,0x39,0x29,0x2c,0x76,0x65, 0x3d,0x6e,0x28,0x39,0x33,0x29,0x2c,0x67,0x65,0x3d,0x28,0x6e,0x28,0x32,0x38,0x34, 0x29,0x2c,0x5b,0x22,0x67,0x72,0x6f,0x75,0x70,0x4e,0x61,0x6d,0x65,0x22,0x2c,0x22, 0x74,0x69,0x74,0x6c,0x65,0x73,0x22,0x2c,0x22,0x64,0x61,0x74,0x61,0x53,0x6f,0x75, 0x72,0x63,0x65,0x73,0x22,0x2c,0x22,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x22, 0x5d,0x29,0x2c,0x79,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x67,0x72,0x6f,0x75,0x70,0x4e, 0x61,0x6d,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x74,0x69,0x74,0x6c,0x65,0x73,0x2c,0x72, 0x3d,0x65,0x2e,0x64,0x61,0x74,0x61,0x53,0x6f,0x75,0x72,0x63,0x65,0x73,0x2c,0x63, 0x3d,0x65,0x2e,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x2c,0x73,0x3d,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x68,0x2e,0x61,0x29,0x28,0x65,0x2c,0x67,0x65,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61, 0x74,0x65,0x29,0x28,0x5b,0x5d,0x29,0x29,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x73,0x2c,0x32,0x29,0x2c,0x6f,0x3d,0x6c,0x5b, 0x30,0x5d,0x2c,0x75,0x3d,0x6c,0x5b,0x31,0x5d,0x2c,0x64,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x7b, 0x7d,0x29,0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29, 0x28,0x64,0x2c,0x32,0x29,0x2c,0x70,0x3d,0x62,0x5b,0x30,0x5d,0x2c,0x6d,0x3d,0x62, 0x5b,0x31,0x5d,0x3b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65, 0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x29,0x7b,0x63,0x26,0x26,0x63,0x28,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x6b,0x65,0x79,0x73,0x28,0x70,0x29,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x70,0x75,0x73,0x68,0x28,0x70,0x5b,0x74,0x5d, 0x29,0x2c,0x65,0x7d,0x29,0x2c,0x5b,0x5d,0x29,0x29,0x7d,0x29,0x2c,0x5b,0x70,0x5d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45,0x66, 0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x29,0x7b,0x75,0x28,0x72,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22, 0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x2d,0x22,0x29,0x2e, 0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x6e,0x29,0x7d,0x29,0x29,0x29,0x2c,0x6d,0x28, 0x72,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x65,0x29,0x2c,0x7b,0x7d,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x78,0x65,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c, 0x22,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x2c,0x22,0x2d,0x22,0x29, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x72,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f, 0x66,0x28,0x6e,0x29,0x29,0x2c,0x6e,0x29,0x29,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x29, 0x7d,0x29,0x2c,0x5b,0x72,0x2c,0x75,0x2c,0x6d,0x5d,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d, 0x65,0x3a,0x22,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73, 0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x76,0x65,0x2e,0x61,0x2c,0x7b,0x6f,0x6e,0x44,0x72,0x61,0x67,0x45,0x6e,0x64,0x3a, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20, 0x74,0x3d,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x6e,0x3d,0x65,0x2e,0x64, 0x65,0x73,0x74,0x69,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x3b,0x69,0x66,0x28,0x6e,0x29, 0x69,0x66,0x28,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x3d,0x3d,0x3d,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x76,0x61,0x72,0x20,0x61,0x3d,0x41,0x72, 0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x65,0x29,0x2c,0x72,0x3d,0x61,0x2e, 0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x74,0x2c,0x31,0x29,0x2c,0x63,0x3d,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x72,0x2c,0x31,0x29,0x5b,0x30, 0x5d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x2e,0x73,0x70,0x6c,0x69,0x63, 0x65,0x28,0x6e,0x2c,0x30,0x2c,0x63,0x29,0x2c,0x61,0x7d,0x28,0x70,0x5b,0x74,0x2e, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d,0x2c,0x74,0x2e,0x69, 0x6e,0x64,0x65,0x78,0x2c,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x29,0x2c,0x72,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x70, 0x29,0x3b,0x72,0x5b,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49, 0x64,0x5d,0x3d,0x61,0x2c,0x6d,0x28,0x72,0x29,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x76, 0x61,0x72,0x20,0x63,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c, 0x74,0x2c,0x6e,0x2c,0x61,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d,0x41,0x72,0x72, 0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x65,0x29,0x2c,0x63,0x3d,0x41,0x72,0x72, 0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x74,0x29,0x2c,0x73,0x3d,0x72,0x2e,0x73, 0x70,0x6c,0x69,0x63,0x65,0x28,0x6e,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x31,0x29, 0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x73, 0x2c,0x31,0x29,0x5b,0x30,0x5d,0x3b,0x63,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28, 0x61,0x2e,0x69,0x6e,0x64,0x65,0x78,0x2c,0x30,0x2c,0x6c,0x29,0x3b,0x76,0x61,0x72, 0x20,0x6f,0x3d,0x7b,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x5b,0x6e, 0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d,0x3d,0x72,0x2c, 0x6f,0x5b,0x61,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x5d, 0x3d,0x63,0x2c,0x6f,0x7d,0x28,0x70,0x5b,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61, 0x62,0x6c,0x65,0x49,0x64,0x5d,0x2c,0x70,0x5b,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70, 0x61,0x62,0x6c,0x65,0x49,0x64,0x5d,0x2c,0x74,0x2c,0x6e,0x29,0x2c,0x73,0x3d,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x70,0x29, 0x3b,0x73,0x5b,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64, 0x5d,0x3d,0x63,0x5b,0x74,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49, 0x64,0x5d,0x2c,0x73,0x5b,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65, 0x49,0x64,0x5d,0x3d,0x63,0x5b,0x6e,0x2e,0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c, 0x65,0x49,0x64,0x5d,0x2c,0x6d,0x28,0x73,0x29,0x7d,0x7d,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x6f,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63, 0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28, 0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73,0x74, 0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x22,0x64,0x69,0x76,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3a,0x22,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c,0x65,0x2d, 0x6c,0x69,0x73,0x74,0x2d,0x74,0x69,0x74,0x6c,0x65,0x22,0x2c,0x63,0x68,0x69,0x6c, 0x64,0x72,0x65,0x6e,0x3a,0x6e,0x5b,0x74,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x76,0x65,0x2e,0x63,0x2c,0x7b, 0x64,0x72,0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x49,0x64,0x3a,0x65,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x22,0x64,0x69,0x76,0x22, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x7d,0x2c,0x74,0x2e,0x64,0x72, 0x6f,0x70,0x70,0x61,0x62,0x6c,0x65,0x50,0x72,0x6f,0x70,0x73,0x29,0x2c,0x7b,0x7d, 0x2c,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x52,0x65,0x66, 0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x64,0x72,0x61,0x67, 0x67,0x61,0x62,0x6c,0x65,0x2d,0x6c,0x69,0x73,0x74,0x20,0x22,0x2e,0x63,0x6f,0x6e, 0x63,0x61,0x74,0x28,0x6e,0x2e,0x69,0x73,0x44,0x72,0x61,0x67,0x67,0x69,0x6e,0x67, 0x4f,0x76,0x65,0x72,0x3f,0x22,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70, 0x20,0x62,0x67,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x22,0x3a,0x22,0x6c,0x69, 0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x2c,0x22,0x20,0x62,0x6f,0x72,0x64, 0x65,0x72,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x64,0x61,0x72,0x6b,0x20,0x72, 0x6f,0x75,0x6e,0x64,0x65,0x64,0x2d,0x31,0x22,0x29,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x5b,0x70,0x5b,0x65,0x5d,0x2e,0x6d,0x61,0x70,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x29,0x28,0x76,0x65,0x2e,0x62,0x2c,0x7b,0x64,0x72,0x61,0x67,0x67,0x61,0x62,0x6c, 0x65,0x49,0x64,0x3a,0x65,0x2e,0x69,0x64,0x2c,0x69,0x6e,0x64,0x65,0x78,0x3a,0x74, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69, 0x76,0x22,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x6a,0x2e,0x61,0x29,0x28,0x7b,0x72,0x65,0x66,0x3a,0x74,0x2e,0x69,0x6e, 0x6e,0x65,0x72,0x52,0x65,0x66,0x7d,0x2c,0x74,0x2e,0x64,0x72,0x61,0x67,0x67,0x61, 0x62,0x6c,0x65,0x50,0x72,0x6f,0x70,0x73,0x29,0x2c,0x74,0x2e,0x64,0x72,0x61,0x67, 0x48,0x61,0x6e,0x64,0x6c,0x65,0x50,0x72,0x6f,0x70,0x73,0x29,0x2c,0x7b,0x7d,0x2c, 0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x6e,0x2e,0x69,0x73,0x44, 0x72,0x61,0x67,0x67,0x69,0x6e,0x67,0x3f,0x22,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72, 0x6f,0x75,0x70,0x2d,0x69,0x74,0x65,0x6d,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x22, 0x3a,0x22,0x6c,0x69,0x73,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x69,0x74,0x65, 0x6d,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c,0x61, 0x62,0x65,0x6c,0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x65,0x2e,0x69,0x64,0x29,0x7d,0x29, 0x29,0x2c,0x74,0x2e,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x5d, 0x7d,0x29,0x29,0x7d,0x7d,0x2c,0x65,0x29,0x5d,0x7d,0x2c,0x65,0x29,0x7d,0x29,0x29, 0x7d,0x29,0x7d,0x29,0x7d,0x2c,0x53,0x65,0x3d,0x5b,0x7b,0x6c,0x61,0x62,0x65,0x6c, 0x3a,0x22,0x47,0x52,0x42,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d,0x2c, 0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x52,0x47,0x42,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x31,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x47,0x52, 0x42,0x57,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x32,0x7d,0x2c,0x7b,0x6c,0x61, 0x62,0x65,0x6c,0x3a,0x22,0x52,0x47,0x42,0x57,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65, 0x3a,0x33,0x7d,0x5d,0x2c,0x4c,0x65,0x3d,0x5b,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a, 0x22,0x38,0x2d,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x4c,0x61,0x79,0x6f,0x75,0x74, 0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x30,0x7d,0x2c,0x7b,0x6c,0x61,0x62,0x65, 0x6c,0x3a,0x22,0x48,0x69,0x74,0x20,0x42,0x6f,0x78,0x20,0x4c,0x61,0x79,0x6f,0x75, 0x74,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x31,0x7d,0x2c,0x7b,0x6c,0x61,0x62, 0x65,0x6c,0x3a,0x22,0x57,0x41,0x53,0x44,0x20,0x4c,0x61,0x79,0x6f,0x75,0x74,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x32,0x7d,0x5d,0x2c,0x4e,0x65,0x3d,0x7b,0x62, 0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x4d,0x61,0x78,0x69,0x6d,0x75,0x6d, 0x3a,0x32,0x35,0x35,0x2c,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x53, 0x74,0x65,0x70,0x73,0x3a,0x35,0x2c,0x64,0x61,0x74,0x61,0x50,0x69,0x6e,0x3a,0x2d, 0x31,0x2c,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x30,0x2c,0x6c,0x65, 0x64,0x4c,0x61,0x79,0x6f,0x75,0x74,0x3a,0x30,0x2c,0x6c,0x65,0x64,0x73,0x50,0x65, 0x72,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x32,0x7d,0x2c,0x42,0x65,0x3d,0x5b,0x5d, 0x2c,0x43,0x65,0x3d,0x74,0x65,0x2e,0x62,0x28,0x29,0x2e,0x73,0x68,0x61,0x70,0x65, 0x28,0x7b,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x4d,0x61,0x78,0x69, 0x6d,0x75,0x6d,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69, 0x72,0x65,0x64,0x28,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x28,0x29, 0x2e,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x28,0x29,0x2e,0x6d,0x69,0x6e,0x28,0x30, 0x29,0x2e,0x6d,0x61,0x78,0x28,0x32,0x35,0x35,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c, 0x28,0x22,0x4d,0x61,0x78,0x20,0x42,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73, 0x22,0x29,0x2c,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x53,0x74,0x65, 0x70,0x73,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72, 0x65,0x64,0x28,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x28,0x29,0x2e, 0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x28,0x29,0x2e,0x6d,0x69,0x6e,0x28,0x31,0x29, 0x2e,0x6d,0x61,0x78,0x28,0x31,0x30,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22, 0x42,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x20,0x53,0x74,0x65,0x70,0x73, 0x22,0x29,0x2c,0x64,0x61,0x74,0x61,0x50,0x69,0x6e,0x3a,0x74,0x65,0x2e,0x61,0x28, 0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29,0x2e,0x6d,0x69,0x6e, 0x28,0x2d,0x31,0x29,0x2e,0x6d,0x61,0x78,0x28,0x32,0x39,0x29,0x2e,0x74,0x65,0x73, 0x74,0x28,0x22,0x22,0x2c,0x22,0x24,0x7b,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c, 0x56,0x61,0x6c,0x75,0x65,0x7d,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, 0x79,0x20,0x61,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x21,0x22,0x2c,0x28,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e, 0x2d,0x31,0x3d,0x3d,0x3d,0x42,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x4f,0x66,0x28, 0x65,0x29,0x7d,0x29,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x44,0x61,0x74, 0x61,0x20,0x50,0x69,0x6e,0x22,0x29,0x2c,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d,0x61, 0x74,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65, 0x64,0x28,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x28,0x29,0x2e,0x69, 0x6e,0x74,0x65,0x67,0x65,0x72,0x28,0x29,0x2e,0x6d,0x69,0x6e,0x28,0x30,0x29,0x2e, 0x6d,0x61,0x78,0x28,0x33,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28,0x22,0x4c,0x45, 0x44,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x22,0x29,0x2c,0x6c,0x65,0x64,0x4c,0x61, 0x79,0x6f,0x75,0x74,0x3a,0x74,0x65,0x2e,0x61,0x28,0x29,0x2e,0x72,0x65,0x71,0x75, 0x69,0x72,0x65,0x64,0x28,0x29,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x76,0x65,0x28, 0x29,0x2e,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x28,0x29,0x2e,0x6d,0x69,0x6e,0x28, 0x30,0x29,0x2e,0x6d,0x61,0x78,0x28,0x32,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28, 0x22,0x4c,0x45,0x44,0x20,0x4c,0x61,0x79,0x6f,0x75,0x74,0x22,0x29,0x2c,0x6c,0x65, 0x64,0x73,0x50,0x65,0x72,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x74,0x65,0x2e,0x61, 0x28,0x29,0x2e,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x28,0x29,0x2e,0x70,0x6f, 0x73,0x69,0x74,0x69,0x76,0x65,0x28,0x29,0x2e,0x69,0x6e,0x74,0x65,0x67,0x65,0x72, 0x28,0x29,0x2e,0x6d,0x69,0x6e,0x28,0x31,0x29,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x28, 0x22,0x4c,0x45,0x44,0x73,0x20,0x50,0x65,0x72,0x20,0x50,0x69,0x78,0x65,0x6c,0x22, 0x29,0x7d,0x29,0x2c,0x44,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4e,0x2e,0x6f,0x72,0x64,0x65,0x72,0x42,0x79,0x29,0x28, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x67,0x5b,0x65,0x5d, 0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x22,0x6c,0x61,0x62, 0x65,0x6c,0x22,0x21,0x3d,0x3d,0x65,0x26,0x26,0x22,0x76,0x61,0x6c,0x75,0x65,0x22, 0x21,0x3d,0x3d,0x65,0x7d,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x21,0x6e,0x7c,0x7c,0x74,0x5b,0x65,0x5d,0x3e,0x2d,0x31,0x7d,0x29,0x29, 0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x6e, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x7b,0x69,0x64,0x3a,0x6e,0x2c,0x6c,0x61, 0x62,0x65,0x6c,0x3a,0x67,0x5b,0x65,0x5d,0x5b,0x6e,0x5d,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x74,0x5b,0x6e,0x5d,0x7d,0x7d,0x29,0x29,0x2c,0x22,0x76,0x61,0x6c,0x75, 0x65,0x22,0x29,0x7d,0x2c,0x77,0x65,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x74,0x3d,0x65,0x2e,0x62,0x75,0x74,0x74, 0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73,0x2c,0x6e,0x3d,0x65,0x2e,0x6c,0x65,0x64, 0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d,0x61,0x70,0x2c,0x72,0x3d,0x65,0x2e,0x6c,0x65, 0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x2c,0x63,0x3d,0x65,0x2e,0x73,0x65,0x74,0x44, 0x61,0x74,0x61,0x53,0x6f,0x75,0x72,0x63,0x65,0x73,0x2c,0x73,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x65,0x65,0x2e,0x62,0x29,0x28,0x29,0x2c,0x69,0x3d,0x73,0x2e, 0x73,0x65,0x74,0x46,0x69,0x65,0x6c,0x64,0x56,0x61,0x6c,0x75,0x65,0x2c,0x6c,0x3d, 0x73,0x2e,0x73,0x65,0x74,0x56,0x61,0x6c,0x75,0x65,0x73,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45, 0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x28,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x6b,0x2e,0x61,0x29,0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x28,0x29,0x7b,0x76,0x61,0x72,0x20, 0x6e,0x2c,0x61,0x2c,0x72,0x2c,0x73,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x52, 0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28,0x3b,0x3b,0x29,0x73,0x77,0x69,0x74, 0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76,0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74, 0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x65,0x2e,0x6e,0x65,0x78,0x74,0x3d,0x32,0x2c,0x5a,0x2e,0x67,0x65,0x74,0x4c,0x65, 0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x28,0x29,0x3b,0x63,0x61,0x73,0x65,0x20, 0x32,0x3a,0x6e,0x3d,0x65,0x2e,0x73,0x65,0x6e,0x74,0x2c,0x61,0x3d,0x7b,0x7d,0x2c, 0x72,0x3d,0x7b,0x7d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73, 0x28,0x6e,0x2e,0x6c,0x65,0x64,0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d,0x61,0x70,0x29, 0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x29,0x7b,0x6e,0x75,0x6c,0x6c,0x3d,0x3d,0x3d,0x6e,0x2e,0x6c, 0x65,0x64,0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d,0x61,0x70,0x5b,0x65,0x5d,0x3f,0x61, 0x5b,0x65,0x5d,0x3d,0x6e,0x2e,0x6c,0x65,0x64,0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d, 0x61,0x70,0x5b,0x65,0x5d,0x3a,0x72,0x5b,0x65,0x5d,0x3d,0x6e,0x2e,0x6c,0x65,0x64, 0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d,0x61,0x70,0x5b,0x65,0x5d,0x7d,0x29,0x29,0x2c, 0x73,0x3d,0x5b,0x44,0x65,0x28,0x74,0x2c,0x61,0x2c,0x21,0x30,0x29,0x2c,0x44,0x65, 0x28,0x74,0x2c,0x72,0x2c,0x21,0x30,0x29,0x5d,0x2c,0x42,0x65,0x3d,0x6e,0x2e,0x75, 0x73,0x65,0x64,0x50,0x69,0x6e,0x73,0x2c,0x63,0x28,0x73,0x29,0x2c,0x6c,0x28,0x6e, 0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x3a,0x63,0x61,0x73,0x65,0x22,0x65, 0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74,0x6f, 0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x29,0x2e,0x61, 0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65, 0x6e,0x74,0x73,0x29,0x7d,0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72, 0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29,0x7d,0x28,0x29,0x7d,0x29,0x2c,0x5b,0x74, 0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x45, 0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x29,0x7b,0x72,0x26,0x26,0x69,0x28,0x22,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d, 0x61,0x74,0x22,0x2c,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x72,0x29,0x29, 0x7d,0x29,0x2c,0x5b,0x72,0x2c,0x69,0x5d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x61,0x2e,0x75,0x73,0x65,0x45,0x66,0x66,0x65,0x63,0x74,0x29,0x28,0x28,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x69,0x28,0x22,0x6c,0x65,0x64, 0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d,0x61,0x70,0x22,0x2c,0x6e,0x29,0x7d,0x29,0x2c, 0x5b,0x6e,0x2c,0x69,0x5d,0x29,0x2c,0x6e,0x75,0x6c,0x6c,0x7d,0x3b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x50,0x65,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x43,0x6f,0x6e, 0x74,0x65,0x78,0x74,0x29,0x28,0x75,0x29,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c, 0x61,0x62,0x65,0x6c,0x73,0x2c,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61, 0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x22,0x22,0x29,0x2c,0x6e, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x2c,0x32, 0x29,0x2c,0x72,0x3d,0x6e,0x5b,0x30,0x5d,0x2c,0x63,0x3d,0x6e,0x5b,0x31,0x5d,0x2c, 0x73,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74, 0x61,0x74,0x65,0x29,0x28,0x5b,0x5d,0x29,0x2c,0x6c,0x3d,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x73,0x2c,0x32,0x29,0x2c,0x6f,0x3d,0x6c,0x5b, 0x30,0x5d,0x2c,0x64,0x3d,0x6c,0x5b,0x31,0x5d,0x2c,0x62,0x3d,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74,0x65,0x29,0x28,0x5b, 0x5b,0x5d,0x2c,0x5b,0x5d,0x5d,0x29,0x2c,0x70,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x69,0x2e,0x61,0x29,0x28,0x62,0x2c,0x32,0x29,0x2c,0x6a,0x3d,0x70,0x5b,0x30, 0x5d,0x2c,0x68,0x3d,0x70,0x5b,0x31,0x5d,0x2c,0x66,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x74,0x29,0x7b,0x32,0x3d,0x3d,0x3d,0x74,0x2e,0x6c,0x65,0x6e, 0x67,0x74,0x68,0x26,0x26,0x64,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x2c,0x74,0x2c,0x6e,0x29,0x7b,0x69,0x66,0x28,0x74,0x29,0x7b,0x66,0x6f,0x72, 0x28,0x76,0x61,0x72,0x20,0x61,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65, 0x79,0x73,0x28,0x67,0x5b,0x65,0x5d,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28, 0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x21,0x3d,0x3d,0x65,0x26,0x26, 0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x21,0x3d,0x3d,0x65,0x7d,0x29,0x29,0x2e,0x66, 0x69,0x6c,0x74,0x65,0x72,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28, 0x65,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x21,0x6e,0x7c,0x7c,0x74,0x5b,0x65, 0x5d,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3e,0x2d,0x31,0x7d,0x29,0x29,0x2e,0x72,0x65, 0x64,0x75,0x63,0x65,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x74,0x5d,0x3d, 0x6e,0x75,0x6c,0x6c,0x2c,0x65,0x7d,0x29,0x2c,0x7b,0x7d,0x29,0x2c,0x72,0x3d,0x30, 0x3b,0x72,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29, 0x61,0x5b,0x74,0x5b,0x72,0x5d,0x2e,0x69,0x64,0x5d,0x3d,0x72,0x3b,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x61,0x7d,0x7d,0x28,0x65,0x2c,0x74,0x5b,0x31,0x5d,0x29,0x29, 0x7d,0x2c,0x76,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76, 0x61,0x72,0x20,0x65,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x6b,0x2e,0x61,0x29, 0x28,0x52,0x2e,0x61,0x2e,0x6d,0x61,0x72,0x6b,0x28,0x28,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x20,0x65,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x52,0x2e,0x61,0x2e,0x77,0x72,0x61,0x70,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x6f,0x72,0x28, 0x3b,0x3b,0x29,0x73,0x77,0x69,0x74,0x63,0x68,0x28,0x65,0x2e,0x70,0x72,0x65,0x76, 0x3d,0x65,0x2e,0x6e,0x65,0x78,0x74,0x29,0x7b,0x63,0x61,0x73,0x65,0x20,0x30,0x3a, 0x6e,0x3d,0x5a,0x2e,0x73,0x65,0x74,0x4c,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e, 0x73,0x28,0x74,0x29,0x2c,0x63,0x28,0x6e,0x3f,0x22,0x53,0x61,0x76,0x65,0x64,0x21, 0x22,0x3a,0x22,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x53,0x61,0x76, 0x65,0x22,0x29,0x3b,0x63,0x61,0x73,0x65,0x20,0x32,0x3a,0x63,0x61,0x73,0x65,0x22, 0x65,0x6e,0x64,0x22,0x3a,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x73,0x74, 0x6f,0x70,0x28,0x29,0x7d,0x7d,0x29,0x2c,0x65,0x29,0x7d,0x29,0x29,0x29,0x3b,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x74, 0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x61,0x70,0x70,0x6c,0x79, 0x28,0x74,0x68,0x69,0x73,0x2c,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x29, 0x7d,0x7d,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x65,0x65,0x2e,0x61,0x2c,0x7b, 0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x68,0x65,0x6d,0x61, 0x3a,0x43,0x65,0x2c,0x6f,0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x76,0x2c,0x69, 0x6e,0x69,0x74,0x69,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x73,0x3a,0x4e,0x65,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x74,0x29,0x7b,0x76,0x61,0x72,0x20,0x6e,0x3d,0x74,0x2e,0x68,0x61,0x6e, 0x64,0x6c,0x65,0x53,0x75,0x62,0x6d,0x69,0x74,0x2c,0x61,0x3d,0x74,0x2e,0x68,0x61, 0x6e,0x64,0x6c,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x2c,0x63,0x3d,0x28,0x74,0x2e, 0x68,0x61,0x6e,0x64,0x6c,0x65,0x42,0x6c,0x75,0x72,0x2c,0x74,0x2e,0x76,0x61,0x6c, 0x75,0x65,0x73,0x29,0x2c,0x73,0x3d,0x28,0x74,0x2e,0x74,0x6f,0x75,0x63,0x68,0x65, 0x64,0x2c,0x74,0x2e,0x65,0x72,0x72,0x6f,0x72,0x73,0x29,0x3b,0x72,0x65,0x74,0x75, 0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73, 0x29,0x28,0x6d,0x2e,0x61,0x2c,0x7b,0x6e,0x6f,0x56,0x61,0x6c,0x69,0x64,0x61,0x74, 0x65,0x3a,0x21,0x30,0x2c,0x6f,0x6e,0x53,0x75,0x62,0x6d,0x69,0x74,0x3a,0x6e,0x2c, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x43,0x2c,0x7b,0x74,0x69,0x74,0x6c, 0x65,0x3a,0x22,0x4c,0x45,0x44,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, 0x74,0x69,0x6f,0x6e,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6c, 0x65,0x2e,0x61,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x65,0x2c, 0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x6c, 0x61,0x62,0x65,0x6c,0x3a,0x22,0x44,0x61,0x74,0x61,0x20,0x50,0x69,0x6e,0x20,0x28, 0x2d,0x31,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x29, 0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x64,0x61,0x74,0x61,0x50,0x69,0x6e,0x22, 0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d, 0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72,0x6f, 0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c, 0x2d,0x73,0x6d,0x2d,0x34,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c,0x75, 0x65,0x3a,0x63,0x2e,0x64,0x61,0x74,0x61,0x50,0x69,0x6e,0x2c,0x65,0x72,0x72,0x6f, 0x72,0x3a,0x73,0x2e,0x64,0x61,0x74,0x61,0x50,0x69,0x6e,0x2c,0x69,0x73,0x49,0x6e, 0x76,0x61,0x6c,0x69,0x64,0x3a,0x73,0x2e,0x64,0x61,0x74,0x61,0x50,0x69,0x6e,0x2c, 0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x6d,0x69,0x6e,0x3a,0x2d, 0x31,0x2c,0x6d,0x61,0x78,0x3a,0x32,0x39,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x78,0x2c,0x7b,0x6c,0x61,0x62,0x65, 0x6c,0x3a,0x22,0x4c,0x45,0x44,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x22,0x2c,0x6e, 0x61,0x6d,0x65,0x3a,0x22,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x22,0x2c, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d, 0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72,0x6f,0x75,0x70, 0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73, 0x6d,0x2d,0x34,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x63,0x2e,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x2c,0x65,0x72,0x72,0x6f, 0x72,0x3a,0x73,0x2e,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x2c,0x69,0x73, 0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x73,0x2e,0x6c,0x65,0x64,0x46,0x6f,0x72, 0x6d,0x61,0x74,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x61,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x53,0x65,0x2e,0x6d,0x61,0x70,0x28,0x28, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x74,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73, 0x78,0x29,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x22,0x2c,0x7b,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c,0x61,0x62,0x65,0x6c,0x7d,0x2c,0x22,0x6c,0x65, 0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x2d,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x22, 0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29,0x29,0x7d,0x29,0x29,0x7d,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x78, 0x2c,0x7b,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x4c,0x45,0x44,0x20,0x4c,0x61,0x79, 0x6f,0x75,0x74,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6c,0x65,0x64,0x4c,0x61, 0x79,0x6f,0x75,0x74,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x66,0x6f,0x72,0x6d,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x2d,0x73,0x6d,0x22, 0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x34,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x63,0x2e,0x6c,0x65,0x64,0x4c,0x61,0x79,0x6f,0x75, 0x74,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x73,0x2e,0x6c,0x65,0x64,0x4c,0x61,0x79, 0x6f,0x75,0x74,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x73,0x2e, 0x6c,0x65,0x64,0x4c,0x61,0x79,0x6f,0x75,0x74,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e, 0x67,0x65,0x3a,0x61,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4c,0x65, 0x2e,0x6d,0x61,0x70,0x28,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65, 0x2c,0x74,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x6f,0x70,0x74,0x69,0x6f,0x6e, 0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x65,0x2e,0x6c,0x61,0x62,0x65, 0x6c,0x7d,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x61,0x79,0x6f,0x75,0x74,0x2d,0x6f,0x70, 0x74,0x69,0x6f,0x6e,0x2d,0x22,0x2e,0x63,0x6f,0x6e,0x63,0x61,0x74,0x28,0x74,0x29, 0x29,0x7d,0x29,0x29,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x6c,0x65,0x2e,0x61,0x2c,0x7b,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x65,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a, 0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22, 0x4c,0x45,0x44,0x73,0x20,0x50,0x65,0x72,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x22, 0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x6c,0x65,0x64,0x73,0x50,0x65,0x72,0x42,0x75, 0x74,0x74,0x6f,0x6e,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a, 0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d, 0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65, 0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x34,0x20,0x6d,0x62,0x2d,0x33,0x22, 0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x63,0x2e,0x6c,0x65,0x64,0x73,0x50,0x65,0x72, 0x42,0x75,0x74,0x74,0x6f,0x6e,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x73,0x2e,0x6c, 0x65,0x64,0x73,0x50,0x65,0x72,0x42,0x75,0x74,0x74,0x6f,0x6e,0x2c,0x69,0x73,0x49, 0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x73,0x2e,0x6c,0x65,0x64,0x73,0x50,0x65,0x72, 0x42,0x75,0x74,0x74,0x6f,0x6e,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a, 0x61,0x2c,0x6d,0x69,0x6e,0x3a,0x31,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x64,0x65,0x2c,0x7b,0x74,0x79,0x70,0x65, 0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a, 0x22,0x4d,0x61,0x78,0x20,0x42,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x22, 0x2c,0x6e,0x61,0x6d,0x65,0x3a,0x22,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73, 0x73,0x4d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e, 0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f, 0x6c,0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72,0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73, 0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6c,0x2d,0x73,0x6d,0x2d,0x34,0x20,0x6d, 0x62,0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x63,0x2e,0x62,0x72,0x69, 0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x4d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2c,0x65, 0x72,0x72,0x6f,0x72,0x3a,0x73,0x2e,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73, 0x73,0x4d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x2c,0x69,0x73,0x49,0x6e,0x76,0x61,0x6c, 0x69,0x64,0x3a,0x73,0x2e,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x4d, 0x61,0x78,0x69,0x6d,0x75,0x6d,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a, 0x61,0x2c,0x6d,0x69,0x6e,0x3a,0x30,0x2c,0x6d,0x61,0x78,0x3a,0x32,0x35,0x35,0x7d, 0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x64,0x65,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72, 0x22,0x2c,0x6c,0x61,0x62,0x65,0x6c,0x3a,0x22,0x42,0x72,0x69,0x67,0x68,0x74,0x6e, 0x65,0x73,0x73,0x20,0x53,0x74,0x65,0x70,0x73,0x22,0x2c,0x6e,0x61,0x6d,0x65,0x3a, 0x22,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x53,0x74,0x65,0x70,0x73, 0x22,0x2c,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x66,0x6f,0x72, 0x6d,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x6d,0x22,0x2c,0x67,0x72, 0x6f,0x75,0x70,0x43,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f, 0x6c,0x2d,0x73,0x6d,0x2d,0x34,0x20,0x6d,0x62,0x2d,0x33,0x22,0x2c,0x76,0x61,0x6c, 0x75,0x65,0x3a,0x63,0x2e,0x62,0x72,0x69,0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x53, 0x74,0x65,0x70,0x73,0x2c,0x65,0x72,0x72,0x6f,0x72,0x3a,0x73,0x2e,0x62,0x72,0x69, 0x67,0x68,0x74,0x6e,0x65,0x73,0x73,0x53,0x74,0x65,0x70,0x73,0x2c,0x69,0x73,0x49, 0x6e,0x76,0x61,0x6c,0x69,0x64,0x3a,0x73,0x2e,0x62,0x72,0x69,0x67,0x68,0x74,0x6e, 0x65,0x73,0x73,0x53,0x74,0x65,0x70,0x73,0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67, 0x65,0x3a,0x61,0x2c,0x6d,0x69,0x6e,0x3a,0x31,0x2c,0x6d,0x61,0x78,0x3a,0x31,0x30, 0x7d,0x29,0x5d,0x7d,0x29,0x5d,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x43,0x2c,0x7b,0x74,0x69,0x74,0x6c,0x65, 0x3a,0x22,0x4c,0x45,0x44,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x4f,0x72,0x64, 0x65,0x72,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x70,0x22,0x2c, 0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64, 0x2d,0x74,0x65,0x78,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x22,0x48,0x65,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x64,0x65, 0x66,0x69,0x6e,0x65,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x62,0x75,0x74,0x74,0x6f, 0x6e,0x73,0x20,0x68,0x61,0x76,0x65,0x20,0x52,0x47,0x42,0x20,0x4c,0x45,0x44,0x73, 0x20,0x61,0x6e,0x64,0x20,0x69,0x6e,0x20,0x77,0x68,0x61,0x74,0x20,0x6f,0x72,0x64, 0x65,0x72,0x20,0x74,0x68,0x65,0x79,0x20,0x72,0x75,0x6e,0x20,0x66,0x72,0x6f,0x6d, 0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x62,0x6f,0x61, 0x72,0x64,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, 0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x63,0x65,0x72,0x74,0x61,0x69,0x6e, 0x20,0x4c,0x45,0x44,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x20, 0x61,0x6e,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x63,0x20,0x74,0x68,0x65,0x6d,0x65, 0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x2e,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x70,0x22,0x2c,0x7b, 0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x61,0x72,0x64,0x2d, 0x74,0x65,0x78,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22, 0x44,0x72,0x61,0x67,0x20,0x61,0x6e,0x64,0x20,0x64,0x72,0x6f,0x70,0x20,0x6c,0x69, 0x73,0x74,0x20,0x69,0x74,0x65,0x6d,0x73,0x20,0x74,0x6f,0x20,0x61,0x73,0x73,0x69, 0x67,0x6e,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6f,0x72,0x64,0x65,0x72,0x20,0x74, 0x68,0x65,0x20,0x52,0x47,0x42,0x20,0x4c,0x45,0x44,0x73,0x2e,0x22,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x79,0x65, 0x2c,0x7b,0x67,0x72,0x6f,0x75,0x70,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x74,0x65,0x73, 0x74,0x22,0x2c,0x74,0x69,0x74,0x6c,0x65,0x73,0x3a,0x5b,0x22,0x41,0x76,0x61,0x69, 0x6c,0x61,0x62,0x6c,0x65,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x2c,0x22, 0x41,0x73,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73, 0x22,0x5d,0x2c,0x64,0x61,0x74,0x61,0x53,0x6f,0x75,0x72,0x63,0x65,0x73,0x3a,0x6a, 0x2c,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x3a,0x66,0x7d,0x29,0x5d,0x7d,0x29, 0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x4d, 0x2e,0x61,0x2c,0x7b,0x74,0x79,0x70,0x65,0x3a,0x22,0x73,0x75,0x62,0x6d,0x69,0x74, 0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x22,0x53,0x61,0x76,0x65, 0x22,0x7d,0x29,0x2c,0x72,0x3f,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x22,0x73,0x70,0x61,0x6e,0x22,0x2c,0x7b,0x63,0x6c,0x61,0x73, 0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x61,0x6c,0x65,0x72,0x74,0x22,0x2c,0x63,0x68, 0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x72,0x7d,0x29,0x3a,0x6e,0x75,0x6c,0x6c,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x77,0x65, 0x2c,0x7b,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73,0x3a,0x65, 0x2c,0x6c,0x65,0x64,0x42,0x75,0x74,0x74,0x6f,0x6e,0x4d,0x61,0x70,0x3a,0x6f,0x2c, 0x73,0x65,0x74,0x44,0x61,0x74,0x61,0x53,0x6f,0x75,0x72,0x63,0x65,0x73,0x3a,0x68, 0x2c,0x6c,0x65,0x64,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x63,0x2e,0x6c,0x65,0x64, 0x46,0x6f,0x72,0x6d,0x61,0x74,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x7d,0x29,0x7d,0x6e, 0x28,0x32,0x38,0x36,0x29,0x3b,0x76,0x61,0x72,0x20,0x49,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x2c,0x74,0x3d, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x61,0x2e,0x75,0x73,0x65,0x53,0x74,0x61,0x74, 0x65,0x29,0x28,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x76,0x61,0x72,0x20,0x65,0x3b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x21,0x3d,0x3d,0x28,0x65,0x3d,0x6c, 0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49, 0x74,0x65,0x6d,0x28,0x76,0x29,0x29,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21, 0x3d,0x3d,0x65,0x3f,0x65,0x3a,0x22,0x67,0x70,0x32,0x30,0x34,0x30,0x22,0x7d,0x28, 0x29,0x29,0x26,0x26,0x76,0x6f,0x69,0x64,0x20,0x30,0x21,0x3d,0x3d,0x65,0x3f,0x65, 0x3a,0x22,0x67,0x70,0x32,0x30,0x34,0x30,0x22,0x29,0x2c,0x6e,0x3d,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x69,0x2e,0x61,0x29,0x28,0x74,0x2c,0x32,0x29,0x2c,0x72,0x3d, 0x7b,0x62,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65,0x6c,0x73,0x3a,0x6e,0x5b, 0x30,0x5d,0x2c,0x73,0x65,0x74,0x42,0x75,0x74,0x74,0x6f,0x6e,0x4c,0x61,0x62,0x65, 0x6c,0x73,0x3a,0x6e,0x5b,0x31,0x5d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x75,0x2e, 0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x72,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x73,0x29,0x28,0x73,0x2e,0x61,0x2c,0x7b,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x79,0x2c,0x7b,0x7d,0x29,0x2c,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x22,0x64,0x69,0x76,0x22, 0x2c,0x7b,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x3a,0x22,0x63,0x6f,0x6e, 0x74,0x61,0x69,0x6e,0x65,0x72,0x2d,0x66,0x6c,0x75,0x69,0x64,0x20,0x62,0x6f,0x64, 0x79,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64, 0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78, 0x73,0x29,0x28,0x6c,0x2e,0x63,0x2c,0x7b,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e, 0x3a,0x5b,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x6c,0x2e,0x61,0x2c,0x7b,0x65,0x78,0x61,0x63,0x74,0x3a,0x21,0x30,0x2c,0x70,0x61, 0x74,0x68,0x3a,0x22,0x2f,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x77,0x2c, 0x7b,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a, 0x73,0x78,0x29,0x28,0x6c,0x2e,0x61,0x2c,0x7b,0x70,0x61,0x74,0x68,0x3a,0x22,0x2f, 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x69,0x65,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6c,0x2e,0x61,0x2c,0x7b,0x70,0x61,0x74, 0x68,0x3a,0x22,0x2f,0x70,0x69,0x6e,0x2d,0x6d,0x61,0x70,0x70,0x69,0x6e,0x67,0x22, 0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x59,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x2c, 0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6c,0x2e, 0x61,0x2c,0x7b,0x70,0x61,0x74,0x68,0x3a,0x22,0x2f,0x72,0x65,0x73,0x65,0x74,0x2d, 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72, 0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29, 0x28,0x51,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6c,0x2e,0x61,0x2c,0x7b,0x70,0x61,0x74,0x68, 0x3a,0x22,0x2f,0x6c,0x65,0x64,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x63, 0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f, 0x2e,0x6a,0x73,0x78,0x29,0x28,0x50,0x65,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x6c,0x2e,0x61, 0x2c,0x7b,0x70,0x61,0x74,0x68,0x3a,0x22,0x2f,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, 0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x22,0x2c,0x63,0x68,0x69,0x6c,0x64,0x72,0x65, 0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28, 0x66,0x65,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x5d,0x7d,0x29,0x7d,0x29,0x5d,0x7d,0x29, 0x7d,0x29,0x7d,0x3b,0x6e,0x28,0x32,0x38,0x37,0x29,0x2c,0x6e,0x28,0x32,0x38,0x38, 0x29,0x3b,0x63,0x2e,0x61,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x4f,0x62,0x6a, 0x65,0x63,0x74,0x28,0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x73,0x2e,0x61,0x2c,0x7b, 0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x3a,0x4f,0x62,0x6a,0x65,0x63,0x74,0x28, 0x4f,0x2e,0x6a,0x73,0x78,0x29,0x28,0x49,0x65,0x2c,0x7b,0x7d,0x29,0x7d,0x29,0x2c, 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d, 0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x72,0x6f,0x6f,0x74,0x22,0x29,0x29, 0x7d,0x2c,0x33,0x34,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29, 0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x4a,0x53,0x4f,0x4e,0x2e, 0x70,0x61,0x72,0x73,0x65,0x28,0x27,0x7b,0x22,0x67,0x70,0x32,0x30,0x34,0x30,0x22, 0x3a,0x7b,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3a,0x22,0x47,0x50,0x32,0x30,0x34, 0x30,0x22,0x2c,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x3a,0x22,0x67,0x70,0x32,0x30, 0x34,0x30,0x22,0x2c,0x22,0x55,0x70,0x22,0x3a,0x22,0x55,0x70,0x22,0x2c,0x22,0x44, 0x6f,0x77,0x6e,0x22,0x3a,0x22,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x22,0x4c,0x65,0x66, 0x74,0x22,0x3a,0x22,0x4c,0x65,0x66,0x74,0x22,0x2c,0x22,0x52,0x69,0x67,0x68,0x74, 0x22,0x3a,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x22,0x42,0x31,0x22,0x3a,0x22, 0x42,0x31,0x22,0x2c,0x22,0x42,0x32,0x22,0x3a,0x22,0x42,0x32,0x22,0x2c,0x22,0x42, 0x33,0x22,0x3a,0x22,0x42,0x33,0x22,0x2c,0x22,0x42,0x34,0x22,0x3a,0x22,0x42,0x34, 0x22,0x2c,0x22,0x4c,0x31,0x22,0x3a,0x22,0x4c,0x31,0x22,0x2c,0x22,0x52,0x31,0x22, 0x3a,0x22,0x52,0x31,0x22,0x2c,0x22,0x4c,0x32,0x22,0x3a,0x22,0x4c,0x32,0x22,0x2c, 0x22,0x52,0x32,0x22,0x3a,0x22,0x52,0x32,0x22,0x2c,0x22,0x53,0x31,0x22,0x3a,0x22, 0x53,0x31,0x22,0x2c,0x22,0x53,0x32,0x22,0x3a,0x22,0x53,0x32,0x22,0x2c,0x22,0x4c, 0x33,0x22,0x3a,0x22,0x4c,0x33,0x22,0x2c,0x22,0x52,0x33,0x22,0x3a,0x22,0x52,0x33, 0x22,0x2c,0x22,0x41,0x31,0x22,0x3a,0x22,0x41,0x31,0x22,0x2c,0x22,0x41,0x32,0x22, 0x3a,0x22,0x41,0x32,0x22,0x7d,0x2c,0x22,0x61,0x72,0x63,0x61,0x64,0x65,0x22,0x3a, 0x7b,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3a,0x22,0x41,0x72,0x63,0x61,0x64,0x65, 0x22,0x2c,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x3a,0x22,0x61,0x72,0x63,0x61,0x64, 0x65,0x22,0x2c,0x22,0x55,0x70,0x22,0x3a,0x22,0x55,0x70,0x22,0x2c,0x22,0x44,0x6f, 0x77,0x6e,0x22,0x3a,0x22,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x22,0x4c,0x65,0x66,0x74, 0x22,0x3a,0x22,0x4c,0x65,0x66,0x74,0x22,0x2c,0x22,0x52,0x69,0x67,0x68,0x74,0x22, 0x3a,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x22,0x42,0x31,0x22,0x3a,0x22,0x4b, 0x31,0x22,0x2c,0x22,0x42,0x32,0x22,0x3a,0x22,0x4b,0x32,0x22,0x2c,0x22,0x42,0x33, 0x22,0x3a,0x22,0x50,0x31,0x22,0x2c,0x22,0x42,0x34,0x22,0x3a,0x22,0x50,0x32,0x22, 0x2c,0x22,0x4c,0x31,0x22,0x3a,0x22,0x4c,0x31,0x22,0x2c,0x22,0x52,0x31,0x22,0x3a, 0x22,0x52,0x31,0x22,0x2c,0x22,0x4c,0x32,0x22,0x3a,0x22,0x4c,0x32,0x22,0x2c,0x22, 0x52,0x32,0x22,0x3a,0x22,0x52,0x32,0x22,0x2c,0x22,0x53,0x31,0x22,0x3a,0x22,0x53, 0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x53,0x32,0x22,0x3a,0x22,0x53,0x74,0x61, 0x72,0x74,0x22,0x2c,0x22,0x4c,0x33,0x22,0x3a,0x22,0x4c,0x33,0x22,0x2c,0x22,0x52, 0x33,0x22,0x3a,0x22,0x52,0x33,0x22,0x2c,0x22,0x41,0x31,0x22,0x3a,0x22,0x48,0x6f, 0x6d,0x65,0x22,0x2c,0x22,0x41,0x32,0x22,0x3a,0x22,0x4e,0x2f,0x41,0x22,0x7d,0x2c, 0x22,0x78,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x7b,0x22,0x6c,0x61,0x62,0x65,0x6c, 0x22,0x3a,0x22,0x58,0x49,0x6e,0x70,0x75,0x74,0x22,0x2c,0x22,0x76,0x61,0x6c,0x75, 0x65,0x22,0x3a,0x22,0x78,0x69,0x6e,0x70,0x75,0x74,0x22,0x2c,0x22,0x55,0x70,0x22, 0x3a,0x22,0x55,0x70,0x22,0x2c,0x22,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x22,0x44,0x6f, 0x77,0x6e,0x22,0x2c,0x22,0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x4c,0x65,0x66,0x74, 0x22,0x2c,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x52,0x69,0x67,0x68,0x74, 0x22,0x2c,0x22,0x42,0x31,0x22,0x3a,0x22,0x41,0x22,0x2c,0x22,0x42,0x32,0x22,0x3a, 0x22,0x42,0x22,0x2c,0x22,0x42,0x33,0x22,0x3a,0x22,0x58,0x22,0x2c,0x22,0x42,0x34, 0x22,0x3a,0x22,0x59,0x22,0x2c,0x22,0x4c,0x31,0x22,0x3a,0x22,0x4c,0x42,0x22,0x2c, 0x22,0x52,0x31,0x22,0x3a,0x22,0x52,0x42,0x22,0x2c,0x22,0x4c,0x32,0x22,0x3a,0x22, 0x4c,0x54,0x22,0x2c,0x22,0x52,0x32,0x22,0x3a,0x22,0x52,0x54,0x22,0x2c,0x22,0x53, 0x31,0x22,0x3a,0x22,0x42,0x61,0x63,0x6b,0x22,0x2c,0x22,0x53,0x32,0x22,0x3a,0x22, 0x53,0x74,0x61,0x72,0x74,0x22,0x2c,0x22,0x4c,0x33,0x22,0x3a,0x22,0x4c,0x53,0x22, 0x2c,0x22,0x52,0x33,0x22,0x3a,0x22,0x52,0x53,0x22,0x2c,0x22,0x41,0x31,0x22,0x3a, 0x22,0x47,0x75,0x69,0x64,0x65,0x22,0x2c,0x22,0x41,0x32,0x22,0x3a,0x22,0x4e,0x2f, 0x41,0x22,0x7d,0x2c,0x22,0x73,0x77,0x69,0x74,0x63,0x68,0x22,0x3a,0x7b,0x22,0x6c, 0x61,0x62,0x65,0x6c,0x22,0x3a,0x22,0x4e,0x69,0x6e,0x74,0x65,0x6e,0x64,0x6f,0x20, 0x53,0x77,0x69,0x74,0x63,0x68,0x22,0x2c,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x3a, 0x22,0x73,0x77,0x69,0x74,0x63,0x68,0x22,0x2c,0x22,0x55,0x70,0x22,0x3a,0x22,0x55, 0x70,0x22,0x2c,0x22,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x22,0x44,0x6f,0x77,0x6e,0x22, 0x2c,0x22,0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x4c,0x65,0x66,0x74,0x22,0x2c,0x22, 0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x22, 0x42,0x31,0x22,0x3a,0x22,0x42,0x22,0x2c,0x22,0x42,0x32,0x22,0x3a,0x22,0x41,0x22, 0x2c,0x22,0x42,0x33,0x22,0x3a,0x22,0x59,0x22,0x2c,0x22,0x42,0x34,0x22,0x3a,0x22, 0x58,0x22,0x2c,0x22,0x4c,0x31,0x22,0x3a,0x22,0x4c,0x22,0x2c,0x22,0x52,0x31,0x22, 0x3a,0x22,0x52,0x22,0x2c,0x22,0x4c,0x32,0x22,0x3a,0x22,0x5a,0x4c,0x22,0x2c,0x22, 0x52,0x32,0x22,0x3a,0x22,0x5a,0x52,0x22,0x2c,0x22,0x53,0x31,0x22,0x3a,0x22,0x4d, 0x69,0x6e,0x75,0x73,0x22,0x2c,0x22,0x53,0x32,0x22,0x3a,0x22,0x50,0x6c,0x75,0x73, 0x22,0x2c,0x22,0x4c,0x33,0x22,0x3a,0x22,0x4c,0x53,0x22,0x2c,0x22,0x52,0x33,0x22, 0x3a,0x22,0x52,0x53,0x22,0x2c,0x22,0x41,0x31,0x22,0x3a,0x22,0x48,0x6f,0x6d,0x65, 0x22,0x2c,0x22,0x41,0x32,0x22,0x3a,0x22,0x43,0x61,0x70,0x74,0x75,0x72,0x65,0x22, 0x7d,0x2c,0x22,0x70,0x73,0x33,0x22,0x3a,0x7b,0x22,0x6c,0x61,0x62,0x65,0x6c,0x22, 0x3a,0x22,0x50,0x53,0x33,0x2f,0x50,0x53,0x34,0x22,0x2c,0x22,0x76,0x61,0x6c,0x75, 0x65,0x22,0x3a,0x22,0x70,0x73,0x33,0x22,0x2c,0x22,0x55,0x70,0x22,0x3a,0x22,0x55, 0x70,0x22,0x2c,0x22,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x22,0x44,0x6f,0x77,0x6e,0x22, 0x2c,0x22,0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x4c,0x65,0x66,0x74,0x22,0x2c,0x22, 0x52,0x69,0x67,0x68,0x74,0x22,0x3a,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x22, 0x42,0x31,0x22,0x3a,0x22,0x43,0x72,0x6f,0x73,0x73,0x22,0x2c,0x22,0x42,0x32,0x22, 0x3a,0x22,0x43,0x69,0x72,0x63,0x6c,0x65,0x22,0x2c,0x22,0x42,0x33,0x22,0x3a,0x22, 0x53,0x71,0x75,0x61,0x72,0x65,0x22,0x2c,0x22,0x42,0x34,0x22,0x3a,0x22,0x54,0x72, 0x69,0x61,0x6e,0x67,0x6c,0x65,0x22,0x2c,0x22,0x4c,0x31,0x22,0x3a,0x22,0x4c,0x31, 0x22,0x2c,0x22,0x52,0x31,0x22,0x3a,0x22,0x52,0x31,0x22,0x2c,0x22,0x4c,0x32,0x22, 0x3a,0x22,0x4c,0x32,0x22,0x2c,0x22,0x52,0x32,0x22,0x3a,0x22,0x52,0x32,0x22,0x2c, 0x22,0x53,0x31,0x22,0x3a,0x22,0x53,0x65,0x6c,0x65,0x63,0x74,0x22,0x2c,0x22,0x53, 0x32,0x22,0x3a,0x22,0x53,0x74,0x61,0x72,0x74,0x22,0x2c,0x22,0x4c,0x33,0x22,0x3a, 0x22,0x4c,0x33,0x22,0x2c,0x22,0x52,0x33,0x22,0x3a,0x22,0x52,0x33,0x22,0x2c,0x22, 0x41,0x31,0x22,0x3a,0x22,0x4e,0x2f,0x41,0x22,0x2c,0x22,0x41,0x32,0x22,0x3a,0x22, 0x4e,0x2f,0x41,0x22,0x7d,0x2c,0x22,0x64,0x69,0x6e,0x70,0x75,0x74,0x22,0x3a,0x7b, 0x22,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3a,0x22,0x44,0x69,0x72,0x65,0x63,0x74,0x49, 0x6e,0x70,0x75,0x74,0x22,0x2c,0x22,0x76,0x61,0x6c,0x75,0x65,0x22,0x3a,0x22,0x64, 0x69,0x6e,0x70,0x75,0x74,0x22,0x2c,0x22,0x55,0x70,0x22,0x3a,0x22,0x55,0x70,0x22, 0x2c,0x22,0x44,0x6f,0x77,0x6e,0x22,0x3a,0x22,0x44,0x6f,0x77,0x6e,0x22,0x2c,0x22, 0x4c,0x65,0x66,0x74,0x22,0x3a,0x22,0x4c,0x65,0x66,0x74,0x22,0x2c,0x22,0x52,0x69, 0x67,0x68,0x74,0x22,0x3a,0x22,0x52,0x69,0x67,0x68,0x74,0x22,0x2c,0x22,0x42,0x31, 0x22,0x3a,0x22,0x32,0x22,0x2c,0x22,0x42,0x32,0x22,0x3a,0x22,0x33,0x22,0x2c,0x22, 0x42,0x33,0x22,0x3a,0x22,0x31,0x22,0x2c,0x22,0x42,0x34,0x22,0x3a,0x22,0x34,0x22, 0x2c,0x22,0x4c,0x31,0x22,0x3a,0x22,0x35,0x22,0x2c,0x22,0x52,0x31,0x22,0x3a,0x22, 0x36,0x22,0x2c,0x22,0x4c,0x32,0x22,0x3a,0x22,0x37,0x22,0x2c,0x22,0x52,0x32,0x22, 0x3a,0x22,0x38,0x22,0x2c,0x22,0x53,0x31,0x22,0x3a,0x22,0x39,0x22,0x2c,0x22,0x53, 0x32,0x22,0x3a,0x22,0x31,0x30,0x22,0x2c,0x22,0x4c,0x33,0x22,0x3a,0x22,0x31,0x31, 0x22,0x2c,0x22,0x52,0x33,0x22,0x3a,0x22,0x31,0x32,0x22,0x2c,0x22,0x41,0x31,0x22, 0x3a,0x22,0x31,0x33,0x22,0x2c,0x22,0x41,0x32,0x22,0x3a,0x22,0x31,0x34,0x22,0x7d, 0x7d,0x27,0x29,0x7d,0x2c,0x36,0x39,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x28,0x65,0x29,0x7b,0x65,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3d,0x4a,0x53, 0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x27,0x7b,0x22,0x70,0x69,0x63,0x6f, 0x22,0x3a,0x7b,0x22,0x6d,0x69,0x6e,0x50,0x69,0x6e,0x22,0x3a,0x30,0x2c,0x22,0x6d, 0x61,0x78,0x50,0x69,0x6e,0x22,0x3a,0x32,0x38,0x2c,0x22,0x61,0x6e,0x61,0x6c,0x6f, 0x67,0x50,0x69,0x6e,0x73,0x22,0x3a,0x5b,0x32,0x36,0x2c,0x32,0x37,0x2c,0x32,0x38, 0x5d,0x2c,0x22,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x50,0x69,0x6e,0x73,0x22,0x3a, 0x5b,0x32,0x33,0x2c,0x32,0x34,0x2c,0x32,0x35,0x5d,0x7d,0x7d,0x27,0x29,0x7d,0x7d, 0x2c,0x5b,0x5b,0x33,0x31,0x30,0x2c,0x31,0x2c,0x32,0x5d,0x5d,0x5d,0x29,0x3b,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__static_js_runtime_main_ecd0b034_js = 5; #endif static const unsigned char FSDATA_ALIGN_PRE data__static_js_runtime_main_ecd0b034_js[] FSDATA_ALIGN_POST = { /* /static/js/runtime-main.ecd0b034.js (36 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x72,0x75,0x6e,0x74,0x69, 0x6d,0x65,0x2d,0x6d,0x61,0x69,0x6e,0x2e,0x65,0x63,0x64,0x30,0x62,0x30,0x33,0x34, 0x2e,0x6a,0x73,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 1535 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x31,0x35,0x33,0x35,0x0d,0x0a, /* "Content-Type: application/javascript " (40 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63, 0x72,0x69,0x70,0x74,0x0d,0x0a,0x0d,0x0a, /* raw file data (1535 bytes) */ 0x21,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x28,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x6e,0x2c,0x66,0x2c,0x69,0x3d,0x72,0x5b,0x30,0x5d,0x2c,0x6c,0x3d, 0x72,0x5b,0x31,0x5d,0x2c,0x61,0x3d,0x72,0x5b,0x32,0x5d,0x2c,0x63,0x3d,0x30,0x2c, 0x73,0x3d,0x5b,0x5d,0x3b,0x63,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b, 0x63,0x2b,0x2b,0x29,0x66,0x3d,0x69,0x5b,0x63,0x5d,0x2c,0x4f,0x62,0x6a,0x65,0x63, 0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f, 0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28, 0x6f,0x2c,0x66,0x29,0x26,0x26,0x6f,0x5b,0x66,0x5d,0x26,0x26,0x73,0x2e,0x70,0x75, 0x73,0x68,0x28,0x6f,0x5b,0x66,0x5d,0x5b,0x30,0x5d,0x29,0x2c,0x6f,0x5b,0x66,0x5d, 0x3d,0x30,0x3b,0x66,0x6f,0x72,0x28,0x6e,0x20,0x69,0x6e,0x20,0x6c,0x29,0x4f,0x62, 0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68, 0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61, 0x6c,0x6c,0x28,0x6c,0x2c,0x6e,0x29,0x26,0x26,0x28,0x65,0x5b,0x6e,0x5d,0x3d,0x6c, 0x5b,0x6e,0x5d,0x29,0x3b,0x66,0x6f,0x72,0x28,0x70,0x26,0x26,0x70,0x28,0x72,0x29, 0x3b,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x73,0x2e,0x73,0x68,0x69, 0x66,0x74,0x28,0x29,0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e, 0x70,0x75,0x73,0x68,0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x75,0x2c,0x61,0x7c,0x7c, 0x5b,0x5d,0x29,0x2c,0x74,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e, 0x20,0x74,0x28,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x2c,0x72, 0x3d,0x30,0x3b,0x72,0x3c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b, 0x2b,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x75,0x5b,0x72, 0x5d,0x2c,0x6e,0x3d,0x21,0x30,0x2c,0x69,0x3d,0x31,0x3b,0x69,0x3c,0x74,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c, 0x3d,0x74,0x5b,0x69,0x5d,0x3b,0x30,0x21,0x3d,0x3d,0x6f,0x5b,0x6c,0x5d,0x26,0x26, 0x28,0x6e,0x3d,0x21,0x31,0x29,0x7d,0x6e,0x26,0x26,0x28,0x75,0x2e,0x73,0x70,0x6c, 0x69,0x63,0x65,0x28,0x72,0x2d,0x2d,0x2c,0x31,0x29,0x2c,0x65,0x3d,0x66,0x28,0x66, 0x2e,0x73,0x3d,0x74,0x5b,0x30,0x5d,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e, 0x20,0x65,0x7d,0x76,0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x2c,0x6f,0x3d,0x7b,0x31, 0x3a,0x30,0x7d,0x2c,0x75,0x3d,0x5b,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x66,0x28,0x72,0x29,0x7b,0x69,0x66,0x28,0x6e,0x5b,0x72,0x5d,0x29,0x72, 0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x5b,0x72,0x5d,0x2e,0x65,0x78,0x70,0x6f,0x72, 0x74,0x73,0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x6e,0x5b,0x72,0x5d,0x3d,0x7b,0x69, 0x3a,0x72,0x2c,0x6c,0x3a,0x21,0x31,0x2c,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3a, 0x7b,0x7d,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x72,0x5d,0x2e, 0x63,0x61,0x6c,0x6c,0x28,0x74,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x74, 0x2c,0x74,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x66,0x29,0x2c,0x74,0x2e, 0x6c,0x3d,0x21,0x30,0x2c,0x74,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x7d,0x66, 0x2e,0x6d,0x3d,0x65,0x2c,0x66,0x2e,0x63,0x3d,0x6e,0x2c,0x66,0x2e,0x64,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c,0x74,0x29,0x7b,0x66, 0x2e,0x6f,0x28,0x65,0x2c,0x72,0x29,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65, 0x2c,0x72,0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21, 0x30,0x2c,0x67,0x65,0x74,0x3a,0x74,0x7d,0x29,0x7d,0x2c,0x66,0x2e,0x72,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x75,0x6e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x64,0x22,0x21,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x53,0x79,0x6d,0x62,0x6f,0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x74, 0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x54,0x61,0x67,0x26,0x26,0x4f,0x62,0x6a,0x65, 0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x28,0x65,0x2c,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x74,0x6f,0x53,0x74,0x72, 0x69,0x6e,0x67,0x54,0x61,0x67,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x22,0x4d, 0x6f,0x64,0x75,0x6c,0x65,0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e, 0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65, 0x2c,0x22,0x5f,0x5f,0x65,0x73,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x22,0x2c,0x7b,0x76, 0x61,0x6c,0x75,0x65,0x3a,0x21,0x30,0x7d,0x29,0x7d,0x2c,0x66,0x2e,0x74,0x3d,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x69,0x66,0x28, 0x31,0x26,0x72,0x26,0x26,0x28,0x65,0x3d,0x66,0x28,0x65,0x29,0x29,0x2c,0x38,0x26, 0x72,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x34,0x26, 0x72,0x26,0x26,0x22,0x6f,0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x3d,0x74,0x79, 0x70,0x65,0x6f,0x66,0x20,0x65,0x26,0x26,0x65,0x26,0x26,0x65,0x2e,0x5f,0x5f,0x65, 0x73,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x3b,0x76,0x61,0x72,0x20,0x74,0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72, 0x65,0x61,0x74,0x65,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0x69,0x66,0x28,0x66,0x2e, 0x72,0x28,0x74,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x74,0x2c,0x22,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x22,0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62, 0x6c,0x65,0x3a,0x21,0x30,0x2c,0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x7d,0x29,0x2c, 0x32,0x26,0x72,0x26,0x26,0x22,0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x74, 0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20, 0x6e,0x20,0x69,0x6e,0x20,0x65,0x29,0x66,0x2e,0x64,0x28,0x74,0x2c,0x6e,0x2c,0x66, 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x5b,0x72,0x5d,0x7d,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c, 0x6c,0x2c,0x6e,0x29,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x2c, 0x66,0x2e,0x6e,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b, 0x76,0x61,0x72,0x20,0x72,0x3d,0x65,0x26,0x26,0x65,0x2e,0x5f,0x5f,0x65,0x73,0x4d, 0x6f,0x64,0x75,0x6c,0x65,0x3f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c, 0x74,0x7d,0x3a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65, 0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66, 0x2e,0x64,0x28,0x72,0x2c,0x22,0x61,0x22,0x2c,0x72,0x29,0x2c,0x72,0x7d,0x2c,0x66, 0x2e,0x6f,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29, 0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70, 0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50, 0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x72, 0x29,0x7d,0x2c,0x66,0x2e,0x70,0x3d,0x22,0x2f,0x22,0x3b,0x76,0x61,0x72,0x20,0x69, 0x3d,0x74,0x68,0x69,0x73,0x5b,0x22,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x4a,0x73, 0x6f,0x6e,0x70,0x67,0x70,0x32,0x30,0x34,0x30,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67, 0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x5d,0x3d,0x74,0x68,0x69,0x73,0x5b,0x22,0x77, 0x65,0x62,0x70,0x61,0x63,0x6b,0x4a,0x73,0x6f,0x6e,0x70,0x67,0x70,0x32,0x30,0x34, 0x30,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x5d, 0x7c,0x7c,0x5b,0x5d,0x2c,0x6c,0x3d,0x69,0x2e,0x70,0x75,0x73,0x68,0x2e,0x62,0x69, 0x6e,0x64,0x28,0x69,0x29,0x3b,0x69,0x2e,0x70,0x75,0x73,0x68,0x3d,0x72,0x2c,0x69, 0x3d,0x69,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76, 0x61,0x72,0x20,0x61,0x3d,0x30,0x3b,0x61,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x61,0x2b,0x2b,0x29,0x72,0x28,0x69,0x5b,0x61,0x5d,0x29,0x3b,0x76,0x61, 0x72,0x20,0x70,0x3d,0x6c,0x3b,0x74,0x28,0x29,0x7d,0x28,0x5b,0x5d,0x29,0x3b,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__asset_manifest_json = 6; #endif static const unsigned char FSDATA_ALIGN_PRE data__asset_manifest_json[] FSDATA_ALIGN_POST = { /* /asset-manifest.json (21 chars) */ 0x2f,0x61,0x73,0x73,0x65,0x74,0x2d,0x6d,0x61,0x6e,0x69,0x66,0x65,0x73,0x74,0x2e, 0x6a,0x73,0x6f,0x6e,0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Type: application/json " (34 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x0d,0x0a, 0x0d,0x0a, /* raw file data (571 bytes) */ 0x7b,0x0a,0x20,0x20,0x22,0x66,0x69,0x6c,0x65,0x73,0x22,0x3a,0x20,0x7b,0x0a,0x20, 0x20,0x20,0x20,0x22,0x6d,0x61,0x69,0x6e,0x2e,0x63,0x73,0x73,0x22,0x3a,0x20,0x22, 0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x63,0x73,0x73,0x2f,0x6d,0x61,0x69,0x6e, 0x2e,0x39,0x36,0x33,0x37,0x61,0x31,0x34,0x30,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e, 0x63,0x73,0x73,0x22,0x2c,0x0a,0x20,0x20,0x20,0x20,0x22,0x6d,0x61,0x69,0x6e,0x2e, 0x6a,0x73,0x22,0x3a,0x20,0x22,0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73, 0x2f,0x6d,0x61,0x69,0x6e,0x2e,0x39,0x66,0x37,0x37,0x61,0x38,0x38,0x33,0x2e,0x63, 0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x22,0x2c,0x0a,0x20,0x20,0x20,0x20,0x22,0x72, 0x75,0x6e,0x74,0x69,0x6d,0x65,0x2d,0x6d,0x61,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3a, 0x20,0x22,0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x72,0x75,0x6e, 0x74,0x69,0x6d,0x65,0x2d,0x6d,0x61,0x69,0x6e,0x2e,0x65,0x63,0x64,0x30,0x62,0x30, 0x33,0x34,0x2e,0x6a,0x73,0x22,0x2c,0x0a,0x20,0x20,0x20,0x20,0x22,0x73,0x74,0x61, 0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32,0x2e,0x65,0x36,0x33,0x35,0x63,0x37,0x31, 0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x22,0x3a,0x20,0x22,0x2f,0x73, 0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32,0x2e,0x65,0x36,0x33,0x35,0x63, 0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x22,0x2c,0x0a,0x20, 0x20,0x20,0x20,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3a, 0x20,0x22,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x0a, 0x20,0x20,0x20,0x20,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32, 0x2e,0x65,0x36,0x33,0x35,0x63,0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e, 0x6a,0x73,0x2e,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x2e,0x74,0x78,0x74,0x22,0x3a, 0x20,0x22,0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32,0x2e,0x65, 0x36,0x33,0x35,0x63,0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73, 0x2e,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x2e,0x74,0x78,0x74,0x22,0x0a,0x20,0x20, 0x7d,0x2c,0x0a,0x20,0x20,0x22,0x65,0x6e,0x74,0x72,0x79,0x70,0x6f,0x69,0x6e,0x74, 0x73,0x22,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x22,0x73,0x74,0x61,0x74,0x69, 0x63,0x2f,0x6a,0x73,0x2f,0x72,0x75,0x6e,0x74,0x69,0x6d,0x65,0x2d,0x6d,0x61,0x69, 0x6e,0x2e,0x65,0x63,0x64,0x30,0x62,0x30,0x33,0x34,0x2e,0x6a,0x73,0x22,0x2c,0x0a, 0x20,0x20,0x20,0x20,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32, 0x2e,0x65,0x36,0x33,0x35,0x63,0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e, 0x6a,0x73,0x22,0x2c,0x0a,0x20,0x20,0x20,0x20,0x22,0x73,0x74,0x61,0x74,0x69,0x63, 0x2f,0x63,0x73,0x73,0x2f,0x6d,0x61,0x69,0x6e,0x2e,0x39,0x36,0x33,0x37,0x61,0x31, 0x34,0x30,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x63,0x73,0x73,0x22,0x2c,0x0a,0x20, 0x20,0x20,0x20,0x22,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x6d,0x61, 0x69,0x6e,0x2e,0x39,0x66,0x37,0x37,0x61,0x38,0x38,0x33,0x2e,0x63,0x68,0x75,0x6e, 0x6b,0x2e,0x6a,0x73,0x22,0x0a,0x20,0x20,0x5d,0x0a,0x7d,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__favicon_ico = 7; #endif static const unsigned char FSDATA_ALIGN_PRE data__favicon_ico[] FSDATA_ALIGN_POST = { /* /favicon.ico (13 chars) */ 0x2f,0x66,0x61,0x76,0x69,0x63,0x6f,0x6e,0x2e,0x69,0x63,0x6f,0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 15086 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x31,0x35,0x30,0x38,0x36,0x0d,0x0a, /* "Content-Type: image/x-icon " (30 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x69,0x6d, 0x61,0x67,0x65,0x2f,0x78,0x2d,0x69,0x63,0x6f,0x6e,0x0d,0x0a,0x0d,0x0a, /* raw file data (15086 bytes) */ 0x00,0x00,0x01,0x00,0x03,0x00,0x30,0x30,0x00,0x00,0x01,0x00,0x20,0x00,0xa8,0x25, 0x00,0x00,0x36,0x00,0x00,0x00,0x20,0x20,0x00,0x00,0x01,0x00,0x20,0x00,0xa8,0x10, 0x00,0x00,0xde,0x25,0x00,0x00,0x10,0x10,0x00,0x00,0x01,0x00,0x20,0x00,0x68,0x04, 0x00,0x00,0x86,0x36,0x00,0x00,0x28,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x60,0x00, 0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xac,0xb4,0xbd,0x0c,0x93,0x9a,0xa4,0xae,0x90,0x96, 0x9e,0x4d,0x8b,0x93,0x9f,0x3a,0x91,0x98,0xa1,0xb1,0xa2,0xa7,0xad,0x1b,0x82,0x88, 0x90,0x9d,0x81,0x84,0x8a,0x3c,0x90,0x9a,0xa4,0x44,0x8a,0x92,0x9b,0xab,0x9f,0xa4, 0xab,0x0e,0x8d,0x93,0x9b,0xa1,0x89,0x8c,0x95,0x56,0x92,0x97,0x9f,0x3d,0x98,0x9c, 0xa3,0xb3,0xad,0xb0,0xb7,0x1a,0x8a,0x90,0x98,0xa4,0x8b,0x8f,0x97,0x47,0x90,0x97, 0x9f,0x49,0x8d,0x91,0x98,0xaf,0x9a,0x9c,0xa1,0x10,0x90,0x95,0x9c,0xa2,0x90,0x93, 0x99,0x5a,0x97,0xa1,0xaa,0x49,0x7f,0x86,0x8e,0x9e,0xa0,0xa4,0xab,0x0a,0x88,0x90, 0x99,0x9f,0x86,0x8e,0x97,0x5b,0x9b,0xa2,0xaa,0x38,0x94,0x9a,0xa2,0xad,0xac,0xb0, 0xb7,0x15,0x8f,0x94,0x9d,0x9c,0x8a,0x8e,0x95,0x66,0x9c,0xa1,0xa8,0x32,0x93,0x96, 0x9d,0xb5,0x9a,0x99,0xa0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x3e,0x3e,0x01,0x2f,0x2f,0x2f,0x02,0x2d,0x2d, 0x2d,0x02,0x00,0x00,0x00,0x01,0x8c,0x8d,0x90,0x13,0xb3,0xb3,0xb6,0xb7,0xb2,0xb2, 0xb4,0x40,0xa9,0xaa,0xac,0x4c,0xb6,0xb6,0xb9,0xb1,0x86,0x88,0x8b,0x1a,0xb7,0xb7, 0xba,0xa7,0xa6,0xa6,0xa8,0x41,0x9a,0x9c,0x9f,0x46,0xa2,0xa3,0xa6,0xa3,0x40,0x41, 0x43,0x1e,0x99,0x98,0x9a,0x97,0x8c,0x8a,0x8e,0x5d,0x9d,0x9c,0x9d,0x59,0xb9,0xb5, 0xb6,0xbb,0x70,0x6e,0x71,0x2b,0xab,0xaa,0xad,0xa7,0x91,0x91,0x92,0x4d,0x91,0x92, 0x94,0x56,0xaa,0xa9,0xab,0xa8,0x5d,0x5c,0x5e,0x27,0xb0,0xb1,0xb3,0xb6,0x9d,0x9d, 0x9f,0x5c,0x8e,0x8f,0x92,0x58,0x9a,0x9b,0x9e,0x97,0x3e,0x3e,0x40,0x1f,0xa3,0xa4, 0xa6,0xaf,0x9e,0x9f,0xa1,0x6e,0x8f,0x8e,0x91,0x4a,0xba,0xb9,0xbb,0xc0,0x70,0x70, 0x73,0x2a,0x8e,0x8e,0x90,0x91,0x87,0x86,0x89,0x63,0x88,0x86,0x88,0x4b,0x9f,0x9a, 0x9c,0xbc,0x54,0x52,0x54,0x26,0x1a,0x1a,0x1a,0x16,0x22,0x22,0x22,0x17,0x27,0x27, 0x27,0x18,0x27,0x27,0x27,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x24,0x24,0x24,0x01,0x1d,0x1d,0x1d,0x6d,0x18,0x18,0x18,0xaa,0x16,0x16, 0x16,0xa7,0x16,0x15,0x16,0xa6,0x1c,0x1c,0x1d,0xb3,0x38,0x38,0x39,0xed,0x25,0x25, 0x26,0xba,0x2a,0x2a,0x2a,0xcd,0x35,0x35,0x36,0xe6,0x1d,0x1d,0x1d,0xb6,0x3f,0x3f, 0x40,0xee,0x2b,0x2c,0x2c,0xc8,0x28,0x28,0x29,0xcb,0x32,0x33,0x34,0xf0,0x1b,0x1b, 0x1c,0xd2,0x30,0x30,0x30,0xed,0x28,0x29,0x29,0xe1,0x2d,0x2d,0x2d,0xe2,0x32,0x32, 0x33,0xef,0x1f,0x1f,0x1f,0xd3,0x36,0x37,0x37,0xf1,0x24,0x25,0x25,0xdd,0x22,0x23, 0x23,0xde,0x30,0x31,0x32,0xea,0x1e,0x1e,0x1e,0xd4,0x2f,0x30,0x30,0xf4,0x23,0x24, 0x24,0xdb,0x25,0x25,0x26,0xe0,0x30,0x31,0x31,0xed,0x1b,0x1b,0x1b,0xd3,0x32,0x32, 0x33,0xf1,0x25,0x26,0x26,0xe1,0x24,0x24,0x24,0xdd,0x36,0x37,0x38,0xf3,0x1e,0x1e, 0x1f,0xd4,0x29,0x29,0x2a,0xeb,0x26,0x26,0x26,0xe1,0x21,0x21,0x22,0xdb,0x2e,0x2e, 0x2e,0xef,0x19,0x19,0x19,0xd2,0x18,0x18,0x18,0xd0,0x19,0x19,0x19,0xd0,0x1a,0x1a, 0x1a,0xd3,0x1c,0x1b,0x1c,0x89,0x29,0x27,0x2b,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x15,0x15,0x15,0x02,0x17,0x17,0x17,0xa8,0x15,0x15,0x15,0xff,0x12,0x12, 0x12,0xff,0x14,0x14,0x14,0xff,0x18,0x17,0x19,0xff,0x15,0x15,0x16,0xff,0x17,0x17, 0x17,0xff,0x18,0x18,0x18,0xff,0x17,0x17,0x17,0xff,0x19,0x18,0x18,0xff,0x1c,0x1a, 0x1a,0xff,0x1c,0x1b,0x1a,0xff,0x17,0x16,0x16,0xff,0x14,0x14,0x14,0xff,0x15,0x15, 0x15,0xff,0x17,0x17,0x17,0xff,0x16,0x16,0x16,0xff,0x14,0x14,0x14,0xff,0x13,0x13, 0x13,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14, 0x14,0xff,0x16,0x16,0x16,0xff,0x17,0x17,0x17,0xff,0x14,0x14,0x14,0xff,0x12,0x12, 0x12,0xff,0x12,0x12,0x12,0xff,0x15,0x15,0x15,0xff,0x17,0x17,0x17,0xff,0x15,0x15, 0x15,0xff,0x18,0x18,0x18,0xff,0x17,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16, 0x16,0xff,0x15,0x15,0x15,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x15,0x15, 0x15,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x16,0x16, 0x16,0xff,0x18,0x17,0x18,0xa8,0x24,0x23,0x26,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x31,0x30,0x32,0x05,0x18,0x17,0x18,0xad,0x16,0x15,0x16,0xff,0x14,0x14, 0x14,0xff,0x14,0x13,0x13,0xff,0x1b,0x19,0x19,0xff,0x17,0x16,0x16,0xff,0x18,0x18, 0x18,0xff,0x18,0x18,0x18,0xff,0x16,0x16,0x16,0xff,0x19,0x18,0x18,0xff,0x1a,0x18, 0x18,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x18,0x17, 0x17,0xff,0x16,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x13,0x13,0x13,0xff,0x15,0x15, 0x15,0xff,0x17,0x16,0x16,0xff,0x14,0x12,0x12,0xff,0x15,0x13,0x13,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x16,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x18,0x17,0x17,0xff,0x17,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x12,0x11, 0x11,0xff,0x14,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x17, 0x17,0xff,0x18,0x17,0x17,0xff,0x15,0x14,0x14,0xff,0x15,0x14,0x14,0xff,0x16,0x14, 0x14,0xff,0x15,0x14,0x14,0xff,0x17,0x16,0x16,0xff,0x18,0x17,0x17,0xff,0x18,0x17, 0x17,0xff,0x19,0x18,0x19,0xa7,0x1d,0x1c,0x22,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x2a,0x29,0x2b,0x14,0x1c,0x1b,0x1d,0xca,0x17,0x16,0x17,0xff,0x15,0x15, 0x15,0xff,0x19,0x19,0x19,0xff,0x1b,0x19,0x19,0xff,0x17,0x16,0x16,0xff,0x1a,0x1a, 0x1a,0xff,0x22,0x21,0x21,0xff,0x1a,0x1a,0x1a,0xff,0x17,0x16,0x16,0xff,0x1d,0x1b, 0x1b,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19,0x19,0xff,0x1b,0x19,0x19,0xff,0x18,0x17, 0x17,0xff,0x19,0x19,0x19,0xff,0x16,0x15,0x15,0xff,0x1b,0x1b,0x1b,0xff,0x18,0x17, 0x17,0xff,0x23,0x21,0x21,0xff,0x23,0x22,0x22,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x1d,0x1b,0x1b,0xff,0x18,0x16,0x16,0xff,0x21,0x1f,0x1f,0xff,0x21,0x1f, 0x1f,0xff,0x1a,0x18,0x19,0xff,0x21,0x20,0x20,0xff,0x1e,0x1d,0x1d,0xff,0x13,0x13, 0x13,0xff,0x14,0x13,0x13,0xff,0x17,0x15,0x15,0xff,0x16,0x15,0x15,0xff,0x16,0x15, 0x15,0xff,0x18,0x15,0x15,0xff,0x14,0x12,0x12,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x19,0x18,0x19,0xa7,0x19,0x18,0x1d,0x02,0x00,0x00,0x00,0x00,0x88,0x8b, 0x92,0x19,0x51,0x51,0x53,0x20,0x1b,0x1b,0x1c,0xc1,0x15,0x15,0x15,0xff,0x14,0x14, 0x14,0xff,0x26,0x25,0x25,0xff,0x20,0x1e,0x1e,0xff,0x17,0x16,0x16,0xff,0x29,0x29, 0x29,0xff,0x26,0x25,0x25,0xff,0x2d,0x2b,0x2b,0xff,0x25,0x24,0x25,0xff,0x2e,0x2d, 0x2f,0xff,0x2c,0x2a,0x2a,0xff,0x26,0x24,0x24,0xff,0x2d,0x2b,0x2c,0xff,0x28,0x27, 0x28,0xff,0x28,0x27,0x27,0xff,0x1b,0x19,0x19,0xff,0x28,0x27,0x27,0xff,0x20,0x1e, 0x1e,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x27,0x27,0xff,0x26,0x25,0x25,0xff,0x1a,0x18, 0x18,0xff,0x1c,0x1a,0x1a,0xff,0x1e,0x1c,0x1c,0xff,0x2b,0x29,0x29,0xff,0x29,0x27, 0x27,0xff,0x2e,0x2b,0x2c,0xff,0x2a,0x29,0x29,0xff,0x28,0x28,0x28,0xff,0x1c,0x1a, 0x1a,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x16,0x14, 0x14,0xff,0x15,0x13,0x13,0xff,0x15,0x13,0x13,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x14,0x13,0x13,0xff,0x14,0x14, 0x14,0xff,0x17,0x16,0x18,0xae,0x94,0x93,0x95,0x1b,0xae,0xad,0xb0,0x19,0x9d,0xa2, 0xa9,0xba,0x91,0x90,0x92,0xbe,0x1f,0x1f,0x20,0xf0,0x17,0x17,0x17,0xff,0x16,0x16, 0x16,0xff,0x25,0x24,0x24,0xff,0x2c,0x2a,0x2a,0xff,0x23,0x22,0x22,0xff,0x2c,0x2b, 0x2b,0xff,0x2a,0x29,0x29,0xff,0x2a,0x28,0x28,0xff,0x2f,0x2e,0x2f,0xff,0x2d,0x2d, 0x2e,0xff,0x27,0x25,0x26,0xff,0x30,0x2e,0x2f,0xff,0x2a,0x29,0x2a,0xff,0x2b,0x2b, 0x2b,0xff,0x2b,0x2a,0x2a,0xff,0x19,0x18,0x18,0xff,0x28,0x26,0x26,0xff,0x20,0x1f, 0x1f,0xff,0x2c,0x2c,0x2c,0xff,0x29,0x29,0x29,0xff,0x24,0x22,0x22,0xff,0x17,0x14, 0x14,0xff,0x14,0x12,0x12,0xff,0x21,0x1f,0x1f,0xff,0x26,0x24,0x24,0xff,0x23,0x22, 0x22,0xff,0x34,0x32,0x32,0xff,0x1f,0x1d,0x1d,0xff,0x28,0x27,0x27,0xff,0x20,0x1e, 0x1e,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x15,0x14,0x14,0xff,0x14,0x13, 0x14,0xff,0x2e,0x2d,0x2f,0xe8,0xac,0xac,0xae,0xc1,0xce,0xcd,0xcf,0xa1,0xab,0xb1, 0xb9,0x31,0x80,0x80,0x82,0x4f,0x1e,0x1e,0x1e,0xe0,0x16,0x16,0x16,0xff,0x17,0x16, 0x16,0xff,0x27,0x25,0x25,0xff,0x29,0x27,0x27,0xff,0x2d,0x2b,0x2b,0xff,0x25,0x24, 0x24,0xff,0x2c,0x2a,0x2a,0xff,0x1a,0x18,0x18,0xff,0x22,0x21,0x21,0xff,0x31,0x31, 0x31,0xff,0x26,0x24,0x25,0xff,0x37,0x35,0x36,0xff,0x1d,0x1c,0x1c,0xff,0x25,0x25, 0x26,0xff,0x32,0x31,0x32,0xff,0x21,0x20,0x20,0xff,0x2d,0x2c,0x2d,0xff,0x19,0x19, 0x19,0xff,0x26,0x26,0x26,0xff,0x26,0x25,0x26,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x1d,0x1c,0x1c,0xff,0x29,0x29,0x29,0xff,0x24,0x24, 0x24,0xff,0x2a,0x2a,0x2a,0xff,0x22,0x22,0x22,0xff,0x29,0x29,0x29,0xff,0x1a,0x19, 0x19,0xff,0x15,0x14,0x14,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x15,0x13, 0x13,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x21,0x20,0x21,0xbd,0xa5,0xa5,0xa9,0x3c,0xc1,0xc1,0xc5,0x2d,0xa8,0xac, 0xb2,0x54,0x7f,0x7d,0x7e,0x63,0x1c,0x1c,0x1c,0xe2,0x16,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x21,0x1f,0x1f,0xff,0x2a,0x28,0x28,0xff,0x22,0x20,0x20,0xff,0x18,0x16, 0x16,0xff,0x21,0x1f,0x1f,0xff,0x1d,0x1b,0x1b,0xff,0x18,0x17,0x17,0xff,0x26,0x24, 0x24,0xff,0x22,0x20,0x20,0xff,0x28,0x26,0x26,0xff,0x17,0x16,0x16,0xff,0x1c,0x1b, 0x1c,0xff,0x24,0x24,0x24,0xff,0x1b,0x1a,0x1a,0xff,0x23,0x22,0x22,0xff,0x19,0x19, 0x19,0xff,0x1a,0x19,0x19,0xff,0x1f,0x1d,0x1d,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x15,0x14,0x14,0xff,0x23,0x23,0x23,0xff,0x24,0x24, 0x24,0xff,0x1c,0x1c,0x1c,0xff,0x28,0x27,0x27,0xff,0x25,0x24,0x24,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x19,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x1b,0x19,0x19,0xff,0x1d,0x1b, 0x1b,0xff,0x26,0x25,0x26,0xcd,0xa0,0x9c,0x9f,0x61,0xce,0xcc,0xcf,0x4c,0xa5,0xaa, 0xaf,0xbb,0x92,0x91,0x92,0xbc,0x1f,0x1f,0x1f,0xf4,0x18,0x18,0x18,0xff,0x1c,0x1a, 0x1a,0xff,0x1f,0x1d,0x1d,0xff,0x1d,0x1b,0x1b,0xff,0x21,0x1f,0x1f,0xff,0x23,0x21, 0x21,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x28,0x27,0x27,0xff,0x26,0x26, 0x26,0xff,0x20,0x1f,0x1f,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x23,0x23,0x23,0xff,0x26,0x25,0x25,0xff,0x1f,0x1d,0x1e,0xff,0x1c,0x1b, 0x1b,0xff,0x1f,0x1f,0x1f,0xff,0x16,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x22,0x21, 0x21,0xff,0x29,0x28,0x28,0xff,0x23,0x22,0x22,0xff,0x23,0x21,0x21,0xff,0x29,0x27, 0x27,0xff,0x20,0x1e,0x1e,0xff,0x1c,0x1a,0x1a,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x25,0x24,0x24,0xff,0x25,0x25,0x26,0xff,0x1e,0x1d,0x1d,0xff,0x27,0x25, 0x25,0xff,0x24,0x23,0x23,0xff,0x1e,0x1c,0x1c,0xff,0x1c,0x1a,0x1a,0xff,0x1e,0x1c, 0x1c,0xff,0x2d,0x2c,0x2c,0xd8,0xb1,0xb0,0xb0,0x91,0xd9,0xd9,0xda,0x6b,0x8f,0x92, 0x98,0x20,0x49,0x49,0x4a,0x2b,0x1d,0x1c,0x1c,0xd6,0x18,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x25,0x23,0x23,0xff,0x27,0x26,0x26,0xff,0x2a,0x28,0x28,0xff,0x29,0x28, 0x28,0xff,0x21,0x20,0x20,0xff,0x17,0x15,0x15,0xff,0x26,0x25,0x25,0xff,0x29,0x28, 0x28,0xff,0x1c,0x1a,0x1a,0xff,0x19,0x17,0x17,0xff,0x17,0x14,0x14,0xff,0x1a,0x18, 0x18,0xff,0x2d,0x2d,0x2d,0xff,0x25,0x25,0x25,0xff,0x29,0x27,0x28,0xff,0x1e,0x1d, 0x1d,0xff,0x2a,0x2a,0x2a,0xff,0x16,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1b,0x19, 0x19,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x21,0x20, 0x20,0xff,0x2c,0x2b,0x2b,0xff,0x1e,0x1d,0x1d,0xff,0x28,0x26,0x26,0xff,0x21,0x1f, 0x1f,0xff,0x2a,0x28,0x28,0xff,0x24,0x22,0x22,0xff,0x24,0x22,0x22,0xff,0x1b,0x19, 0x19,0xff,0x1e,0x1d,0x1d,0xff,0x26,0x25,0x26,0xff,0x2c,0x2b,0x2c,0xff,0x23,0x23, 0x23,0xff,0x25,0x25,0x25,0xff,0x23,0x21,0x21,0xff,0x1b,0x19,0x19,0xff,0x1b,0x19, 0x19,0xff,0x1c,0x1b,0x1b,0xab,0x71,0x73,0x74,0x13,0xae,0xac,0xae,0x10,0x9f,0xa4, 0xac,0xb2,0x8e,0x8d,0x8e,0xa8,0x1f,0x1d,0x1d,0xf2,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x25,0x24,0x24,0xff,0x2f,0x2f,0x2f,0xff,0x29,0x29,0x29,0xff,0x2b,0x2b, 0x2b,0xff,0x2c,0x2b,0x2b,0xff,0x28,0x26,0x26,0xff,0x19,0x17,0x17,0xff,0x24,0x21, 0x22,0xff,0x23,0x21,0x21,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x2a,0x29,0x29,0xff,0x30,0x30,0x30,0xff,0x24,0x24,0x24,0xff,0x1c,0x1c, 0x1c,0xff,0x2a,0x2a,0x2a,0xff,0x16,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x20,0x1e,0x1e,0xff,0x2a,0x28,0x28,0xff,0x26,0x26,0x26,0xff,0x18,0x16, 0x16,0xff,0x2d,0x2b,0x2a,0xff,0x1d,0x1a,0x1b,0xff,0x26,0x24,0x25,0xff,0x1a,0x19, 0x19,0xff,0x1c,0x1a,0x1a,0xff,0x2e,0x2c,0x2c,0xff,0x25,0x24,0x24,0xff,0x2a,0x29, 0x2a,0xff,0x2d,0x2d,0x2d,0xff,0x1e,0x1d,0x1d,0xff,0x1c,0x1a,0x1a,0xff,0x19,0x17, 0x17,0xff,0x28,0x28,0x28,0xe1,0x99,0x98,0x9a,0xb2,0xd1,0xce,0xd0,0x94,0xa1,0xa6, 0xae,0x45,0x76,0x75,0x76,0x4c,0x1c,0x1b,0x1b,0xe0,0x19,0x18,0x18,0xff,0x17,0x16, 0x16,0xff,0x21,0x21,0x21,0xff,0x26,0x26,0x27,0xff,0x2a,0x2a,0x2b,0xff,0x2e,0x2d, 0x2d,0xff,0x27,0x26,0x26,0xff,0x2d,0x2a,0x2b,0xff,0x27,0x25,0x26,0xff,0x25,0x24, 0x25,0xff,0x29,0x27,0x28,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x15,0x13, 0x13,0xff,0x27,0x26,0x27,0xff,0x2c,0x2b,0x2c,0xff,0x24,0x23,0x23,0xff,0x27,0x26, 0x26,0xff,0x2c,0x2c,0x2c,0xff,0x15,0x14,0x14,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18, 0x18,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x21,0x1f, 0x1f,0xff,0x27,0x24,0x25,0xff,0x2f,0x2e,0x2e,0xff,0x2d,0x2c,0x2c,0xff,0x2a,0x28, 0x28,0xff,0x2a,0x28,0x28,0xff,0x15,0x13,0x13,0xff,0x20,0x1e,0x1e,0xff,0x20,0x1f, 0x1f,0xff,0x23,0x21,0x21,0xff,0x2c,0x2a,0x2a,0xff,0x2b,0x29,0x29,0xff,0x2d,0x2b, 0x2b,0xff,0x2e,0x2d,0x2d,0xff,0x20,0x1f,0x1f,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19, 0x19,0xff,0x21,0x20,0x20,0xbd,0x91,0x91,0x93,0x43,0xb9,0xb8,0xba,0x3c,0xb1,0xb4, 0xb9,0x52,0x82,0x81,0x83,0x6a,0x1c,0x1c,0x1d,0xe1,0x15,0x15,0x15,0xff,0x15,0x15, 0x15,0xff,0x1b,0x1a,0x1a,0xff,0x21,0x21,0x21,0xff,0x1d,0x1c,0x1c,0xff,0x1c,0x1a, 0x1a,0xff,0x23,0x21,0x21,0xff,0x1d,0x1b,0x1b,0xff,0x1d,0x1b,0x1c,0xff,0x24,0x22, 0x22,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x16, 0x16,0xff,0x1d,0x1b,0x1b,0xff,0x23,0x21,0x21,0xff,0x1a,0x18,0x18,0xff,0x1d,0x1b, 0x1b,0xff,0x20,0x20,0x20,0xff,0x18,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x1b,0x19,0x19,0xff,0x1b,0x19,0x19,0xff,0x18,0x16,0x16,0xff,0x1d,0x1b, 0x1b,0xff,0x29,0x27,0x27,0xff,0x20,0x1e,0x1e,0xff,0x1d,0x1b,0x1b,0xff,0x25,0x23, 0x23,0xff,0x1c,0x1a,0x1a,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x23,0x21,0x21,0xff,0x25,0x23,0x23,0xff,0x19,0x17,0x17,0xff,0x21,0x1f, 0x1f,0xff,0x24,0x22,0x22,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x27,0x26,0x27,0xce,0xa0,0xa0,0xa1,0x4f,0xc0,0xc0,0xc1,0x1c,0xb2,0xb5, 0xb9,0xab,0x95,0x95,0x97,0xae,0x20,0x1f,0x20,0xf1,0x18,0x17,0x17,0xff,0x18,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x17,0x16,0xff,0x15,0x13, 0x13,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x17,0x16,0x15,0xff,0x17,0x16,0x16,0xff,0x1d,0x1c,0x1c,0xff,0x1b,0x1a, 0x1a,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x17,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x19,0x17,0x17,0xff,0x14,0x12,0x12,0xff,0x14,0x12,0x12,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x32,0x31,0x33,0xe3,0xaf,0xaf,0xb2,0x6d,0xbb,0xbc,0xbf,0x17,0xa5,0xa9, 0xaf,0x0b,0x41,0x3f,0x41,0x20,0x1a,0x18,0x19,0xd3,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x15,0x13,0x13,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x14,0x12,0x12,0xff,0x16,0x14,0x14,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x26,0x25,0x26,0xff,0x39,0x3a,0x3b,0xff,0x3e,0x3e,0x3f,0xff,0x3e,0x3f, 0x40,0xff,0x3c,0x3c,0x3c,0xff,0x27,0x26,0x26,0xff,0x17,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x1c,0x1b,0x1b,0xff,0x16,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x14,0x12, 0x12,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x15,0x16,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x1e,0x1c,0x1d,0xb2,0x71,0x73,0x76,0x17,0xa8,0xa8,0xac,0x17,0xa9,0xaf, 0xb6,0xa3,0xa2,0xa2,0xa3,0xb6,0x1f,0x1e,0x1f,0xf1,0x13,0x12,0x12,0xff,0x15,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x14,0x12, 0x12,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x14,0x12,0x12,0xff,0x15,0x13,0x13,0xff,0x15,0x13,0x13,0xff,0x18,0x16, 0x16,0xff,0x19,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x20,0x1e,0x1f,0xff,0x35,0x35, 0x36,0xff,0x42,0x44,0x45,0xff,0x2e,0x2e,0x2f,0xff,0x1e,0x1d,0x1d,0xff,0x20,0x1e, 0x1f,0xff,0x2f,0x2e,0x2f,0xff,0x43,0x43,0x44,0xff,0x34,0x33,0x35,0xff,0x21,0x20, 0x20,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x17,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x13,0x11,0x11,0xff,0x14,0x12,0x12,0xff,0x18,0x16, 0x16,0xff,0x2e,0x2e,0x2e,0xec,0xb6,0xb6,0xb7,0xb8,0xdd,0xdd,0xdd,0xad,0xab,0xb0, 0xb7,0x4e,0x8b,0x8c,0x8e,0x5e,0x1a,0x1a,0x1a,0xe0,0x13,0x13,0x13,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x19,0x16,0x16,0xff,0x19,0x16,0x17,0xff,0x18,0x16,0x16,0xff,0x19,0x16, 0x17,0xff,0x1d,0x1b,0x1b,0xff,0x2e,0x2e,0x2e,0xff,0x49,0x4b,0x4c,0xff,0x59,0x5c, 0x5e,0xff,0x40,0x42,0x43,0xff,0x1d,0x1c,0x1c,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x1d,0x1b,0x1b,0xff,0x39,0x3a,0x3b,0xff,0x55,0x57,0x58,0xff,0x45,0x47, 0x48,0xff,0x2b,0x2b,0x2c,0xff,0x1d,0x1b,0x1b,0xff,0x1b,0x19,0x19,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x16,0x14,0x14,0xff,0x14,0x12,0x12,0xff,0x13,0x11,0x11,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x15,0x13,0x13,0xff,0x17,0x15, 0x15,0xff,0x21,0x21,0x21,0xc3,0xb9,0xb9,0xb9,0x41,0xda,0xd9,0xd9,0x34,0x9d,0xa4, 0xab,0x63,0x6d,0x6d,0x6f,0x61,0x16,0x16,0x16,0xe2,0x15,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x16,0x14, 0x14,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x20,0x1d, 0x1e,0xff,0x3c,0x3c,0x3e,0xff,0x3f,0x40,0x41,0xff,0x30,0x30,0x31,0xff,0x40,0x42, 0x43,0xff,0x56,0x5a,0x5b,0xff,0x49,0x4b,0x4c,0xff,0x40,0x40,0x41,0xff,0x3c,0x3c, 0x3d,0xff,0x45,0x46,0x47,0xff,0x53,0x55,0x57,0xff,0x3b,0x3c,0x3d,0xff,0x2b,0x2b, 0x2c,0xff,0x39,0x3a,0x3b,0xff,0x39,0x39,0x3a,0xff,0x1b,0x19,0x19,0xff,0x16,0x14, 0x14,0xff,0x15,0x13,0x13,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x14,0x14,0x14,0xff,0x16,0x15, 0x15,0xff,0x21,0x20,0x21,0xca,0x80,0x80,0x82,0x56,0xc8,0xc7,0xc9,0x52,0xac,0xb4, 0xb9,0xa3,0x88,0x89,0x89,0x9b,0x1e,0x1e,0x1e,0xf2,0x17,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x13,0x12,0x12,0xff,0x18,0x16,0x16,0xff,0x38,0x38, 0x39,0xff,0x39,0x3a,0x3b,0xff,0x1c,0x1a,0x1a,0xff,0x16,0x14,0x14,0xff,0x29,0x29, 0x29,0xff,0x53,0x55,0x56,0xff,0x42,0x43,0x44,0xff,0x2e,0x2d,0x2e,0xff,0x2b,0x2b, 0x2c,0xff,0x3e,0x3e,0x40,0xff,0x51,0x53,0x54,0xff,0x27,0x26,0x27,0xff,0x1a,0x17, 0x17,0xff,0x1a,0x18,0x18,0xff,0x38,0x39,0x39,0xff,0x35,0x35,0x35,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x16,0x16, 0x16,0xff,0x2b,0x2a,0x2b,0xe5,0x98,0x98,0x9a,0xad,0xda,0xd9,0xdb,0x89,0x9e,0xa1, 0xab,0x10,0x34,0x34,0x35,0x21,0x1b,0x1b,0x1b,0xd5,0x15,0x15,0x15,0xff,0x14,0x12, 0x12,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x15,0x13, 0x13,0xff,0x15,0x13,0x13,0xff,0x17,0x15,0x15,0xff,0x20,0x1f,0x20,0xff,0x43,0x44, 0x45,0xff,0x21,0x21,0x21,0xff,0x18,0x16,0x16,0xff,0x15,0x13,0x14,0xff,0x32,0x32, 0x33,0xff,0x43,0x44,0x45,0xff,0x1d,0x1b,0x1c,0xff,0x16,0x14,0x14,0xff,0x16,0x14, 0x14,0xff,0x1d,0x1b,0x1b,0xff,0x3b,0x3b,0x3c,0xff,0x2e,0x2e,0x2f,0xff,0x1b,0x18, 0x19,0xff,0x1a,0x18,0x18,0xff,0x22,0x20,0x20,0xff,0x41,0x42,0x43,0xff,0x1e,0x1d, 0x1d,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x16,0x15,0x15,0xff,0x18,0x17, 0x17,0xff,0x1b,0x1a,0x1a,0xaf,0x78,0x78,0x79,0x11,0xbb,0xb8,0xba,0x08,0xa5,0xa8, 0xaf,0xba,0x95,0x95,0x95,0xb4,0x1c,0x1c,0x1c,0xf3,0x14,0x13,0x13,0xff,0x1a,0x18, 0x18,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x15,0x13, 0x13,0xff,0x15,0x13,0x13,0xff,0x16,0x14,0x14,0xff,0x2b,0x2b,0x2b,0xff,0x44,0x46, 0x47,0xff,0x19,0x19,0x19,0xff,0x18,0x16,0x15,0xff,0x24,0x24,0x24,0xff,0x4b,0x4e, 0x4f,0xff,0x33,0x32,0x34,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x1a,0x17,0x17,0xff,0x2c,0x2b,0x2c,0xff,0x44,0x46,0x47,0xff,0x23,0x22, 0x22,0xff,0x1a,0x18,0x18,0xff,0x1c,0x1a,0x1a,0xff,0x42,0x43,0x44,0xff,0x2d,0x2c, 0x2c,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x16,0x14, 0x14,0xff,0x14,0x12,0x12,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x2a,0x2a,0x2a,0xec,0x9f,0x9e,0x9e,0xab,0xda,0xd7,0xd7,0x95,0xb0,0xb2, 0xb7,0x49,0x8c,0x8b,0x8b,0x67,0x1d,0x1b,0x1b,0xe5,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x15,0x13,0x13,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x13, 0x13,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x3c,0x3e,0x3e,0xff,0x4c,0x4f, 0x50,0xff,0x2d,0x2d,0x2d,0xff,0x32,0x32,0x32,0xff,0x4e,0x51,0x52,0xff,0x5b,0x5f, 0x62,0xff,0x38,0x39,0x3a,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x16,0xff,0x16,0x14,0x14,0xff,0x33,0x32,0x33,0xff,0x58,0x5c,0x5e,0xff,0x46,0x47, 0x49,0xff,0x22,0x22,0x22,0xff,0x23,0x21,0x22,0xff,0x4c,0x4d,0x4f,0xff,0x3d,0x3d, 0x3e,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x28,0x27,0x27,0xd4,0x9c,0x9c,0x9c,0x66,0xc9,0xc7,0xc6,0x59,0xa4,0xa9, 0xae,0x48,0x75,0x74,0x75,0x63,0x1b,0x19,0x19,0xe0,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x18,0x15,0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x15,0x15,0xff,0x14,0x12, 0x12,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x18,0x18,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x28,0x27,0x27,0xff,0x43,0x45,0x45,0xff,0x35,0x35, 0x37,0xff,0x50,0x52,0x54,0xff,0x59,0x5b,0x5e,0xff,0x54,0x56,0x59,0xff,0x4a,0x4b, 0x4e,0xff,0x45,0x47,0x48,0xff,0x2b,0x2a,0x2b,0xff,0x1b,0x18,0x19,0xff,0x1b,0x19, 0x1a,0xff,0x28,0x27,0x28,0xff,0x47,0x48,0x49,0xff,0x50,0x53,0x55,0xff,0x55,0x57, 0x59,0xff,0x4e,0x51,0x52,0xff,0x47,0x48,0x4a,0xff,0x37,0x38,0x38,0xff,0x43,0x44, 0x45,0xff,0x27,0x26,0x27,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x15,0x13,0x13,0xff,0x16,0x14, 0x14,0xff,0x23,0x21,0x22,0xd2,0x84,0x85,0x85,0x68,0xb6,0xb6,0xb8,0x5d,0xad,0xb0, 0xb5,0xb9,0x8e,0x8d,0x8e,0xb5,0x20,0x1e,0x1e,0xf2,0x17,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x1f,0x1c,0x1d,0xff,0x1a,0x18,0x19,0xff,0x14,0x13,0x13,0xff,0x18,0x15, 0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14, 0x14,0xff,0x14,0x13,0x13,0xff,0x36,0x36,0x37,0xff,0x35,0x35,0x37,0xff,0x1b,0x19, 0x1a,0xff,0x48,0x4a,0x4c,0xff,0x4a,0x4c,0x4e,0xff,0x25,0x25,0x25,0xff,0x1a,0x18, 0x19,0xff,0x21,0x20,0x20,0xff,0x3b,0x3b,0x3c,0xff,0x46,0x47,0x48,0xff,0x49,0x4b, 0x4c,0xff,0x44,0x44,0x45,0xff,0x2b,0x2a,0x2b,0xff,0x24,0x22,0x22,0xff,0x2c,0x2b, 0x2c,0xff,0x4d,0x4e,0x50,0xff,0x4b,0x4d,0x4e,0xff,0x1d,0x1b,0x1b,0xff,0x35,0x35, 0x35,0xff,0x34,0x35,0x36,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x1c,0x1a,0x1a,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x28,0x28,0x28,0xe4,0x9b,0x9b,0x9b,0xac,0xc4,0xc4,0xc4,0xa9,0xab,0xac, 0xb1,0x11,0x4a,0x49,0x4a,0x26,0x1b,0x1a,0x1a,0xd4,0x16,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x1c,0x19,0x19,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x1a,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x16,0x15,0x15,0xff,0x3c,0x3c,0x3d,0xff,0x31,0x31,0x32,0xff,0x19,0x17, 0x18,0xff,0x3f,0x40,0x41,0xff,0x33,0x32,0x34,0xff,0x1a,0x18,0x18,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x1f,0x1e,0x1f,0xff,0x4c,0x4e,0x50,0xff,0x53,0x56, 0x58,0xff,0x27,0x26,0x27,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x30,0x2f,0x30,0xff,0x3c,0x3c,0x3d,0xff,0x19,0x17,0x17,0xff,0x31,0x30, 0x32,0xff,0x38,0x38,0x39,0xff,0x17,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x1b,0x19, 0x19,0xff,0x1f,0x1e,0x1e,0xb1,0x6e,0x6d,0x6f,0x18,0x9e,0x9e,0x9f,0x19,0xaa,0xac, 0xb0,0xa5,0x96,0x95,0x95,0xb3,0x1e,0x1e,0x1e,0xf0,0x13,0x13,0x13,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x14,0x12, 0x12,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x30,0x2f,0x30,0xff,0x3e,0x3f,0x40,0xff,0x1b,0x1b, 0x1b,0xff,0x39,0x3a,0x3b,0xff,0x30,0x2f,0x30,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x3d,0x3e,0x3f,0xff,0x44,0x45, 0x47,0xff,0x18,0x17,0x17,0xff,0x15,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x27,0x26,0x27,0xff,0x37,0x37,0x38,0xff,0x1a,0x18,0x18,0xff,0x3c,0x3c, 0x3e,0xff,0x2d,0x2c,0x2e,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x1a,0x18,0x18,0xff,0x18,0x16, 0x16,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x29,0x28,0x29,0xed,0x8f,0x8f,0x91,0xb9,0xce,0xcd,0xcf,0xae,0xb0,0xb1, 0xb5,0x58,0x86,0x85,0x85,0x61,0x1a,0x1a,0x1a,0xe0,0x16,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x16,0x14, 0x14,0xff,0x19,0x16,0x16,0xff,0x21,0x1f,0x20,0xff,0x40,0x41,0x41,0xff,0x3b,0x3c, 0x3d,0xff,0x49,0x4b,0x4e,0xff,0x42,0x44,0x46,0xff,0x1c,0x1b,0x1b,0xff,0x19,0x17, 0x17,0xff,0x17,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x3f,0x40,0x41,0xff,0x43,0x45, 0x47,0xff,0x17,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x33,0x33,0x34,0xff,0x45,0x47,0x48,0xff,0x37,0x38,0x38,0xff,0x3f,0x3f, 0x40,0xff,0x1d,0x1a,0x1b,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x14,0x12,0x12,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x15,0x13, 0x13,0xff,0x1e,0x1d,0x1e,0xc5,0xa0,0xa0,0xa2,0x45,0xe3,0xe2,0xe3,0x37,0xae,0xb1, 0xb6,0x36,0x6b,0x6c,0x6d,0x49,0x1a,0x1a,0x1a,0xe0,0x19,0x17,0x17,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x14,0x12,0x12,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x24,0x23,0x23,0xff,0x4b,0x4c, 0x4d,0xff,0x4a,0x4c,0x4d,0xff,0x52,0x54,0x55,0xff,0x3c,0x3e,0x3f,0xff,0x1f,0x1f, 0x20,0xff,0x1c,0x19,0x1a,0xff,0x28,0x27,0x28,0xff,0x50,0x52,0x53,0xff,0x53,0x55, 0x57,0xff,0x2b,0x2a,0x2b,0xff,0x1d,0x1b,0x1b,0xff,0x1b,0x1a,0x1a,0xff,0x2c,0x2c, 0x2d,0xff,0x46,0x48,0x49,0xff,0x46,0x47,0x49,0xff,0x46,0x47,0x48,0xff,0x1f,0x1e, 0x1e,0xff,0x15,0x12,0x13,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x1e,0x1d,0x1e,0xc8,0x75,0x74,0x76,0x51,0xb9,0xb8,0xb9,0x42,0xb0,0xb2, 0xb7,0xb5,0x8f,0x8e,0x8f,0xb5,0x1e,0x1e,0x1e,0xf5,0x17,0x17,0x16,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x13,0x12,0x12,0xff,0x17,0x15, 0x15,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x19,0xff,0x40,0x40, 0x41,0xff,0x31,0x32,0x33,0xff,0x2d,0x2c,0x2d,0xff,0x4a,0x4c,0x4d,0xff,0x4f,0x52, 0x54,0xff,0x48,0x49,0x4b,0xff,0x45,0x46,0x47,0xff,0x40,0x42,0x43,0xff,0x3f,0x40, 0x41,0xff,0x3f,0x3f,0x40,0xff,0x3f,0x3f,0x40,0xff,0x44,0x46,0x47,0xff,0x43,0x45, 0x46,0xff,0x2b,0x2b,0x2b,0xff,0x2b,0x2c,0x2d,0xff,0x3b,0x3a,0x3c,0xff,0x16,0x14, 0x14,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x1b,0x19, 0x19,0xff,0x28,0x27,0x28,0xe6,0x93,0x93,0x94,0xaf,0xd1,0xd1,0xd2,0x71,0x9b,0x9e, 0xa3,0x1e,0x4d,0x4d,0x4e,0x2d,0x18,0x19,0x19,0xd8,0x17,0x16,0x16,0xff,0x1b,0x19, 0x19,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x14,0x13,0x13,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x32,0x31, 0x32,0xff,0x3f,0x40,0x41,0xff,0x1a,0x19,0x19,0xff,0x20,0x20,0x20,0xff,0x4a,0x4c, 0x4e,0xff,0x49,0x4c,0x4d,0xff,0x21,0x20,0x21,0xff,0x1c,0x1a,0x1a,0xff,0x1a,0x18, 0x18,0xff,0x1d,0x1a,0x1b,0xff,0x42,0x42,0x43,0xff,0x4a,0x4c,0x4d,0xff,0x24,0x23, 0x24,0xff,0x1b,0x1a,0x1b,0xff,0x3d,0x3e,0x3f,0xff,0x30,0x30,0x30,0xff,0x16,0x14, 0x14,0xff,0x15,0x13,0x13,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x1b,0x19,0x19,0xff,0x1c,0x1a, 0x1a,0xff,0x1d,0x1c,0x1c,0xab,0x79,0x7a,0x7b,0x10,0x98,0x9a,0x9b,0x0d,0xa1,0xa5, 0xab,0xb1,0x93,0x92,0x95,0xa3,0x1a,0x19,0x19,0xf0,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x1e,0x1c, 0x1c,0xff,0x3e,0x3f,0x40,0xff,0x3b,0x3c,0x3d,0xff,0x26,0x27,0x28,0xff,0x31,0x32, 0x33,0xff,0x44,0x47,0x48,0xff,0x24,0x23,0x24,0xff,0x1b,0x18,0x19,0xff,0x1b,0x19, 0x19,0xff,0x21,0x20,0x21,0xff,0x43,0x44,0x45,0xff,0x35,0x36,0x37,0xff,0x2d,0x2d, 0x2e,0xff,0x3d,0x3d,0x3f,0xff,0x3c,0x3d,0x3e,0xff,0x1f,0x1d,0x1d,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x14,0x12,0x12,0xff,0x15,0x13, 0x13,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x1c,0x1a, 0x1a,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x27,0x26,0x27,0xdd,0x96,0x97,0x98,0xa7,0xc0,0xc1,0xc3,0x90,0xae,0xb0, 0xb5,0x4e,0x79,0x79,0x7a,0x54,0x1b,0x1a,0x1a,0xe4,0x1b,0x19,0x19,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x1b,0x19,0x19,0xff,0x18,0x16,0x16,0xff,0x1b,0x19, 0x19,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x15,0x14,0x14,0xff,0x14,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x19,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x2f,0x2f,0x30,0xff,0x4f,0x51,0x53,0xff,0x41,0x44,0x45,0xff,0x39,0x39, 0x3a,0xff,0x4d,0x4f,0x50,0xff,0x4f,0x52,0x53,0xff,0x44,0x46,0x49,0xff,0x45,0x48, 0x49,0xff,0x4f,0x51,0x52,0xff,0x4e,0x50,0x51,0xff,0x3d,0x3e,0x3f,0xff,0x44,0x46, 0x47,0xff,0x4e,0x50,0x52,0xff,0x2c,0x2c,0x2d,0xff,0x1b,0x19,0x19,0xff,0x19,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x14,0x12,0x12,0xff,0x15,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x1b,0x19, 0x19,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x1a,0x17, 0x18,0xff,0x1f,0x1d,0x1f,0xbf,0x9c,0x9d,0x9e,0x48,0xd0,0xd0,0xd1,0x3e,0x8a,0x90, 0x99,0x58,0x7c,0x7d,0x7f,0x6d,0x1d,0x1d,0x1e,0xe6,0x17,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x18,0x17, 0x17,0xff,0x19,0x18,0x18,0xff,0x19,0x16,0x16,0xff,0x15,0x13,0x13,0xff,0x19,0x17, 0x17,0xff,0x1a,0x17,0x17,0xff,0x1b,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x2b,0x2a, 0x2b,0xff,0x44,0x45,0x47,0xff,0x30,0x2f,0x30,0xff,0x20,0x1e,0x1f,0xff,0x1b,0x19, 0x19,0xff,0x2a,0x2a,0x2b,0xff,0x56,0x58,0x5a,0xff,0x60,0x63,0x67,0xff,0x5f,0x64, 0x67,0xff,0x55,0x58,0x5a,0xff,0x2b,0x2b,0x2b,0xff,0x1d,0x1b,0x1b,0xff,0x1c,0x1a, 0x1a,0xff,0x2b,0x2b,0x2b,0xff,0x41,0x43,0x44,0xff,0x28,0x28,0x28,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x14,0x12,0x12,0xff,0x15,0x13, 0x13,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x16,0xff,0x1f,0x1d,0x1f,0xc3,0xac,0xac,0xae,0x45,0xc8,0xc7,0xc9,0x3a,0x94,0x99, 0xa0,0xac,0x9f,0xa0,0xa1,0xae,0x22,0x22,0x22,0xf3,0x16,0x15,0x15,0xff,0x16,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x13,0x12, 0x12,0xff,0x15,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x16,0x16,0xff,0x22,0x20,0x21,0xff,0x45,0x46, 0x48,0xff,0x2e,0x2d,0x2f,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x1f,0x1d, 0x1d,0xff,0x31,0x30,0x31,0xff,0x43,0x43,0x45,0xff,0x54,0x57,0x58,0xff,0x53,0x56, 0x58,0xff,0x41,0x42,0x43,0xff,0x30,0x30,0x30,0xff,0x1d,0x1b,0x1b,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x2d,0x2d,0x2e,0xff,0x40,0x43,0x44,0xff,0x1d,0x1c, 0x1c,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x2e,0x2c,0x2e,0xe1,0xc2,0xc1,0xc3,0xaa,0xd3,0xd2,0xd3,0x84,0x92,0x96, 0x9c,0x17,0x41,0x42,0x44,0x28,0x1a,0x18,0x1a,0xd7,0x1c,0x1a,0x1a,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x17,0x15, 0x15,0xff,0x16,0x15,0x15,0xff,0x16,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x31,0x31,0x32,0xff,0x42,0x44, 0x45,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x1a,0x1a,0xff,0x26,0x26,0x26,0xff,0x35,0x35, 0x35,0xff,0x32,0x31,0x31,0xff,0x1d,0x1c,0x1c,0xff,0x3d,0x3f,0x40,0xff,0x3f,0x41, 0x41,0xff,0x1e,0x1d,0x1d,0xff,0x2d,0x2d,0x2d,0xff,0x31,0x32,0x32,0xff,0x23,0x22, 0x22,0xff,0x1b,0x1a,0x1a,0xff,0x1b,0x1a,0x1a,0xff,0x3d,0x40,0x41,0xff,0x2e,0x2e, 0x2f,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x15, 0x15,0xff,0x15,0x13,0x13,0xff,0x19,0x17,0x17,0xff,0x1b,0x19,0x19,0xff,0x1b,0x19, 0x19,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x1b,0x1a,0x1b,0xb0,0x7b,0x7b,0x7d,0x16,0xa2,0xa2,0xa3,0x0f,0xa0,0xa4, 0xa9,0xba,0x8c,0x8c,0x8d,0xb8,0x1d,0x1c,0x1d,0xf5,0x1b,0x19,0x19,0xff,0x1c,0x1a, 0x1a,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x1c,0x1a,0x1a,0xff,0x42,0x44,0x44,0xff,0x37,0x37, 0x39,0xff,0x18,0x16,0x16,0xff,0x25,0x23,0x23,0xff,0x2c,0x2c,0x2c,0xff,0x22,0x20, 0x21,0xff,0x1c,0x1a,0x1a,0xff,0x1f,0x1e,0x1e,0xff,0x42,0x44,0x45,0xff,0x42,0x43, 0x44,0xff,0x1e,0x1d,0x1d,0xff,0x18,0x17,0x17,0xff,0x20,0x1f,0x1f,0xff,0x29,0x29, 0x29,0xff,0x22,0x20,0x20,0xff,0x16,0x15,0x15,0xff,0x33,0x34,0x35,0xff,0x3b,0x3c, 0x3d,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x1a,0x18, 0x18,0xff,0x17,0x15,0x15,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x2b,0x29,0x2b,0xe7,0x95,0x93,0x95,0xae,0xca,0xc7,0xc9,0x80,0xab,0xad, 0xb1,0x54,0x7d,0x7c,0x7d,0x5c,0x19,0x19,0x19,0xe1,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x1c,0x1b,0x1c,0xff,0x33,0x33,0x35,0xff,0x2f,0x2f,0x30,0xff,0x1b,0x1a, 0x1a,0xff,0x1b,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x43,0x44,0x45,0xff,0x3f,0x40, 0x41,0xff,0x28,0x27,0x28,0xff,0x22,0x22,0x22,0xff,0x1e,0x1d,0x1e,0xff,0x20,0x1f, 0x20,0xff,0x29,0x29,0x2a,0xff,0x39,0x3a,0x3b,0xff,0x35,0x35,0x37,0xff,0x38,0x37, 0x39,0xff,0x3a,0x3a,0x3c,0xff,0x26,0x27,0x27,0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d, 0x1e,0xff,0x22,0x22,0x23,0xff,0x24,0x24,0x24,0xff,0x3d,0x3f,0x3f,0xff,0x3e,0x3e, 0x3f,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x22,0x20,0x20,0xc6,0x9f,0x9c,0x9d,0x5c,0xca,0xc5,0xc7,0x52,0x8e,0x94, 0x9b,0x53,0x78,0x79,0x7b,0x5b,0x18,0x17,0x17,0xe1,0x1b,0x19,0x19,0xff,0x17,0x16, 0x16,0xff,0x37,0x38,0x39,0xff,0x6a,0x6e,0x71,0xff,0x65,0x69,0x6b,0xff,0x2f,0x2f, 0x30,0xff,0x16,0x13,0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x29,0x28,0x29,0xff,0x3d,0x3e, 0x3f,0xff,0x45,0x47,0x48,0xff,0x47,0x49,0x4a,0xff,0x43,0x46,0x47,0xff,0x44,0x46, 0x47,0xff,0x44,0x45,0x46,0xff,0x34,0x34,0x35,0xff,0x1c,0x1a,0x1c,0xff,0x1e,0x1c, 0x1d,0xff,0x34,0x34,0x35,0xff,0x43,0x45,0x46,0xff,0x43,0x45,0x46,0xff,0x42,0x43, 0x44,0xff,0x44,0x46,0x47,0xff,0x43,0x44,0x45,0xff,0x3e,0x3e,0x3f,0xff,0x25,0x24, 0x25,0xff,0x16,0x15,0x15,0xff,0x1a,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x1b,0x18, 0x19,0xff,0x1b,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x1b,0x18,0x18,0xff,0x1c,0x19, 0x19,0xff,0x16,0x14,0x14,0xff,0x15,0x13,0x13,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x22,0x20,0x21,0xc1,0x95,0x94,0x96,0x52,0xb4,0xb3,0xb5,0x3f,0xa4,0xa9, 0xaf,0xa6,0x97,0x97,0x99,0x9f,0x1e,0x1d,0x1d,0xf2,0x17,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x3c,0x3d,0x3e,0xff,0x6b,0x6f,0x73,0xff,0x68,0x6c,0x6f,0xff,0x33,0x32, 0x33,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x1a,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x19,0x17,0x17,0xff,0x1b,0x19, 0x19,0xff,0x22,0x1f,0x20,0xff,0x2a,0x29,0x2a,0xff,0x2d,0x2b,0x2c,0xff,0x29,0x28, 0x28,0xff,0x21,0x1f,0x20,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18, 0x18,0xff,0x1c,0x1a,0x1a,0xff,0x21,0x20,0x20,0xff,0x26,0x24,0x25,0xff,0x2c,0x2a, 0x2b,0xff,0x29,0x28,0x28,0xff,0x20,0x1e,0x1e,0xff,0x1b,0x19,0x19,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x1b,0x18,0x18,0xff,0x19,0x17, 0x17,0xff,0x1c,0x1a,0x1a,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x15,0x13, 0x13,0xff,0x13,0x11,0x11,0xff,0x17,0x15,0x15,0xff,0x1a,0x18,0x18,0xff,0x19,0x17, 0x17,0xff,0x35,0x34,0x36,0xea,0xb3,0xb3,0xb5,0xc5,0xc7,0xc6,0xc8,0x90,0xf3,0xf7, 0xfb,0x05,0x2b,0x29,0x29,0x1c,0x19,0x17,0x17,0xd4,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x20,0x20,0x20,0xff,0x3d,0x3e,0x40,0xff,0x3d,0x3d,0x3f,0xff,0x1e,0x1c, 0x1d,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x19,0x17, 0x17,0xff,0x1d,0x1b,0x1b,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18, 0x18,0xff,0x1c,0x19,0x19,0xff,0x1b,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x1d,0x1a, 0x1a,0xff,0x1a,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x1b,0x19,0x19,0xff,0x19,0x17, 0x17,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18, 0x18,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x16,0x14, 0x14,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x18,0xff,0x1b,0x19, 0x1a,0xff,0x1e,0x1d,0x1e,0xaf,0x87,0x87,0x89,0x18,0x92,0x92,0x93,0x0e,0x00,0x00, 0x00,0x00,0x19,0x17,0x17,0x17,0x1b,0x19,0x19,0xd0,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x1a,0x18,0x18,0xff,0x1c,0x1a,0x1a,0xff,0x1d,0x1b,0x1b,0xff,0x1b,0x19, 0x19,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19,0x19,0xff,0x1c,0x1a,0x1a,0xff,0x1a,0x18, 0x18,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18, 0x18,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x16,0x14,0x14,0xff,0x17,0x16,0x16,0xff,0x17,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x15,0x17,0xff,0x1c,0x19, 0x1b,0xff,0x1e,0x1c,0x1e,0xa7,0x21,0x23,0x26,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x1b,0x18,0x19,0x17,0x1b,0x18,0x19,0xd0,0x18,0x16,0x17,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x1c,0x1a,0x1a,0xff,0x1a,0x18, 0x18,0xff,0x17,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19,0x19,0xff,0x18,0x16,0x16,0xff,0x1e,0x1c, 0x1c,0xff,0x1e,0x1c,0x1c,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x1d,0x1b, 0x1b,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x19,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x15,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x16,0xff,0x1a,0x18, 0x1a,0xff,0x1d,0x1b,0x1d,0xa7,0x27,0x27,0x29,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x20,0x1d,0x1f,0x18,0x1b,0x18,0x1a,0xd1,0x1b,0x18,0x1a,0xff,0x1a,0x17, 0x18,0xff,0x16,0x14,0x14,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18, 0x18,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x1b,0x19, 0x19,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19,0x19,0xff,0x19,0x16,0x17,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x1b,0x19,0x19,0xff,0x1d,0x1b,0x1b,0xff,0x1b,0x19, 0x19,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x1b,0x19, 0x19,0xff,0x1b,0x19,0x19,0xff,0x1e,0x1b,0x1c,0xff,0x19,0x17,0x17,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x19,0x17,0x18,0xff,0x1c,0x1a,0x1b,0xff,0x1a,0x18,0x1a,0xff,0x1a,0x19, 0x1b,0xff,0x1c,0x1b,0x1d,0xa8,0x29,0x28,0x2a,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x1e,0x1c,0x1e,0x10,0x19,0x18,0x1a,0x8a,0x18,0x16,0x18,0xa9,0x1b,0x18, 0x19,0xa7,0x1a,0x18,0x19,0xa7,0x1e,0x1b,0x1c,0xad,0x2d,0x2c,0x2d,0xea,0x25,0x23, 0x24,0xc9,0x22,0x21,0x22,0xca,0x28,0x26,0x28,0xe7,0x1d,0x1b,0x1d,0xb3,0x2c,0x2b, 0x2d,0xe8,0x1f,0x1d,0x1e,0xc2,0x21,0x1f,0x20,0xbd,0x2f,0x2f,0x2f,0xe4,0x1f,0x1d, 0x1e,0xb1,0x27,0x25,0x26,0xea,0x22,0x20,0x21,0xc8,0x20,0x1e,0x20,0xc3,0x29,0x28, 0x29,0xeb,0x18,0x18,0x18,0xb1,0x22,0x21,0x22,0xe3,0x24,0x22,0x23,0xc5,0x21,0x1f, 0x20,0xcc,0x23,0x22,0x22,0xeb,0x1b,0x1a,0x1a,0xb1,0x23,0x22,0x22,0xe8,0x23,0x21, 0x22,0xcb,0x26,0x24,0x26,0xc7,0x32,0x32,0x34,0xf1,0x1c,0x1b,0x1c,0xb5,0x29,0x27, 0x28,0xe7,0x25,0x25,0x26,0xd6,0x18,0x18,0x18,0xba,0x23,0x23,0x23,0xec,0x1a,0x19, 0x19,0xb5,0x24,0x24,0x24,0xdd,0x22,0x21,0x22,0xe6,0x1d,0x1c,0x1c,0xd7,0x25,0x23, 0x24,0xf3,0x1a,0x18,0x1a,0xd7,0x1f,0x1d,0x1f,0xd0,0x1f,0x1e,0x20,0xc0,0x19,0x18, 0x1a,0xac,0x17,0x16,0x18,0x6d,0x2d,0x2c,0x2e,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0a,0x0c,0x02,0x0b,0x0c,0x0f,0x02,0x16,0x12, 0x17,0x02,0x00,0x00,0x00,0x01,0x89,0x89,0x8b,0x13,0xb0,0xb1,0xb3,0xba,0xa7,0xaa, 0xab,0x48,0x9d,0x9b,0x9d,0x59,0x96,0x95,0x97,0x91,0x99,0x99,0x9a,0x19,0xb5,0xb5, 0xb7,0xbc,0xa3,0xa3,0xa6,0x3d,0xc3,0xc1,0xc2,0x47,0xc3,0xc3,0xc5,0xb5,0x93,0x92, 0x95,0x1a,0x9f,0x9d,0x9e,0xb6,0xa0,0xa0,0xa0,0x50,0xab,0xab,0xac,0x4f,0xb3,0xb2, 0xb3,0xb0,0x95,0x94,0x96,0x16,0xaa,0xa9,0xaa,0xb4,0xae,0xae,0xae,0x54,0x88,0x87, 0x88,0x59,0x9a,0x99,0x99,0xb0,0x6b,0x6a,0x6b,0x0e,0x94,0x93,0x93,0x95,0x9f,0x9d, 0x9e,0x55,0xb6,0xb7,0xb9,0x4b,0xc3,0xc4,0xc6,0xbd,0x92,0x92,0x94,0x1a,0xb2,0xb2, 0xb3,0xa9,0xb7,0xb7,0xb7,0x66,0xa7,0xa7,0xa6,0x36,0xaf,0xaf,0xae,0xbc,0x8d,0x8d, 0x8e,0x19,0xad,0xae,0xb0,0x8e,0x9c,0x9d,0x9f,0x7a,0x6a,0x6a,0x6b,0x34,0x96,0x95, 0x98,0xbf,0x67,0x67,0x69,0x37,0x25,0x24,0x26,0x15,0x31,0x30,0x32,0x0f,0x1e,0x1d, 0x1f,0x03,0x14,0x13,0x15,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x95,0x94,0x98,0x10,0x86,0x87,0x8a,0xaa,0x86,0x88, 0x8a,0x3a,0x96,0x96,0x98,0x5c,0x88,0x88,0x8a,0x99,0xc0,0xbf,0xc0,0x11,0x9f,0x9d, 0x9f,0xa6,0x9a,0x97,0x9a,0x3c,0x9b,0x97,0x9b,0x46,0x93,0x90,0x94,0x9b,0xa2,0x9c, 0xa2,0x17,0x9f,0x9b,0x9f,0xac,0xa2,0xa0,0xa3,0x47,0x9c,0x9a,0x9e,0x49,0x92,0x90, 0x95,0x9b,0x9c,0x98,0x9e,0x0f,0xa5,0xa2,0xa5,0xa5,0xaa,0xa8,0xa9,0x40,0xb1,0xb0, 0xb3,0x4b,0xa9,0xa8,0xab,0xb1,0x8c,0x8a,0x8c,0x0f,0x91,0x8f,0x91,0x9f,0x9e,0x9c, 0x9f,0x5d,0x99,0x97,0x9c,0x49,0x97,0x94,0x98,0xb3,0xae,0xab,0xae,0x1b,0xa0,0xa0, 0xa3,0xa4,0x9d,0x9c,0xa0,0x52,0xf4,0xf2,0xf1,0x39,0xe0,0xdd,0xde,0xad,0xcd,0xcb, 0xcd,0x13,0x9d,0x9b,0xa0,0x91,0x9c,0x9a,0x9f,0x60,0x9d,0x9b,0xa0,0x27,0x8a,0x88, 0x8e,0xbb,0x82,0x81,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xd6, 0xb5,0xad,0x6b,0x7f,0x00,0x00,0xfe,0xd6,0xb5,0xad,0x6b,0x7f,0x00,0x00,0xe0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x01,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x01,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0xfe,0xd6, 0xb5,0xad,0x6b,0x7f,0x00,0x00,0xfe,0xd6,0xb5,0xad,0x6b,0x7f,0x00,0x00,0x28,0x00, 0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x00, 0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xa7,0xac,0xb3,0x41,0xa3,0xa7,0xae,0x6c,0xa2,0xa7, 0xaf,0x67,0xa5,0xa9,0xb0,0x54,0x9b,0x9e,0xa3,0x76,0x99,0x9f,0xa6,0x43,0x99,0x9e, 0xa5,0x6a,0x97,0x9a,0xa0,0x63,0x98,0x9a,0xa0,0x4e,0xaa,0xac,0xb0,0x86,0xa3,0xa6, 0xac,0x51,0x9b,0x9e,0xa4,0x66,0x9d,0xa0,0xa6,0x6d,0x9f,0xa1,0xa6,0x4c,0xa4,0xa6, 0xac,0x85,0x9d,0xa2,0xa8,0x4f,0x8f,0x94,0x9a,0x60,0x99,0x9f,0xa5,0x6a,0x9c,0xa1, 0xa7,0x52,0xaa,0xad,0xb2,0x81,0xa0,0xa3,0xa9,0x48,0x93,0x96,0x9c,0x73,0xa0,0xa0, 0xa6,0x66,0x9d,0x9c,0xa2,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x1c,0x35,0x17,0x17, 0x17,0x75,0x13,0x13,0x13,0x72,0x3b,0x3a,0x3c,0xa0,0x48,0x48,0x49,0xaf,0x48,0x49, 0x4a,0xb6,0x3e,0x3f,0x3f,0xa5,0x52,0x52,0x53,0xc0,0x39,0x39,0x3a,0xa1,0x3f,0x3f, 0x40,0xbf,0x3a,0x3a,0x3b,0xbc,0x3a,0x3a,0x3a,0xb7,0x4e,0x4d,0x4d,0xce,0x3b,0x3b, 0x3c,0xb6,0x40,0x41,0x41,0xbe,0x3f,0x3f,0x40,0xbf,0x38,0x38,0x38,0xb4,0x48,0x49, 0x49,0xce,0x36,0x36,0x37,0xb4,0x3b,0x3b,0x3c,0xbc,0x40,0x41,0x41,0xc4,0x39,0x3a, 0x3a,0xb9,0x4d,0x4d,0x4e,0xce,0x33,0x33,0x33,0xb2,0x3a,0x3a,0x3a,0xc1,0x3c,0x3c, 0x3c,0xc1,0x30,0x30,0x30,0xb2,0x17,0x17,0x17,0x95,0x1a,0x1a,0x1a,0x98,0x1c,0x1c, 0x1d,0x45,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x17,0x17,0x17,0x75,0x15,0x15, 0x15,0xff,0x14,0x14,0x14,0xff,0x17,0x16,0x17,0xff,0x16,0x16,0x17,0xff,0x17,0x17, 0x17,0xff,0x18,0x17,0x17,0xff,0x1b,0x19,0x19,0xff,0x18,0x17,0x17,0xff,0x15,0x14, 0x14,0xff,0x17,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x13,0x13,0x13,0xff,0x14,0x14, 0x14,0xff,0x14,0x13,0x13,0xff,0x15,0x14,0x14,0xff,0x17,0x16,0x16,0xff,0x13,0x13, 0x13,0xff,0x14,0x13,0x13,0xff,0x16,0x15,0x15,0xff,0x14,0x14,0x14,0xff,0x16,0x15, 0x16,0xff,0x16,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x15,0x14,0x14,0xff,0x15,0x14, 0x14,0xff,0x15,0x14,0x14,0xff,0x16,0x16,0x15,0xff,0x17,0x17,0x17,0xff,0x18,0x17, 0x19,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x1b,0x1c,0x89,0x16,0x16, 0x16,0xff,0x17,0x17,0x17,0xff,0x19,0x18,0x18,0xff,0x19,0x19,0x19,0xff,0x1d,0x1d, 0x1d,0xff,0x18,0x18,0x18,0xff,0x1c,0x1a,0x1b,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18, 0x19,0xff,0x18,0x18,0x18,0xff,0x17,0x17,0x17,0xff,0x19,0x18,0x18,0xff,0x1f,0x1e, 0x1e,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x1e,0x1c, 0x1c,0xff,0x1c,0x1a,0x1a,0xff,0x1e,0x1c,0x1d,0xff,0x15,0x15,0x15,0xff,0x15,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x17,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x16,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x19,0x18, 0x19,0x74,0x00,0x00,0x00,0x00,0x9b,0x9d,0xa3,0x4d,0x2b,0x2b,0x2c,0xaa,0x15,0x15, 0x15,0xff,0x1f,0x1f,0x1f,0xff,0x21,0x1f,0x1f,0xff,0x23,0x23,0x23,0xff,0x29,0x28, 0x28,0xff,0x2a,0x28,0x29,0xff,0x2c,0x2b,0x2c,0xff,0x29,0x27,0x27,0xff,0x2b,0x2a, 0x2a,0xff,0x26,0x25,0x25,0xff,0x1f,0x1e,0x1e,0xff,0x24,0x23,0x23,0xff,0x28,0x28, 0x28,0xff,0x26,0x25,0x25,0xff,0x1a,0x18,0x18,0xff,0x1e,0x1c,0x1c,0xff,0x27,0x25, 0x25,0xff,0x2c,0x2a,0x2b,0xff,0x27,0x26,0x26,0xff,0x21,0x1f,0x1f,0xff,0x18,0x16, 0x16,0xff,0x18,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x15,0x13,0x13,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x14,0x13,0x14,0xff,0x35,0x35, 0x36,0x9f,0xc8,0xc7,0xc9,0x48,0xa5,0xa8,0xad,0x67,0x33,0x33,0x33,0xc5,0x15,0x15, 0x15,0xff,0x21,0x20,0x20,0xff,0x2b,0x29,0x29,0xff,0x28,0x27,0x27,0xff,0x27,0x25, 0x25,0xff,0x24,0x22,0x23,0xff,0x2b,0x2b,0x2b,0xff,0x2e,0x2c,0x2d,0xff,0x24,0x23, 0x24,0xff,0x2c,0x2b,0x2b,0xff,0x24,0x22,0x23,0xff,0x22,0x21,0x21,0xff,0x27,0x27, 0x27,0xff,0x1f,0x1e,0x1e,0xff,0x16,0x14,0x14,0xff,0x1c,0x1a,0x1a,0xff,0x25,0x25, 0x25,0xff,0x29,0x29,0x29,0xff,0x24,0x24,0x24,0xff,0x20,0x1f,0x1f,0xff,0x17,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x16,0x15,0x15,0xff,0x40,0x3f, 0x41,0xb1,0xc7,0xc7,0xca,0x5e,0xa7,0xa9,0xad,0x77,0x32,0x32,0x32,0xc8,0x17,0x16, 0x16,0xff,0x1f,0x1d,0x1d,0xff,0x24,0x22,0x22,0xff,0x1e,0x1c,0x1c,0xff,0x1d,0x1b, 0x1b,0xff,0x1d,0x1c,0x1c,0xff,0x24,0x23,0x23,0xff,0x21,0x20,0x20,0xff,0x19,0x18, 0x18,0xff,0x21,0x21,0x21,0xff,0x20,0x1f,0x20,0xff,0x1c,0x1b,0x1c,0xff,0x1c,0x1b, 0x1b,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x20,0x20, 0x20,0xff,0x22,0x22,0x22,0xff,0x25,0x24,0x24,0xff,0x1f,0x1e,0x1e,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x1a,0x18,0x18,0xff,0x1c,0x1b,0x1b,0xff,0x19,0x18, 0x18,0xff,0x1c,0x1b,0x1b,0xff,0x1c,0x1a,0x1a,0xff,0x1c,0x1a,0x1a,0xff,0x42,0x41, 0x41,0xb3,0xcd,0xcb,0xcc,0x5e,0x9f,0xa1,0xa6,0x5b,0x2d,0x2c,0x2c,0xb9,0x18,0x16, 0x16,0xff,0x20,0x1e,0x1e,0xff,0x26,0x24,0x24,0xff,0x27,0x26,0x26,0xff,0x1d,0x1c, 0x1c,0xff,0x22,0x21,0x21,0xff,0x25,0x24,0x25,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x24,0x24,0x24,0xff,0x28,0x27,0x28,0xff,0x21,0x1f,0x20,0xff,0x20,0x20, 0x20,0xff,0x16,0x14,0x14,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x28,0x27,0x27,0xff,0x23,0x21,0x21,0xff,0x26,0x24,0x24,0xff,0x25,0x23, 0x23,0xff,0x20,0x1e,0x1e,0xff,0x1d,0x1b,0x1b,0xff,0x25,0x24,0x25,0xff,0x27,0x26, 0x27,0xff,0x25,0x25,0x25,0xff,0x20,0x1e,0x1e,0xff,0x1b,0x19,0x19,0xff,0x34,0x33, 0x33,0x97,0xcd,0xcd,0xce,0x37,0xa1,0xa4,0xaa,0x80,0x32,0x31,0x31,0xc9,0x17,0x15, 0x15,0xff,0x20,0x1f,0x1f,0xff,0x2b,0x2b,0x2b,0xff,0x2b,0x2b,0x2b,0xff,0x2a,0x29, 0x29,0xff,0x22,0x20,0x20,0xff,0x25,0x23,0x23,0xff,0x1c,0x1a,0x1a,0xff,0x16,0x14, 0x14,0xff,0x23,0x23,0x23,0xff,0x2c,0x2c,0x2c,0xff,0x22,0x22,0x22,0xff,0x23,0x23, 0x23,0xff,0x17,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x19,0x17, 0x17,0xff,0x21,0x1f,0x1f,0xff,0x2a,0x29,0x29,0xff,0x23,0x21,0x21,0xff,0x25,0x23, 0x23,0xff,0x20,0x1e,0x1f,0xff,0x1d,0x1b,0x1b,0xff,0x27,0x25,0x25,0xff,0x2a,0x29, 0x29,0xff,0x2b,0x2a,0x2a,0xff,0x1f,0x1e,0x1e,0xff,0x1a,0x18,0x18,0xff,0x3d,0x3c, 0x3d,0xba,0xbf,0xbd,0xbf,0x77,0xa9,0xac,0xaf,0x51,0x2c,0x2c,0x2c,0xb9,0x16,0x15, 0x15,0xff,0x1b,0x1a,0x1a,0xff,0x22,0x21,0x22,0xff,0x22,0x20,0x21,0xff,0x24,0x21, 0x22,0xff,0x21,0x1f,0x20,0xff,0x23,0x21,0x21,0xff,0x1a,0x18,0x18,0xff,0x16,0x14, 0x14,0xff,0x1d,0x1b,0x1c,0xff,0x23,0x21,0x22,0xff,0x1f,0x1e,0x1e,0xff,0x1f,0x1f, 0x1f,0xff,0x17,0x15,0x15,0xff,0x18,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x25,0x23,0x24,0xff,0x24,0x22,0x22,0xff,0x25,0x23,0x23,0xff,0x1d,0x1b, 0x1b,0xff,0x19,0x17,0x17,0xff,0x1e,0x1c,0x1c,0xff,0x25,0x23,0x23,0xff,0x21,0x1f, 0x1f,0xff,0x26,0x24,0x24,0xff,0x1b,0x19,0x19,0xff,0x18,0x17,0x17,0xff,0x37,0x36, 0x37,0xa1,0xbf,0xbf,0xc1,0x2b,0xae,0xb0,0xb4,0x6e,0x33,0x31,0x32,0xc3,0x18,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1c,0x1b, 0x1c,0xff,0x27,0x26,0x27,0xff,0x26,0x26,0x26,0xff,0x1f,0x1d,0x1d,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x3e,0x3d, 0x3f,0xa9,0xc4,0xc5,0xc8,0x23,0xaf,0xb2,0xb7,0x6b,0x36,0x34,0x35,0xc4,0x14,0x13, 0x13,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x15,0x13,0x13,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x2a,0x29,0x2a,0xff,0x37,0x37, 0x38,0xff,0x2b,0x2b,0x2b,0xff,0x2c,0x2c,0x2c,0xff,0x37,0x37,0x38,0xff,0x2a,0x29, 0x2a,0xff,0x1b,0x1a,0x1a,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x14,0x12,0x12,0xff,0x17,0x15,0x15,0xff,0x44,0x43, 0x44,0xb9,0xd5,0xd5,0xd6,0x74,0xa7,0xab,0xb0,0x56,0x2a,0x2a,0x2b,0xb9,0x14,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x15, 0x16,0xff,0x23,0x21,0x22,0xff,0x37,0x38,0x38,0xff,0x4c,0x4f,0x50,0xff,0x40,0x42, 0x43,0xff,0x25,0x24,0x25,0xff,0x24,0x23,0x23,0xff,0x3c,0x3c,0x3d,0xff,0x48,0x49, 0x4b,0xff,0x33,0x34,0x35,0xff,0x22,0x21,0x21,0xff,0x18,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x14,0x13,0xff,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x15,0x13,0x13,0xff,0x15,0x14,0x14,0xff,0x35,0x35, 0x35,0xa1,0xd3,0xd3,0xd4,0x42,0xa4,0xa9,0xad,0x81,0x2e,0x2e,0x2e,0xc9,0x16,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x15,0x14,0x14,0xff,0x1f,0x1d, 0x1e,0xff,0x38,0x38,0x39,0xff,0x24,0x23,0x24,0xff,0x2b,0x2b,0x2c,0xff,0x4e,0x50, 0x51,0xff,0x39,0x39,0x3a,0xff,0x36,0x36,0x37,0xff,0x4b,0x4c,0x4e,0xff,0x2a,0x29, 0x2a,0xff,0x23,0x21,0x22,0xff,0x35,0x36,0x36,0xff,0x1e,0x1c,0x1c,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x19,0x16,0x16,0xff,0x15,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x3d,0x3d, 0x3e,0xc1,0xc2,0xc1,0xc3,0x78,0xa4,0xa6,0xab,0x4e,0x29,0x29,0x29,0xb5,0x15,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x16,0x14,0x14,0xff,0x2e,0x2e, 0x2e,0xff,0x2b,0x2b,0x2c,0xff,0x16,0x14,0x14,0xff,0x2f,0x2f,0x30,0xff,0x34,0x34, 0x35,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x2f,0x2f,0x2f,0xff,0x2d,0x2c, 0x2d,0xff,0x19,0x17,0x17,0xff,0x2c,0x2b,0x2b,0xff,0x2d,0x2c,0x2d,0xff,0x17,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x17,0x16,0x16,0xff,0x32,0x32, 0x32,0xa0,0xce,0xcc,0xcd,0x3d,0xac,0xad,0xb1,0x75,0x34,0x33,0x33,0xca,0x16,0x14, 0x14,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x16,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x3d,0x3f, 0x40,0xff,0x33,0x33,0x34,0xff,0x31,0x31,0x32,0xff,0x51,0x54,0x56,0xff,0x2f,0x2f, 0x30,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x2b,0x2b,0x2b,0xff,0x4c,0x4e, 0x50,0xff,0x29,0x28,0x29,0xff,0x2e,0x2e,0x2e,0xff,0x3e,0x3e,0x3f,0xff,0x1a,0x18, 0x18,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x40,0x40, 0x40,0xc1,0xc6,0xc5,0xc4,0x75,0xa5,0xa7,0xaa,0x74,0x31,0x2f,0x2f,0xc8,0x17,0x15, 0x15,0xff,0x1a,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x14,0xff,0x17,0x15, 0x15,0xff,0x18,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x26,0x25,0x25,0xff,0x37,0x38, 0x39,0xff,0x43,0x44,0x46,0xff,0x50,0x52,0x54,0xff,0x3e,0x3f,0x41,0xff,0x37,0x37, 0x38,0xff,0x2a,0x29,0x2a,0xff,0x2b,0x2a,0x2b,0xff,0x3a,0x3b,0x3c,0xff,0x45,0x46, 0x47,0xff,0x4c,0x4e,0x4f,0xff,0x40,0x41,0x42,0xff,0x38,0x38,0x39,0xff,0x26,0x25, 0x25,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x3b,0x3a, 0x3a,0xbf,0xb4,0xb5,0xb5,0x7b,0xa8,0xaa,0xad,0x50,0x2b,0x2a,0x2a,0xb6,0x17,0x16, 0x16,0xff,0x1c,0x1a,0x1a,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x16, 0x17,0xff,0x17,0x15,0x15,0xff,0x15,0x13,0x13,0xff,0x2e,0x2e,0x2e,0xff,0x2a,0x29, 0x2a,0xff,0x33,0x33,0x34,0xff,0x31,0x31,0x32,0xff,0x17,0x15,0x15,0xff,0x1c,0x1a, 0x1b,0xff,0x41,0x43,0x44,0xff,0x48,0x49,0x4b,0xff,0x22,0x20,0x21,0xff,0x1a,0x17, 0x18,0xff,0x31,0x30,0x31,0xff,0x33,0x33,0x33,0xff,0x2a,0x29,0x2a,0xff,0x2d,0x2c, 0x2d,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x33,0x33, 0x33,0xa1,0xb9,0xb9,0xba,0x4f,0xac,0xad,0xaf,0x86,0x36,0x35,0x35,0xcd,0x14,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x27,0x26,0x26,0xff,0x35,0x36, 0x37,0xff,0x34,0x35,0x36,0xff,0x2c,0x2c,0x2d,0xff,0x17,0x15,0x15,0xff,0x17,0x16, 0x16,0xff,0x33,0x33,0x34,0xff,0x36,0x37,0x38,0xff,0x15,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x26,0x25,0x25,0xff,0x31,0x31,0x32,0xff,0x33,0x33,0x34,0xff,0x25,0x24, 0x24,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x17,0x15,0x15,0xff,0x17,0x16,0x16,0xff,0x3c,0x3b, 0x3c,0xc3,0xc3,0xc2,0xc4,0x7f,0xaa,0xab,0xaf,0x46,0x27,0x27,0x27,0xb4,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1b,0x19,0x19,0xff,0x34,0x34, 0x35,0xff,0x4a,0x4c,0x4e,0xff,0x45,0x46,0x48,0xff,0x25,0x25,0x25,0xff,0x1e,0x1c, 0x1d,0xff,0x40,0x41,0x42,0xff,0x42,0x43,0x45,0xff,0x1f,0x1d,0x1e,0xff,0x1f,0x1e, 0x1f,0xff,0x39,0x39,0x3a,0xff,0x46,0x47,0x48,0xff,0x30,0x30,0x30,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x2d,0x2c, 0x2d,0xa2,0xb8,0xb8,0xb9,0x40,0xab,0xac,0xaf,0x76,0x30,0x30,0x30,0xc8,0x17,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x18,0x17,0x16,0xff,0x24,0x23, 0x23,0xff,0x3a,0x3a,0x3b,0xff,0x2e,0x2e,0x2f,0xff,0x48,0x4a,0x4c,0xff,0x42,0x44, 0x45,0xff,0x36,0x36,0x37,0xff,0x33,0x33,0x34,0xff,0x3b,0x3b,0x3c,0xff,0x41,0x43, 0x44,0xff,0x2c,0x2c,0x2d,0xff,0x36,0x36,0x37,0xff,0x20,0x1e,0x1f,0xff,0x15,0x13, 0x13,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x1b,0x19,0x19,0xff,0x39,0x39, 0x39,0xb3,0xbb,0xbb,0xbc,0x56,0xa4,0xa6,0xab,0x71,0x2d,0x2c,0x2d,0xc2,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x17,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x18,0xff,0x35,0x36,0x36,0xff,0x2e,0x2e,0x2f,0xff,0x34,0x35,0x37,0xff,0x3b,0x3d, 0x3e,0xff,0x1d,0x1b,0x1c,0xff,0x1c,0x1a,0x1a,0xff,0x38,0x39,0x3a,0xff,0x38,0x39, 0x3a,0xff,0x31,0x31,0x32,0xff,0x34,0x34,0x35,0xff,0x1a,0x18,0x18,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x1a,0x18, 0x18,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x39,0x38, 0x39,0xac,0xb8,0xb9,0xba,0x61,0xa1,0xa3,0xa8,0x52,0x2a,0x2a,0x2a,0xba,0x18,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x17,0x15,0x15,0xff,0x16,0x15,0x15,0xff,0x19,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x31,0x30,0x31,0xff,0x41,0x42,0x43,0xff,0x30,0x30,0x31,0xff,0x45,0x46, 0x48,0xff,0x4d,0x50,0x52,0xff,0x4d,0x50,0x52,0xff,0x46,0x47,0x48,0xff,0x33,0x33, 0x34,0xff,0x3f,0x41,0x41,0xff,0x2f,0x2f,0x30,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x15,0x13,0x13,0xff,0x15,0x13,0x13,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x18,0x16,0x16,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x31,0x2f, 0x31,0x9c,0xc8,0xc8,0xca,0x40,0x9c,0xa0,0xa5,0x89,0x3a,0x3a,0x3b,0xd1,0x15,0x14, 0x14,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x16,0x14,0x14,0xff,0x16,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x19,0x16,0x17,0xff,0x2a,0x28, 0x29,0xff,0x38,0x38,0x3a,0xff,0x1e,0x1c,0x1d,0xff,0x1e,0x1c,0x1c,0xff,0x35,0x35, 0x35,0xff,0x53,0x56,0x57,0xff,0x52,0x56,0x57,0xff,0x33,0x34,0x35,0xff,0x1c,0x1b, 0x1b,0xff,0x1c,0x1a,0x1a,0xff,0x36,0x37,0x37,0xff,0x25,0x25,0x25,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x48,0x47, 0x49,0xba,0xd5,0xd4,0xd6,0x6e,0x9c,0x9f,0xa3,0x54,0x2a,0x2a,0x2b,0xb9,0x1a,0x18, 0x19,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x18,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x39,0x3a, 0x3b,0xff,0x26,0x25,0x25,0xff,0x20,0x1f,0x1f,0xff,0x2d,0x2c,0x2c,0xff,0x26,0x25, 0x25,0xff,0x36,0x36,0x37,0xff,0x36,0x37,0x37,0xff,0x23,0x23,0x23,0xff,0x29,0x29, 0x29,0xff,0x1f,0x1d,0x1d,0xff,0x24,0x24,0x24,0xff,0x35,0x36,0x37,0xff,0x19,0x17, 0x17,0xff,0x17,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x1b,0x19, 0x19,0xff,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x34,0x33, 0x34,0xa1,0xbe,0xbc,0xbe,0x3f,0xa4,0xa6,0xa9,0x77,0x2f,0x2e,0x2f,0xc7,0x19,0x17, 0x17,0xff,0x1d,0x1b,0x1b,0xff,0x2b,0x2b,0x2c,0xff,0x1f,0x1e,0x1f,0xff,0x1a,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x1d,0x1b,0x1b,0xff,0x3f,0x41, 0x42,0xff,0x2c,0x2b,0x2c,0xff,0x26,0x25,0x25,0xff,0x23,0x22,0x23,0xff,0x2a,0x29, 0x2a,0xff,0x37,0x37,0x38,0xff,0x38,0x38,0x39,0xff,0x27,0x27,0x28,0xff,0x21,0x20, 0x21,0xff,0x24,0x24,0x24,0xff,0x29,0x29,0x2a,0xff,0x3b,0x3c,0x3d,0xff,0x19,0x18, 0x18,0xff,0x18,0x15,0x15,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x3c,0x3b, 0x3b,0xb7,0xc0,0xbc,0xbe,0x6a,0x9f,0xa2,0xa8,0x70,0x2f,0x2e,0x2e,0xc3,0x17,0x15, 0x15,0xff,0x30,0x30,0x31,0xff,0x68,0x6c,0x6f,0xff,0x40,0x41,0x42,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x1b,0x19,0x19,0xff,0x29,0x28, 0x28,0xff,0x37,0x37,0x38,0xff,0x3c,0x3d,0x3e,0xff,0x3a,0x3b,0x3c,0xff,0x35,0x35, 0x36,0xff,0x22,0x20,0x21,0xff,0x22,0x21,0x21,0xff,0x35,0x35,0x36,0xff,0x39,0x3a, 0x3b,0xff,0x3a,0x3b,0x3c,0xff,0x36,0x36,0x37,0xff,0x26,0x25,0x26,0xff,0x17,0x16, 0x16,0xff,0x1b,0x18,0x18,0xff,0x1b,0x18,0x19,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x16,0x14,0x14,0xff,0x16,0x14,0x14,0xff,0x18,0x16,0x16,0xff,0x44,0x43, 0x44,0xb6,0xbf,0xbe,0xc0,0x69,0xac,0xae,0xb3,0x37,0x26,0x24,0x24,0xae,0x18,0x16, 0x16,0xff,0x26,0x25,0x26,0xff,0x4b,0x4c,0x4e,0xff,0x30,0x2f,0x31,0xff,0x16,0x14, 0x14,0xff,0x17,0x15,0x15,0xff,0x1a,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x19,0x17, 0x17,0xff,0x1c,0x19,0x19,0xff,0x1e,0x1c,0x1c,0xff,0x1f,0x1c,0x1d,0xff,0x1b,0x19, 0x19,0xff,0x1b,0x19,0x19,0xff,0x1a,0x18,0x18,0xff,0x1b,0x19,0x19,0xff,0x1c,0x1a, 0x1a,0xff,0x1c,0x1a,0x1a,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x17,0x15, 0x15,0xff,0x16,0x14,0x14,0xff,0x19,0x17,0x17,0xff,0x1a,0x18,0x18,0xff,0x3d,0x3b, 0x3d,0x9f,0xc4,0xc4,0xc6,0x3e,0x00,0x00,0x00,0x00,0x1a,0x18,0x18,0x96,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19,0x19,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x18,0xff,0x1c,0x1a,0x1a,0xff,0x1b,0x19, 0x19,0xff,0x1c,0x1a,0x1a,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x18,0x16, 0x16,0xff,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17, 0x17,0xff,0x19,0x17,0x17,0xff,0x17,0x15,0x15,0xff,0x16,0x14,0x14,0xff,0x18,0x16, 0x16,0xff,0x19,0x17,0x17,0xff,0x18,0x16,0x16,0xff,0x1a,0x18,0x1a,0xff,0x1d,0x1c, 0x1d,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x18,0x1a,0x97,0x1a,0x17, 0x19,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xff,0x19,0x17,0x17,0xff,0x18,0x17, 0x17,0xff,0x1a,0x18,0x18,0xff,0x19,0x17,0x17,0xff,0x1a,0x17,0x18,0xff,0x19,0x17, 0x17,0xff,0x1c,0x1a,0x1a,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x1a,0x18,0x19,0xff,0x1a,0x18,0x18,0xff,0x18,0x16,0x16,0xff,0x18,0x16, 0x16,0xff,0x1a,0x18,0x18,0xff,0x1a,0x18,0x18,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x15,0x13,0x13,0xff,0x16,0x14, 0x14,0xff,0x18,0x15,0x16,0xff,0x1b,0x18,0x1a,0xff,0x19,0x18,0x1a,0xff,0x1b,0x1a, 0x1c,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x18,0x1a,0x46,0x19,0x17, 0x19,0x76,0x18,0x15,0x16,0x72,0x38,0x36,0x37,0x9c,0x43,0x43,0x44,0xb8,0x3b,0x39, 0x3a,0xb5,0x34,0x32,0x34,0xa0,0x47,0x46,0x48,0xc0,0x37,0x36,0x36,0x9a,0x4a,0x4a, 0x4a,0xb5,0x3c,0x3a,0x3b,0xb8,0x35,0x33,0x34,0xa2,0x45,0x44,0x45,0xc1,0x33,0x33, 0x33,0xa1,0x40,0x3f,0x3f,0xb6,0x38,0x37,0x37,0xba,0x2f,0x2d,0x2d,0xa0,0x39,0x38, 0x38,0xbc,0x3c,0x3b,0x3c,0xa4,0x4b,0x4b,0x4c,0xbd,0x40,0x3f,0x40,0xb6,0x39,0x39, 0x39,0xa8,0x3d,0x3d,0x3d,0xbf,0x31,0x31,0x31,0x9e,0x3d,0x3d,0x3e,0xc5,0x32,0x31, 0x32,0xbb,0x30,0x2f,0x30,0xbb,0x1f,0x1d,0x1f,0x91,0x1b,0x1a,0x1c,0x7c,0x18,0x17, 0x19,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x9f,0xa0,0xa2,0x44,0x9f,0xa1,0xa3,0x68,0x9b,0x9b, 0x9d,0x6f,0xa0,0xa0,0xa2,0x45,0xaf,0xae,0xb0,0x7f,0xb0,0xae,0xb0,0x45,0xb0,0xae, 0xb1,0x6c,0xa8,0xa4,0xa7,0x73,0xab,0xa9,0xab,0x4c,0xa9,0xa7,0xab,0x7d,0xad,0xac, 0xae,0x4c,0xb3,0xb2,0xb3,0x6c,0xac,0xaa,0xac,0x72,0xa6,0xa4,0xa6,0x4a,0x9d,0x9c, 0x9e,0x7d,0xae,0xad,0xb0,0x50,0xb1,0xaf,0xb3,0x78,0xb1,0xb0,0xb3,0x6e,0xbc,0xbb, 0xbd,0x4d,0xda,0xd8,0xd8,0x80,0xb8,0xb7,0xb9,0x44,0xab,0xaa,0xad,0x73,0x99,0x98, 0x9d,0x5c,0x93,0x91,0x96,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfb,0xde,0xff,0xf0,0x00,0x00,0x03,0xc0,0x00, 0x00,0x03,0x80,0x00,0x00,0x03,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00, 0x00,0x01,0x80,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00, 0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x80,0x00, 0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x00,0x00, 0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00, 0x00,0x01,0x00,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00, 0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0x03,0x80,0x00,0x00,0x03,0xf0,0x00, 0x00,0x07,0xff,0xff,0xfe,0xff,0x28,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00, 0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x19, 0x19,0x18,0x1a,0x19,0x1a,0x4d,0x52,0x52,0x55,0x89,0x59,0x5a,0x5d,0x97,0x54,0x56, 0x58,0x93,0x4d,0x4e,0x51,0x99,0x55,0x56,0x57,0x9f,0x53,0x54,0x55,0x9d,0x51,0x52, 0x54,0x9c,0x51,0x53,0x55,0x9f,0x4c,0x4e,0x50,0x9b,0x56,0x57,0x59,0xa0,0x4f,0x4f, 0x52,0x9d,0x49,0x48,0x4a,0x94,0x1c,0x1b,0x1c,0x5f,0x1b,0x1a,0x1b,0x1d,0x1b,0x1b, 0x1c,0x53,0x16,0x16,0x16,0xee,0x1b,0x1a,0x1a,0xfa,0x1d,0x1d,0x1d,0xfa,0x1e,0x1c, 0x1d,0xfa,0x1b,0x1a,0x1a,0xfc,0x1a,0x1a,0x1a,0xfc,0x1b,0x1b,0x1b,0xfc,0x1a,0x19, 0x19,0xfc,0x1c,0x1b,0x1b,0xfc,0x1a,0x1a,0x1a,0xfc,0x19,0x18,0x18,0xfc,0x18,0x17, 0x17,0xfc,0x17,0x16,0x16,0xfc,0x17,0x16,0x16,0xf1,0x1d,0x1c,0x1d,0x4f,0x46,0x46, 0x48,0x93,0x1c,0x1b,0x1b,0xfb,0x24,0x23,0x23,0xff,0x26,0x24,0x24,0xff,0x28,0x27, 0x28,0xff,0x26,0x24,0x25,0xff,0x22,0x21,0x21,0xff,0x22,0x21,0x21,0xff,0x1b,0x1a, 0x1a,0xff,0x26,0x25,0x25,0xff,0x22,0x21,0x21,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x18,0x17,0x17,0xf9,0x56,0x55,0x56,0x88,0x4d,0x4d, 0x4f,0xa4,0x1d,0x1c,0x1b,0xfc,0x24,0x23,0x23,0xff,0x21,0x1f,0x1f,0xff,0x21,0x1f, 0x1f,0xff,0x1f,0x1e,0x1e,0xff,0x23,0x22,0x22,0xff,0x1b,0x1a,0x1a,0xff,0x18,0x16, 0x16,0xff,0x21,0x20,0x20,0xff,0x24,0x22,0x22,0xff,0x1d,0x1b,0x1b,0xff,0x1e,0x1c, 0x1d,0xff,0x21,0x1f,0x20,0xff,0x1e,0x1c,0x1c,0xfa,0x5a,0x59,0x5a,0x8c,0x4b,0x4b, 0x4d,0xa0,0x1c,0x1a,0x1a,0xfc,0x25,0x24,0x24,0xff,0x23,0x21,0x22,0xff,0x1e,0x1c, 0x1c,0xff,0x1c,0x1a,0x1a,0xff,0x23,0x22,0x22,0xff,0x1c,0x1b,0x1b,0xff,0x18,0x16, 0x16,0xff,0x1e,0x1c,0x1c,0xff,0x24,0x23,0x23,0xff,0x1f,0x1d,0x1d,0xff,0x21,0x1f, 0x1f,0xff,0x25,0x24,0x24,0xff,0x1e,0x1c,0x1c,0xfa,0x51,0x50,0x51,0x88,0x4f,0x4f, 0x51,0x9f,0x18,0x16,0x16,0xfc,0x17,0x16,0x16,0xff,0x18,0x16,0x16,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x16,0xff,0x21,0x20,0x20,0xff,0x28,0x28,0x28,0xff,0x28,0x28, 0x28,0xff,0x21,0x20,0x20,0xff,0x1a,0x18,0x18,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x19,0x17,0x17,0xfa,0x57,0x56,0x57,0x88,0x4a,0x4b, 0x4d,0xa0,0x17,0x16,0x16,0xfc,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x22,0x21,0x22,0xff,0x33,0x33,0x34,0xff,0x38,0x38,0x39,0xff,0x35,0x35, 0x36,0xff,0x31,0x31,0x32,0xff,0x22,0x20,0x20,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x17,0x15,0x15,0xff,0x17,0x16,0x16,0xfa,0x5b,0x5a,0x5b,0x93,0x4c,0x4c, 0x4d,0xa1,0x18,0x16,0x16,0xfc,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1a,0x18, 0x18,0xff,0x30,0x30,0x31,0xff,0x34,0x34,0x35,0xff,0x29,0x29,0x29,0xff,0x27,0x26, 0x27,0xff,0x31,0x31,0x32,0xff,0x2e,0x2e,0x2f,0xff,0x1b,0x19,0x19,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x18,0x17,0x17,0xfb,0x5b,0x5a,0x5a,0x98,0x4d,0x4d, 0x4e,0xa2,0x19,0x17,0x17,0xfc,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x20,0x1f, 0x1f,0xff,0x36,0x37,0x38,0xff,0x34,0x34,0x36,0xff,0x2e,0x2d,0x2e,0xff,0x31,0x30, 0x31,0xff,0x34,0x34,0x35,0xff,0x35,0x35,0x36,0xff,0x21,0x1f,0x20,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x18,0x18,0xfa,0x5a,0x59,0x59,0x9d,0x4c,0x4c, 0x4d,0x9f,0x17,0x16,0x16,0xfc,0x17,0x15,0x15,0xff,0x17,0x15,0x15,0xff,0x1d,0x1c, 0x1c,0xff,0x37,0x37,0x38,0xff,0x2b,0x2b,0x2c,0xff,0x2d,0x2d,0x2d,0xff,0x2d,0x2d, 0x2e,0xff,0x26,0x26,0x26,0xff,0x33,0x33,0x33,0xff,0x1d,0x1b,0x1b,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xfa,0x55,0x54,0x55,0x93,0x4b,0x4b, 0x4d,0xa1,0x18,0x17,0x17,0xfc,0x18,0x16,0x16,0xff,0x17,0x16,0x16,0xff,0x17,0x16, 0x16,0xff,0x2b,0x2a,0x2b,0xff,0x39,0x3a,0x3b,0xff,0x35,0x36,0x37,0xff,0x33,0x33, 0x34,0xff,0x37,0x38,0x39,0xff,0x29,0x28,0x29,0xff,0x16,0x14,0x14,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x18,0x18,0xfa,0x52,0x52,0x52,0x8d,0x4c,0x4c, 0x4e,0xa3,0x19,0x17,0x17,0xfd,0x18,0x16,0x16,0xff,0x17,0x15,0x15,0xff,0x18,0x16, 0x16,0xff,0x2a,0x29,0x29,0xff,0x2d,0x2d,0x2d,0xff,0x40,0x42,0x43,0xff,0x40,0x42, 0x43,0xff,0x2d,0x2c,0x2d,0xff,0x28,0x27,0x27,0xff,0x17,0x15,0x15,0xff,0x17,0x15, 0x15,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xfa,0x5a,0x59,0x5a,0x8d,0x4b,0x4c, 0x4d,0xa4,0x1d,0x1b,0x1b,0xfc,0x22,0x21,0x21,0xff,0x18,0x16,0x16,0xff,0x1d,0x1b, 0x1b,0xff,0x30,0x30,0x30,0xff,0x27,0x26,0x27,0xff,0x31,0x31,0x32,0xff,0x30,0x31, 0x31,0xff,0x25,0x24,0x25,0xff,0x2d,0x2d,0x2d,0xff,0x1b,0x19,0x1a,0xff,0x18,0x16, 0x16,0xff,0x18,0x16,0x16,0xff,0x19,0x17,0x17,0xfa,0x59,0x57,0x58,0x93,0x42,0x41, 0x43,0x91,0x25,0x24,0x24,0xfc,0x3c,0x3d,0x3f,0xff,0x19,0x17,0x17,0xff,0x1a,0x18, 0x18,0xff,0x25,0x24,0x24,0xff,0x2a,0x29,0x2a,0xff,0x23,0x22,0x22,0xff,0x23,0x22, 0x22,0xff,0x28,0x27,0x28,0xff,0x23,0x22,0x22,0xff,0x19,0x17,0x17,0xff,0x19,0x17, 0x17,0xff,0x17,0x15,0x15,0xff,0x1a,0x18,0x18,0xf9,0x57,0x56,0x57,0x89,0x1b,0x19, 0x1a,0x5e,0x1a,0x18,0x18,0xf1,0x1e,0x1c,0x1c,0xfa,0x1a,0x18,0x18,0xfa,0x1b,0x19, 0x1a,0xfa,0x1c,0x1a,0x1a,0xfa,0x1a,0x18,0x18,0xfa,0x1a,0x18,0x19,0xfa,0x1a,0x18, 0x18,0xfa,0x1a,0x18,0x18,0xfa,0x19,0x18,0x18,0xfa,0x19,0x17,0x17,0xfa,0x18,0x16, 0x17,0xfb,0x19,0x17,0x17,0xfc,0x1a,0x18,0x19,0xef,0x1f,0x1e,0x20,0x4d,0x1a,0x18, 0x1a,0x1e,0x1d,0x1a,0x1b,0x4f,0x4e,0x4d,0x4e,0x8a,0x51,0x50,0x52,0x95,0x58,0x57, 0x58,0x92,0x59,0x57,0x58,0x97,0x55,0x53,0x55,0x96,0x56,0x55,0x56,0x96,0x51,0x50, 0x51,0x96,0x54,0x53,0x54,0x97,0x5c,0x5b,0x5d,0x9b,0x5d,0x5c,0x5d,0x96,0x54,0x54, 0x55,0x97,0x46,0x44,0x46,0x95,0x20,0x1f,0x21,0x58,0x19,0x18,0x1a,0x18,0xc0,0x03, 0x00,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0xc0,0x03,0x00,0x00,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__index_html = 8; #endif static const unsigned char FSDATA_ALIGN_PRE data__index_html[] FSDATA_ALIGN_POST = { /* /index.html (12 chars) */ 0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Length: 2270 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x32,0x32,0x37,0x30,0x0d,0x0a, /* "Content-Type: text/html " (27 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a, /* raw file data (2270 bytes) */ 0x3c,0x21,0x64,0x6f,0x63,0x74,0x79,0x70,0x65,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x3c, 0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x65,0x6e,0x22,0x3e,0x3c, 0x68,0x65,0x61,0x64,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73, 0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x2f,0x3e,0x3c,0x6c,0x69,0x6e, 0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x69,0x63,0x6f,0x6e,0x22,0x20,0x68,0x72,0x65, 0x66,0x3d,0x22,0x2f,0x66,0x61,0x76,0x69,0x63,0x6f,0x6e,0x2e,0x69,0x63,0x6f,0x22, 0x2f,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69, 0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d, 0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69, 0x64,0x74,0x68,0x2c,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c, 0x65,0x3d,0x31,0x22,0x2f,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65, 0x3d,0x22,0x74,0x68,0x65,0x6d,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x22,0x20,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x23,0x30,0x30,0x30,0x30,0x30,0x30,0x22, 0x2f,0x3e,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x64,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3d,0x22,0x57,0x65,0x62,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, 0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f, 0x6e,0x20,0x66,0x6f,0x72,0x20,0x47,0x50,0x32,0x30,0x34,0x30,0x20,0x67,0x61,0x6d, 0x65,0x70,0x61,0x64,0x20,0x66,0x69,0x72,0x6d,0x77,0x61,0x72,0x65,0x22,0x2f,0x3e, 0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x61,0x70,0x70,0x6c,0x65, 0x2d,0x74,0x6f,0x75,0x63,0x68,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x20,0x68,0x72,0x65, 0x66,0x3d,0x22,0x2f,0x6c,0x6f,0x67,0x6f,0x2e,0x70,0x6e,0x67,0x22,0x2f,0x3e,0x3c, 0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x6d,0x61,0x6e,0x69,0x66,0x65, 0x73,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x6d,0x61,0x6e,0x69,0x66, 0x65,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2f,0x3e,0x3c,0x74,0x69,0x74,0x6c, 0x65,0x3e,0x47,0x50,0x32,0x30,0x34,0x30,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75, 0x72,0x61,0x74,0x6f,0x72,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x3c,0x6c,0x69, 0x6e,0x6b,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x73,0x74,0x61,0x74,0x69,0x63, 0x2f,0x63,0x73,0x73,0x2f,0x6d,0x61,0x69,0x6e,0x2e,0x39,0x36,0x33,0x37,0x61,0x31, 0x34,0x30,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x63,0x73,0x73,0x22,0x20,0x72,0x65, 0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x3e,0x3c, 0x2f,0x68,0x65,0x61,0x64,0x3e,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x6e,0x6f,0x73, 0x63,0x72,0x69,0x70,0x74,0x3e,0x59,0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,0x20,0x74, 0x6f,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x4a,0x61,0x76,0x61,0x53,0x63,0x72, 0x69,0x70,0x74,0x20,0x74,0x6f,0x20,0x72,0x75,0x6e,0x20,0x74,0x68,0x69,0x73,0x20, 0x61,0x70,0x70,0x2e,0x3c,0x2f,0x6e,0x6f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c, 0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x6f,0x6f,0x74,0x22,0x3e,0x3c,0x2f, 0x64,0x69,0x76,0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x21,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x72,0x28,0x72,0x29,0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e, 0x2c,0x66,0x2c,0x69,0x3d,0x72,0x5b,0x30,0x5d,0x2c,0x6c,0x3d,0x72,0x5b,0x31,0x5d, 0x2c,0x61,0x3d,0x72,0x5b,0x32,0x5d,0x2c,0x63,0x3d,0x30,0x2c,0x73,0x3d,0x5b,0x5d, 0x3b,0x63,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x63,0x2b,0x2b,0x29, 0x66,0x3d,0x69,0x5b,0x63,0x5d,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72, 0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72, 0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6f,0x2c,0x66,0x29, 0x26,0x26,0x6f,0x5b,0x66,0x5d,0x26,0x26,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x6f, 0x5b,0x66,0x5d,0x5b,0x30,0x5d,0x29,0x2c,0x6f,0x5b,0x66,0x5d,0x3d,0x30,0x3b,0x66, 0x6f,0x72,0x28,0x6e,0x20,0x69,0x6e,0x20,0x6c,0x29,0x4f,0x62,0x6a,0x65,0x63,0x74, 0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79,0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77, 0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x6c, 0x2c,0x6e,0x29,0x26,0x26,0x28,0x65,0x5b,0x6e,0x5d,0x3d,0x6c,0x5b,0x6e,0x5d,0x29, 0x3b,0x66,0x6f,0x72,0x28,0x70,0x26,0x26,0x70,0x28,0x72,0x29,0x3b,0x73,0x2e,0x6c, 0x65,0x6e,0x67,0x74,0x68,0x3b,0x29,0x73,0x2e,0x73,0x68,0x69,0x66,0x74,0x28,0x29, 0x28,0x29,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x2e,0x70,0x75,0x73,0x68, 0x2e,0x61,0x70,0x70,0x6c,0x79,0x28,0x75,0x2c,0x61,0x7c,0x7c,0x5b,0x5d,0x29,0x2c, 0x74,0x28,0x29,0x7d,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x28,0x29, 0x7b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x65,0x2c,0x72,0x3d,0x30,0x3b,0x72, 0x3c,0x75,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x72,0x2b,0x2b,0x29,0x7b,0x66, 0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x74,0x3d,0x75,0x5b,0x72,0x5d,0x2c,0x6e,0x3d, 0x21,0x30,0x2c,0x69,0x3d,0x31,0x3b,0x69,0x3c,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74, 0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x76,0x61,0x72,0x20,0x6c,0x3d,0x74,0x5b,0x69, 0x5d,0x3b,0x30,0x21,0x3d,0x3d,0x6f,0x5b,0x6c,0x5d,0x26,0x26,0x28,0x6e,0x3d,0x21, 0x31,0x29,0x7d,0x6e,0x26,0x26,0x28,0x75,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28, 0x72,0x2d,0x2d,0x2c,0x31,0x29,0x2c,0x65,0x3d,0x66,0x28,0x66,0x2e,0x73,0x3d,0x74, 0x5b,0x30,0x5d,0x29,0x29,0x7d,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x7d,0x76, 0x61,0x72,0x20,0x6e,0x3d,0x7b,0x7d,0x2c,0x6f,0x3d,0x7b,0x31,0x3a,0x30,0x7d,0x2c, 0x75,0x3d,0x5b,0x5d,0x3b,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x28, 0x72,0x29,0x7b,0x69,0x66,0x28,0x6e,0x5b,0x72,0x5d,0x29,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x6e,0x5b,0x72,0x5d,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3b,0x76, 0x61,0x72,0x20,0x74,0x3d,0x6e,0x5b,0x72,0x5d,0x3d,0x7b,0x69,0x3a,0x72,0x2c,0x6c, 0x3a,0x21,0x31,0x2c,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x3a,0x7b,0x7d,0x7d,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x72,0x5d,0x2e,0x63,0x61,0x6c,0x6c, 0x28,0x74,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x74,0x2c,0x74,0x2e,0x65, 0x78,0x70,0x6f,0x72,0x74,0x73,0x2c,0x66,0x29,0x2c,0x74,0x2e,0x6c,0x3d,0x21,0x30, 0x2c,0x74,0x2e,0x65,0x78,0x70,0x6f,0x72,0x74,0x73,0x7d,0x66,0x2e,0x6d,0x3d,0x65, 0x2c,0x66,0x2e,0x63,0x3d,0x6e,0x2c,0x66,0x2e,0x64,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x2c,0x74,0x29,0x7b,0x66,0x2e,0x6f,0x28,0x65, 0x2c,0x72,0x29,0x7c,0x7c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69, 0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x72,0x2c,0x7b, 0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c,0x67,0x65, 0x74,0x3a,0x74,0x7d,0x29,0x7d,0x2c,0x66,0x2e,0x72,0x3d,0x66,0x75,0x6e,0x63,0x74, 0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x22,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65, 0x64,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x53,0x79,0x6d,0x62,0x6f, 0x6c,0x26,0x26,0x53,0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69, 0x6e,0x67,0x54,0x61,0x67,0x26,0x26,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65, 0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x53, 0x79,0x6d,0x62,0x6f,0x6c,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x54,0x61, 0x67,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a,0x22,0x4d,0x6f,0x64,0x75,0x6c,0x65, 0x22,0x7d,0x29,0x2c,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e, 0x65,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x65,0x2c,0x22,0x5f,0x5f,0x65, 0x73,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x22,0x2c,0x7b,0x76,0x61,0x6c,0x75,0x65,0x3a, 0x21,0x30,0x7d,0x29,0x7d,0x2c,0x66,0x2e,0x74,0x3d,0x66,0x75,0x6e,0x63,0x74,0x69, 0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x69,0x66,0x28,0x31,0x26,0x72,0x26,0x26, 0x28,0x65,0x3d,0x66,0x28,0x65,0x29,0x29,0x2c,0x38,0x26,0x72,0x29,0x72,0x65,0x74, 0x75,0x72,0x6e,0x20,0x65,0x3b,0x69,0x66,0x28,0x34,0x26,0x72,0x26,0x26,0x22,0x6f, 0x62,0x6a,0x65,0x63,0x74,0x22,0x3d,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65, 0x26,0x26,0x65,0x26,0x26,0x65,0x2e,0x5f,0x5f,0x65,0x73,0x4d,0x6f,0x64,0x75,0x6c, 0x65,0x29,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x3b,0x76,0x61,0x72,0x20,0x74, 0x3d,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x28,0x6e, 0x75,0x6c,0x6c,0x29,0x3b,0x69,0x66,0x28,0x66,0x2e,0x72,0x28,0x74,0x29,0x2c,0x4f, 0x62,0x6a,0x65,0x63,0x74,0x2e,0x64,0x65,0x66,0x69,0x6e,0x65,0x50,0x72,0x6f,0x70, 0x65,0x72,0x74,0x79,0x28,0x74,0x2c,0x22,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22, 0x2c,0x7b,0x65,0x6e,0x75,0x6d,0x65,0x72,0x61,0x62,0x6c,0x65,0x3a,0x21,0x30,0x2c, 0x76,0x61,0x6c,0x75,0x65,0x3a,0x65,0x7d,0x29,0x2c,0x32,0x26,0x72,0x26,0x26,0x22, 0x73,0x74,0x72,0x69,0x6e,0x67,0x22,0x21,0x3d,0x74,0x79,0x70,0x65,0x6f,0x66,0x20, 0x65,0x29,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x6e,0x20,0x69,0x6e,0x20,0x65, 0x29,0x66,0x2e,0x64,0x28,0x74,0x2c,0x6e,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f, 0x6e,0x28,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x5b,0x72,0x5d, 0x7d,0x2e,0x62,0x69,0x6e,0x64,0x28,0x6e,0x75,0x6c,0x6c,0x2c,0x6e,0x29,0x29,0x3b, 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x7d,0x2c,0x66,0x2e,0x6e,0x3d,0x66,0x75, 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x29,0x7b,0x76,0x61,0x72,0x20,0x72,0x3d, 0x65,0x26,0x26,0x65,0x2e,0x5f,0x5f,0x65,0x73,0x4d,0x6f,0x64,0x75,0x6c,0x65,0x3f, 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x65,0x2e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x7d,0x3a,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65, 0x7d,0x3b,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x2e,0x64,0x28,0x72,0x2c,0x22, 0x61,0x22,0x2c,0x72,0x29,0x2c,0x72,0x7d,0x2c,0x66,0x2e,0x6f,0x3d,0x66,0x75,0x6e, 0x63,0x74,0x69,0x6f,0x6e,0x28,0x65,0x2c,0x72,0x29,0x7b,0x72,0x65,0x74,0x75,0x72, 0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x74,0x79, 0x70,0x65,0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74, 0x79,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x65,0x2c,0x72,0x29,0x7d,0x2c,0x66,0x2e,0x70, 0x3d,0x22,0x2f,0x22,0x3b,0x76,0x61,0x72,0x20,0x69,0x3d,0x74,0x68,0x69,0x73,0x5b, 0x22,0x77,0x65,0x62,0x70,0x61,0x63,0x6b,0x4a,0x73,0x6f,0x6e,0x70,0x67,0x70,0x32, 0x30,0x34,0x30,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72, 0x22,0x5d,0x3d,0x74,0x68,0x69,0x73,0x5b,0x22,0x77,0x65,0x62,0x70,0x61,0x63,0x6b, 0x4a,0x73,0x6f,0x6e,0x70,0x67,0x70,0x32,0x30,0x34,0x30,0x2d,0x63,0x6f,0x6e,0x66, 0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x5d,0x7c,0x7c,0x5b,0x5d,0x2c,0x6c, 0x3d,0x69,0x2e,0x70,0x75,0x73,0x68,0x2e,0x62,0x69,0x6e,0x64,0x28,0x69,0x29,0x3b, 0x69,0x2e,0x70,0x75,0x73,0x68,0x3d,0x72,0x2c,0x69,0x3d,0x69,0x2e,0x73,0x6c,0x69, 0x63,0x65,0x28,0x29,0x3b,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x61,0x3d,0x30, 0x3b,0x61,0x3c,0x69,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x61,0x2b,0x2b,0x29, 0x72,0x28,0x69,0x5b,0x61,0x5d,0x29,0x3b,0x76,0x61,0x72,0x20,0x70,0x3d,0x6c,0x3b, 0x74,0x28,0x29,0x7d,0x28,0x5b,0x5d,0x29,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74, 0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73, 0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x32,0x2e,0x65,0x36,0x33,0x35,0x63, 0x37,0x31,0x62,0x2e,0x63,0x68,0x75,0x6e,0x6b,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f, 0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73, 0x72,0x63,0x3d,0x22,0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x6a,0x73,0x2f,0x6d, 0x61,0x69,0x6e,0x2e,0x39,0x66,0x37,0x37,0x61,0x38,0x38,0x33,0x2e,0x63,0x68,0x75, 0x6e,0x6b,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e, 0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__manifest_json = 9; #endif static const unsigned char FSDATA_ALIGN_PRE data__manifest_json[] FSDATA_ALIGN_POST = { /* /manifest.json (15 chars) */ 0x2f,0x6d,0x61,0x6e,0x69,0x66,0x65,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: lwIP/2.2.0d (http://savannah.nongnu.org/projects/lwip) " (64 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x6c,0x77,0x49,0x50,0x2f,0x32,0x2e,0x32, 0x2e,0x30,0x64,0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73,0x61,0x76,0x61, 0x6e,0x6e,0x61,0x68,0x2e,0x6e,0x6f,0x6e,0x67,0x6e,0x75,0x2e,0x6f,0x72,0x67,0x2f, 0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x2f,0x6c,0x77,0x69,0x70,0x29,0x0d,0x0a, /* "Content-Type: application/json " (34 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x0d,0x0a, 0x0d,0x0a, /* raw file data (327 bytes) */ 0x7b,0x0d,0x0a,0x20,0x20,0x22,0x73,0x68,0x6f,0x72,0x74,0x5f,0x6e,0x61,0x6d,0x65, 0x22,0x3a,0x20,0x22,0x47,0x50,0x32,0x30,0x34,0x30,0x20,0x43,0x6f,0x6e,0x66,0x69, 0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x2c,0x0d,0x0a,0x20,0x20,0x22,0x6e,0x61, 0x6d,0x65,0x22,0x3a,0x20,0x22,0x47,0x50,0x32,0x30,0x34,0x30,0x20,0x43,0x6f,0x6e, 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x6f,0x72,0x22,0x2c,0x0d,0x0a,0x20,0x20,0x22, 0x69,0x63,0x6f,0x6e,0x73,0x22,0x3a,0x20,0x5b,0x0d,0x0a,0x20,0x20,0x20,0x20,0x7b, 0x0d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x73,0x72,0x63,0x22,0x3a,0x20,0x22, 0x66,0x61,0x76,0x69,0x63,0x6f,0x6e,0x2e,0x69,0x63,0x6f,0x22,0x2c,0x0d,0x0a,0x20, 0x20,0x20,0x20,0x20,0x20,0x22,0x73,0x69,0x7a,0x65,0x73,0x22,0x3a,0x20,0x22,0x36, 0x34,0x78,0x36,0x34,0x20,0x33,0x32,0x78,0x33,0x32,0x20,0x32,0x34,0x78,0x32,0x34, 0x20,0x31,0x36,0x78,0x31,0x36,0x22,0x2c,0x0d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, 0x22,0x74,0x79,0x70,0x65,0x22,0x3a,0x20,0x22,0x69,0x6d,0x61,0x67,0x65,0x2f,0x78, 0x2d,0x69,0x63,0x6f,0x6e,0x22,0x0d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0d,0x0a,0x20, 0x20,0x5d,0x2c,0x0d,0x0a,0x20,0x20,0x22,0x73,0x74,0x61,0x72,0x74,0x5f,0x75,0x72, 0x6c,0x22,0x3a,0x20,0x22,0x2e,0x22,0x2c,0x0d,0x0a,0x20,0x20,0x22,0x64,0x69,0x73, 0x70,0x6c,0x61,0x79,0x22,0x3a,0x20,0x22,0x73,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, 0x6e,0x65,0x22,0x2c,0x0d,0x0a,0x20,0x20,0x22,0x74,0x68,0x65,0x6d,0x65,0x5f,0x63, 0x6f,0x6c,0x6f,0x72,0x22,0x3a,0x20,0x22,0x23,0x30,0x30,0x30,0x30,0x30,0x30,0x22, 0x2c,0x0d,0x0a,0x20,0x20,0x22,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, 0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x22,0x3a,0x20,0x22,0x23,0x66,0x66,0x66,0x66,0x66, 0x66,0x22,0x0d,0x0a,0x7d,0x0d,0x0a,}; const struct fsdata_file file__images_logo_png[] = { { file_NULL, data__images_logo_png, data__images_logo_png + 20, sizeof(data__images_logo_png) - 20, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__static_css_main_9637a140_chunk_css[] = { { file__images_logo_png, data__static_css_main_9637a140_chunk_css, data__static_css_main_9637a140_chunk_css + 36, sizeof(data__static_css_main_9637a140_chunk_css) - 36, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__static_js_2_e635c71b_chunk_js[] = { { file__static_css_main_9637a140_chunk_css, data__static_js_2_e635c71b_chunk_js, data__static_js_2_e635c71b_chunk_js + 32, sizeof(data__static_js_2_e635c71b_chunk_js) - 32, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__static_js_2_e635c71b_chunk_js_LICENSE_txt[] = { { file__static_js_2_e635c71b_chunk_js, data__static_js_2_e635c71b_chunk_js_LICENSE_txt, data__static_js_2_e635c71b_chunk_js_LICENSE_txt + 44, sizeof(data__static_js_2_e635c71b_chunk_js_LICENSE_txt) - 44, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__static_js_main_9f77a883_chunk_js[] = { { file__static_js_2_e635c71b_chunk_js_LICENSE_txt, data__static_js_main_9f77a883_chunk_js, data__static_js_main_9f77a883_chunk_js + 36, sizeof(data__static_js_main_9f77a883_chunk_js) - 36, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__static_js_runtime_main_ecd0b034_js[] = { { file__static_js_main_9f77a883_chunk_js, data__static_js_runtime_main_ecd0b034_js, data__static_js_runtime_main_ecd0b034_js + 36, sizeof(data__static_js_runtime_main_ecd0b034_js) - 36, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__asset_manifest_json[] = { { file__static_js_runtime_main_ecd0b034_js, data__asset_manifest_json, data__asset_manifest_json + 24, sizeof(data__asset_manifest_json) - 24, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_SSI, }}; const struct fsdata_file file__favicon_ico[] = { { file__asset_manifest_json, data__favicon_ico, data__favicon_ico + 16, sizeof(data__favicon_ico) - 16, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__index_html[] = { { file__favicon_ico, data__index_html, data__index_html + 12, sizeof(data__index_html) - 12, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__manifest_json[] = { { file__index_html, data__manifest_json, data__manifest_json + 16, sizeof(data__manifest_json) - 16, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_SSI, }}; #define FS_ROOT file__manifest_json #define FS_NUMFILES 10 ================================================ FILE: lib/httpd/fsdata.h ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels * */ #ifndef __FSDATA_H__ #define __FSDATA_H__ #include "lwip/opt.h" #include "fs.h" struct fsdata_file { const struct fsdata_file *next; const unsigned char *name; const unsigned char *data; int len; u8_t http_header_included; #if HTTPD_PRECALCULATED_CHECKSUM u16_t chksum_count; const struct fsdata_chksum *chksum; #endif /* HTTPD_PRECALCULATED_CHECKSUM */ }; #endif /* __FSDATA_H__ */ ================================================ FILE: lib/httpd/httpd.c ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels * Simon Goldschmidt * */ /* This httpd supports for a * rudimentary server-side-include facility which will replace tags of the form * in any file whose extension is .shtml, .shtm or .ssi with * strings provided by an include handler whose pointer is provided to the * module via function http_set_ssi_handler(). * Additionally, a simple common * gateway interface (CGI) handling mechanism has been added to allow clients * to hook functions to particular request URIs. * * To enable SSI support, define label LWIP_HTTPD_SSI in lwipopts.h. * To enable CGI support, define label LWIP_HTTPD_CGI in lwipopts.h. * * By default, the server assumes that HTTP headers are already present in * each file stored in the file system. By defining LWIP_HTTPD_DYNAMIC_HEADERS in * lwipopts.h, this behavior can be changed such that the server inserts the * headers automatically based on the extension of the file being served. If * this mode is used, be careful to ensure that the file system image used * does not already contain the header information. * * File system images without headers can be created using the makefsfile * tool with the -h command line option. * * * Notes about valid SSI tags * -------------------------- * * The following assumptions are made about tags used in SSI markers: * * 1. No tag may contain '-' or whitespace characters within the tag name. * 2. Whitespace is allowed between the tag leadin "". * 3. The maximum tag name length is LWIP_HTTPD_MAX_TAG_NAME_LEN, currently 8 characters. * * Notes on CGI usage * ------------------ * * The simple CGI support offered here works with GET method requests only * and can handle up to 16 parameters encoded into the URI. The handler * function may not write directly to the HTTP output but must return a * filename that the HTTP server will send to the browser as a response to * the incoming CGI request. * * * * The list of supported file types is quite short, so if makefsdata complains * about an unknown extension, make sure to add it (and its doctype) to * the 'g_psHTTPHeaders' list. */ #include "httpd.h" #include "lwip/debug.h" #include "lwip/stats.h" #include "httpd_structs.h" #include "lwip/tcp.h" #include "fs.h" #include #include #if LWIP_TCP #ifndef HTTPD_DEBUG #define HTTPD_DEBUG LWIP_DBG_OFF #endif /** Set this to 1 and add the next line to lwippools.h to use a memp pool * for allocating struct http_state instead of the heap: * * LWIP_MEMPOOL(HTTPD_STATE, 20, 100, "HTTPD_STATE") */ #ifndef HTTPD_USE_MEM_POOL #define HTTPD_USE_MEM_POOL 0 #endif /** The server port for HTTPD to use */ #ifndef HTTPD_SERVER_PORT #define HTTPD_SERVER_PORT 80 #endif /** Maximum retries before the connection is aborted/closed. * - number of times pcb->poll is called -> default is 4*500ms = 2s; * - reset when pcb->sent is called */ #ifndef HTTPD_MAX_RETRIES #define HTTPD_MAX_RETRIES 4 #endif /** The poll delay is X*500ms */ #ifndef HTTPD_POLL_INTERVAL #define HTTPD_POLL_INTERVAL 4 #endif /** Priority for tcp pcbs created by HTTPD (very low by default). * Lower priorities get killed first when running out of memroy. */ #ifndef HTTPD_TCP_PRIO #define HTTPD_TCP_PRIO TCP_PRIO_MIN #endif /** Set this to 1 to enabled timing each file sent */ #ifndef LWIP_HTTPD_TIMING #define LWIP_HTTPD_TIMING 0 #endif #ifndef HTTPD_DEBUG_TIMING #define HTTPD_DEBUG_TIMING LWIP_DBG_OFF #endif /** Set this to 1 on platforms where strnstr is not available */ #ifndef LWIP_HTTPD_STRNSTR_PRIVATE #define LWIP_HTTPD_STRNSTR_PRIVATE 1 #endif /** Set this to one to show error pages when parsing a request fails instead of simply closing the connection. */ #ifndef LWIP_HTTPD_SUPPORT_EXTSTATUS #define LWIP_HTTPD_SUPPORT_EXTSTATUS 0 #endif /** Set this to 0 to drop support for HTTP/0.9 clients (to save some bytes) */ #ifndef LWIP_HTTPD_SUPPORT_V09 #define LWIP_HTTPD_SUPPORT_V09 1 #endif /** Set this to 1 to enable HTTP/1.1 persistent connections. * ATTENTION: If the generated file system includes HTTP headers, these must * include the "Connection: keep-alive" header (pass argument "-11" to makefsdata). */ #ifndef LWIP_HTTPD_SUPPORT_11_KEEPALIVE #define LWIP_HTTPD_SUPPORT_11_KEEPALIVE 0 #endif /** Set this to 1 to support HTTP request coming in in multiple packets/pbufs */ #ifndef LWIP_HTTPD_SUPPORT_REQUESTLIST #define LWIP_HTTPD_SUPPORT_REQUESTLIST 1 #endif #if LWIP_HTTPD_SUPPORT_REQUESTLIST /** Number of rx pbufs to enqueue to parse an incoming request (up to the first newline) */ #ifndef LWIP_HTTPD_REQ_QUEUELEN #define LWIP_HTTPD_REQ_QUEUELEN 5 #endif /** Number of (TCP payload-) bytes (in pbufs) to enqueue to parse and incoming request (up to the first double-newline) */ #ifndef LWIP_HTTPD_REQ_BUFSIZE #define LWIP_HTTPD_REQ_BUFSIZE LWIP_HTTPD_MAX_REQ_LENGTH #endif /** Defines the maximum length of a HTTP request line (up to the first CRLF, copied from pbuf into this a global buffer when pbuf- or packet-queues are received - otherwise the input pbuf is used directly) */ #ifndef LWIP_HTTPD_MAX_REQ_LENGTH #define LWIP_HTTPD_MAX_REQ_LENGTH LWIP_MIN(1023, (LWIP_HTTPD_REQ_QUEUELEN * PBUF_POOL_BUFSIZE)) #endif #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ /** Maximum length of the filename to send as response to a POST request, * filled in by the application when a POST is finished. */ #ifndef LWIP_HTTPD_POST_MAX_RESPONSE_URI_LEN #define LWIP_HTTPD_POST_MAX_RESPONSE_URI_LEN 63 #endif /** Set this to 0 to not send the SSI tag (default is on, so the tag will * be sent in the HTML page */ #ifndef LWIP_HTTPD_SSI_INCLUDE_TAG #define LWIP_HTTPD_SSI_INCLUDE_TAG 1 #endif /** Set this to 1 to call tcp_abort when tcp_close fails with memory error. * This can be used to prevent consuming all memory in situations where the * HTTP server has low priority compared to other communication. */ #ifndef LWIP_HTTPD_ABORT_ON_CLOSE_MEM_ERROR #define LWIP_HTTPD_ABORT_ON_CLOSE_MEM_ERROR 0 #endif /** Set this to 1 to kill the oldest connection when running out of * memory for 'struct http_state' or 'struct http_ssi_state'. * ATTENTION: This puts all connections on a linked list, so may be kind of slow. */ #ifndef LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED #define LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED 0 #endif /** Minimum length for a valid HTTP/0.9 request: "GET /\r\n" -> 7 bytes */ #define MIN_REQ_LEN 7 #define CRLF "\r\n" #define HTTP11_CONNECTIONKEEPALIVE "Connection: keep-alive" #if LWIP_HTTPD_SSI #define LWIP_HTTPD_IS_SSI(hs) ((hs)->ssi) #else /* LWIP_HTTPD_SSI */ #define LWIP_HTTPD_IS_SSI(hs) 0 #endif /* LWIP_HTTPD_SSI */ /** These defines check whether tcp_write has to copy data or not */ /** This was TI's check whether to let TCP copy data or not #define HTTP_IS_DATA_VOLATILE(hs) ((hs->file < (char *)0x20000000) ? 0 : TCP_WRITE_FLAG_COPY)*/ #ifndef HTTP_IS_DATA_VOLATILE #if LWIP_HTTPD_SSI /* Copy for SSI files, no copy for non-SSI files */ #define HTTP_IS_DATA_VOLATILE(hs) ((hs)->ssi ? TCP_WRITE_FLAG_COPY : 0) #else /* LWIP_HTTPD_SSI */ /** Default: don't copy if the data is sent from file-system directly */ #define HTTP_IS_DATA_VOLATILE(hs) (((hs->file != NULL) && (hs->handle != NULL) && (hs->file == \ (char*)hs->handle->data + hs->handle->len - hs->left)) \ ? 0 : TCP_WRITE_FLAG_COPY) #endif /* LWIP_HTTPD_SSI */ #endif /** Default: headers are sent from ROM */ #ifndef HTTP_IS_HDR_VOLATILE #define HTTP_IS_HDR_VOLATILE(hs, ptr) 0 #endif #if LWIP_HTTPD_SSI /** Default: Tags are sent from struct http_state and are therefore volatile */ #ifndef HTTP_IS_TAG_VOLATILE #define HTTP_IS_TAG_VOLATILE(ptr) TCP_WRITE_FLAG_COPY #endif #endif /* LWIP_HTTPD_SSI */ /* Return values for http_send_*() */ #define HTTP_DATA_TO_SEND_BREAK 2 #define HTTP_DATA_TO_SEND_CONTINUE 1 #define HTTP_NO_DATA_TO_SEND 0 #if HTTPD_USE_MEM_POOL #define HTTP_ALLOC_SSI_STATE() (struct http_ssi_state *)memp_malloc(MEMP_HTTPD_SSI_STATE) #define HTTP_ALLOC_HTTP_STATE() (struct http_state *)memp_malloc(MEMP_HTTPD_STATE) #else /* HTTPD_USE_MEM_POOL */ #define HTTP_ALLOC_SSI_STATE() (struct http_ssi_state *)mem_malloc(sizeof(struct http_ssi_state)) #define HTTP_ALLOC_HTTP_STATE() (struct http_state *)mem_malloc(sizeof(struct http_state)) #endif /* HTTPD_USE_MEM_POOL */ typedef struct { const char *name; u8_t shtml; } default_filename; const default_filename g_psDefaultFilenames[] = { {"/index.shtml", 1 }, {"/index.ssi", 1 }, {"/index.shtm", 1 }, {"/index.html", 0 }, {"/index.htm", 0 } }; #define NUM_DEFAULT_FILENAMES (sizeof(g_psDefaultFilenames) / \ sizeof(default_filename)) #if LWIP_HTTPD_SUPPORT_REQUESTLIST /** HTTP request is copied here from pbufs for simple parsing */ static char httpd_req_buf[LWIP_HTTPD_MAX_REQ_LENGTH+1]; #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ #if LWIP_HTTPD_SUPPORT_POST /** Filename for response file to send when POST is finished */ static char http_post_response_filename[LWIP_HTTPD_POST_MAX_RESPONSE_URI_LEN+1]; #endif /* LWIP_HTTPD_SUPPORT_POST */ #if LWIP_HTTPD_DYNAMIC_HEADERS /* The number of individual strings that comprise the headers sent before each * requested file. */ #define NUM_FILE_HDR_STRINGS 3 #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ #if LWIP_HTTPD_SSI #define HTTPD_LAST_TAG_PART 0xFFFF enum tag_check_state { TAG_NONE, /* Not processing an SSI tag */ TAG_LEADIN, /* Tag lead in "" being processed */ TAG_SENDING /* Sending tag replacement string */ }; struct http_ssi_state { const char *parsed; /* Pointer to the first unparsed byte in buf. */ #if !LWIP_HTTPD_SSI_INCLUDE_TAG const char *tag_started;/* Pointer to the first opening '<' of the tag. */ #endif /* !LWIP_HTTPD_SSI_INCLUDE_TAG */ const char *tag_end; /* Pointer to char after the closing '>' of the tag. */ u32_t parse_left; /* Number of unparsed bytes in buf. */ u16_t tag_index; /* Counter used by tag parsing state machine */ u16_t tag_insert_len; /* Length of insert in string tag_insert */ #if LWIP_HTTPD_SSI_MULTIPART u16_t tag_part; /* Counter passed to and changed by tag insertion function to insert multiple times */ #endif /* LWIP_HTTPD_SSI_MULTIPART */ u8_t tag_name_len; /* Length of the tag name in string tag_name */ char tag_name[LWIP_HTTPD_MAX_TAG_NAME_LEN + 1]; /* Last tag name extracted */ char tag_insert[LWIP_HTTPD_MAX_TAG_INSERT_LEN + 1]; /* Insert string for tag_name */ enum tag_check_state tag_state; /* State of the tag processor */ }; #endif /* LWIP_HTTPD_SSI */ struct http_state { #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED struct http_state *next; #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ struct fs_file file_handle; struct fs_file *handle; char *file; /* Pointer to first unsent byte in buf. */ struct tcp_pcb *pcb; #if LWIP_HTTPD_SUPPORT_REQUESTLIST struct pbuf *req; #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ #if LWIP_HTTPD_DYNAMIC_FILE_READ char *buf; /* File read buffer. */ int buf_len; /* Size of file read buffer, buf. */ #endif /* LWIP_HTTPD_DYNAMIC_FILE_READ */ u32_t left; /* Number of unsent bytes in buf. */ u8_t retries; #if LWIP_HTTPD_SUPPORT_11_KEEPALIVE u8_t keepalive; #endif /* LWIP_HTTPD_SUPPORT_11_KEEPALIVE */ #if LWIP_HTTPD_SSI struct http_ssi_state *ssi; #endif /* LWIP_HTTPD_SSI */ #if LWIP_HTTPD_CGI char *params[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Params extracted from the request URI */ char *param_vals[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Values for each extracted param */ #endif /* LWIP_HTTPD_CGI */ #if LWIP_HTTPD_DYNAMIC_HEADERS const char *hdrs[NUM_FILE_HDR_STRINGS]; /* HTTP headers to be sent. */ u16_t hdr_pos; /* The position of the first unsent header byte in the current string */ u16_t hdr_index; /* The index of the hdr string currently being sent. */ #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ #if LWIP_HTTPD_TIMING u32_t time_started; #endif /* LWIP_HTTPD_TIMING */ #if LWIP_HTTPD_SUPPORT_POST u32_t post_content_len_left; #if LWIP_HTTPD_POST_MANUAL_WND u32_t unrecved_bytes; u8_t no_auto_wnd; u8_t post_finished; #endif /* LWIP_HTTPD_POST_MANUAL_WND */ #endif /* LWIP_HTTPD_SUPPORT_POST*/ }; static err_t http_close_conn(struct tcp_pcb *pcb, struct http_state *hs); static err_t http_close_or_abort_conn(struct tcp_pcb *pcb, struct http_state *hs, u8_t abort_conn); static err_t http_find_file(struct http_state *hs, const char *uri, int is_09); static err_t http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const char *uri, u8_t tag_check); static err_t http_poll(void *arg, struct tcp_pcb *pcb); #if LWIP_HTTPD_FS_ASYNC_READ static void http_continue(void *connection); #endif /* LWIP_HTTPD_FS_ASYNC_READ */ #if LWIP_HTTPD_SSI /* SSI insert handler function pointer. */ tSSIHandler g_pfnSSIHandler = NULL; int g_iNumTags = 0; const char **g_ppcTags = NULL; #define LEN_TAG_LEAD_IN 5 const char * const g_pcTagLeadIn = ""; #endif /* LWIP_HTTPD_SSI */ #if LWIP_HTTPD_CGI /* CGI handler information */ const tCGI *g_pCGIs; int g_iNumCGIs; #endif /* LWIP_HTTPD_CGI */ #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED /** global list of active HTTP connections, use to kill the oldest when running out of memory */ static struct http_state *http_connections; #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ #if LWIP_HTTPD_STRNSTR_PRIVATE /** Like strstr but does not need 'buffer' to be NULL-terminated */ //static char* char * strnstr(const char* buffer, const char* token, size_t n) { const char* p; int tokenlen = (int)strlen(token); if (tokenlen == 0) { return (char *)buffer; } for (p = buffer; *p && (p + tokenlen <= buffer + n); p++) { if ((*p == *token) && (strncmp(p, token, tokenlen) == 0)) { return (char *)p; } } return NULL; } #endif /* LWIP_HTTPD_STRNSTR_PRIVATE */ #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED static void http_kill_oldest_connection(u8_t ssi_required) { struct http_state *hs = http_connections; struct http_state *hs_free_next = NULL; while(hs && hs->next) { if (ssi_required) { if (hs->next->ssi != NULL) { hs_free_next = hs; } } else { hs_free_next = hs; } hs = hs->next; } if (hs_free_next != NULL) { LWIP_ASSERT("hs_free_next->next != NULL", hs_free_next->next != NULL); LWIP_ASSERT("hs_free_next->next->pcb != NULL", hs_free_next->next->pcb != NULL); /* send RST when killing a connection because of memory shortage */ http_close_or_abort_conn(hs_free_next->next->pcb, hs_free_next->next, 1); /* this also unlinks the http_state from the list */ } } #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ #if LWIP_HTTPD_SSI /** Allocate as struct http_ssi_state. */ static struct http_ssi_state* http_ssi_state_alloc(void) { struct http_ssi_state *ret = HTTP_ALLOC_SSI_STATE(); #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED if (ret == NULL) { http_kill_oldest_connection(1); ret = HTTP_ALLOC_SSI_STATE(); } #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ if (ret != NULL) { memset(ret, 0, sizeof(struct http_ssi_state)); } return ret; } /** Free a struct http_ssi_state. */ static void http_ssi_state_free(struct http_ssi_state *ssi) { if (ssi != NULL) { #if HTTPD_USE_MEM_POOL memp_free(MEMP_HTTPD_SSI_STATE, ssi); #else /* HTTPD_USE_MEM_POOL */ mem_free(ssi); #endif /* HTTPD_USE_MEM_POOL */ } } #endif /* LWIP_HTTPD_SSI */ /** Initialize a struct http_state. */ static void http_state_init(struct http_state* hs) { /* Initialize the structure. */ memset(hs, 0, sizeof(struct http_state)); #if LWIP_HTTPD_DYNAMIC_HEADERS /* Indicate that the headers are not yet valid */ hs->hdr_index = NUM_FILE_HDR_STRINGS; #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ } /** Allocate a struct http_state. */ static struct http_state* http_state_alloc(void) { struct http_state *ret = HTTP_ALLOC_HTTP_STATE(); #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED if (ret == NULL) { http_kill_oldest_connection(0); ret = HTTP_ALLOC_HTTP_STATE(); } #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ if (ret != NULL) { http_state_init(ret); #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED /* add the connection to the list */ if (http_connections == NULL) { http_connections = ret; } else { struct http_state *last; for(last = http_connections; last->next != NULL; last = last->next); LWIP_ASSERT("last != NULL", last != NULL); last->next = ret; } #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ } return ret; } /** Free a struct http_state. * Also frees the file data if dynamic. */ static void http_state_eof(struct http_state *hs) { if(hs->handle) { #if LWIP_HTTPD_TIMING u32_t ms_needed = sys_now() - hs->time_started; u32_t needed = LWIP_MAX(1, (ms_needed/100)); LWIP_DEBUGF(HTTPD_DEBUG_TIMING, ("httpd: needed %"U32_F" ms to send file of %d bytes -> %"U32_F" bytes/sec\n", ms_needed, hs->handle->len, ((((u32_t)hs->handle->len) * 10) / needed))); #endif /* LWIP_HTTPD_TIMING */ fs_close(hs->handle); hs->handle = NULL; } #if LWIP_HTTPD_DYNAMIC_FILE_READ if (hs->buf != NULL) { mem_free(hs->buf); hs->buf = NULL; } #endif /* LWIP_HTTPD_DYNAMIC_FILE_READ */ #if LWIP_HTTPD_SSI if (hs->ssi) { http_ssi_state_free(hs->ssi); hs->ssi = NULL; } #endif /* LWIP_HTTPD_SSI */ } /** Free a struct http_state. * Also frees the file data if dynamic. */ static void http_state_free(struct http_state *hs) { if (hs != NULL) { http_state_eof(hs); #if LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED /* take the connection off the list */ if (http_connections) { if (http_connections == hs) { http_connections = hs->next; } else { struct http_state *last; for(last = http_connections; last->next != NULL; last = last->next) { if (last->next == hs) { last->next = hs->next; break; } } } } #endif /* LWIP_HTTPD_KILL_OLD_ON_CONNECTIONS_EXCEEDED */ #if HTTPD_USE_MEM_POOL memp_free(MEMP_HTTPD_STATE, hs); #else /* HTTPD_USE_MEM_POOL */ mem_free(hs); #endif /* HTTPD_USE_MEM_POOL */ } } /** Call tcp_write() in a loop trying smaller and smaller length * * @param pcb tcp_pcb to send * @param ptr Data to send * @param length Length of data to send (in/out: on return, contains the * amount of data sent) * @param apiflags directly passed to tcp_write * @return the return value of tcp_write */ static err_t http_write(struct tcp_pcb *pcb, const void* ptr, u16_t *length, u8_t apiflags) { u16_t len; err_t err; LWIP_ASSERT("length != NULL", length != NULL); len = *length; if (len == 0) { return ERR_OK; } do { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Trying go send %d bytes\n", len)); err = tcp_write(pcb, ptr, len, apiflags); if (err == ERR_MEM) { if ((tcp_sndbuf(pcb) == 0) || (tcp_sndqueuelen(pcb) >= TCP_SND_QUEUELEN)) { /* no need to try smaller sizes */ len = 1; } else { len /= 2; } LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Send failed, trying less (%d bytes)\n", len)); } } while ((err == ERR_MEM) && (len > 1)); if (err == ERR_OK) { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Sent %d bytes\n", len)); } else { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Send failed with err %d (\"%s\")\n", err, lwip_strerr(err))); } *length = len; return err; } /** * The connection shall be actively closed (using RST to close from fault states). * Reset the sent- and recv-callbacks. * * @param pcb the tcp pcb to reset callbacks * @param hs connection state to free */ static err_t http_close_or_abort_conn(struct tcp_pcb *pcb, struct http_state *hs, u8_t abort_conn) { err_t err; LWIP_DEBUGF(HTTPD_DEBUG, ("Closing connection %p\n", (void*)pcb)); #if LWIP_HTTPD_SUPPORT_POST if (hs != NULL) { if ((hs->post_content_len_left != 0) #if LWIP_HTTPD_POST_MANUAL_WND || ((hs->no_auto_wnd != 0) && (hs->unrecved_bytes != 0)) #endif /* LWIP_HTTPD_POST_MANUAL_WND */ ) { /* make sure the post code knows that the connection is closed */ http_post_response_filename[0] = 0; httpd_post_finished(hs, http_post_response_filename, LWIP_HTTPD_POST_MAX_RESPONSE_URI_LEN); } } #endif /* LWIP_HTTPD_SUPPORT_POST*/ tcp_arg(pcb, NULL); tcp_recv(pcb, NULL); tcp_err(pcb, NULL); tcp_poll(pcb, NULL, 0); tcp_sent(pcb, NULL); if (hs != NULL) { http_state_free(hs); } if (abort_conn) { tcp_abort(pcb); return ERR_OK; } err = tcp_close(pcb); if (err != ERR_OK) { LWIP_DEBUGF(HTTPD_DEBUG, ("Error %d closing %p\n", err, (void*)pcb)); /* error closing, try again later in poll */ tcp_poll(pcb, http_poll, HTTPD_POLL_INTERVAL); } return err; } /** * The connection shall be actively closed. * Reset the sent- and recv-callbacks. * * @param pcb the tcp pcb to reset callbacks * @param hs connection state to free */ static err_t http_close_conn(struct tcp_pcb *pcb, struct http_state *hs) { return http_close_or_abort_conn(pcb, hs, 0); } /** End of file: either close the connection (Connection: close) or * close the file (Connection: keep-alive) */ static void http_eof(struct tcp_pcb *pcb, struct http_state *hs) { /* HTTP/1.1 persistent connection? (Not supported for SSI) */ #if LWIP_HTTPD_SUPPORT_11_KEEPALIVE if (hs->keepalive && !LWIP_HTTPD_IS_SSI(hs)) { http_state_eof(hs); http_state_init(hs); hs->keepalive = 1; } else #endif /* LWIP_HTTPD_SUPPORT_11_KEEPALIVE */ { http_close_conn(pcb, hs); } } #if LWIP_HTTPD_CGI /** * Extract URI parameters from the parameter-part of an URI in the form * "test.cgi?x=y" @todo: better explanation! * Pointers to the parameters are stored in hs->param_vals. * * @param hs http connection state * @param params pointer to the NULL-terminated parameter string from the URI * @return number of parameters extracted */ static int extract_uri_parameters(struct http_state *hs, char *params) { char *pair; char *equals; int loop; /* If we have no parameters at all, return immediately. */ if(!params || (params[0] == '\0')) { return(0); } /* Get a pointer to our first parameter */ pair = params; /* Parse up to LWIP_HTTPD_MAX_CGI_PARAMETERS from the passed string and ignore the * remainder (if any) */ for(loop = 0; (loop < LWIP_HTTPD_MAX_CGI_PARAMETERS) && pair; loop++) { /* Save the name of the parameter */ hs->params[loop] = pair; /* Remember the start of this name=value pair */ equals = pair; /* Find the start of the next name=value pair and replace the delimiter * with a 0 to terminate the previous pair string. */ pair = strchr(pair, '&'); if(pair) { *pair = '\0'; pair++; } else { /* We didn't find a new parameter so find the end of the URI and * replace the space with a '\0' */ pair = strchr(equals, ' '); if(pair) { *pair = '\0'; } /* Revert to NULL so that we exit the loop as expected. */ pair = NULL; } /* Now find the '=' in the previous pair, replace it with '\0' and save * the parameter value string. */ equals = strchr(equals, '='); if(equals) { *equals = '\0'; hs->param_vals[loop] = equals + 1; } else { hs->param_vals[loop] = NULL; } } return loop; } #endif /* LWIP_HTTPD_CGI */ #if LWIP_HTTPD_SSI /** * Insert a tag (found in an shtml in the form of "" into the file. * The tag's name is stored in ssi->tag_name (NULL-terminated), the replacement * should be written to hs->tag_insert (up to a length of LWIP_HTTPD_MAX_TAG_INSERT_LEN). * The amount of data written is stored to ssi->tag_insert_len. * * @todo: return tag_insert_len - maybe it can be removed from struct http_state? * * @param hs http connection state */ static void get_tag_insert(struct http_state *hs) { int loop; size_t len; struct http_ssi_state *ssi; LWIP_ASSERT("hs != NULL", hs != NULL); ssi = hs->ssi; LWIP_ASSERT("ssi != NULL", ssi != NULL); #if LWIP_HTTPD_SSI_MULTIPART u16_t current_tag_part = ssi->tag_part; ssi->tag_part = HTTPD_LAST_TAG_PART; #endif /* LWIP_HTTPD_SSI_MULTIPART */ if(g_pfnSSIHandler && g_ppcTags && g_iNumTags) { /* Find this tag in the list we have been provided. */ for(loop = 0; loop < g_iNumTags; loop++) { if(strcmp(ssi->tag_name, g_ppcTags[loop]) == 0) { ssi->tag_insert_len = g_pfnSSIHandler(loop, ssi->tag_insert, LWIP_HTTPD_MAX_TAG_INSERT_LEN #if LWIP_HTTPD_SSI_MULTIPART , current_tag_part, &ssi->tag_part #endif /* LWIP_HTTPD_SSI_MULTIPART */ #if LWIP_HTTPD_FILE_STATE , hs->handle->state #endif /* LWIP_HTTPD_FILE_STATE */ ); return; } } } /* If we drop out, we were asked to serve a page which contains tags that * we don't have a handler for. Merely echo back the tags with an error * marker. */ #define UNKNOWN_TAG1_TEXT "***UNKNOWN TAG " #define UNKNOWN_TAG1_LEN 18 #define UNKNOWN_TAG2_TEXT "***" #define UNKNOWN_TAG2_LEN 7 len = LWIP_MIN(strlen(ssi->tag_name), LWIP_HTTPD_MAX_TAG_INSERT_LEN - (UNKNOWN_TAG1_LEN + UNKNOWN_TAG2_LEN)); MEMCPY(ssi->tag_insert, UNKNOWN_TAG1_TEXT, UNKNOWN_TAG1_LEN); MEMCPY(&ssi->tag_insert[UNKNOWN_TAG1_LEN], ssi->tag_name, len); MEMCPY(&ssi->tag_insert[UNKNOWN_TAG1_LEN + len], UNKNOWN_TAG2_TEXT, UNKNOWN_TAG2_LEN); ssi->tag_insert[UNKNOWN_TAG1_LEN + len + UNKNOWN_TAG2_LEN] = 0; len = strlen(ssi->tag_insert); LWIP_ASSERT("len <= 0xffff", len <= 0xffff); ssi->tag_insert_len = (u16_t)len; } #endif /* LWIP_HTTPD_SSI */ #if LWIP_HTTPD_DYNAMIC_HEADERS /** * Generate the relevant HTTP headers for the given filename and write * them into the supplied buffer. */ static void get_http_headers(struct http_state *pState, char *pszURI) { unsigned int iLoop; char *pszWork; char *pszExt; char *pszVars; /* Ensure that we initialize the loop counter. */ iLoop = 0; /* In all cases, the second header we send is the server identification so set it here. */ pState->hdrs[1] = g_psHTTPHeaderStrings[HTTP_HDR_SERVER]; /* Is this a normal file or the special case we use to send back the default "404: Page not found" response? */ if (pszURI == NULL) { pState->hdrs[0] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_FOUND]; pState->hdrs[2] = g_psHTTPHeaderStrings[DEFAULT_404_HTML]; /* Set up to send the first header string. */ pState->hdr_index = 0; pState->hdr_pos = 0; return; } else { /* We are dealing with a particular filename. Look for one other special case. We assume that any filename with "404" in it must be indicative of a 404 server error whereas all other files require the 200 OK header. */ if (strstr(pszURI, "404")) { pState->hdrs[0] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_FOUND]; } else if (strstr(pszURI, "400")) { pState->hdrs[0] = g_psHTTPHeaderStrings[HTTP_HDR_BAD_REQUEST]; } else if (strstr(pszURI, "501")) { pState->hdrs[0] = g_psHTTPHeaderStrings[HTTP_HDR_NOT_IMPL]; } else { pState->hdrs[0] = g_psHTTPHeaderStrings[HTTP_HDR_OK]; } /* Determine if the URI has any variables and, if so, temporarily remove them. */ pszVars = strchr(pszURI, '?'); if(pszVars) { *pszVars = '\0'; } /* Get a pointer to the file extension. We find this by looking for the last occurrence of "." in the filename passed. */ pszExt = NULL; pszWork = strchr(pszURI, '.'); while(pszWork) { pszExt = pszWork + 1; pszWork = strchr(pszExt, '.'); } /* Now determine the content type and add the relevant header for that. */ for(iLoop = 0; (iLoop < NUM_HTTP_HEADERS) && pszExt; iLoop++) { /* Have we found a matching extension? */ if(!strcmp(g_psHTTPHeaders[iLoop].extension, pszExt)) { pState->hdrs[2] = g_psHTTPHeaderStrings[g_psHTTPHeaders[iLoop].headerIndex]; break; } } /* Reinstate the parameter marker if there was one in the original URI. */ if(pszVars) { *pszVars = '?'; } } /* Does the URL passed have any file extension? If not, we assume it is a special-case URL used for control state notification and we do not send any HTTP headers with the response. */ if(!pszExt) { /* Force the header index to a value indicating that all headers have already been sent. */ pState->hdr_index = NUM_FILE_HDR_STRINGS; } else { /* Did we find a matching extension? */ if(iLoop == NUM_HTTP_HEADERS) { /* No - use the default, plain text file type. */ pState->hdrs[2] = g_psHTTPHeaderStrings[HTTP_HDR_DEFAULT_TYPE]; } /* Set up to send the first header string. */ pState->hdr_index = 0; pState->hdr_pos = 0; } } /** Sub-function of http_send(): send dynamic headers * * @returns: - HTTP_NO_DATA_TO_SEND: no new data has been enqueued * - HTTP_DATA_TO_SEND_CONTINUE: continue with sending HTTP body * - HTTP_DATA_TO_SEND_BREAK: data has been enqueued, headers pending, * so don't send HTTP body yet */ static u8_t http_send_headers(struct tcp_pcb *pcb, struct http_state *hs) { err_t err; u16_t len; u8_t data_to_send = HTTP_NO_DATA_TO_SEND; u16_t hdrlen, sendlen; /* How much data can we send? */ len = tcp_sndbuf(pcb); sendlen = len; while(len && (hs->hdr_index < NUM_FILE_HDR_STRINGS) && sendlen) { const void *ptr; u16_t old_sendlen; /* How much do we have to send from the current header? */ hdrlen = (u16_t)strlen(hs->hdrs[hs->hdr_index]); /* How much of this can we send? */ sendlen = (len < (hdrlen - hs->hdr_pos)) ? len : (hdrlen - hs->hdr_pos); /* Send this amount of data or as much as we can given memory * constraints. */ ptr = (const void *)(hs->hdrs[hs->hdr_index] + hs->hdr_pos); old_sendlen = sendlen; err = http_write(pcb, ptr, &sendlen, HTTP_IS_HDR_VOLATILE(hs, ptr)); if ((err == ERR_OK) && (old_sendlen != sendlen)) { /* Remember that we added some more data to be transmitted. */ data_to_send = HTTP_DATA_TO_SEND_CONTINUE; } else if (err != ERR_OK) { /* special case: http_write does not try to send 1 byte */ sendlen = 0; } /* Fix up the header position for the next time round. */ hs->hdr_pos += sendlen; len -= sendlen; /* Have we finished sending this string? */ if(hs->hdr_pos == hdrlen) { /* Yes - move on to the next one */ hs->hdr_index++; hs->hdr_pos = 0; } } /* If we get here and there are still header bytes to send, we send * the header information we just wrote immediately. If there are no * more headers to send, but we do have file data to send, drop through * to try to send some file data too. */ if((hs->hdr_index < NUM_FILE_HDR_STRINGS) || !hs->file) { LWIP_DEBUGF(HTTPD_DEBUG, ("tcp_output\n")); return HTTP_DATA_TO_SEND_BREAK; } return data_to_send; } #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ /** Sub-function of http_send(): end-of-file (or block) is reached, * either close the file or read the next block (if supported). * * @returns: 0 if the file is finished or no data has been read * 1 if the file is not finished and data has been read */ static u8_t http_check_eof(struct tcp_pcb *pcb, struct http_state *hs) { #if LWIP_HTTPD_DYNAMIC_FILE_READ int count; #endif /* LWIP_HTTPD_DYNAMIC_FILE_READ */ /* Do we have a valid file handle? */ if (hs->handle == NULL) { /* No - close the connection. */ http_eof(pcb, hs); return 0; } if (fs_bytes_left(hs->handle) <= 0) { /* We reached the end of the file so this request is done. */ LWIP_DEBUGF(HTTPD_DEBUG, ("End of file.\n")); http_eof(pcb, hs); return 0; } #if LWIP_HTTPD_DYNAMIC_FILE_READ /* Do we already have a send buffer allocated? */ if(hs->buf) { /* Yes - get the length of the buffer */ count = hs->buf_len; } else { /* We don't have a send buffer so allocate one up to 2mss bytes long. */ count = 2 * tcp_mss(pcb); do { hs->buf = (char*)mem_malloc((mem_size_t)count); if (hs->buf != NULL) { hs->buf_len = count; break; } count = count / 2; } while (count > 100); /* Did we get a send buffer? If not, return immediately. */ if (hs->buf == NULL) { LWIP_DEBUGF(HTTPD_DEBUG, ("No buff\n")); return 0; } } /* Read a block of data from the file. */ LWIP_DEBUGF(HTTPD_DEBUG, ("Trying to read %d bytes.\n", count)); #if LWIP_HTTPD_FS_ASYNC_READ count = fs_read_async(hs->handle, hs->buf, count, http_continue, hs); #else /* LWIP_HTTPD_FS_ASYNC_READ */ count = fs_read(hs->handle, hs->buf, count); #endif /* LWIP_HTTPD_FS_ASYNC_READ */ if (count < 0) { if (count == FS_READ_DELAYED) { /* Delayed read, wait for FS to unblock us */ return 0; } /* We reached the end of the file so this request is done. * @todo: don't close here for HTTP/1.1? */ LWIP_DEBUGF(HTTPD_DEBUG, ("End of file.\n")); http_eof(pcb, hs); return 0; } /* Set up to send the block of data we just read */ LWIP_DEBUGF(HTTPD_DEBUG, ("Read %d bytes.\n", count)); hs->left = count; hs->file = hs->buf; #if LWIP_HTTPD_SSI if (hs->ssi) { hs->ssi->parse_left = count; hs->ssi->parsed = hs->buf; } #endif /* LWIP_HTTPD_SSI */ #else /* LWIP_HTTPD_DYNAMIC_FILE_READ */ LWIP_ASSERT("SSI and DYNAMIC_HEADERS turned off but eof not reached", 0); #endif /* LWIP_HTTPD_SSI || LWIP_HTTPD_DYNAMIC_HEADERS */ return 1; } /** Sub-function of http_send(): This is the normal send-routine for non-ssi files * * @returns: - 1: data has been written (so call tcp_ouput) * - 0: no data has been written (no need to call tcp_output) */ static u8_t http_send_data_nonssi(struct tcp_pcb *pcb, struct http_state *hs) { err_t err; u16_t len; u16_t mss; u8_t data_to_send = 0; /* We are not processing an SHTML file so no tag checking is necessary. * Just send the data as we received it from the file. */ /* We cannot send more data than space available in the send buffer. */ if (tcp_sndbuf(pcb) < hs->left) { len = tcp_sndbuf(pcb); } else { len = (u16_t)hs->left; LWIP_ASSERT("hs->left did not fit into u16_t!", (len == hs->left)); } mss = tcp_mss(pcb); if (len > (2 * mss)) { len = 2 * mss; } err = http_write(pcb, hs->file, &len, HTTP_IS_DATA_VOLATILE(hs)); if (err == ERR_OK) { data_to_send = 1; hs->file += len; hs->left -= len; } return data_to_send; } #if LWIP_HTTPD_SSI /** Sub-function of http_send(): This is the send-routine for ssi files * * @returns: - 1: data has been written (so call tcp_ouput) * - 0: no data has been written (no need to call tcp_output) */ static u8_t http_send_data_ssi(struct tcp_pcb *pcb, struct http_state *hs) { err_t err = ERR_OK; u16_t len; u16_t mss; u8_t data_to_send = 0; struct http_ssi_state *ssi = hs->ssi; LWIP_ASSERT("ssi != NULL", ssi != NULL); /* We are processing an SHTML file so need to scan for tags and replace * them with insert strings. We need to be careful here since a tag may * straddle the boundary of two blocks read from the file and we may also * have to split the insert string between two tcp_write operations. */ /* How much data could we send? */ len = tcp_sndbuf(pcb); /* Do we have remaining data to send before parsing more? */ if(ssi->parsed > hs->file) { /* We cannot send more data than space available in the send buffer. */ if (tcp_sndbuf(pcb) < (ssi->parsed - hs->file)) { len = tcp_sndbuf(pcb); } else { LWIP_ASSERT("Data size does not fit into u16_t!", (ssi->parsed - hs->file) <= 0xffff); len = (u16_t)(ssi->parsed - hs->file); } mss = tcp_mss(pcb); if(len > (2 * mss)) { len = 2 * mss; } err = http_write(pcb, hs->file, &len, HTTP_IS_DATA_VOLATILE(hs)); if (err == ERR_OK) { data_to_send = 1; hs->file += len; hs->left -= len; } /* If the send buffer is full, return now. */ if(tcp_sndbuf(pcb) == 0) { return data_to_send; } } LWIP_DEBUGF(HTTPD_DEBUG, ("State %d, %d left\n", ssi->tag_state, (int)ssi->parse_left)); /* We have sent all the data that was already parsed so continue parsing * the buffer contents looking for SSI tags. */ while((ssi->parse_left) && (err == ERR_OK)) { /* @todo: somewhere in this loop, 'len' should grow again... */ if (len == 0) { return data_to_send; } switch(ssi->tag_state) { case TAG_NONE: /* We are not currently processing an SSI tag so scan for the * start of the lead-in marker. */ if(*ssi->parsed == g_pcTagLeadIn[0]) { /* We found what could be the lead-in for a new tag so change * state appropriately. */ ssi->tag_state = TAG_LEADIN; ssi->tag_index = 1; #if !LWIP_HTTPD_SSI_INCLUDE_TAG ssi->tag_started = ssi->parsed; #endif /* !LWIP_HTTPD_SSI_INCLUDE_TAG */ } /* Move on to the next character in the buffer */ ssi->parse_left--; ssi->parsed++; break; case TAG_LEADIN: /* We are processing the lead-in marker, looking for the start of * the tag name. */ /* Have we reached the end of the leadin? */ if(ssi->tag_index == LEN_TAG_LEAD_IN) { ssi->tag_index = 0; ssi->tag_state = TAG_FOUND; } else { /* Have we found the next character we expect for the tag leadin? */ if(*ssi->parsed == g_pcTagLeadIn[ssi->tag_index]) { /* Yes - move to the next one unless we have found the complete * leadin, in which case we start looking for the tag itself */ ssi->tag_index++; } else { /* We found an unexpected character so this is not a tag. Move * back to idle state. */ ssi->tag_state = TAG_NONE; } /* Move on to the next character in the buffer */ ssi->parse_left--; ssi->parsed++; } break; case TAG_FOUND: /* We are reading the tag name, looking for the start of the * lead-out marker and removing any whitespace found. */ /* Remove leading whitespace between the tag leading and the first * tag name character. */ if((ssi->tag_index == 0) && ((*ssi->parsed == ' ') || (*ssi->parsed == '\t') || (*ssi->parsed == '\n') || (*ssi->parsed == '\r'))) { /* Move on to the next character in the buffer */ ssi->parse_left--; ssi->parsed++; break; } /* Have we found the end of the tag name? This is signalled by * us finding the first leadout character or whitespace */ if((*ssi->parsed == g_pcTagLeadOut[0]) || (*ssi->parsed == ' ') || (*ssi->parsed == '\t') || (*ssi->parsed == '\n') || (*ssi->parsed == '\r')) { if(ssi->tag_index == 0) { /* We read a zero length tag so ignore it. */ ssi->tag_state = TAG_NONE; } else { /* We read a non-empty tag so go ahead and look for the * leadout string. */ ssi->tag_state = TAG_LEADOUT; LWIP_ASSERT("ssi->tag_index <= 0xff", ssi->tag_index <= 0xff); ssi->tag_name_len = (u8_t)ssi->tag_index; ssi->tag_name[ssi->tag_index] = '\0'; if(*ssi->parsed == g_pcTagLeadOut[0]) { ssi->tag_index = 1; } else { ssi->tag_index = 0; } } } else { /* This character is part of the tag name so save it */ if(ssi->tag_index < LWIP_HTTPD_MAX_TAG_NAME_LEN) { ssi->tag_name[ssi->tag_index++] = *ssi->parsed; } else { /* The tag was too long so ignore it. */ ssi->tag_state = TAG_NONE; } } /* Move on to the next character in the buffer */ ssi->parse_left--; ssi->parsed++; break; /* We are looking for the end of the lead-out marker. */ case TAG_LEADOUT: /* Remove leading whitespace between the tag leading and the first * tag leadout character. */ if((ssi->tag_index == 0) && ((*ssi->parsed == ' ') || (*ssi->parsed == '\t') || (*ssi->parsed == '\n') || (*ssi->parsed == '\r'))) { /* Move on to the next character in the buffer */ ssi->parse_left--; ssi->parsed++; break; } /* Have we found the next character we expect for the tag leadout? */ if(*ssi->parsed == g_pcTagLeadOut[ssi->tag_index]) { /* Yes - move to the next one unless we have found the complete * leadout, in which case we need to call the client to process * the tag. */ /* Move on to the next character in the buffer */ ssi->parse_left--; ssi->parsed++; if(ssi->tag_index == (LEN_TAG_LEAD_OUT - 1)) { /* Call the client to ask for the insert string for the * tag we just found. */ #if LWIP_HTTPD_SSI_MULTIPART ssi->tag_part = 0; /* start with tag part 0 */ #endif /* LWIP_HTTPD_SSI_MULTIPART */ get_tag_insert(hs); /* Next time through, we are going to be sending data * immediately, either the end of the block we start * sending here or the insert string. */ ssi->tag_index = 0; ssi->tag_state = TAG_SENDING; ssi->tag_end = ssi->parsed; #if !LWIP_HTTPD_SSI_INCLUDE_TAG ssi->parsed = ssi->tag_started; #endif /* !LWIP_HTTPD_SSI_INCLUDE_TAG*/ /* If there is any unsent data in the buffer prior to the * tag, we need to send it now. */ if (ssi->tag_end > hs->file) { /* How much of the data can we send? */ #if LWIP_HTTPD_SSI_INCLUDE_TAG if(len > ssi->tag_end - hs->file) { len = (u16_t)(ssi->tag_end - hs->file); } #else /* LWIP_HTTPD_SSI_INCLUDE_TAG*/ if(len > ssi->tag_started - hs->file) { /* we would include the tag in sending */ len = (u16_t)(ssi->tag_started - hs->file); } #endif /* LWIP_HTTPD_SSI_INCLUDE_TAG*/ err = http_write(pcb, hs->file, &len, HTTP_IS_DATA_VOLATILE(hs)); if (err == ERR_OK) { data_to_send = 1; #if !LWIP_HTTPD_SSI_INCLUDE_TAG if(ssi->tag_started <= hs->file) { /* pretend to have sent the tag, too */ len += ssi->tag_end - ssi->tag_started; } #endif /* !LWIP_HTTPD_SSI_INCLUDE_TAG*/ hs->file += len; hs->left -= len; } } } else { ssi->tag_index++; } } else { /* We found an unexpected character so this is not a tag. Move * back to idle state. */ ssi->parse_left--; ssi->parsed++; ssi->tag_state = TAG_NONE; } break; /* * We have found a valid tag and are in the process of sending * data as a result of that discovery. We send either remaining data * from the file prior to the insert point or the insert string itself. */ case TAG_SENDING: /* Do we have any remaining file data to send from the buffer prior * to the tag? */ if(ssi->tag_end > hs->file) { /* How much of the data can we send? */ #if LWIP_HTTPD_SSI_INCLUDE_TAG if(len > ssi->tag_end - hs->file) { len = (u16_t)(ssi->tag_end - hs->file); } #else /* LWIP_HTTPD_SSI_INCLUDE_TAG*/ LWIP_ASSERT("hs->started >= hs->file", ssi->tag_started >= hs->file); if (len > ssi->tag_started - hs->file) { /* we would include the tag in sending */ len = (u16_t)(ssi->tag_started - hs->file); } #endif /* LWIP_HTTPD_SSI_INCLUDE_TAG*/ if (len != 0) { err = http_write(pcb, hs->file, &len, HTTP_IS_DATA_VOLATILE(hs)); } else { err = ERR_OK; } if (err == ERR_OK) { data_to_send = 1; #if !LWIP_HTTPD_SSI_INCLUDE_TAG if(ssi->tag_started <= hs->file) { /* pretend to have sent the tag, too */ len += ssi->tag_end - ssi->tag_started; } #endif /* !LWIP_HTTPD_SSI_INCLUDE_TAG*/ hs->file += len; hs->left -= len; } } else { #if LWIP_HTTPD_SSI_MULTIPART if(ssi->tag_index >= ssi->tag_insert_len) { /* Did the last SSIHandler have more to send? */ if (ssi->tag_part != HTTPD_LAST_TAG_PART) { /* If so, call it again */ ssi->tag_index = 0; get_tag_insert(hs); } } #endif /* LWIP_HTTPD_SSI_MULTIPART */ /* Do we still have insert data left to send? */ if(ssi->tag_index < ssi->tag_insert_len) { /* We are sending the insert string itself. How much of the * insert can we send? */ if(len > (ssi->tag_insert_len - ssi->tag_index)) { len = (ssi->tag_insert_len - ssi->tag_index); } /* Note that we set the copy flag here since we only have a * single tag insert buffer per connection. If we don't do * this, insert corruption can occur if more than one insert * is processed before we call tcp_output. */ err = http_write(pcb, &(ssi->tag_insert[ssi->tag_index]), &len, HTTP_IS_TAG_VOLATILE(hs)); if (err == ERR_OK) { data_to_send = 1; ssi->tag_index += len; /* Don't return here: keep on sending data */ } } else { #if LWIP_HTTPD_SSI_MULTIPART if (ssi->tag_part == HTTPD_LAST_TAG_PART) #endif /* LWIP_HTTPD_SSI_MULTIPART */ { /* We have sent all the insert data so go back to looking for * a new tag. */ LWIP_DEBUGF(HTTPD_DEBUG, ("Everything sent.\n")); ssi->tag_index = 0; ssi->tag_state = TAG_NONE; #if !LWIP_HTTPD_SSI_INCLUDE_TAG ssi->parsed = ssi->tag_end; #endif /* !LWIP_HTTPD_SSI_INCLUDE_TAG*/ } } break; } } } /* If we drop out of the end of the for loop, this implies we must have * file data to send so send it now. In TAG_SENDING state, we've already * handled this so skip the send if that's the case. */ if((ssi->tag_state != TAG_SENDING) && (ssi->parsed > hs->file)) { /* We cannot send more data than space available in the send buffer. */ if (tcp_sndbuf(pcb) < (ssi->parsed - hs->file)) { len = tcp_sndbuf(pcb); } else { LWIP_ASSERT("Data size does not fit into u16_t!", (ssi->parsed - hs->file) <= 0xffff); len = (u16_t)(ssi->parsed - hs->file); } if(len > (2 * tcp_mss(pcb))) { len = 2 * tcp_mss(pcb); } err = http_write(pcb, hs->file, &len, HTTP_IS_DATA_VOLATILE(hs)); if (err == ERR_OK) { data_to_send = 1; hs->file += len; hs->left -= len; } } return data_to_send; } #endif /* LWIP_HTTPD_SSI */ /** * Try to send more data on this pcb. * * @param pcb the pcb to send data * @param hs connection state */ static u8_t http_send(struct tcp_pcb *pcb, struct http_state *hs) { u8_t data_to_send = HTTP_NO_DATA_TO_SEND; LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_send: pcb=%p hs=%p left=%d\n", (void*)pcb, (void*)hs, hs != NULL ? (int)hs->left : 0)); #if LWIP_HTTPD_SUPPORT_POST && LWIP_HTTPD_POST_MANUAL_WND if (hs->unrecved_bytes != 0) { return 0; } #endif /* LWIP_HTTPD_SUPPORT_POST && LWIP_HTTPD_POST_MANUAL_WND */ /* If we were passed a NULL state structure pointer, ignore the call. */ if (hs == NULL) { return 0; } #if LWIP_HTTPD_FS_ASYNC_READ /* Check if we are allowed to read from this file. (e.g. SSI might want to delay sending until data is available) */ if (!fs_is_file_ready(hs->handle, http_continue, hs)) { return 0; } #endif /* LWIP_HTTPD_FS_ASYNC_READ */ #if LWIP_HTTPD_DYNAMIC_HEADERS /* Do we have any more header data to send for this file? */ if(hs->hdr_index < NUM_FILE_HDR_STRINGS) { data_to_send = http_send_headers(pcb, hs); if (data_to_send != HTTP_DATA_TO_SEND_CONTINUE) { return data_to_send; } } #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ /* Have we run out of file data to send? If so, we need to read the next * block from the file. */ if (hs->left == 0) { if (!http_check_eof(pcb, hs)) { return 0; } } #if LWIP_HTTPD_SSI if(hs->ssi) { data_to_send = http_send_data_ssi(pcb, hs); } else #endif /* LWIP_HTTPD_SSI */ { data_to_send = http_send_data_nonssi(pcb, hs); } if((hs->left == 0) && (fs_bytes_left(hs->handle) <= 0)) { /* We reached the end of the file so this request is done. * This adds the FIN flag right into the last data segment. */ LWIP_DEBUGF(HTTPD_DEBUG, ("End of file.\n")); http_eof(pcb, hs); return 0; } LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("send_data end.\n")); return data_to_send; } #if LWIP_HTTPD_SUPPORT_EXTSTATUS /** Initialize a http connection with a file to send for an error message * * @param hs http connection state * @param error_nr HTTP error number * @return ERR_OK if file was found and hs has been initialized correctly * another err_t otherwise */ static err_t http_find_error_file(struct http_state *hs, u16_t error_nr) { const char *uri1, *uri2, *uri3; err_t err; if (error_nr == 501) { uri1 = "/501.html"; uri2 = "/501.htm"; uri3 = "/501.shtml"; } else { /* 400 (bad request is the default) */ uri1 = "/400.html"; uri2 = "/400.htm"; uri3 = "/400.shtml"; } err = fs_open(&hs->file_handle, uri1); if (err != ERR_OK) { err = fs_open(&hs->file_handle, uri2); if (err != ERR_OK) { err = fs_open(&hs->file_handle, uri3); if (err != ERR_OK) { LWIP_DEBUGF(HTTPD_DEBUG, ("Error page for error %"U16_F" not found\n", error_nr)); return ERR_ARG; } } } return http_init_file(hs, &hs->file_handle, 0, NULL, 0); } #else /* LWIP_HTTPD_SUPPORT_EXTSTATUS */ #define http_find_error_file(hs, error_nr) ERR_ARG #endif /* LWIP_HTTPD_SUPPORT_EXTSTATUS */ /** * Get the file struct for a 404 error page. * Tries some file names and returns NULL if none found. * * @param uri pointer that receives the actual file name URI * @return file struct for the error page or NULL no matching file was found */ static struct fs_file * http_get_404_file(struct http_state *hs, const char **uri) { err_t err; *uri = "/404.html"; err = fs_open(&hs->file_handle, *uri); if (err != ERR_OK) { /* 404.html doesn't exist. Try 404.htm instead. */ *uri = "/404.htm"; err = fs_open(&hs->file_handle, *uri); if (err != ERR_OK) { /* 404.htm doesn't exist either. Try 404.shtml instead. */ *uri = "/404.shtml"; err = fs_open(&hs->file_handle, *uri); if (err != ERR_OK) { /* 404.htm doesn't exist either. Indicate to the caller that it should * send back a default 404 page. */ *uri = NULL; return NULL; } } } return &hs->file_handle; } #if LWIP_HTTPD_SUPPORT_POST static err_t http_handle_post_finished(struct http_state *hs) { #if LWIP_HTTPD_POST_MANUAL_WND /* Prevent multiple calls to httpd_post_finished, since it might have already been called before from httpd_post_data_recved(). */ if (hs->post_finished) { return ERR_OK; } hs->post_finished = 1; #endif /* LWIP_HTTPD_POST_MANUAL_WND */ /* application error or POST finished */ /* NULL-terminate the buffer */ http_post_response_filename[0] = 0; httpd_post_finished(hs, http_post_response_filename, LWIP_HTTPD_POST_MAX_RESPONSE_URI_LEN); return http_find_file(hs, http_post_response_filename, 0); } /** Pass received POST body data to the application and correctly handle * returning a response document or closing the connection. * ATTENTION: The application is responsible for the pbuf now, so don't free it! * * @param hs http connection state * @param p pbuf to pass to the application * @return ERR_OK if passed successfully, another err_t if the response file * hasn't been found (after POST finished) */ static err_t http_post_rxpbuf(struct http_state *hs, struct pbuf *p) { err_t err; /* adjust remaining Content-Length */ if (hs->post_content_len_left < p->tot_len) { hs->post_content_len_left = 0; } else { hs->post_content_len_left -= p->tot_len; } err = httpd_post_receive_data(hs, p); if ((err != ERR_OK) || (hs->post_content_len_left == 0)) { #if LWIP_HTTPD_SUPPORT_POST && LWIP_HTTPD_POST_MANUAL_WND if (hs->unrecved_bytes != 0) { return ERR_OK; } #endif /* LWIP_HTTPD_SUPPORT_POST && LWIP_HTTPD_POST_MANUAL_WND */ /* application error or POST finished */ return http_handle_post_finished(hs); } return ERR_OK; } /** Handle a post request. Called from http_parse_request when method 'POST' * is found. * * @param p The input pbuf (containing the POST header and body). * @param hs The http connection state. * @param data HTTP request (header and part of body) from input pbuf(s). * @param data_len Size of 'data'. * @param uri The HTTP URI parsed from input pbuf(s). * @param uri_end Pointer to the end of 'uri' (here, the rest of the HTTP * header starts). * @return ERR_OK: POST correctly parsed and accepted by the application. * ERR_INPROGRESS: POST not completely parsed (no error yet) * another err_t: Error parsing POST or denied by the application */ static err_t http_post_request(struct pbuf **inp, struct http_state *hs, char *data, u16_t data_len, char *uri, char *uri_end) { err_t err; /* search for end-of-header (first double-CRLF) */ char* crlfcrlf = strnstr(uri_end + 1, CRLF CRLF, data_len - (uri_end + 1 - data)); if (crlfcrlf != NULL) { /* search for "Content-Length: " */ #define HTTP_HDR_CONTENT_LEN "Content-Length: " #define HTTP_HDR_CONTENT_LEN_LEN 16 #define HTTP_HDR_CONTENT_LEN_DIGIT_MAX_LEN 10 char *scontent_len = strnstr(uri_end + 1, HTTP_HDR_CONTENT_LEN, crlfcrlf - (uri_end + 1)); if (scontent_len != NULL) { char *scontent_len_end = strnstr(scontent_len + HTTP_HDR_CONTENT_LEN_LEN, CRLF, HTTP_HDR_CONTENT_LEN_DIGIT_MAX_LEN); if (scontent_len_end != NULL) { int content_len; char *conten_len_num = scontent_len + HTTP_HDR_CONTENT_LEN_LEN; *scontent_len_end = 0; content_len = atoi(conten_len_num); if (content_len > 0) { /* adjust length of HTTP header passed to application */ const char *hdr_start_after_uri = uri_end + 1; u16_t hdr_len = LWIP_MIN(data_len, crlfcrlf + 4 - data); u16_t hdr_data_len = LWIP_MIN(data_len, crlfcrlf + 4 - hdr_start_after_uri); u8_t post_auto_wnd = 1; http_post_response_filename[0] = 0; err = httpd_post_begin(hs, uri, hdr_start_after_uri, hdr_data_len, content_len, http_post_response_filename, LWIP_HTTPD_POST_MAX_RESPONSE_URI_LEN, &post_auto_wnd); if (err == ERR_OK) { /* try to pass in data of the first pbuf(s) */ struct pbuf *q = *inp; u16_t start_offset = hdr_len; #if LWIP_HTTPD_POST_MANUAL_WND hs->no_auto_wnd = !post_auto_wnd; #endif /* LWIP_HTTPD_POST_MANUAL_WND */ /* set the Content-Length to be received for this POST */ hs->post_content_len_left = (u32_t)content_len; /* get to the pbuf where the body starts */ while((q != NULL) && (q->len <= start_offset)) { struct pbuf *head = q; start_offset -= q->len; q = q->next; /* free the head pbuf */ head->next = NULL; pbuf_free(head); } *inp = NULL; if (q != NULL) { /* hide the remaining HTTP header */ pbuf_header(q, -(s16_t)start_offset); #if LWIP_HTTPD_POST_MANUAL_WND if (!post_auto_wnd) { /* already tcp_recved() this data... */ hs->unrecved_bytes = q->tot_len; } #endif /* LWIP_HTTPD_POST_MANUAL_WND */ return http_post_rxpbuf(hs, q); } else { return ERR_OK; } } else { /* return file passed from application */ return http_find_file(hs, http_post_response_filename, 0); } } else { LWIP_DEBUGF(HTTPD_DEBUG, ("POST received invalid Content-Length: %s\n", conten_len_num)); return ERR_ARG; } } } } /* if we come here, the POST is incomplete */ #if LWIP_HTTPD_SUPPORT_REQUESTLIST return ERR_INPROGRESS; #else /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ return ERR_ARG; #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ } #if LWIP_HTTPD_POST_MANUAL_WND /** A POST implementation can call this function to update the TCP window. * This can be used to throttle data reception (e.g. when received data is * programmed to flash and data is received faster than programmed). * * @param connection A connection handle passed to httpd_post_begin for which * httpd_post_finished has *NOT* been called yet! * @param recved_len Length of data received (for window update) */ void httpd_post_data_recved(void *connection, u16_t recved_len) { struct http_state *hs = (struct http_state*)connection; if (hs != NULL) { if (hs->no_auto_wnd) { u16_t len = recved_len; if (hs->unrecved_bytes >= recved_len) { hs->unrecved_bytes -= recved_len; } else { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_LEVEL_WARNING, ("httpd_post_data_recved: recved_len too big\n")); len = (u16_t)hs->unrecved_bytes; hs->unrecved_bytes = 0; } if (hs->pcb != NULL) { if (len != 0) { tcp_recved(hs->pcb, len); } if ((hs->post_content_len_left == 0) && (hs->unrecved_bytes == 0)) { /* finished handling POST */ http_handle_post_finished(hs); http_send(hs->pcb, hs); } } } } } #endif /* LWIP_HTTPD_POST_MANUAL_WND */ #endif /* LWIP_HTTPD_SUPPORT_POST */ #if LWIP_HTTPD_FS_ASYNC_READ /** Try to send more data if file has been blocked before * This is a callback function passed to fs_read_async(). */ static void http_continue(void *connection) { struct http_state *hs = (struct http_state*)connection; if (hs && (hs->pcb) && (hs->handle)) { LWIP_ASSERT("hs->pcb != NULL", hs->pcb != NULL); LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("httpd_continue: try to send more data\n")); if (http_send(hs->pcb, hs)) { /* If we wrote anything to be sent, go ahead and send it now. */ LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("tcp_output\n")); tcp_output(hs->pcb); } } } #endif /* LWIP_HTTPD_FS_ASYNC_READ */ /** * When data has been received in the correct state, try to parse it * as a HTTP request. * * @param p the received pbuf * @param hs the connection state * @param pcb the tcp_pcb which received this packet * @return ERR_OK if request was OK and hs has been initialized correctly * ERR_INPROGRESS if request was OK so far but not fully received * another err_t otherwise */ static err_t http_parse_request(struct pbuf **inp, struct http_state *hs, struct tcp_pcb *pcb) { char *data; char *crlf; u16_t data_len; struct pbuf *p = *inp; #if LWIP_HTTPD_SUPPORT_REQUESTLIST u16_t clen; #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ #if LWIP_HTTPD_SUPPORT_POST err_t err; #endif /* LWIP_HTTPD_SUPPORT_POST */ LWIP_UNUSED_ARG(pcb); /* only used for post */ LWIP_ASSERT("p != NULL", p != NULL); LWIP_ASSERT("hs != NULL", hs != NULL); if ((hs->handle != NULL) || (hs->file != NULL)) { LWIP_DEBUGF(HTTPD_DEBUG, ("Received data while sending a file\n")); /* already sending a file */ /* @todo: abort? */ return ERR_USE; } #if LWIP_HTTPD_SUPPORT_REQUESTLIST LWIP_DEBUGF(HTTPD_DEBUG, ("Received %"U16_F" bytes\n", p->tot_len)); /* first check allowed characters in this pbuf? */ /* enqueue the pbuf */ if (hs->req == NULL) { LWIP_DEBUGF(HTTPD_DEBUG, ("First pbuf\n")); hs->req = p; } else { LWIP_DEBUGF(HTTPD_DEBUG, ("pbuf enqueued\n")); pbuf_cat(hs->req, p); } if (hs->req->next != NULL) { data_len = LWIP_MIN(hs->req->tot_len, LWIP_HTTPD_MAX_REQ_LENGTH); pbuf_copy_partial(hs->req, httpd_req_buf, data_len, 0); data = httpd_req_buf; } else #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ { data = (char *)p->payload; data_len = p->len; if (p->len != p->tot_len) { LWIP_DEBUGF(HTTPD_DEBUG, ("Warning: incomplete header due to chained pbufs\n")); } } /* received enough data for minimal request? */ if (data_len >= MIN_REQ_LEN) { /* wait for CRLF before parsing anything */ crlf = strnstr(data, CRLF, data_len); if (crlf != NULL) { #if LWIP_HTTPD_SUPPORT_POST int is_post = 0; #endif /* LWIP_HTTPD_SUPPORT_POST */ int is_09 = 0; char *sp1, *sp2; u16_t left_len, uri_len; LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("CRLF received, parsing request\n")); /* parse method */ if (!strncmp(data, "GET ", 4)) { sp1 = data + 3; /* received GET request */ LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Received GET request\"\n")); #if LWIP_HTTPD_SUPPORT_POST } else if (!strncmp(data, "POST ", 5)) { /* store request type */ is_post = 1; sp1 = data + 4; /* received GET request */ LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Received POST request\n")); #endif /* LWIP_HTTPD_SUPPORT_POST */ } else { /* null-terminate the METHOD (pbuf is freed anyway wen returning) */ data[4] = 0; /* unsupported method! */ LWIP_DEBUGF(HTTPD_DEBUG, ("Unsupported request method (not implemented): \"%s\"\n", data)); return http_find_error_file(hs, 501); } /* if we come here, method is OK, parse URI */ left_len = data_len - ((sp1 +1) - data); sp2 = strnstr(sp1 + 1, " ", left_len); #if LWIP_HTTPD_SUPPORT_V09 if (sp2 == NULL) { /* HTTP 0.9: respond with correct protocol version */ sp2 = strnstr(sp1 + 1, CRLF, left_len); is_09 = 1; #if LWIP_HTTPD_SUPPORT_POST if (is_post) { /* HTTP/0.9 does not support POST */ goto badrequest; } #endif /* LWIP_HTTPD_SUPPORT_POST */ } #endif /* LWIP_HTTPD_SUPPORT_V09 */ uri_len = sp2 - (sp1 + 1); if ((sp2 != 0) && (sp2 > sp1)) { /* wait for CRLFCRLF (indicating end of HTTP headers) before parsing anything */ if (strnstr(data, CRLF CRLF, data_len) != NULL) { char *uri = sp1 + 1; #if LWIP_HTTPD_SUPPORT_11_KEEPALIVE if (!is_09 && strnstr(data, HTTP11_CONNECTIONKEEPALIVE, data_len)) { hs->keepalive = 1; } #endif /* LWIP_HTTPD_SUPPORT_11_KEEPALIVE */ /* null-terminate the METHOD (pbuf is freed anyway wen returning) */ *sp1 = 0; uri[uri_len] = 0; LWIP_DEBUGF(HTTPD_DEBUG, ("Received \"%s\" request for URI: \"%s\"\n", data, uri)); #if LWIP_HTTPD_SUPPORT_POST if (is_post) { #if LWIP_HTTPD_SUPPORT_REQUESTLIST struct pbuf **q = &hs->req; #else /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ struct pbuf **q = inp; #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ err = http_post_request(q, hs, data, data_len, uri, sp2); if (err != ERR_OK) { /* restore header for next try */ *sp1 = ' '; *sp2 = ' '; uri[uri_len] = ' '; } if (err == ERR_ARG) { goto badrequest; } return err; } else #endif /* LWIP_HTTPD_SUPPORT_POST */ { return http_find_file(hs, uri, is_09); } } } else { LWIP_DEBUGF(HTTPD_DEBUG, ("invalid URI\n")); } } } #if LWIP_HTTPD_SUPPORT_REQUESTLIST clen = pbuf_clen(hs->req); if ((hs->req->tot_len <= LWIP_HTTPD_REQ_BUFSIZE) && (clen <= LWIP_HTTPD_REQ_QUEUELEN)) { /* request not fully received (too short or CRLF is missing) */ return ERR_INPROGRESS; } else #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ { #if LWIP_HTTPD_SUPPORT_POST badrequest: #endif /* LWIP_HTTPD_SUPPORT_POST */ LWIP_DEBUGF(HTTPD_DEBUG, ("bad request\n")); /* could not parse request */ return http_find_error_file(hs, 400); } } /** Try to find the file specified by uri and, if found, initialize hs * accordingly. * * @param hs the connection state * @param uri the HTTP header URI * @param is_09 1 if the request is HTTP/0.9 (no HTTP headers in response) * @return ERR_OK if file was found and hs has been initialized correctly * another err_t otherwise */ static err_t http_find_file(struct http_state *hs, const char *uri, int is_09) { size_t loop; struct fs_file *file = NULL; char *params; err_t err; #if LWIP_HTTPD_CGI int i; int count; #endif /* LWIP_HTTPD_CGI */ #if !LWIP_HTTPD_SSI const #endif /* !LWIP_HTTPD_SSI */ /* By default, assume we will not be processing server-side-includes tags */ u8_t tag_check = 0; /* Have we been asked for the default root file? */ if((uri[0] == '/') && (uri[1] == 0)) { /* Try each of the configured default filenames until we find one that exists. */ for (loop = 0; loop < NUM_DEFAULT_FILENAMES; loop++) { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Looking for %s...\n", g_psDefaultFilenames[loop].name)); err = fs_open(&hs->file_handle, (char *)g_psDefaultFilenames[loop].name); uri = (char *)g_psDefaultFilenames[loop].name; if(err == ERR_OK) { file = &hs->file_handle; LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Opened.\n")); #if LWIP_HTTPD_SSI tag_check = g_psDefaultFilenames[loop].shtml; #endif /* LWIP_HTTPD_SSI */ break; } } if (file == NULL) { /* None of the default filenames exist so send back a 404 page */ file = http_get_404_file(hs, &uri); #if LWIP_HTTPD_SSI tag_check = 0; #endif /* LWIP_HTTPD_SSI */ } } else { /* No - we've been asked for a specific file. */ /* First, isolate the base URI (without any parameters) */ params = (char *)strchr(uri, '?'); if (params != NULL) { /* URI contains parameters. NULL-terminate the base URI */ *params = '\0'; params++; } #if LWIP_HTTPD_CGI /* Does the base URI we have isolated correspond to a CGI handler? */ if (g_iNumCGIs && g_pCGIs) { for (i = 0; i < g_iNumCGIs; i++) { if (strcmp(uri, g_pCGIs[i].pcCGIName) == 0) { /* * We found a CGI that handles this URI so extract the * parameters and call the handler. */ count = extract_uri_parameters(hs, params); uri = g_pCGIs[i].pfnCGIHandler(i, count, hs->params, hs->param_vals); break; } } } #endif /* LWIP_HTTPD_CGI */ LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Opening %s\n", uri)); err = fs_open(&hs->file_handle, uri); if (err == ERR_OK) { file = &hs->file_handle; } else { file = http_get_404_file(hs, &uri); } #if LWIP_HTTPD_SSI if (file != NULL) { /* See if we have been asked for an shtml file and, if so, enable tag checking. */ tag_check = 0; for (loop = 0; loop < NUM_SHTML_EXTENSIONS; loop++) { if (strstr(uri, g_pcSSIExtensions[loop])) { tag_check = 1; break; } } } #endif /* LWIP_HTTPD_SSI */ } return http_init_file(hs, file, is_09, uri, tag_check); } /** Initialize a http connection with a file to send (if found). * Called by http_find_file and http_find_error_file. * * @param hs http connection state * @param file file structure to send (or NULL if not found) * @param is_09 1 if the request is HTTP/0.9 (no HTTP headers in response) * @param uri the HTTP header URI * @param tag_check enable SSI tag checking * @return ERR_OK if file was found and hs has been initialized correctly * another err_t otherwise */ static err_t http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const char *uri, u8_t tag_check) { if (file != NULL) { /* file opened, initialise struct http_state */ #if LWIP_HTTPD_SSI if (tag_check) { struct http_ssi_state *ssi = http_ssi_state_alloc(); if (ssi != NULL) { ssi->tag_index = 0; ssi->tag_state = TAG_NONE; ssi->parsed = file->data; ssi->parse_left = file->len; ssi->tag_end = file->data; hs->ssi = ssi; } } #else /* LWIP_HTTPD_SSI */ LWIP_UNUSED_ARG(tag_check); #endif /* LWIP_HTTPD_SSI */ hs->handle = file; hs->file = (char*)file->data; LWIP_ASSERT("File length must be positive!", (file->len >= 0)); hs->left = file->len; hs->retries = 0; #if LWIP_HTTPD_TIMING hs->time_started = sys_now(); #endif /* LWIP_HTTPD_TIMING */ #if !LWIP_HTTPD_DYNAMIC_HEADERS LWIP_ASSERT("HTTP headers not included in file system", hs->handle->http_header_included); #endif /* !LWIP_HTTPD_DYNAMIC_HEADERS */ #if LWIP_HTTPD_SUPPORT_V09 if (hs->handle->http_header_included && is_09) { /* HTTP/0.9 responses are sent without HTTP header, search for the end of the header. */ char *file_start = strnstr(hs->file, CRLF CRLF, hs->left); if (file_start != NULL) { size_t diff = file_start + 4 - hs->file; hs->file += diff; hs->left -= (u32_t)diff; } } #endif /* LWIP_HTTPD_SUPPORT_V09*/ } else { hs->handle = NULL; hs->file = NULL; hs->left = 0; hs->retries = 0; } #if LWIP_HTTPD_DYNAMIC_HEADERS /* Determine the HTTP headers to send based on the file extension of * the requested URI. */ if ((hs->handle == NULL) || !hs->handle->http_header_included) { get_http_headers(hs, (char*)uri); } #else /* LWIP_HTTPD_DYNAMIC_HEADERS */ LWIP_UNUSED_ARG(uri); #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ return ERR_OK; } /** * The pcb had an error and is already deallocated. * The argument might still be valid (if != NULL). */ static void http_err(void *arg, err_t err) { struct http_state *hs = (struct http_state *)arg; LWIP_UNUSED_ARG(err); LWIP_DEBUGF(HTTPD_DEBUG, ("http_err: %s", lwip_strerr(err))); if (hs != NULL) { http_state_free(hs); } } /** * Data has been sent and acknowledged by the remote host. * This means that more data can be sent. */ static err_t http_sent(void *arg, struct tcp_pcb *pcb, u16_t len) { struct http_state *hs = (struct http_state *)arg; LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_sent %p\n", (void*)pcb)); LWIP_UNUSED_ARG(len); if (hs == NULL) { return ERR_OK; } hs->retries = 0; http_send(pcb, hs); return ERR_OK; } /** * The poll function is called every 2nd second. * If there has been no data sent (which resets the retries) in 8 seconds, close. * If the last portion of a file has not been sent in 2 seconds, close. * * This could be increased, but we don't want to waste resources for bad connections. */ static err_t http_poll(void *arg, struct tcp_pcb *pcb) { struct http_state *hs = (struct http_state *)arg; LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_poll: pcb=%p hs=%p pcb_state=%s\n", (void*)pcb, (void*)hs, tcp_debug_state_str(pcb->state))); if (hs == NULL) { err_t closed; /* arg is null, close. */ LWIP_DEBUGF(HTTPD_DEBUG, ("http_poll: arg is NULL, close\n")); closed = http_close_conn(pcb, NULL); LWIP_UNUSED_ARG(closed); #if LWIP_HTTPD_ABORT_ON_CLOSE_MEM_ERROR if (closed == ERR_MEM) { tcp_abort(pcb); return ERR_ABRT; } #endif /* LWIP_HTTPD_ABORT_ON_CLOSE_MEM_ERROR */ return ERR_OK; } else { hs->retries++; if (hs->retries == HTTPD_MAX_RETRIES) { LWIP_DEBUGF(HTTPD_DEBUG, ("http_poll: too many retries, close\n")); http_close_conn(pcb, hs); return ERR_OK; } /* If this connection has a file open, try to send some more data. If * it has not yet received a GET request, don't do this since it will * cause the connection to close immediately. */ if(hs && (hs->handle)) { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_poll: try to send more data\n")); if(http_send(pcb, hs)) { /* If we wrote anything to be sent, go ahead and send it now. */ LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("tcp_output\n")); tcp_output(pcb); } } } return ERR_OK; } /** * Data has been received on this pcb. * For HTTP 1.0, this should normally only happen once (if the request fits in one packet). */ static err_t http_recv(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) { err_t parsed = ERR_ABRT; struct http_state *hs = (struct http_state *)arg; LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_recv: pcb=%p pbuf=%p err=%s\n", (void*)pcb, (void*)p, lwip_strerr(err))); if ((err != ERR_OK) || (p == NULL) || (hs == NULL)) { /* error or closed by other side? */ if (p != NULL) { /* Inform TCP that we have taken the data. */ tcp_recved(pcb, p->tot_len); pbuf_free(p); } if (hs == NULL) { /* this should not happen, only to be robust */ LWIP_DEBUGF(HTTPD_DEBUG, ("Error, http_recv: hs is NULL, close\n")); } http_close_conn(pcb, hs); return ERR_OK; } #if LWIP_HTTPD_SUPPORT_POST && LWIP_HTTPD_POST_MANUAL_WND if (hs->no_auto_wnd) { hs->unrecved_bytes += p->tot_len; } else #endif /* LWIP_HTTPD_SUPPORT_POST && LWIP_HTTPD_POST_MANUAL_WND */ { /* Inform TCP that we have taken the data. */ tcp_recved(pcb, p->tot_len); } #if LWIP_HTTPD_SUPPORT_POST if (hs->post_content_len_left > 0) { /* reset idle counter when POST data is received */ hs->retries = 0; /* this is data for a POST, pass the complete pbuf to the application */ http_post_rxpbuf(hs, p); /* pbuf is passed to the application, don't free it! */ if (hs->post_content_len_left == 0) { /* all data received, send response or close connection */ http_send(pcb, hs); } return ERR_OK; } else #endif /* LWIP_HTTPD_SUPPORT_POST */ { if (hs->handle == NULL) { parsed = http_parse_request(&p, hs, pcb); LWIP_ASSERT("http_parse_request: unexpected return value", parsed == ERR_OK || parsed == ERR_INPROGRESS ||parsed == ERR_ARG || parsed == ERR_USE); } else { LWIP_DEBUGF(HTTPD_DEBUG, ("http_recv: already sending data\n")); } #if LWIP_HTTPD_SUPPORT_REQUESTLIST if (parsed != ERR_INPROGRESS) { /* request fully parsed or error */ if (hs->req != NULL) { pbuf_free(hs->req); hs->req = NULL; } } #else /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ if (p != NULL) { /* pbuf not passed to application, free it now */ pbuf_free(p); } #endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ if (parsed == ERR_OK) { #if LWIP_HTTPD_SUPPORT_POST if (hs->post_content_len_left == 0) #endif /* LWIP_HTTPD_SUPPORT_POST */ { LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_recv: data %p len %"S32_F"\n", hs->file, hs->left)); http_send(pcb, hs); } } else if (parsed == ERR_ARG) { /* @todo: close on ERR_USE? */ http_close_conn(pcb, hs); } } return ERR_OK; } /** * A new incoming connection has been accepted. */ static err_t http_accept(void *arg, struct tcp_pcb *pcb, err_t err) { struct http_state *hs; struct tcp_pcb_listen *lpcb = (struct tcp_pcb_listen*)arg; LWIP_UNUSED_ARG(err); LWIP_DEBUGF(HTTPD_DEBUG, ("http_accept %p / %p\n", (void*)pcb, arg)); /* Decrease the listen backlog counter */ tcp_accepted(lpcb); /* Set priority */ tcp_setprio(pcb, HTTPD_TCP_PRIO); /* Allocate memory for the structure that holds the state of the connection - initialized by that function. */ hs = http_state_alloc(); if (hs == NULL) { LWIP_DEBUGF(HTTPD_DEBUG, ("http_accept: Out of memory, RST\n")); return ERR_MEM; } hs->pcb = pcb; /* Tell TCP that this is the structure we wish to be passed for our callbacks. */ tcp_arg(pcb, hs); /* Set up the various callback functions */ tcp_recv(pcb, http_recv); tcp_err(pcb, http_err); tcp_poll(pcb, http_poll, HTTPD_POLL_INTERVAL); tcp_sent(pcb, http_sent); return ERR_OK; } /** * Initialize the httpd with the specified local address. */ static void httpd_init_addr(ip_addr_t *local_addr) { struct tcp_pcb *pcb; err_t err; pcb = tcp_new(); LWIP_ASSERT("httpd_init: tcp_new failed", pcb != NULL); tcp_setprio(pcb, HTTPD_TCP_PRIO); /* set SOF_REUSEADDR here to explicitly bind httpd to multiple interfaces */ err = tcp_bind(pcb, local_addr, HTTPD_SERVER_PORT); LWIP_ASSERT("httpd_init: tcp_bind failed", err == ERR_OK); pcb = tcp_listen(pcb); LWIP_ASSERT("httpd_init: tcp_listen failed", pcb != NULL); /* initialize callback arg and accept callback */ tcp_arg(pcb, pcb); tcp_accept(pcb, http_accept); } /** * Initialize the httpd: set up a listening PCB and bind it to the defined port */ void httpd_init(void) { #if HTTPD_USE_MEM_POOL LWIP_ASSERT("memp_sizes[MEMP_HTTPD_STATE] >= sizeof(http_state)", memp_sizes[MEMP_HTTPD_STATE] >= sizeof(http_state)); LWIP_ASSERT("memp_sizes[MEMP_HTTPD_SSI_STATE] >= sizeof(http_ssi_state)", memp_sizes[MEMP_HTTPD_SSI_STATE] >= sizeof(http_ssi_state)); #endif LWIP_DEBUGF(HTTPD_DEBUG, ("httpd_init\n")); httpd_init_addr(IP_ADDR_ANY); } #if LWIP_HTTPD_SSI /** * Set the SSI handler function. * * @param ssi_handler the SSI handler function * @param tags an array of SSI tag strings to search for in SSI-enabled files * @param num_tags number of tags in the 'tags' array */ void http_set_ssi_handler(tSSIHandler ssi_handler, const char **tags, int num_tags) { LWIP_DEBUGF(HTTPD_DEBUG, ("http_set_ssi_handler\n")); LWIP_ASSERT("no ssi_handler given", ssi_handler != NULL); LWIP_ASSERT("no tags given", tags != NULL); LWIP_ASSERT("invalid number of tags", num_tags > 0); g_pfnSSIHandler = ssi_handler; g_ppcTags = tags; g_iNumTags = num_tags; } #endif /* LWIP_HTTPD_SSI */ #if LWIP_HTTPD_CGI /** * Set an array of CGI filenames/handler functions * * @param cgis an array of CGI filenames/handler functions * @param num_handlers number of elements in the 'cgis' array */ void http_set_cgi_handlers(const tCGI *cgis, int num_handlers) { LWIP_ASSERT("no cgis given", cgis != NULL); LWIP_ASSERT("invalid number of handlers", num_handlers > 0); g_pCGIs = cgis; g_iNumCGIs = num_handlers; } #endif /* LWIP_HTTPD_CGI */ #endif /* LWIP_TCP */ ================================================ FILE: lib/httpd/httpd.h ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels * * This version of the file has been modified by Texas Instruments to offer * simple server-side-include (SSI) and Common Gateway Interface (CGI) * capability. */ #ifndef __HTTPD_H__ #define __HTTPD_H__ #include "lwip/opt.h" #include "lwip/err.h" #include "lwip/pbuf.h" #ifdef __cplusplus extern "C" { #endif /** Set this to 1 to support CGI */ #ifndef LWIP_HTTPD_CGI #define LWIP_HTTPD_CGI 0 #endif /** Set this to 1 to support SSI (Server-Side-Includes) */ #ifndef LWIP_HTTPD_SSI #define LWIP_HTTPD_SSI 0 #endif /** Set this to 1 to support HTTP POST */ #ifndef LWIP_HTTPD_SUPPORT_POST #define LWIP_HTTPD_SUPPORT_POST 0 #endif #if LWIP_HTTPD_CGI /* * Function pointer for a CGI script handler. * * This function is called each time the HTTPD server is asked for a file * whose name was previously registered as a CGI function using a call to * http_set_cgi_handler. The iIndex parameter provides the index of the * CGI within the ppcURLs array passed to http_set_cgi_handler. Parameters * pcParam and pcValue provide access to the parameters provided along with * the URI. iNumParams provides a count of the entries in the pcParam and * pcValue arrays. Each entry in the pcParam array contains the name of a * parameter with the corresponding entry in the pcValue array containing the * value for that parameter. Note that pcParam may contain multiple elements * with the same name if, for example, a multi-selection list control is used * in the form generating the data. * * The function should return a pointer to a character string which is the * path and filename of the response that is to be sent to the connected * browser, for example "/thanks.htm" or "/response/error.ssi". * * The maximum number of parameters that will be passed to this function via * iNumParams is defined by LWIP_HTTPD_MAX_CGI_PARAMETERS. Any parameters in the incoming * HTTP request above this number will be discarded. * * Requests intended for use by this CGI mechanism must be sent using the GET * method (which encodes all parameters within the URI rather than in a block * later in the request). Attempts to use the POST method will result in the * request being ignored. * */ typedef const char *(*tCGIHandler)(int iIndex, int iNumParams, char *pcParam[], char *pcValue[]); /* * Structure defining the base filename (URL) of a CGI and the associated * function which is to be called when that URL is requested. */ typedef struct { const char *pcCGIName; tCGIHandler pfnCGIHandler; } tCGI; void http_set_cgi_handlers(const tCGI *pCGIs, int iNumHandlers); /* The maximum number of parameters that the CGI handler can be sent. */ #ifndef LWIP_HTTPD_MAX_CGI_PARAMETERS #define LWIP_HTTPD_MAX_CGI_PARAMETERS 16 #endif #endif /* LWIP_HTTPD_CGI */ #if LWIP_HTTPD_SSI /** LWIP_HTTPD_SSI_MULTIPART==1: SSI handler function is called with 2 more * arguments indicating a counter for insert string that are too long to be * inserted at once: the SSI handler function must then set 'next_tag_part' * which will be passed back to it in the next call. */ #ifndef LWIP_HTTPD_SSI_MULTIPART #define LWIP_HTTPD_SSI_MULTIPART 0 #endif /* * Function pointer for the SSI tag handler callback. * * This function will be called each time the HTTPD server detects a tag of the * form in a .shtml, .ssi or .shtm file where "name" appears as * one of the tags supplied to http_set_ssi_handler in the ppcTags array. The * returned insert string, which will be appended after the the string * "" in file sent back to the client,should be written to pointer * pcInsert. iInsertLen contains the size of the buffer pointed to by * pcInsert. The iIndex parameter provides the zero-based index of the tag as * found in the ppcTags array and identifies the tag that is to be processed. * * The handler returns the number of characters written to pcInsert excluding * any terminating NULL or a negative number to indicate a failure (tag not * recognized, for example). * * Note that the behavior of this SSI mechanism is somewhat different from the * "normal" SSI processing as found in, for example, the Apache web server. In * this case, the inserted text is appended following the SSI tag rather than * replacing the tag entirely. This allows for an implementation that does not * require significant additional buffering of output data yet which will still * offer usable SSI functionality. One downside to this approach is when * attempting to use SSI within JavaScript. The SSI tag is structured to * resemble an HTML comment but this syntax does not constitute a comment * within JavaScript and, hence, leaving the tag in place will result in * problems in these cases. To work around this, any SSI tag which needs to * output JavaScript code must do so in an encapsulated way, sending the whole * HTML section as a single include. */ typedef u16_t (*tSSIHandler)(int iIndex, char *pcInsert, int iInsertLen #if LWIP_HTTPD_SSI_MULTIPART , u16_t current_tag_part, u16_t *next_tag_part #endif /* LWIP_HTTPD_SSI_MULTIPART */ #if LWIP_HTTPD_FILE_STATE , void *connection_state #endif /* LWIP_HTTPD_FILE_STATE */ ); void http_set_ssi_handler(tSSIHandler pfnSSIHandler, const char **ppcTags, int iNumTags); /* The maximum length of the string comprising the tag name */ #ifndef LWIP_HTTPD_MAX_TAG_NAME_LEN #define LWIP_HTTPD_MAX_TAG_NAME_LEN 8 #endif /* The maximum length of string that can be returned to replace any given tag */ #ifndef LWIP_HTTPD_MAX_TAG_INSERT_LEN #define LWIP_HTTPD_MAX_TAG_INSERT_LEN 192 #endif #endif /* LWIP_HTTPD_SSI */ #if LWIP_HTTPD_SUPPORT_POST /* These functions must be implemented by the application */ /** Called when a POST request has been received. The application can decide * whether to accept it or not. * * @param connection Unique connection identifier, valid until httpd_post_end * is called. * @param uri The HTTP header URI receiving the POST request. * @param http_request The raw HTTP request (the first packet, normally). * @param http_request_len Size of 'http_request'. * @param content_len Content-Length from HTTP header. * @param response_uri Filename of response file, to be filled when denying the * request * @param response_uri_len Size of the 'response_uri' buffer. * @param post_auto_wnd Set this to 0 to let the callback code handle window * updates by calling 'httpd_post_data_recved' (to throttle rx speed) * default is 1 (httpd handles window updates automatically) * @return ERR_OK: Accept the POST request, data may be passed in * another err_t: Deny the POST request, send back 'bad request'. */ err_t httpd_post_begin(void *connection, const char *uri, const char *http_request, u16_t http_request_len, int content_len, char *response_uri, u16_t response_uri_len, u8_t *post_auto_wnd); /** Called for each pbuf of data that has been received for a POST. * ATTENTION: The application is responsible for freeing the pbufs passed in! * * @param connection Unique connection identifier. * @param p Received data. * @return ERR_OK: Data accepted. * another err_t: Data denied, http_post_get_response_uri will be called. */ err_t httpd_post_receive_data(void *connection, struct pbuf *p); /** Called when all data is received or when the connection is closed. * The application must return the filename/URI of a file to send in response * to this POST request. If the response_uri buffer is untouched, a 404 * response is returned. * * @param connection Unique connection identifier. * @param response_uri Filename of response file, to be filled when denying the request * @param response_uri_len Size of the 'response_uri' buffer. */ void httpd_post_finished(void *connection, char *response_uri, u16_t response_uri_len); #ifndef LWIP_HTTPD_POST_MANUAL_WND #define LWIP_HTTPD_POST_MANUAL_WND 0 #endif #if LWIP_HTTPD_POST_MANUAL_WND void httpd_post_data_recved(void *connection, u16_t recved_len); #endif /* LWIP_HTTPD_POST_MANUAL_WND */ #endif /* LWIP_HTTPD_SUPPORT_POST */ void httpd_init(void); #ifdef __cplusplus } #endif #endif /* __HTTPD_H__ */ ================================================ FILE: lib/httpd/httpd_structs.h ================================================ #ifndef __HTTPD_STRUCTS_H__ #define __HTTPD_STRUCTS_H__ #include "httpd.h" /** This string is passed in the HTTP header as "Server: " */ #ifndef HTTPD_SERVER_AGENT #define HTTPD_SERVER_AGENT "lwIP/1.4.1 (http://savannah.nongnu.org/projects/lwip)" #endif /** Set this to 1 if you want to include code that creates HTTP headers * at runtime. Default is off: HTTP headers are then created statically * by the makefsdata tool. Static headers mean smaller code size, but * the (readonly) fsdata will grow a bit as every file includes the HTTP * header. */ #ifndef LWIP_HTTPD_DYNAMIC_HEADERS #define LWIP_HTTPD_DYNAMIC_HEADERS 0 #endif #if LWIP_HTTPD_DYNAMIC_HEADERS /** This struct is used for a list of HTTP header strings for various * filename extensions. */ typedef struct { const char *extension; int headerIndex; } tHTTPHeader; /** A list of strings used in HTTP headers */ static const char * const g_psHTTPHeaderStrings[] = { "Content-type: text/html\r\n\r\n", "Content-type: text/html\r\nExpires: Fri, 10 Apr 2008 14:00:00 GMT\r\nPragma: no-cache\r\n\r\n", "Content-type: image/gif\r\n\r\n", "Content-type: image/png\r\n\r\n", "Content-type: image/jpeg\r\n\r\n", "Content-type: image/bmp\r\n\r\n", "Content-type: image/x-icon\r\n\r\n", "Content-type: application/octet-stream\r\n\r\n", "Content-type: application/x-javascript\r\n\r\n", "Content-type: application/x-javascript\r\n\r\n", "Content-type: text/css\r\n\r\n", "Content-type: application/x-shockwave-flash\r\n\r\n", "Content-type: text/xml\r\n\r\n", "Content-type: text/plain\r\n\r\n", "HTTP/1.0 200 OK\r\n", "HTTP/1.0 404 File not found\r\n", "HTTP/1.0 400 Bad Request\r\n", "HTTP/1.0 501 Not Implemented\r\n", "HTTP/1.1 200 OK\r\n", "HTTP/1.1 404 File not found\r\n", "HTTP/1.1 400 Bad Request\r\n", "HTTP/1.1 501 Not Implemented\r\n", "Content-Length: ", "Connection: Close\r\n", "Connection: keep-alive\r\n", "Server: "HTTPD_SERVER_AGENT"\r\n", "\r\n

404: The requested file cannot be found.

\r\n" }; /* Indexes into the g_psHTTPHeaderStrings array */ #define HTTP_HDR_HTML 0 /* text/html */ #define HTTP_HDR_SSI 1 /* text/html Expires... */ #define HTTP_HDR_GIF 2 /* image/gif */ #define HTTP_HDR_PNG 3 /* image/png */ #define HTTP_HDR_JPG 4 /* image/jpeg */ #define HTTP_HDR_BMP 5 /* image/bmp */ #define HTTP_HDR_ICO 6 /* image/x-icon */ #define HTTP_HDR_APP 7 /* application/octet-stream */ #define HTTP_HDR_JS 8 /* application/x-javascript */ #define HTTP_HDR_RA 9 /* application/x-javascript */ #define HTTP_HDR_CSS 10 /* text/css */ #define HTTP_HDR_SWF 11 /* application/x-shockwave-flash */ #define HTTP_HDR_XML 12 /* text/xml */ #define HTTP_HDR_DEFAULT_TYPE 13 /* text/plain */ #define HTTP_HDR_OK 14 /* 200 OK */ #define HTTP_HDR_NOT_FOUND 15 /* 404 File not found */ #define HTTP_HDR_BAD_REQUEST 16 /* 400 Bad request */ #define HTTP_HDR_NOT_IMPL 17 /* 501 Not Implemented */ #define HTTP_HDR_OK_11 18 /* 200 OK */ #define HTTP_HDR_NOT_FOUND_11 19 /* 404 File not found */ #define HTTP_HDR_BAD_REQUEST_11 20 /* 400 Bad request */ #define HTTP_HDR_NOT_IMPL_11 21 /* 501 Not Implemented */ #define HTTP_HDR_CONTENT_LENGTH 22 /* Content-Length: (HTTP 1.1)*/ #define HTTP_HDR_CONN_CLOSE 23 /* Connection: Close (HTTP 1.1) */ #define HTTP_HDR_CONN_KEEPALIVE 24 /* Connection: keep-alive (HTTP 1.1) */ #define HTTP_HDR_SERVER 25 /* Server: HTTPD_SERVER_AGENT */ #define DEFAULT_404_HTML 26 /* default 404 body */ /** A list of extension-to-HTTP header strings */ const static tHTTPHeader g_psHTTPHeaders[] = { { "html", HTTP_HDR_HTML}, { "htm", HTTP_HDR_HTML}, { "shtml",HTTP_HDR_SSI}, { "shtm", HTTP_HDR_SSI}, { "ssi", HTTP_HDR_SSI}, { "gif", HTTP_HDR_GIF}, { "png", HTTP_HDR_PNG}, { "jpg", HTTP_HDR_JPG}, { "bmp", HTTP_HDR_BMP}, { "ico", HTTP_HDR_ICO}, { "class",HTTP_HDR_APP}, { "cls", HTTP_HDR_APP}, { "js", HTTP_HDR_JS}, { "ram", HTTP_HDR_RA}, { "css", HTTP_HDR_CSS}, { "swf", HTTP_HDR_SWF}, { "xml", HTTP_HDR_XML}, { "xsl", HTTP_HDR_XML}, }; #define NUM_HTTP_HEADERS (sizeof(g_psHTTPHeaders) / sizeof(tHTTPHeader)) #endif /* LWIP_HTTPD_DYNAMIC_HEADERS */ #if LWIP_HTTPD_SSI static const char * const g_pcSSIExtensions[] = { ".shtml", ".shtm", ".ssi", ".xml" }; #define NUM_SHTML_EXTENSIONS (sizeof(g_pcSSIExtensions) / sizeof(const char *)) #endif /* LWIP_HTTPD_SSI */ #endif /* __HTTPD_STRUCTS_H__ */ ================================================ FILE: lib/lwip-port/arch/cc.h ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels * */ #ifndef __CC_H__ #define __CC_H__ //#include "cpu.h" typedef int sys_prot_t; /* define compiler specific symbols */ #if defined (__ICCARM__) #define PACK_STRUCT_BEGIN #define PACK_STRUCT_STRUCT #define PACK_STRUCT_END #define PACK_STRUCT_FIELD(x) x #define PACK_STRUCT_USE_INCLUDES #elif defined (__CC_ARM) #define PACK_STRUCT_BEGIN __packed #define PACK_STRUCT_STRUCT #define PACK_STRUCT_END #define PACK_STRUCT_FIELD(x) x #elif defined (__GNUC__) #define PACK_STRUCT_BEGIN #define PACK_STRUCT_STRUCT __attribute__ ((__packed__)) #define PACK_STRUCT_END #define PACK_STRUCT_FIELD(x) x #elif defined (__TASKING__) #define PACK_STRUCT_BEGIN #define PACK_STRUCT_STRUCT #define PACK_STRUCT_END #define PACK_STRUCT_FIELD(x) x #endif #define LWIP_PLATFORM_ASSERT(x) do { if(!(x)) while(1); } while(0) #endif /* __CC_H__ */ ================================================ FILE: lib/lwip-port/lwipopts.h ================================================ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY * OF SUCH DAMAGE. * * This file is part of the lwIP TCP/IP stack. * * Author: Simon Goldschmidt * */ #ifndef __LWIPOPTS_H__ #define __LWIPOPTS_H__ /* Prevent having to link sys_arch.c (we don't test the API layers in unit tests) */ #define NO_SYS 1 #define MEM_ALIGNMENT 4 #define MEMP_OVERFLOW_CHECK 2 #define LWIP_RAW 0 #define LWIP_NETCONN 0 #define LWIP_SOCKET 0 #define LWIP_DHCP 0 #define LWIP_ICMP 1 #define LWIP_UDP 1 #define LWIP_TCP 1 #define ETH_PAD_SIZE 0 #define LWIP_IP_ACCEPT_UDP_PORT(p) ((p) == PP_NTOHS(67)) #define TCP_MSS (1500 /*mtu*/ - 20 /*iphdr*/ - 20 /*tcphhr*/) #define TCP_SND_BUF (2 * TCP_MSS) #define ETHARP_SUPPORT_STATIC_ENTRIES 1 #define LWIP_HTTPD_CGI 0 #define LWIP_HTTPD_SSI 0 #define LWIP_HTTPD_CGI_SSI 0 #define LWIP_HTTPD_SSI_INCLUDE_TAG 0 #define LWIP_HTTPD_CUSTOM_FILES 1 #define LWIP_HTTPD_SUPPORT_POST 1 #define LWIP_HTTPD_SUPPORT_V09 0 #define LWIP_HTTPD_SUPPORT_11_KEEPALIVE 0 // Causes lockups with CGI requests #define LWIP_HTTPD_ABORT_ON_CLOSE_MEM_ERROR 1 #define LWIP_SINGLE_NETIF 1 #endif /* __LWIPOPTS_H__ */ ================================================ FILE: lib/lwip-port/server/dhserver.c ================================================ /* * The MIT License (MIT) * * Copyright (c) 2015 by Sergey Fetisov * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "dhserver.h" /* DHCP message type */ #define DHCP_DISCOVER 1 #define DHCP_OFFER 2 #define DHCP_REQUEST 3 #define DHCP_DECLINE 4 #define DHCP_ACK 5 #define DHCP_NAK 6 #define DHCP_RELEASE 7 #define DHCP_INFORM 8 /* DHCP options */ enum DHCP_OPTIONS { DHCP_PAD = 0, DHCP_SUBNETMASK = 1, DHCP_ROUTER = 3, DHCP_DNSSERVER = 6, DHCP_HOSTNAME = 12, DHCP_DNSDOMAIN = 15, DHCP_MTU = 26, DHCP_BROADCAST = 28, DHCP_PERFORMROUTERDISC = 31, DHCP_STATICROUTE = 33, DHCP_NISDOMAIN = 40, DHCP_NISSERVER = 41, DHCP_NTPSERVER = 42, DHCP_VENDOR = 43, DHCP_IPADDRESS = 50, DHCP_LEASETIME = 51, DHCP_OPTIONSOVERLOADED = 52, DHCP_MESSAGETYPE = 53, DHCP_SERVERID = 54, DHCP_PARAMETERREQUESTLIST = 55, DHCP_MESSAGE = 56, DHCP_MAXMESSAGESIZE = 57, DHCP_RENEWALTIME = 58, DHCP_REBINDTIME = 59, DHCP_CLASSID = 60, DHCP_CLIENTID = 61, DHCP_USERCLASS = 77, /* RFC 3004 */ DHCP_FQDN = 81, DHCP_DNSSEARCH = 119, /* RFC 3397 */ DHCP_CSR = 121, /* RFC 3442 */ DHCP_MSCSR = 249, /* MS code for RFC 3442 */ DHCP_END = 255 }; typedef struct { uint8_t dp_op; /* packet opcode type */ uint8_t dp_htype; /* hardware addr type */ uint8_t dp_hlen; /* hardware addr length */ uint8_t dp_hops; /* gateway hops */ uint32_t dp_xid; /* transaction ID */ uint16_t dp_secs; /* seconds since boot began */ uint16_t dp_flags; uint8_t dp_ciaddr[4]; /* client IP address */ uint8_t dp_yiaddr[4]; /* 'your' IP address */ uint8_t dp_siaddr[4]; /* server IP address */ uint8_t dp_giaddr[4]; /* gateway IP address */ uint8_t dp_chaddr[16]; /* client hardware address */ uint8_t dp_legacy[192]; uint8_t dp_magic[4]; uint8_t dp_options[275]; /* options area */ } DHCP_TYPE; DHCP_TYPE dhcp_data; static struct udp_pcb *pcb = NULL; static const dhcp_config_t *config = NULL; char magic_cookie[] = {0x63,0x82,0x53,0x63}; static ip_addr_t get_ip(const uint8_t *pnt) { ip_addr_t result; memcpy(&result, pnt, sizeof(result)); return result; } static void set_ip(uint8_t *pnt, ip_addr_t value) { memcpy(pnt, &value.addr, sizeof(value.addr)); } static dhcp_entry_t *entry_by_ip(ip_addr_t ip) { int i; for (i = 0; i < config->num_entry; i++) if (config->entries[i].addr.addr == ip.addr) return &config->entries[i]; return NULL; } static dhcp_entry_t *entry_by_mac(uint8_t *mac) { int i; for (i = 0; i < config->num_entry; i++) if (memcmp(config->entries[i].mac, mac, 6) == 0) return &config->entries[i]; return NULL; } static __inline bool is_vacant(dhcp_entry_t *entry) { return memcmp("\0\0\0\0\0", entry->mac, 6) == 0; } static dhcp_entry_t *vacant_address(void) { int i; for (i = 0; i < config->num_entry; i++) if (is_vacant(config->entries + i)) return config->entries + i; return NULL; } static __inline void free_entry(dhcp_entry_t *entry) { memset(entry->mac, 0, 6); } uint8_t *find_dhcp_option(uint8_t *attrs, int size, uint8_t attr) { int i = 0; while ((i + 1) < size) { int next = i + attrs[i + 1] + 2; if (next > size) return NULL; if (attrs[i] == attr) return attrs + i; i = next; } return NULL; } int fill_options(void *dest, uint8_t msg_type, const char *domain, ip_addr_t dns, int lease_time, ip_addr_t serverid, ip_addr_t router, ip_addr_t subnet) { uint8_t *ptr = (uint8_t *)dest; /* ACK message type */ *ptr++ = 53; *ptr++ = 1; *ptr++ = msg_type; /* dhcp server identifier */ *ptr++ = DHCP_SERVERID; *ptr++ = 4; set_ip(ptr, serverid); ptr += 4; /* lease time */ *ptr++ = DHCP_LEASETIME; *ptr++ = 4; *ptr++ = (lease_time >> 24) & 0xFF; *ptr++ = (lease_time >> 16) & 0xFF; *ptr++ = (lease_time >> 8) & 0xFF; *ptr++ = (lease_time >> 0) & 0xFF; /* subnet mask */ *ptr++ = DHCP_SUBNETMASK; *ptr++ = 4; set_ip(ptr, subnet); ptr += 4; /* router */ if (router.addr != 0) { *ptr++ = DHCP_ROUTER; *ptr++ = 4; set_ip(ptr, router); ptr += 4; } /* domain name */ if (domain != NULL) { int len = strlen(domain); *ptr++ = DHCP_DNSDOMAIN; *ptr++ = len; memcpy(ptr, domain, len); ptr += len; } /* domain name server (DNS) */ if (dns.addr != 0) { *ptr++ = DHCP_DNSSERVER; *ptr++ = 4; set_ip(ptr, dns); ptr += 4; } /* end */ *ptr++ = DHCP_END; return ptr - (uint8_t *)dest; } static void udp_recv_proc(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) { uint8_t *ptr; dhcp_entry_t *entry; struct pbuf *pp; struct netif *netif = netif_get_by_index(p->if_idx); (void)arg; (void)addr; unsigned n = p->len; if (n > sizeof(dhcp_data)) n = sizeof(dhcp_data); memcpy(&dhcp_data, p->payload, n); switch (dhcp_data.dp_options[2]) { case DHCP_DISCOVER: entry = entry_by_mac(dhcp_data.dp_chaddr); if (entry == NULL) entry = vacant_address(); if (entry == NULL) break; dhcp_data.dp_op = 2; /* reply */ dhcp_data.dp_secs = 0; dhcp_data.dp_flags = 0; set_ip(dhcp_data.dp_yiaddr, entry->addr); memcpy(dhcp_data.dp_magic, magic_cookie, 4); memset(dhcp_data.dp_options, 0, sizeof(dhcp_data.dp_options)); fill_options(dhcp_data.dp_options, DHCP_OFFER, config->domain, config->dns, entry->lease, *netif_ip4_addr(netif), config->router, *netif_ip4_netmask(netif)); pp = pbuf_alloc(PBUF_TRANSPORT, sizeof(dhcp_data), PBUF_POOL); if (pp == NULL) break; memcpy(pp->payload, &dhcp_data, sizeof(dhcp_data)); udp_sendto(upcb, pp, IP_ADDR_BROADCAST, port); pbuf_free(pp); break; case DHCP_REQUEST: /* 1. find requested ipaddr in option list */ ptr = find_dhcp_option(dhcp_data.dp_options, sizeof(dhcp_data.dp_options), DHCP_IPADDRESS); if (ptr == NULL) break; if (ptr[1] != 4) break; ptr += 2; /* 2. does hw-address registered? */ entry = entry_by_mac(dhcp_data.dp_chaddr); if (entry != NULL) free_entry(entry); /* 3. find requested ipaddr */ entry = entry_by_ip(get_ip(ptr)); if (entry == NULL) break; if (!is_vacant(entry)) break; /* 4. fill struct fields */ memcpy(dhcp_data.dp_yiaddr, ptr, 4); dhcp_data.dp_op = 2; /* reply */ dhcp_data.dp_secs = 0; dhcp_data.dp_flags = 0; memcpy(dhcp_data.dp_magic, magic_cookie, 4); /* 5. fill options */ memset(dhcp_data.dp_options, 0, sizeof(dhcp_data.dp_options)); fill_options(dhcp_data.dp_options, DHCP_ACK, config->domain, config->dns, entry->lease, *netif_ip4_addr(netif), config->router, *netif_ip4_netmask(netif)); /* 6. send ACK */ pp = pbuf_alloc(PBUF_TRANSPORT, sizeof(dhcp_data), PBUF_POOL); if (pp == NULL) break; memcpy(entry->mac, dhcp_data.dp_chaddr, 6); memcpy(pp->payload, &dhcp_data, sizeof(dhcp_data)); udp_sendto(upcb, pp, IP_ADDR_BROADCAST, port); pbuf_free(pp); break; default: break; } pbuf_free(p); } err_t dhserv_init(const dhcp_config_t *c) { err_t err; udp_init(); dhserv_free(); pcb = udp_new(); if (pcb == NULL) return ERR_MEM; err = udp_bind(pcb, IP_ADDR_ANY, c->port); if (err != ERR_OK) { dhserv_free(); return err; } udp_recv(pcb, udp_recv_proc, NULL); config = c; return ERR_OK; } void dhserv_free(void) { if (pcb == NULL) return; udp_remove(pcb); pcb = NULL; } ================================================ FILE: lib/lwip-port/server/dhserver.h ================================================ /* * The MIT License (MIT) * * Copyright (c) 2015 by Sergey Fetisov * * 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. */ /* * version: 1.0 demo (7.02.2015) * brief: tiny dhcp ipv4 server using lwip (pcb) * ref: https://lists.gnu.org/archive/html/lwip-users/2012-12/msg00016.html */ #ifndef DHSERVER_H #define DHSERVER_H #include #include #include #include #include "lwip/err.h" #include "lwip/udp.h" #include "netif/etharp.h" typedef struct dhcp_entry { uint8_t mac[6]; ip_addr_t addr; uint32_t lease; } dhcp_entry_t; typedef struct dhcp_config { ip_addr_t router; uint16_t port; ip_addr_t dns; const char *domain; int num_entry; dhcp_entry_t *entries; } dhcp_config_t; err_t dhserv_init(const dhcp_config_t *config); void dhserv_free(void); #endif /* DHSERVER_H */ ================================================ FILE: lib/lwip-port/server/dnserver.c ================================================ /* * The MIT License (MIT) * * Copyright (c) 2015 by Sergey Fetisov * * 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. */ /* * version: 1.0 demo (7.02.2015) * brief: tiny dns ipv4 server using lwip (pcb) */ #include "dnserver.h" #define DNS_MAX_HOST_NAME_LEN 128 static struct udp_pcb *pcb = NULL; dns_query_proc_t query_proc = NULL; #pragma pack(push, 1) typedef struct { #if BYTE_ORDER == LITTLE_ENDIAN uint8_t rd: 1, /* Recursion Desired */ tc: 1, /* Truncation Flag */ aa: 1, /* Authoritative Answer Flag */ opcode: 4, /* Operation code */ qr: 1; /* Query/Response Flag */ uint8_t rcode: 4, /* Response Code */ z: 3, /* Zero */ ra: 1; /* Recursion Available */ #else uint8_t qr: 1, /* Query/Response Flag */ opcode: 4, /* Operation code */ aa: 1, /* Authoritative Answer Flag */ tc: 1, /* Truncation Flag */ rd: 1; /* Recursion Desired */ uint8_t ra: 1, /* Recursion Available */ z: 3, /* Zero */ rcode: 4; /* Response Code */ #endif } dns_header_flags_t; typedef struct { uint16_t id; dns_header_flags_t flags; uint16_t n_record[4]; } dns_header_t; typedef struct dns_answer { uint16_t name; uint16_t type; uint16_t Class; uint32_t ttl; uint16_t len; uint32_t addr; } dns_answer_t; #pragma pack(pop) typedef struct dns_query { char name[DNS_MAX_HOST_NAME_LEN]; uint16_t type; uint16_t Class; } dns_query_t; static uint16_t get_uint16(const uint8_t *pnt) { uint16_t result; memcpy(&result, pnt, sizeof(result)); return result; } static int parse_next_query(void *data, int size, dns_query_t *query) { int len; int lables; uint8_t *ptr; len = 0; lables = 0; ptr = (uint8_t *)data; while (true) { uint8_t lable_len; if (size <= 0) return -1; lable_len = *ptr++; size--; if (lable_len == 0) break; if (lables > 0) { if (len == DNS_MAX_HOST_NAME_LEN) return -2; query->name[len++] = '.'; } if (lable_len > size) return -1; if (len + lable_len >= DNS_MAX_HOST_NAME_LEN) return -2; memcpy(&query->name[len], ptr, lable_len); len += lable_len; ptr += lable_len; size -= lable_len; lables++; } if (size < 4) return -1; query->name[len] = 0; query->type = get_uint16(ptr); ptr += 2; query->Class = get_uint16(ptr); ptr += 2; return ptr - (uint8_t *)data; } static void udp_recv_proc(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) { int len; dns_header_t *header; static dns_query_t query; struct pbuf *out; ip_addr_t host_addr; dns_answer_t *answer; (void)arg; if (p->len <= sizeof(dns_header_t)) goto error; header = (dns_header_t *)p->payload; if (header->flags.qr != 0) goto error; if (ntohs(header->n_record[0]) != 1) goto error; len = parse_next_query(header + 1, p->len - sizeof(dns_header_t), &query); if (len < 0) goto error; if (!query_proc(query.name, &host_addr)) goto error; len += sizeof(dns_header_t); out = pbuf_alloc(PBUF_TRANSPORT, len + 16, PBUF_POOL); if (out == NULL) goto error; memcpy(out->payload, p->payload, len); header = (dns_header_t *)out->payload; header->flags.qr = 1; header->n_record[1] = htons(1); answer = (struct dns_answer *)((uint8_t *)out->payload + len); answer->name = htons(0xC00C); answer->type = htons(1); answer->Class = htons(1); answer->ttl = htonl(32); answer->len = htons(4); answer->addr = host_addr.addr; udp_sendto(upcb, out, addr, port); pbuf_free(out); error: pbuf_free(p); } err_t dnserv_init(const ip_addr_t *bind, uint16_t port, dns_query_proc_t qp) { err_t err; udp_init(); dnserv_free(); pcb = udp_new(); if (pcb == NULL) return ERR_MEM; err = udp_bind(pcb, bind, port); if (err != ERR_OK) { dnserv_free(); return err; } udp_recv(pcb, udp_recv_proc, NULL); query_proc = qp; return ERR_OK; } void dnserv_free() { if (pcb == NULL) return; udp_remove(pcb); pcb = NULL; } ================================================ FILE: lib/lwip-port/server/dnserver.h ================================================ /* * The MIT License (MIT) * * Copyright (c) 2015 by Sergey Fetisov * * 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. */ /* * version: 1.0 demo (7.02.2015) * brief: tiny dns ipv4 server using lwip (pcb) */ #ifndef DNSERVER #define DNSERVER #include #include #include #include #include "lwip/def.h" #include "lwip/err.h" #include "lwip/udp.h" #include "netif/etharp.h" typedef bool (*dns_query_proc_t)(const char *name, ip_addr_t *addr); err_t dnserv_init(const ip_addr_t *bind, uint16_t port, dns_query_proc_t query_proc); void dnserv_free(void); #endif ================================================ FILE: lib/rndis/ndis.h ================================================ /* This file has been prepared for Doxygen automatic documentation generation.*/ /*! \file ndis.h *************************************************************** * * \brief * This file contains the possible external configuration of the USB. * * \addtogroup usbstick * * ******************************************************************************/ /** \ingroup usbstick \defgroup RNDIS RNDIS Support @{ */ /* * ndis.h * * Modified by Colin O'Flynn * ntddndis.h modified by Benedikt Spranger * * Thanks to the cygwin development team, * espacially to Casper S. Hornstrup * * THIS SOFTWARE IS NOT COPYRIGHTED * * This source code is offered for use in the public domain. You may * use, modify or distribute it freely. * * This code is distributed in the hope that it will be useful but * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY * DISCLAIMED. This includes but is not limited to warranties of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * */ #ifndef _LINUX_NDIS_H #define _LINUX_NDIS_H #define NDIS_STATUS_MULTICAST_FULL 0xC0010009 #define NDIS_STATUS_MULTICAST_EXISTS 0xC001000A #define NDIS_STATUS_MULTICAST_NOT_FOUND 0xC001000B /* from drivers/net/sk98lin/h/skgepnmi.h */ #define OID_PNP_CAPABILITIES 0xFD010100 #define OID_PNP_SET_POWER 0xFD010101 #define OID_PNP_QUERY_POWER 0xFD010102 #define OID_PNP_ADD_WAKE_UP_PATTERN 0xFD010103 #define OID_PNP_REMOVE_WAKE_UP_PATTERN 0xFD010104 #define OID_PNP_ENABLE_WAKE_UP 0xFD010106 enum NDIS_DEVICE_POWER_STATE { NdisDeviceStateUnspecified = 0, NdisDeviceStateD0, NdisDeviceStateD1, NdisDeviceStateD2, NdisDeviceStateD3, NdisDeviceStateMaximum }; struct NDIS_PM_WAKE_UP_CAPABILITIES { enum NDIS_DEVICE_POWER_STATE MinMagicPacketWakeUp; enum NDIS_DEVICE_POWER_STATE MinPatternWakeUp; enum NDIS_DEVICE_POWER_STATE MinLinkChangeWakeUp; }; /* NDIS_PNP_CAPABILITIES.Flags constants */ #define NDIS_DEVICE_WAKE_UP_ENABLE 0x00000001 #define NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE 0x00000002 #define NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE 0x00000004 /* struct NDIS_PNP_CAPABILITIES { __le32 Flags; struct NDIS_PM_WAKE_UP_CAPABILITIES WakeUpCapabilities; }; struct NDIS_PM_PACKET_PATTERN { __le32 Priority; __le32 Reserved; __le32 MaskSize; __le32 PatternOffset; __le32 PatternSize; __le32 PatternFlags; }; */ /* Required Object IDs (OIDs) */ #define OID_GEN_SUPPORTED_LIST 0x00010101 #define OID_GEN_HARDWARE_STATUS 0x00010102 #define OID_GEN_MEDIA_SUPPORTED 0x00010103 #define OID_GEN_MEDIA_IN_USE 0x00010104 #define OID_GEN_MAXIMUM_LOOKAHEAD 0x00010105 #define OID_GEN_MAXIMUM_FRAME_SIZE 0x00010106 #define OID_GEN_LINK_SPEED 0x00010107 #define OID_GEN_TRANSMIT_BUFFER_SPACE 0x00010108 #define OID_GEN_RECEIVE_BUFFER_SPACE 0x00010109 #define OID_GEN_TRANSMIT_BLOCK_SIZE 0x0001010A #define OID_GEN_RECEIVE_BLOCK_SIZE 0x0001010B #define OID_GEN_VENDOR_ID 0x0001010C #define OID_GEN_VENDOR_DESCRIPTION 0x0001010D #define OID_GEN_CURRENT_PACKET_FILTER 0x0001010E #define OID_GEN_CURRENT_LOOKAHEAD 0x0001010F #define OID_GEN_DRIVER_VERSION 0x00010110 #define OID_GEN_MAXIMUM_TOTAL_SIZE 0x00010111 #define OID_GEN_PROTOCOL_OPTIONS 0x00010112 #define OID_GEN_MAC_OPTIONS 0x00010113 #define OID_GEN_MEDIA_CONNECT_STATUS 0x00010114 #define OID_GEN_MAXIMUM_SEND_PACKETS 0x00010115 #define OID_GEN_VENDOR_DRIVER_VERSION 0x00010116 #define OID_GEN_SUPPORTED_GUIDS 0x00010117 #define OID_GEN_NETWORK_LAYER_ADDRESSES 0x00010118 #define OID_GEN_TRANSPORT_HEADER_OFFSET 0x00010119 #define OID_GEN_MACHINE_NAME 0x0001021A #define OID_GEN_RNDIS_CONFIG_PARAMETER 0x0001021B #define OID_GEN_VLAN_ID 0x0001021C /* Optional OIDs */ #define OID_GEN_MEDIA_CAPABILITIES 0x00010201 #define OID_GEN_PHYSICAL_MEDIUM 0x00010202 /* Required statistics OIDs */ #define OID_GEN_XMIT_OK 0x00020101 #define OID_GEN_RCV_OK 0x00020102 #define OID_GEN_XMIT_ERROR 0x00020103 #define OID_GEN_RCV_ERROR 0x00020104 #define OID_GEN_RCV_NO_BUFFER 0x00020105 /* Optional statistics OIDs */ #define OID_GEN_DIRECTED_BYTES_XMIT 0x00020201 #define OID_GEN_DIRECTED_FRAMES_XMIT 0x00020202 #define OID_GEN_MULTICAST_BYTES_XMIT 0x00020203 #define OID_GEN_MULTICAST_FRAMES_XMIT 0x00020204 #define OID_GEN_BROADCAST_BYTES_XMIT 0x00020205 #define OID_GEN_BROADCAST_FRAMES_XMIT 0x00020206 #define OID_GEN_DIRECTED_BYTES_RCV 0x00020207 #define OID_GEN_DIRECTED_FRAMES_RCV 0x00020208 #define OID_GEN_MULTICAST_BYTES_RCV 0x00020209 #define OID_GEN_MULTICAST_FRAMES_RCV 0x0002020A #define OID_GEN_BROADCAST_BYTES_RCV 0x0002020B #define OID_GEN_BROADCAST_FRAMES_RCV 0x0002020C #define OID_GEN_RCV_CRC_ERROR 0x0002020D #define OID_GEN_TRANSMIT_QUEUE_LENGTH 0x0002020E #define OID_GEN_GET_TIME_CAPS 0x0002020F #define OID_GEN_GET_NETCARD_TIME 0x00020210 #define OID_GEN_NETCARD_LOAD 0x00020211 #define OID_GEN_DEVICE_PROFILE 0x00020212 #define OID_GEN_INIT_TIME_MS 0x00020213 #define OID_GEN_RESET_COUNTS 0x00020214 #define OID_GEN_MEDIA_SENSE_COUNTS 0x00020215 #define OID_GEN_FRIENDLY_NAME 0x00020216 #define OID_GEN_MINIPORT_INFO 0x00020217 #define OID_GEN_RESET_VERIFY_PARAMETERS 0x00020218 /* IEEE 802.3 (Ethernet) OIDs */ #define NDIS_802_3_MAC_OPTION_PRIORITY 0x00000001 #define OID_802_3_PERMANENT_ADDRESS 0x01010101 #define OID_802_3_CURRENT_ADDRESS 0x01010102 #define OID_802_3_MULTICAST_LIST 0x01010103 #define OID_802_3_MAXIMUM_LIST_SIZE 0x01010104 #define OID_802_3_MAC_OPTIONS 0x01010105 #define OID_802_3_RCV_ERROR_ALIGNMENT 0x01020101 #define OID_802_3_XMIT_ONE_COLLISION 0x01020102 #define OID_802_3_XMIT_MORE_COLLISIONS 0x01020103 #define OID_802_3_XMIT_DEFERRED 0x01020201 #define OID_802_3_XMIT_MAX_COLLISIONS 0x01020202 #define OID_802_3_RCV_OVERRUN 0x01020203 #define OID_802_3_XMIT_UNDERRUN 0x01020204 #define OID_802_3_XMIT_HEARTBEAT_FAILURE 0x01020205 #define OID_802_3_XMIT_TIMES_CRS_LOST 0x01020206 #define OID_802_3_XMIT_LATE_COLLISIONS 0x01020207 /* Wireless LAN OIDs */ /* Mandatory */ #define OID_802_11_BSSID 0x0D010101 /* Q S */ #define OID_802_11_SSID 0x0D010102 /* Q S */ #define OID_802_11_NETWORK_TYPE_IN_USE 0x0D010204 /* Q S */ #define OID_802_11_RSSI 0x0D010206 /* Q I */ #define OID_802_11_BSSID_LIST 0x0D010217 /* Q */ #define OID_802_11_BSSID_LIST_SCAN 0x0D01011A /* S */ #define OID_802_11_INFRASTRUCTURE_MODE 0x0D010108 /* Q S */ #define OID_802_11_SUPPORTED_RATES 0x0D01020E /* Q */ #define OID_802_11_CONFIGURATION 0x0D010211 /* Q S */ #define OID_802_11_ADD_WEP 0x0D010113 /* S */ #define OID_802_11_WEP_STATUS 0x0D01011B /* Q S */ #define OID_802_11_REMOVE_WEP 0x0D010114 /* S */ #define OID_802_11_DISASSOCIATE 0x0D010115 /* S */ #define OID_802_11_AUTHENTICATION_MODE 0x0D010118 /* Q S */ #define OID_802_11_RELOAD_DEFAULTS 0x0D01011C /* S */ /* OID_GEN_MINIPORT_INFO constants */ #define NDIS_MINIPORT_BUS_MASTER 0x00000001 #define NDIS_MINIPORT_WDM_DRIVER 0x00000002 #define NDIS_MINIPORT_SG_LIST 0x00000004 #define NDIS_MINIPORT_SUPPORTS_MEDIA_QUERY 0x00000008 #define NDIS_MINIPORT_INDICATES_PACKETS 0x00000010 #define NDIS_MINIPORT_IGNORE_PACKET_QUEUE 0x00000020 #define NDIS_MINIPORT_IGNORE_REQUEST_QUEUE 0x00000040 #define NDIS_MINIPORT_IGNORE_TOKEN_RING_ERRORS 0x00000080 #define NDIS_MINIPORT_INTERMEDIATE_DRIVER 0x00000100 #define NDIS_MINIPORT_IS_NDIS_5 0x00000200 #define NDIS_MINIPORT_IS_CO 0x00000400 #define NDIS_MINIPORT_DESERIALIZE 0x00000800 #define NDIS_MINIPORT_REQUIRES_MEDIA_POLLING 0x00001000 #define NDIS_MINIPORT_SUPPORTS_MEDIA_SENSE 0x00002000 #define NDIS_MINIPORT_NETBOOT_CARD 0x00004000 #define NDIS_MINIPORT_PM_SUPPORTED 0x00008000 #define NDIS_MINIPORT_SUPPORTS_MAC_ADDRESS_OVERWRITE 0x00010000 #define NDIS_MINIPORT_USES_SAFE_BUFFER_APIS 0x00020000 #define NDIS_MINIPORT_HIDDEN 0x00040000 #define NDIS_MINIPORT_SWENUM 0x00080000 #define NDIS_MINIPORT_SURPRISE_REMOVE_OK 0x00100000 #define NDIS_MINIPORT_NO_HALT_ON_SUSPEND 0x00200000 #define NDIS_MINIPORT_HARDWARE_DEVICE 0x00400000 #define NDIS_MINIPORT_SUPPORTS_CANCEL_SEND_PACKETS 0x00800000 #define NDIS_MINIPORT_64BITS_DMA 0x01000000 #define NDIS_MEDIUM_802_3 0x00000000 #define NDIS_MEDIUM_802_5 0x00000001 #define NDIS_MEDIUM_FDDI 0x00000002 #define NDIS_MEDIUM_WAN 0x00000003 #define NDIS_MEDIUM_LOCAL_TALK 0x00000004 #define NDIS_MEDIUM_DIX 0x00000005 #define NDIS_MEDIUM_ARCENT_RAW 0x00000006 #define NDIS_MEDIUM_ARCENT_878_2 0x00000007 #define NDIS_MEDIUM_ATM 0x00000008 #define NDIS_MEDIUM_WIRELESS_LAN 0x00000009 #define NDIS_MEDIUM_IRDA 0x0000000A #define NDIS_MEDIUM_BPC 0x0000000B #define NDIS_MEDIUM_CO_WAN 0x0000000C #define NDIS_MEDIUM_1394 0x0000000D #define NDIS_PACKET_TYPE_DIRECTED 0x00000001 #define NDIS_PACKET_TYPE_MULTICAST 0x00000002 #define NDIS_PACKET_TYPE_ALL_MULTICAST 0x00000004 #define NDIS_PACKET_TYPE_BROADCAST 0x00000008 #define NDIS_PACKET_TYPE_SOURCE_ROUTING 0x00000010 #define NDIS_PACKET_TYPE_PROMISCUOUS 0x00000020 #define NDIS_PACKET_TYPE_SMT 0x00000040 #define NDIS_PACKET_TYPE_ALL_LOCAL 0x00000080 #define NDIS_PACKET_TYPE_GROUP 0x00000100 #define NDIS_PACKET_TYPE_ALL_FUNCTIONAL 0x00000200 #define NDIS_PACKET_TYPE_FUNCTIONAL 0x00000400 #define NDIS_PACKET_TYPE_MAC_FRAME 0x00000800 #define NDIS_MEDIA_STATE_CONNECTED 0x00000000 #define NDIS_MEDIA_STATE_DISCONNECTED 0x00000001 #define NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA 0x00000001 #define NDIS_MAC_OPTION_RECEIVE_SERIALIZED 0x00000002 #define NDIS_MAC_OPTION_TRANSFERS_NOT_PEND 0x00000004 #define NDIS_MAC_OPTION_NO_LOOPBACK 0x00000008 #define NDIS_MAC_OPTION_FULL_DUPLEX 0x00000010 #define NDIS_MAC_OPTION_EOTX_INDICATION 0x00000020 #define NDIS_MAC_OPTION_8021P_PRIORITY 0x00000040 #define NDIS_MAC_OPTION_RESERVED 0x80000000 #endif /* _LINUX_NDIS_H */ /** @} */ ================================================ FILE: lib/rndis/rndis.c ================================================ /* * The MIT License (MIT) * * Copyright (c) 2020 Peter Lawrence * * influenced by lrndis https://github.com/fetisov/lrndis * * 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. * */ /* this appears as either a RNDIS or CDC-ECM USB virtual network adapter; the OS picks its preference RNDIS should be valid on Linux and Windows hosts, and CDC-ECM should be valid on Linux and macOS hosts The MCU appears to the host as IP address 192.168.7.1, and provides a DHCP server, DNS server, and web server. */ /* Some smartphones *may* work with this implementation as well, but likely have limited (broken) drivers, and likely their manufacturer has not tested such functionality. Some code workarounds could be tried: The smartphone may only have an ECM driver, but refuse to automatically pick ECM (unlike the OSes above); try modifying ./examples/devices/net_lwip_webserver/usb_descriptors.c so that CONFIG_ID_ECM is default. The smartphone may be artificially picky about which Ethernet MAC address to recognize; if this happens, try changing the first byte of tud_network_mac_address[] below from 0x02 to 0x00 (clearing bit 1). */ #include "tusb.h" #include "server/dhserver.h" #include "server/dnserver.h" #include "lwip/init.h" #include "lwip/timeouts.h" #include /* lwip context */ static struct netif netif_data; /* shared between tud_network_recv_cb() and service_traffic() */ static struct pbuf *received_frame; /* this is used by this code, ./class/net/net_driver.c, and usb_descriptors.c */ /* ideally speaking, this should be generated from the hardware's unique ID (if available) */ /* it is suggested that the first byte is 0x02 to indicate a link-local address */ const uint8_t tud_network_mac_address[6] = {0x02, 0x02, 0x84, 0x6A, 0x96, 0x00}; /* network parameters of this MCU */ static const ip_addr_t ipaddr = IPADDR4_INIT_BYTES(192, 168, 7, 1); static const ip_addr_t netmask = IPADDR4_INIT_BYTES(255, 255, 255, 0); static const ip_addr_t gateway = IPADDR4_INIT_BYTES(0, 0, 0, 0); /* database IP addresses that can be offered to the host; this must be in RAM to store assigned MAC addresses */ static dhcp_entry_t entries[] = { /* mac ip address lease time */ {{0}, IPADDR4_INIT_BYTES(192, 168, 7, 2), 24 * 60 * 60}, {{0}, IPADDR4_INIT_BYTES(192, 168, 7, 3), 24 * 60 * 60}, {{0}, IPADDR4_INIT_BYTES(192, 168, 7, 4), 24 * 60 * 60}, }; static const dhcp_config_t dhcp_config = { .router = IPADDR4_INIT_BYTES(0, 0, 0, 0), /* router address (if any) */ .port = 67, /* listen port */ .dns = IPADDR4_INIT_BYTES(192, 168, 7, 1), /* dns server (if any) */ "usb", /* dns suffix */ TU_ARRAY_SIZE(entries), /* num entry */ entries /* entries */ }; static err_t linkoutput_fn(struct netif *netif, struct pbuf *p) { (void)netif; for (;;) { /* if TinyUSB isn't ready, we must signal back to lwip that there is nothing we can do */ if (!tud_ready()) return ERR_USE; /* if the network driver can accept another packet, we make it happen */ if (tud_network_can_xmit()) { tud_network_xmit(p, 0 /* unused for this example */); return ERR_OK; } /* transfer execution to TinyUSB in the hopes that it will finish transmitting the prior packet */ tud_task(); } } static err_t output_fn(struct netif *netif, struct pbuf *p, const ip_addr_t *addr) { return etharp_output(netif, p, addr); } static err_t netif_init_cb(struct netif *netif) { LWIP_ASSERT("netif != NULL", (netif != NULL)); netif->mtu = CFG_TUD_NET_MTU; netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_LINK_UP | NETIF_FLAG_UP; netif->state = NULL; netif->name[0] = 'E'; netif->name[1] = 'X'; netif->linkoutput = linkoutput_fn; netif->output = output_fn; return ERR_OK; } static void init_lwip(void) { struct netif *netif = &netif_data; lwip_init(); /* the lwip virtual MAC address must be different from the host's; to ensure this, we toggle the LSbit */ netif->hwaddr_len = sizeof(tud_network_mac_address); memcpy(netif->hwaddr, tud_network_mac_address, sizeof(tud_network_mac_address)); netif->hwaddr[5] ^= 0x01; netif = netif_add(netif, &ipaddr, &netmask, &gateway, NULL, netif_init_cb, ip_input); netif_set_default(netif); } /* handle any DNS requests from dns-server */ bool dns_query_proc(const char *name, ip_addr_t *addr) { if (0 == strcmp(name, "wizio.pico")) { *addr = ipaddr; return true; } return false; } bool tud_network_recv_cb(const uint8_t *src, uint16_t size) { /* this shouldn't happen, but if we get another packet before parsing the previous, we must signal our inability to accept it */ if (received_frame) return false; if (size) { struct pbuf *p = pbuf_alloc(PBUF_RAW, size, PBUF_POOL); if (p) { /* pbuf_alloc() has already initialized struct; all we need to do is copy the data */ memcpy(p->payload, src, size); /* store away the pointer for service_traffic() to later handle */ received_frame = p; } } return true; } uint16_t tud_network_xmit_cb(uint8_t *dst, void *ref, uint16_t arg) { struct pbuf *p = (struct pbuf *)ref; struct pbuf *q; uint16_t len = 0; (void)arg; /* unused for this example */ /* traverse the "pbuf chain"; see ./lwip/src/core/pbuf.c for more info */ for (q = p; q != NULL; q = q->next) { memcpy(dst, (char *)q->payload, q->len); dst += q->len; len += q->len; if (q->len == q->tot_len) break; } return len; } static void service_traffic(void) { /* handle any packet received by tud_network_recv_cb() */ if (received_frame) { ethernet_input(received_frame, &netif_data); pbuf_free(received_frame); received_frame = NULL; tud_network_recv_renew(); } sys_check_timeouts(); } void tud_network_init_cb(void) { /* if the network is re-initializing and we have a leftover packet, we must do a cleanup */ if (received_frame) { pbuf_free(received_frame); received_frame = NULL; } } int rndis_init(void) { /* initialize TinyUSB */ tusb_init(); /* initialize lwip, dhcp-server, dns-server, and http */ init_lwip(); while (!netif_is_up(&netif_data)) ; while (dhserv_init(&dhcp_config) != ERR_OK) ; while (dnserv_init(&ipaddr, 53, dns_query_proc) != ERR_OK) ; httpd_init(); return 0; } void rndis_task(void) { tud_task(); service_traffic(); } /* lwip has provision for using a mutex, when applicable */ sys_prot_t sys_arch_protect(void) { return 0; } void sys_arch_unprotect(sys_prot_t pval) { (void)pval; } /* lwip needs a millisecond time source, and the TinyUSB board support code has one available */ uint32_t sys_now(void) { return to_ms_since_boot(get_absolute_time()); } ================================================ FILE: lib/rndis/rndis.h ================================================ #ifndef RNDIS_H_ #define RNDIS_H_ #ifdef __cplusplus extern "C" { #endif int rndis_init(void); void rndis_task(void); #ifdef __cplusplus } #endif #endif ================================================ FILE: lib/rndis/rndis_protocol.h ================================================ /** * \file rndis_protocol.h * RNDIS Defines * * \author * Colin O'Flynn * * \addtogroup usbstick */ /* Copyright (c) 2008 Colin O'Flynn Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef _RNDIS_H #define _RNDIS_H /** \addtogroup RNDIS @{ */ #include #define RNDIS_MAJOR_VERSION 1 #define RNDIS_MINOR_VERSION 0 #define RNDIS_STATUS_SUCCESS 0X00000000 #define RNDIS_STATUS_FAILURE 0XC0000001 #define RNDIS_STATUS_INVALID_DATA 0XC0010015 #define RNDIS_STATUS_NOT_SUPPORTED 0XC00000BB #define RNDIS_STATUS_MEDIA_CONNECT 0X4001000B #define RNDIS_STATUS_MEDIA_DISCONNECT 0X4001000C /* Message set for Connectionless (802.3) Devices */ #define REMOTE_NDIS_PACKET_MSG 0x00000001 #define REMOTE_NDIS_INITIALIZE_MSG 0X00000002 #define REMOTE_NDIS_HALT_MSG 0X00000003 #define REMOTE_NDIS_QUERY_MSG 0X00000004 #define REMOTE_NDIS_SET_MSG 0X00000005 #define REMOTE_NDIS_RESET_MSG 0X00000006 #define REMOTE_NDIS_INDICATE_STATUS_MSG 0X00000007 #define REMOTE_NDIS_KEEPALIVE_MSG 0X00000008 #define REMOTE_NDIS_INITIALIZE_CMPLT 0X80000002 #define REMOTE_NDIS_QUERY_CMPLT 0X80000004 #define REMOTE_NDIS_SET_CMPLT 0X80000005 #define REMOTE_NDIS_RESET_CMPLT 0X80000006 #define REMOTE_NDIS_KEEPALIVE_CMPLT 0X80000008 typedef uint32_t rndis_MessageType_t; typedef uint32_t rndis_MessageLength_t; typedef uint32_t rndis_RequestId_t; typedef uint32_t rndis_MajorVersion_t; typedef uint32_t rndis_MinorVersion_t; typedef uint32_t rndis_MaxTransferSize_t; typedef uint32_t rndis_Status_t; /* Device Flags */ #define RNDIS_DF_CONNECTIONLESS 0x00000001 #define RNDIS_DF_CONNECTION_ORIENTED 0x00000002 typedef uint32_t rndis_DeviceFlags_t; /* Mediums */ #define RNDIS_MEDIUM_802_3 0x00000000 typedef uint32_t rndis_Medium_t; typedef uint32_t rndis_MaxPacketsPerTransfer_t; typedef uint32_t rndis_PacketAlignmentFactor_t; typedef uint32_t rndis_AfListOffset_t; typedef uint32_t rndis_AfListSize_t; /*** Remote NDIS Generic Message type ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; } rndis_generic_msg_t; /*** Remote NDIS Initialize Message ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_MajorVersion_t MajorVersion; rndis_MinorVersion_t MinorVersion; rndis_MaxTransferSize_t MaxTransferSize; } rndis_initialize_msg_t; /* Response: */ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_Status_t Status; rndis_MajorVersion_t MajorVersion; rndis_MinorVersion_t MinorVersion; rndis_DeviceFlags_t DeviceFlags; rndis_Medium_t Medium; rndis_MaxPacketsPerTransfer_t MaxPacketsPerTransfer; rndis_MaxTransferSize_t MaxTransferSize; rndis_PacketAlignmentFactor_t PacketAlignmentFactor; rndis_AfListOffset_t AfListOffset; rndis_AfListSize_t AfListSize; } rndis_initialize_cmplt_t; /*** Remote NDIS Halt Message ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; } rndis_halt_msg_t; typedef uint32_t rndis_Oid_t; typedef uint32_t rndis_InformationBufferLength_t; typedef uint32_t rndis_InformationBufferOffset_t; typedef uint32_t rndis_DeviceVcHandle_t; /*** Remote NDIS Query Message ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_Oid_t Oid; rndis_InformationBufferLength_t InformationBufferLength; rndis_InformationBufferOffset_t InformationBufferOffset; rndis_DeviceVcHandle_t DeviceVcHandle; } rndis_query_msg_t; /* Response: */ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_Status_t Status; rndis_InformationBufferLength_t InformationBufferLength; rndis_InformationBufferOffset_t InformationBufferOffset; } rndis_query_cmplt_t; /*** Remote NDIS Set Message ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_Oid_t Oid; rndis_InformationBufferLength_t InformationBufferLength; rndis_InformationBufferOffset_t InformationBufferOffset; rndis_DeviceVcHandle_t DeviceVcHandle; } rndis_set_msg_t; /* Response */ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_Status_t Status; }rndis_set_cmplt_t; /* Information buffer layout for OID_GEN_RNDIS_CONFIG_PARAMETER */ typedef uint32_t rndis_ParameterNameOffset_t; typedef uint32_t rndis_ParameterNameLength_t; typedef uint32_t rndis_ParameterType_t; typedef uint32_t rndis_ParameterValueOffset_t; typedef uint32_t rndis_ParameterValueLength_t; #define PARAMETER_TYPE_STRING 2 #define PARAMETER_TYPE_NUMERICAL 0 typedef struct{ rndis_ParameterNameOffset_t ParameterNameOffset; rndis_ParameterNameLength_t ParameterNameLength; rndis_ParameterType_t ParameterType; rndis_ParameterValueOffset_t ParameterValueOffset; rndis_ParameterValueLength_t ParameterValueLength; }rndis_config_parameter_t; typedef uint32_t rndis_Reserved_t; /*** Remote NDIS Soft Reset Message ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_Reserved_t Reserved; } rndis_reset_msg_t; typedef uint32_t rndis_AddressingReset_t; /* Response: */ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_Status_t Status; rndis_AddressingReset_t AddressingReset; } rndis_reset_cmplt_t; /*** Remote NDIS Indicate Status Message ***/ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_Status_t Status; rndis_Status_t StatusBufferLength; rndis_Status_t StatusBufferOffset; } rndis_indicate_status_t; typedef uint32_t rndis_DiagStatus_t; typedef uint32_t rndis_ErrorOffset_t; typedef struct { rndis_DiagStatus_t DiagStatus; rndis_ErrorOffset_t ErrorOffset; }rndis_diagnostic_info_t; /*** Remote NDIS Keepalive Message */ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; }rndis_keepalive_msg_t; /* Response: */ typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_RequestId_t RequestId; rndis_Status_t Status; }rndis_keepalive_cmplt_t; /*** Remote NDIS Data Packet ***/ typedef uint32_t rndis_DataOffset_t; typedef uint32_t rndis_DataLength_t; typedef uint32_t rndis_OOBDataOffset_t; typedef uint32_t rndis_OOBDataLength_t; typedef uint32_t rndis_NumOOBDataElements_t; typedef uint32_t rndis_PerPacketInfoOffset_t; typedef uint32_t rndis_PerPacketInfoLength_t; typedef struct{ rndis_MessageType_t MessageType; rndis_MessageLength_t MessageLength; rndis_DataOffset_t DataOffset; rndis_DataLength_t DataLength; rndis_OOBDataOffset_t OOBDataOffset; rndis_OOBDataLength_t OOBDataLength; rndis_NumOOBDataElements_t NumOOBDataElements; rndis_PerPacketInfoOffset_t PerPacketInfoOffset; rndis_PerPacketInfoLength_t PerPacketInfoLength; rndis_DeviceVcHandle_t DeviceVcHandle; rndis_Reserved_t Reserved; }rndis_data_packet_t; typedef uint32_t rndis_ClassInformationOffset_t; typedef uint32_t rndis_Size_t; typedef uint32_t rndis_Type_t; typedef struct{ rndis_Size_t Size; rndis_Type_t Type; rndis_ClassInformationOffset_t ClassInformationType; }rndis_OOB_packet_t; #include "ndis.h" typedef enum rnids_state_e { rndis_uninitialized, rndis_initialized, rndis_data_initialized } rndis_state_t; typedef struct { uint32_t txok; uint32_t rxok; uint32_t txbad; uint32_t rxbad; } usb_eth_stat_t; #endif /* _RNDIS_H */ /** @} */ ================================================ FILE: lib/rndis/rndis_reports.c ================================================ /* The original version of this code was lrndis/usbd_rndis_core.c from https://github.com/fetisov/lrndis It has since been overhauled to suit this application */ /* * The MIT License (MIT) * * Copyright (c) 2015 by Sergey Fetisov * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include "class/net/net_device.h" #include "rndis_protocol.h" #define RNDIS_LINK_SPEED 12000000 /* Link baudrate (12Mbit/s for USB-FS) */ #define RNDIS_VENDOR "TinyUSB" /* NIC vendor name */ static const uint8_t *const station_hwaddr = tud_network_mac_address; static const uint8_t *const permanent_hwaddr = tud_network_mac_address; static usb_eth_stat_t usb_eth_stat = { 0, 0, 0, 0 }; static uint32_t oid_packet_filter = 0x0000000; static rndis_state_t rndis_state; CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN static uint8_t ndis_report[8] = { 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }; static const uint32_t OIDSupportedList[] = { OID_GEN_SUPPORTED_LIST, OID_GEN_HARDWARE_STATUS, OID_GEN_MEDIA_SUPPORTED, OID_GEN_MEDIA_IN_USE, OID_GEN_MAXIMUM_FRAME_SIZE, OID_GEN_LINK_SPEED, OID_GEN_TRANSMIT_BLOCK_SIZE, OID_GEN_RECEIVE_BLOCK_SIZE, OID_GEN_VENDOR_ID, OID_GEN_VENDOR_DESCRIPTION, OID_GEN_VENDOR_DRIVER_VERSION, OID_GEN_CURRENT_PACKET_FILTER, OID_GEN_MAXIMUM_TOTAL_SIZE, OID_GEN_PROTOCOL_OPTIONS, OID_GEN_MAC_OPTIONS, OID_GEN_MEDIA_CONNECT_STATUS, OID_GEN_MAXIMUM_SEND_PACKETS, OID_802_3_PERMANENT_ADDRESS, OID_802_3_CURRENT_ADDRESS, OID_802_3_MULTICAST_LIST, OID_802_3_MAXIMUM_LIST_SIZE, OID_802_3_MAC_OPTIONS }; #define OID_LIST_LENGTH TU_ARRAY_SIZE(OIDSupportedList) #define ENC_BUF_SIZE (OID_LIST_LENGTH * 4 + 32) static void *encapsulated_buffer; static void rndis_report(void) { netd_report(ndis_report, sizeof(ndis_report)); } static void rndis_query_cmplt32(int status, uint32_t data) { rndis_query_cmplt_t *c; c = (rndis_query_cmplt_t *)encapsulated_buffer; c->MessageType = REMOTE_NDIS_QUERY_CMPLT; c->MessageLength = sizeof(rndis_query_cmplt_t) + 4; c->InformationBufferLength = 4; c->InformationBufferOffset = 16; c->Status = status; memcpy(c + 1, &data, sizeof(data)); rndis_report(); } static void rndis_query_cmplt(int status, const void *data, int size) { rndis_query_cmplt_t *c; c = (rndis_query_cmplt_t *)encapsulated_buffer; c->MessageType = REMOTE_NDIS_QUERY_CMPLT; c->MessageLength = sizeof(rndis_query_cmplt_t) + size; c->InformationBufferLength = size; c->InformationBufferOffset = 16; c->Status = status; memcpy(c + 1, data, size); rndis_report(); } #define MAC_OPT NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA | \ NDIS_MAC_OPTION_RECEIVE_SERIALIZED | \ NDIS_MAC_OPTION_TRANSFERS_NOT_PEND | \ NDIS_MAC_OPTION_NO_LOOPBACK static const char *rndis_vendor = RNDIS_VENDOR; static void rndis_query(void) { switch (((rndis_query_msg_t *)encapsulated_buffer)->Oid) { case OID_GEN_SUPPORTED_LIST: rndis_query_cmplt(RNDIS_STATUS_SUCCESS, OIDSupportedList, 4 * OID_LIST_LENGTH); return; case OID_GEN_VENDOR_DRIVER_VERSION: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0x00001000); return; case OID_802_3_CURRENT_ADDRESS: rndis_query_cmplt(RNDIS_STATUS_SUCCESS, station_hwaddr, 6); return; case OID_802_3_PERMANENT_ADDRESS: rndis_query_cmplt(RNDIS_STATUS_SUCCESS, permanent_hwaddr, 6); return; case OID_GEN_MEDIA_SUPPORTED: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, NDIS_MEDIUM_802_3); return; case OID_GEN_MEDIA_IN_USE: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, NDIS_MEDIUM_802_3); return; case OID_GEN_PHYSICAL_MEDIUM: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, NDIS_MEDIUM_802_3); return; case OID_GEN_HARDWARE_STATUS: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0); return; case OID_GEN_LINK_SPEED: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, RNDIS_LINK_SPEED / 100); return; case OID_GEN_VENDOR_ID: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0x00FFFFFF); return; case OID_GEN_VENDOR_DESCRIPTION: rndis_query_cmplt(RNDIS_STATUS_SUCCESS, rndis_vendor, strlen(rndis_vendor) + 1); return; case OID_GEN_CURRENT_PACKET_FILTER: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, oid_packet_filter); return; case OID_GEN_MAXIMUM_FRAME_SIZE: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, CFG_TUD_NET_MTU - SIZEOF_ETH_HDR); return; case OID_GEN_MAXIMUM_TOTAL_SIZE: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, CFG_TUD_NET_MTU); return; case OID_GEN_TRANSMIT_BLOCK_SIZE: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, CFG_TUD_NET_MTU); return; case OID_GEN_RECEIVE_BLOCK_SIZE: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, CFG_TUD_NET_MTU); return; case OID_GEN_MEDIA_CONNECT_STATUS: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, NDIS_MEDIA_STATE_CONNECTED); return; case OID_GEN_RNDIS_CONFIG_PARAMETER: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0); return; case OID_802_3_MAXIMUM_LIST_SIZE: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 1); return; case OID_802_3_MULTICAST_LIST: rndis_query_cmplt32(RNDIS_STATUS_NOT_SUPPORTED, 0); return; case OID_802_3_MAC_OPTIONS: rndis_query_cmplt32(RNDIS_STATUS_NOT_SUPPORTED, 0); return; case OID_GEN_MAC_OPTIONS: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, /*MAC_OPT*/ 0); return; case OID_802_3_RCV_ERROR_ALIGNMENT: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0); return; case OID_802_3_XMIT_ONE_COLLISION: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0); return; case OID_802_3_XMIT_MORE_COLLISIONS: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0); return; case OID_GEN_XMIT_OK: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, usb_eth_stat.txok); return; case OID_GEN_RCV_OK: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, usb_eth_stat.rxok); return; case OID_GEN_RCV_ERROR: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, usb_eth_stat.rxbad); return; case OID_GEN_XMIT_ERROR: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, usb_eth_stat.txbad); return; case OID_GEN_RCV_NO_BUFFER: rndis_query_cmplt32(RNDIS_STATUS_SUCCESS, 0); return; default: rndis_query_cmplt(RNDIS_STATUS_FAILURE, NULL, 0); return; } } #define INFBUF ((uint8_t *)&(m->RequestId) + m->InformationBufferOffset) static void rndis_handle_config_parm(const char *data, int keyoffset, int valoffset, int keylen, int vallen) { (void)data; (void)keyoffset; (void)valoffset; (void)keylen; (void)vallen; } static void rndis_packetFilter(uint32_t newfilter) { (void)newfilter; } static void rndis_handle_set_msg(void) { rndis_set_cmplt_t *c; rndis_set_msg_t *m; rndis_Oid_t oid; c = (rndis_set_cmplt_t *)encapsulated_buffer; m = (rndis_set_msg_t *)encapsulated_buffer; oid = m->Oid; c->MessageType = REMOTE_NDIS_SET_CMPLT; c->MessageLength = sizeof(rndis_set_cmplt_t); c->Status = RNDIS_STATUS_SUCCESS; switch (oid) { /* Parameters set up in 'Advanced' tab */ case OID_GEN_RNDIS_CONFIG_PARAMETER: { rndis_config_parameter_t *p; char *ptr = (char *)m; ptr += sizeof(rndis_generic_msg_t); ptr += m->InformationBufferOffset; p = (rndis_config_parameter_t *) ((void*) ptr); rndis_handle_config_parm(ptr, p->ParameterNameOffset, p->ParameterValueOffset, p->ParameterNameLength, p->ParameterValueLength); } break; /* Mandatory general OIDs */ case OID_GEN_CURRENT_PACKET_FILTER: memcpy(&oid_packet_filter, INFBUF, 4); if (oid_packet_filter) { rndis_packetFilter(oid_packet_filter); rndis_state = rndis_data_initialized; } else { rndis_state = rndis_initialized; } break; case OID_GEN_CURRENT_LOOKAHEAD: break; case OID_GEN_PROTOCOL_OPTIONS: break; /* Mandatory 802_3 OIDs */ case OID_802_3_MULTICAST_LIST: break; /* Power Managment: fails for now */ case OID_PNP_ADD_WAKE_UP_PATTERN: case OID_PNP_REMOVE_WAKE_UP_PATTERN: case OID_PNP_ENABLE_WAKE_UP: default: c->Status = RNDIS_STATUS_FAILURE; break; } /* c->MessageID is same as before */ rndis_report(); return; } void rndis_class_set_handler(uint8_t *data, int size) { encapsulated_buffer = data; (void)size; switch (((rndis_generic_msg_t *)encapsulated_buffer)->MessageType) { case REMOTE_NDIS_INITIALIZE_MSG: { rndis_initialize_cmplt_t *m; m = ((rndis_initialize_cmplt_t *)encapsulated_buffer); /* m->MessageID is same as before */ m->MessageType = REMOTE_NDIS_INITIALIZE_CMPLT; m->MessageLength = sizeof(rndis_initialize_cmplt_t); m->MajorVersion = RNDIS_MAJOR_VERSION; m->MinorVersion = RNDIS_MINOR_VERSION; m->Status = RNDIS_STATUS_SUCCESS; m->DeviceFlags = RNDIS_DF_CONNECTIONLESS; m->Medium = RNDIS_MEDIUM_802_3; m->MaxPacketsPerTransfer = 1; m->MaxTransferSize = CFG_TUD_NET_MTU + sizeof(rndis_data_packet_t); m->PacketAlignmentFactor = 0; m->AfListOffset = 0; m->AfListSize = 0; rndis_state = rndis_initialized; rndis_report(); } break; case REMOTE_NDIS_QUERY_MSG: rndis_query(); break; case REMOTE_NDIS_SET_MSG: rndis_handle_set_msg(); break; case REMOTE_NDIS_RESET_MSG: { rndis_reset_cmplt_t * m; m = ((rndis_reset_cmplt_t *)encapsulated_buffer); rndis_state = rndis_uninitialized; m->MessageType = REMOTE_NDIS_RESET_CMPLT; m->MessageLength = sizeof(rndis_reset_cmplt_t); m->Status = RNDIS_STATUS_SUCCESS; m->AddressingReset = 1; /* Make it look like we did something */ /* m->AddressingReset = 0; - Windows halts if set to 1 for some reason */ rndis_report(); } break; case REMOTE_NDIS_KEEPALIVE_MSG: { rndis_keepalive_cmplt_t * m; m = (rndis_keepalive_cmplt_t *)encapsulated_buffer; m->MessageType = REMOTE_NDIS_KEEPALIVE_CMPLT; m->MessageLength = sizeof(rndis_keepalive_cmplt_t); m->Status = RNDIS_STATUS_SUCCESS; } /* We have data to send back */ rndis_report(); break; default: break; } } ================================================ FILE: platformio.ini ================================================ [platformio] default_envs = raspberry-pi-pico extra_configs = configs/*/env.ini [env] platform = wizio-pico board = raspberry-pi-pico framework = baremetal build_type = release build_flags = -D PICO_STDIO_UART -D PICO_USB -I $PROJECT_DIR/lib/rndis lib_deps = pico_bootsel_via_double_reset pico_multicore lwip-port lwip httpd rndis bblanchon/ArduinoJson@^6.18.5 https://github.com/FeralAI/MPG.git#01c3398938818b2bc55c9cf5235cc0fc5dbb79a6 targets = upload board_build.pio = lib/NeoPico/src/ws2812.pio ; extra_scripts = pre:build-web.py ;monitor_port = SERIAL_PORT ;monitor_speed = 115200 ================================================ FILE: src/display.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include #include "display.h" #include "storage.h" #include "pico/stdlib.h" #include "OneBitDisplay.h" uint8_t ucBackBuffer[1024]; OBDISP obd; string statusBar; inline void clearScreen(int render = 0) { obdFill(&obd, 0, render); } inline void drawHitbox(int startX, int startY, int buttonRadius, int buttonPadding, Gamepad *gamepad) { const int buttonMargin = buttonPadding + (buttonRadius * 2); // UDLR obdPreciseEllipse(&obd, startX, startY, buttonRadius, buttonRadius, 1, gamepad->pressedLeft()); obdPreciseEllipse(&obd, startX + buttonMargin, startY, buttonRadius, buttonRadius, 1, gamepad->pressedDown()); obdPreciseEllipse(&obd, startX + (buttonMargin * 1.875), startY + (buttonMargin / 2), buttonRadius, buttonRadius, 1, gamepad->pressedRight()); obdPreciseEllipse(&obd, startX + (buttonMargin * 2.25), startY + buttonMargin * 1.875, buttonRadius, buttonRadius, 1, gamepad->pressedUp()); // 8-button obdPreciseEllipse(&obd, startX + (buttonMargin * 2.75), startY, buttonRadius, buttonRadius, 1, gamepad->pressedB3()); obdPreciseEllipse(&obd, startX + (buttonMargin * 3.75), startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedB4()); obdPreciseEllipse(&obd, startX + (buttonMargin * 4.75), startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedR1()); obdPreciseEllipse(&obd, startX + (buttonMargin * 5.75), startY, buttonRadius, buttonRadius, 1, gamepad->pressedL1()); obdPreciseEllipse(&obd, startX + (buttonMargin * 2.75), startY + buttonMargin, buttonRadius, buttonRadius, 1, gamepad->pressedB1()); obdPreciseEllipse(&obd, startX + (buttonMargin * 3.75), startY + buttonMargin - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedB2()); obdPreciseEllipse(&obd, startX + (buttonMargin * 4.75), startY + buttonMargin - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedR2()); obdPreciseEllipse(&obd, startX + (buttonMargin * 5.75), startY + buttonMargin, buttonRadius, buttonRadius, 1, gamepad->pressedL2()); } inline void drawWasdBox(int startX, int startY, int buttonRadius, int buttonPadding, Gamepad *gamepad) { const int buttonMargin = buttonPadding + (buttonRadius * 2); // UDLR obdPreciseEllipse(&obd, startX, startY + buttonMargin * 0.5, buttonRadius, buttonRadius, 1, gamepad->pressedLeft()); obdPreciseEllipse(&obd, startX + buttonMargin, startY + buttonMargin * 0.875, buttonRadius, buttonRadius, 1, gamepad->pressedDown()); obdPreciseEllipse(&obd, startX + buttonMargin * 1.5, startY - buttonMargin * 0.125, buttonRadius, buttonRadius, 1, gamepad->pressedUp()); obdPreciseEllipse(&obd, startX + (buttonMargin * 2), startY + buttonMargin * 1.25, buttonRadius, buttonRadius, 1, gamepad->pressedRight()); // 8-button obdPreciseEllipse(&obd, startX + buttonMargin * 3.625, startY, buttonRadius, buttonRadius, 1, gamepad->pressedB3()); obdPreciseEllipse(&obd, startX + buttonMargin * 4.625, startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedB4()); obdPreciseEllipse(&obd, startX + buttonMargin * 5.625, startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedR1()); obdPreciseEllipse(&obd, startX + buttonMargin * 6.625, startY, buttonRadius, buttonRadius, 1, gamepad->pressedL1()); obdPreciseEllipse(&obd, startX + buttonMargin * 3.25, startY + buttonMargin, buttonRadius, buttonRadius, 1, gamepad->pressedB1()); obdPreciseEllipse(&obd, startX + buttonMargin * 4.25, startY + buttonMargin - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedB2()); obdPreciseEllipse(&obd, startX + buttonMargin * 5.25, startY + buttonMargin - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedR2()); obdPreciseEllipse(&obd, startX + buttonMargin * 6.25, startY + buttonMargin, buttonRadius, buttonRadius, 1, gamepad->pressedL2()); } inline void drawArcadeStick(int startX, int startY, int buttonRadius, int buttonPadding, Gamepad *gamepad) { const int buttonMargin = buttonPadding + (buttonRadius * 2); // UDLR obdPreciseEllipse(&obd, startX, startY + buttonMargin / 2, buttonRadius, buttonRadius, 1, gamepad->pressedLeft()); obdPreciseEllipse(&obd, startX + (buttonMargin * 0.875), startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedUp()); obdPreciseEllipse(&obd, startX + (buttonMargin * 0.875), startY + buttonMargin * 1.25, buttonRadius, buttonRadius, 1, gamepad->pressedDown()); obdPreciseEllipse(&obd, startX + (buttonMargin * 1.625), startY + buttonMargin / 2, buttonRadius, buttonRadius, 1, gamepad->pressedRight()); // 8-button obdPreciseEllipse(&obd, startX + buttonMargin * 3.125, startY, buttonRadius, buttonRadius, 1, gamepad->pressedB3()); obdPreciseEllipse(&obd, startX + buttonMargin * 4.125, startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedB4()); obdPreciseEllipse(&obd, startX + buttonMargin * 5.125, startY - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedR1()); obdPreciseEllipse(&obd, startX + buttonMargin * 6.125, startY, buttonRadius, buttonRadius, 1, gamepad->pressedL1()); obdPreciseEllipse(&obd, startX + buttonMargin * 2.875, startY + buttonMargin, buttonRadius, buttonRadius, 1, gamepad->pressedB1()); obdPreciseEllipse(&obd, startX + buttonMargin * 3.875, startY + buttonMargin - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedB2()); obdPreciseEllipse(&obd, startX + buttonMargin * 4.875, startY + buttonMargin - (buttonMargin / 4), buttonRadius, buttonRadius, 1, gamepad->pressedR2()); obdPreciseEllipse(&obd, startX + buttonMargin * 5.875, startY + buttonMargin, buttonRadius, buttonRadius, 1, gamepad->pressedL2()); } inline void drawStatusBar() { obdWriteString(&obd, 0, 0, 0, (char *)statusBar.c_str(), FONT_6x8, 0, 0); } void setStatusBar(Gamepad *gamepad) { // Limit to 21 chars with 6x8 font for now statusBar.clear(); switch (gamepad->options.inputMode) { case INPUT_MODE_HID: statusBar += "DINPUT"; break; case INPUT_MODE_SWITCH: statusBar += "SWITCH"; break; case INPUT_MODE_XINPUT: statusBar += "XINPUT"; break; case INPUT_MODE_CONFIG: statusBar += "CONFIG"; break; } switch (gamepad->options.dpadMode) { case DPAD_MODE_DIGITAL: statusBar += " DPAD"; break; case DPAD_MODE_LEFT_ANALOG: statusBar += " LEFT"; break; case DPAD_MODE_RIGHT_ANALOG: statusBar += " RIGHT"; break; } switch (gamepad->options.socdMode) { case SOCD_MODE_NEUTRAL: statusBar += "-N"; break; case SOCD_MODE_UP_PRIORITY: statusBar += "-U"; break; case SOCD_MODE_SECOND_INPUT_PRIORITY: statusBar += "-L"; break; } } void DisplayModule::setup() { BoardOptions options = getBoardOptions(); enabled = options.hasI2CDisplay && options.i2cSDAPin != -1 && options.i2cSCLPin != -1; if (enabled) { obdI2CInit(&obd, options.displaySize, options.displayI2CAddress, options.displayFlip, options.displayInvert, DISPLAY_USEWIRE, options.i2cSDAPin, options.i2cSCLPin, options.i2cBlock == 0 ? i2c0 : i2c1, -1, options.i2cSpeed); obdSetContrast(&obd, 0xFF); obdSetBackBuffer(&obd, ucBackBuffer); clearScreen(1); } } void DisplayModule::loop() { // All screen updates should be handled in process() as they need to display ASAP } void DisplayModule::process(Gamepad *gamepad) { clearScreen(); setStatusBar(gamepad); drawStatusBar(); switch (BUTTON_LAYOUT) { case BUTTON_LAYOUT_ARCADE: drawArcadeStick(8, 28, 8, 2, gamepad); break; case BUTTON_LAYOUT_HITBOX: drawHitbox(8, 20, 8, 2, gamepad); break; case BUTTON_LAYOUT_WASD: drawWasdBox(8, 28, 7, 3, gamepad); break; } obdDumpBuffer(&obd, NULL); } ================================================ FILE: src/gamepad.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include "pico/stdlib.h" #include "gamepad.h" #include "display.h" #include "storage.h" #include "display.h" #include "OneBitDisplay.h" void Gamepad::setup() { load(); // Configure pin mapping f2Mask = (GAMEPAD_MASK_A1 | GAMEPAD_MASK_S2); BoardOptions boardOptions = getBoardOptions(); mapDpadUp = new GamepadButtonMapping(boardOptions.pinDpadUp, GAMEPAD_MASK_UP); mapDpadDown = new GamepadButtonMapping(boardOptions.pinDpadDown, GAMEPAD_MASK_DOWN); mapDpadLeft = new GamepadButtonMapping(boardOptions.pinDpadLeft, GAMEPAD_MASK_LEFT); mapDpadRight = new GamepadButtonMapping(boardOptions.pinDpadRight, GAMEPAD_MASK_RIGHT); mapButtonB1 = new GamepadButtonMapping(boardOptions.pinButtonB1, GAMEPAD_MASK_B1); mapButtonB2 = new GamepadButtonMapping(boardOptions.pinButtonB2, GAMEPAD_MASK_B2); mapButtonB3 = new GamepadButtonMapping(boardOptions.pinButtonB3, GAMEPAD_MASK_B3); mapButtonB4 = new GamepadButtonMapping(boardOptions.pinButtonB4, GAMEPAD_MASK_B4); mapButtonL1 = new GamepadButtonMapping(boardOptions.pinButtonL1, GAMEPAD_MASK_L1); mapButtonR1 = new GamepadButtonMapping(boardOptions.pinButtonR1, GAMEPAD_MASK_R1); mapButtonL2 = new GamepadButtonMapping(boardOptions.pinButtonL2, GAMEPAD_MASK_L2); mapButtonR2 = new GamepadButtonMapping(boardOptions.pinButtonR2, GAMEPAD_MASK_R2); mapButtonS1 = new GamepadButtonMapping(boardOptions.pinButtonS1, GAMEPAD_MASK_S1); mapButtonS2 = new GamepadButtonMapping(boardOptions.pinButtonS2, GAMEPAD_MASK_S2); mapButtonL3 = new GamepadButtonMapping(boardOptions.pinButtonL3, GAMEPAD_MASK_L3); mapButtonR3 = new GamepadButtonMapping(boardOptions.pinButtonR3, GAMEPAD_MASK_R3); mapButtonA1 = new GamepadButtonMapping(boardOptions.pinButtonA1, GAMEPAD_MASK_A1); mapButtonA2 = new GamepadButtonMapping(boardOptions.pinButtonA2, GAMEPAD_MASK_A2); gamepadMappings = new GamepadButtonMapping *[GAMEPAD_DIGITAL_INPUT_COUNT] { mapDpadUp, mapDpadDown, mapDpadLeft, mapDpadRight, mapButtonB1, mapButtonB2, mapButtonB3, mapButtonB4, mapButtonL1, mapButtonR1, mapButtonL2, mapButtonR2, mapButtonS1, mapButtonS2, mapButtonL3, mapButtonR3, mapButtonA1, mapButtonA2 }; for (int i = 0; i < GAMEPAD_DIGITAL_INPUT_COUNT; i++) { gpio_init(gamepadMappings[i]->pin); // Initialize pin gpio_set_dir(gamepadMappings[i]->pin, GPIO_IN); // Set as INPUT gpio_pull_up(gamepadMappings[i]->pin); // Set as PULLUP } #ifdef PIN_SETTINGS gpio_init(PIN_SETTINGS); // Initialize pin gpio_set_dir(PIN_SETTINGS, GPIO_IN); // Set as INPUT gpio_pull_up(PIN_SETTINGS); // Set as PULLUP #endif } void Gamepad::read() { // Need to invert since we're using pullups uint32_t values = ~gpio_get_all(); #ifdef PIN_SETTINGS state.aux = 0 | ((values & (1 << PIN_SETTINGS)) ? (1 << 0) : 0) ; #endif state.dpad = 0 | ((values & mapDpadUp->pinMask) ? (options.invertYAxis ? mapDpadDown->buttonMask : mapDpadUp->buttonMask) : 0) | ((values & mapDpadDown->pinMask) ? (options.invertYAxis ? mapDpadUp->buttonMask : mapDpadDown->buttonMask) : 0) | ((values & mapDpadLeft->pinMask) ? mapDpadLeft->buttonMask : 0) | ((values & mapDpadRight->pinMask) ? mapDpadRight->buttonMask : 0) ; state.buttons = 0 | ((values & mapButtonB1->pinMask) ? mapButtonB1->buttonMask : 0) | ((values & mapButtonB2->pinMask) ? mapButtonB2->buttonMask : 0) | ((values & mapButtonB3->pinMask) ? mapButtonB3->buttonMask : 0) | ((values & mapButtonB4->pinMask) ? mapButtonB4->buttonMask : 0) | ((values & mapButtonL1->pinMask) ? mapButtonL1->buttonMask : 0) | ((values & mapButtonR1->pinMask) ? mapButtonR1->buttonMask : 0) | ((values & mapButtonL2->pinMask) ? mapButtonL2->buttonMask : 0) | ((values & mapButtonR2->pinMask) ? mapButtonR2->buttonMask : 0) | ((values & mapButtonS1->pinMask) ? mapButtonS1->buttonMask : 0) | ((values & mapButtonS2->pinMask) ? mapButtonS2->buttonMask : 0) | ((values & mapButtonL3->pinMask) ? mapButtonL3->buttonMask : 0) | ((values & mapButtonR3->pinMask) ? mapButtonR3->buttonMask : 0) | ((values & mapButtonA1->pinMask) ? mapButtonA1->buttonMask : 0) | ((values & mapButtonA2->pinMask) ? mapButtonA2->buttonMask : 0) ; state.lx = GAMEPAD_JOYSTICK_MID; state.ly = GAMEPAD_JOYSTICK_MID; state.rx = GAMEPAD_JOYSTICK_MID; state.ry = GAMEPAD_JOYSTICK_MID; state.lt = 0; state.rt = 0; } ================================================ FILE: src/leds.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include #include #include "pico/util/queue.h" #include "AnimationStation.hpp" #include "AnimationStorage.hpp" #include "NeoPico.hpp" #include "Pixel.hpp" #include "PlayerLEDs.h" #include "gp2040.h" #include "leds.h" #include "pleds.h" #include "storage.h" #include "themes.h" using namespace std; static vector EMPTY_VECTOR; extern void setRGBPLEDs(uint32_t *frame); uint8_t ledCount; PixelMatrix matrix; NeoPico *neopico; AnimationStation as; queue_t baseAnimationQueue; queue_t buttonAnimationQueue; queue_t animationSaveQueue; map buttonPositions; inline vector *getLEDPositions(string button, vector> *positions) { int buttonPosition = buttonPositions[button]; if (buttonPosition < 0) return &EMPTY_VECTOR; else return &positions->at(buttonPosition); } /** * @brief Create an LED layout using a 2x4 matrix. */ vector> createLedLayoutArcadeButtons(vector> *positions) { vector> pixels = { { Pixel(buttonPositions[BUTTON_LABEL_B3], GAMEPAD_MASK_B3, *getLEDPositions(BUTTON_LABEL_B3, positions)), Pixel(buttonPositions[BUTTON_LABEL_B1], GAMEPAD_MASK_B1, *getLEDPositions(BUTTON_LABEL_B1, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_B4], GAMEPAD_MASK_B4, *getLEDPositions(BUTTON_LABEL_B4, positions)), Pixel(buttonPositions[BUTTON_LABEL_B2], GAMEPAD_MASK_B2, *getLEDPositions(BUTTON_LABEL_B2, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_R1], GAMEPAD_MASK_R1, *getLEDPositions(BUTTON_LABEL_R1, positions)), Pixel(buttonPositions[BUTTON_LABEL_R2], GAMEPAD_MASK_R2, *getLEDPositions(BUTTON_LABEL_R2, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_L1], GAMEPAD_MASK_L1, *getLEDPositions(BUTTON_LABEL_L1, positions)), Pixel(buttonPositions[BUTTON_LABEL_L2], GAMEPAD_MASK_L2, *getLEDPositions(BUTTON_LABEL_L2, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_LEFT], GAMEPAD_MASK_DL, *getLEDPositions(BUTTON_LABEL_LEFT, positions)), Pixel(buttonPositions[BUTTON_LABEL_DOWN], GAMEPAD_MASK_DD, *getLEDPositions(BUTTON_LABEL_DOWN, positions)), Pixel(buttonPositions[BUTTON_LABEL_RIGHT], GAMEPAD_MASK_DR, *getLEDPositions(BUTTON_LABEL_RIGHT, positions)), Pixel(buttonPositions[BUTTON_LABEL_UP], GAMEPAD_MASK_DU, *getLEDPositions(BUTTON_LABEL_UP, positions)), Pixel(buttonPositions[BUTTON_LABEL_S1], GAMEPAD_MASK_S1, *getLEDPositions(BUTTON_LABEL_S1, positions)), Pixel(buttonPositions[BUTTON_LABEL_S2], GAMEPAD_MASK_S2, *getLEDPositions(BUTTON_LABEL_S2, positions)), Pixel(buttonPositions[BUTTON_LABEL_L3], GAMEPAD_MASK_L3, *getLEDPositions(BUTTON_LABEL_L3, positions)), Pixel(buttonPositions[BUTTON_LABEL_R3], GAMEPAD_MASK_R3, *getLEDPositions(BUTTON_LABEL_R3, positions)), Pixel(buttonPositions[BUTTON_LABEL_A1], GAMEPAD_MASK_A1, *getLEDPositions(BUTTON_LABEL_A1, positions)), Pixel(buttonPositions[BUTTON_LABEL_A2], GAMEPAD_MASK_A2, *getLEDPositions(BUTTON_LABEL_A2, positions)), }, }; return pixels; } /** * @brief Create an LED layout using a 3x8 matrix. */ vector> createLedLayoutArcadeHitbox(vector> *positions) { vector> pixels = { { Pixel(buttonPositions[BUTTON_LABEL_LEFT], GAMEPAD_MASK_DL, *getLEDPositions(BUTTON_LABEL_LEFT, positions)), NO_PIXEL, NO_PIXEL, }, { Pixel(buttonPositions[BUTTON_LABEL_DOWN], GAMEPAD_MASK_DD, *getLEDPositions(BUTTON_LABEL_DOWN, positions)), NO_PIXEL, NO_PIXEL, }, { Pixel(buttonPositions[BUTTON_LABEL_RIGHT], GAMEPAD_MASK_DR, *getLEDPositions(BUTTON_LABEL_RIGHT, positions)), NO_PIXEL, NO_PIXEL, }, { NO_PIXEL, Pixel(buttonPositions[BUTTON_LABEL_UP], GAMEPAD_MASK_DU, *getLEDPositions(BUTTON_LABEL_UP, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_B3], GAMEPAD_MASK_B3, *getLEDPositions(BUTTON_LABEL_B3, positions)), Pixel(buttonPositions[BUTTON_LABEL_B1], GAMEPAD_MASK_B1, *getLEDPositions(BUTTON_LABEL_B1, positions)), NO_PIXEL, }, { Pixel(buttonPositions[BUTTON_LABEL_B4], GAMEPAD_MASK_B4, *getLEDPositions(BUTTON_LABEL_B4, positions)), Pixel(buttonPositions[BUTTON_LABEL_B2], GAMEPAD_MASK_B2, *getLEDPositions(BUTTON_LABEL_B2, positions)), NO_PIXEL, }, { Pixel(buttonPositions[BUTTON_LABEL_R1], GAMEPAD_MASK_R1, *getLEDPositions(BUTTON_LABEL_R1, positions)), Pixel(buttonPositions[BUTTON_LABEL_R2], GAMEPAD_MASK_R2, *getLEDPositions(BUTTON_LABEL_R2, positions)), NO_PIXEL, }, { Pixel(buttonPositions[BUTTON_LABEL_L1], GAMEPAD_MASK_L1, *getLEDPositions(BUTTON_LABEL_L1, positions)), Pixel(buttonPositions[BUTTON_LABEL_L2], GAMEPAD_MASK_L2, *getLEDPositions(BUTTON_LABEL_L2, positions)), NO_PIXEL, }, { Pixel(buttonPositions[BUTTON_LABEL_S1], GAMEPAD_MASK_S1, *getLEDPositions(BUTTON_LABEL_S1, positions)), Pixel(buttonPositions[BUTTON_LABEL_S2], GAMEPAD_MASK_S2, *getLEDPositions(BUTTON_LABEL_S2, positions)), Pixel(buttonPositions[BUTTON_LABEL_L3], GAMEPAD_MASK_L3, *getLEDPositions(BUTTON_LABEL_L3, positions)), Pixel(buttonPositions[BUTTON_LABEL_R3], GAMEPAD_MASK_R3, *getLEDPositions(BUTTON_LABEL_R3, positions)), Pixel(buttonPositions[BUTTON_LABEL_A1], GAMEPAD_MASK_A1, *getLEDPositions(BUTTON_LABEL_A1, positions)), Pixel(buttonPositions[BUTTON_LABEL_A2], GAMEPAD_MASK_A2, *getLEDPositions(BUTTON_LABEL_A2, positions)), }, }; return pixels; } /** * @brief Create an LED layout using a 2x7 matrix. */ vector> createLedLayoutArcadeWasd(vector> *positions) { vector> pixels = { { NO_PIXEL, Pixel(buttonPositions[BUTTON_LABEL_LEFT], GAMEPAD_MASK_DL, *getLEDPositions(BUTTON_LABEL_LEFT, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_UP], GAMEPAD_MASK_DU, *getLEDPositions(BUTTON_LABEL_UP, positions)), Pixel(buttonPositions[BUTTON_LABEL_DOWN], GAMEPAD_MASK_DD, *getLEDPositions(BUTTON_LABEL_DOWN, positions)), }, { NO_PIXEL, Pixel(buttonPositions[BUTTON_LABEL_RIGHT], GAMEPAD_MASK_DR, *getLEDPositions(BUTTON_LABEL_RIGHT, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_B3], GAMEPAD_MASK_B3, *getLEDPositions(BUTTON_LABEL_B3, positions)), Pixel(buttonPositions[BUTTON_LABEL_B1], GAMEPAD_MASK_B1, *getLEDPositions(BUTTON_LABEL_B1, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_B4], GAMEPAD_MASK_B4, *getLEDPositions(BUTTON_LABEL_B4, positions)), Pixel(buttonPositions[BUTTON_LABEL_B2], GAMEPAD_MASK_B2, *getLEDPositions(BUTTON_LABEL_B2, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_R1], GAMEPAD_MASK_R1, *getLEDPositions(BUTTON_LABEL_R1, positions)), Pixel(buttonPositions[BUTTON_LABEL_R2], GAMEPAD_MASK_R2, *getLEDPositions(BUTTON_LABEL_R2, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_L1], GAMEPAD_MASK_L1, *getLEDPositions(BUTTON_LABEL_L1, positions)), Pixel(buttonPositions[BUTTON_LABEL_L2], GAMEPAD_MASK_L2, *getLEDPositions(BUTTON_LABEL_L2, positions)), }, { Pixel(buttonPositions[BUTTON_LABEL_S1], GAMEPAD_MASK_S1, *getLEDPositions(BUTTON_LABEL_S1, positions)), Pixel(buttonPositions[BUTTON_LABEL_S2], GAMEPAD_MASK_S2, *getLEDPositions(BUTTON_LABEL_S2, positions)), Pixel(buttonPositions[BUTTON_LABEL_L3], GAMEPAD_MASK_L3, *getLEDPositions(BUTTON_LABEL_L3, positions)), Pixel(buttonPositions[BUTTON_LABEL_R3], GAMEPAD_MASK_R3, *getLEDPositions(BUTTON_LABEL_R3, positions)), Pixel(buttonPositions[BUTTON_LABEL_A1], GAMEPAD_MASK_A1, *getLEDPositions(BUTTON_LABEL_A1, positions)), Pixel(buttonPositions[BUTTON_LABEL_A2], GAMEPAD_MASK_A2, *getLEDPositions(BUTTON_LABEL_A2, positions)), }, }; return pixels; } vector> createLedButtonLayout(ButtonLayout layout, vector> *positions) { switch (layout) { case BUTTON_LAYOUT_ARCADE: return createLedLayoutArcadeButtons(positions); case BUTTON_LAYOUT_HITBOX: return createLedLayoutArcadeHitbox(positions); case BUTTON_LAYOUT_WASD: return createLedLayoutArcadeWasd(positions); } } vector> createLedButtonLayout(ButtonLayout layout, uint8_t ledsPerPixel, uint8_t ledButtonCount) { vector> positions(ledButtonCount); for (int i = 0; i != ledButtonCount; i++) { positions[i].resize(ledsPerPixel); for (int l = 0; l != ledsPerPixel; l++) positions[i][l] = (i * ledsPerPixel) + l; } return createLedButtonLayout(layout, &positions); } uint8_t setupButtonPositions() { buttonPositions.clear(); buttonPositions.emplace(BUTTON_LABEL_UP, ledModule.ledOptions.indexUp); buttonPositions.emplace(BUTTON_LABEL_DOWN, ledModule.ledOptions.indexDown); buttonPositions.emplace(BUTTON_LABEL_LEFT, ledModule.ledOptions.indexLeft); buttonPositions.emplace(BUTTON_LABEL_RIGHT, ledModule.ledOptions.indexRight); buttonPositions.emplace(BUTTON_LABEL_B1, ledModule.ledOptions.indexB1); buttonPositions.emplace(BUTTON_LABEL_B2, ledModule.ledOptions.indexB2); buttonPositions.emplace(BUTTON_LABEL_B3, ledModule.ledOptions.indexB3); buttonPositions.emplace(BUTTON_LABEL_B4, ledModule.ledOptions.indexB4); buttonPositions.emplace(BUTTON_LABEL_L1, ledModule.ledOptions.indexL1); buttonPositions.emplace(BUTTON_LABEL_R1, ledModule.ledOptions.indexR1); buttonPositions.emplace(BUTTON_LABEL_L2, ledModule.ledOptions.indexL2); buttonPositions.emplace(BUTTON_LABEL_R2, ledModule.ledOptions.indexR2); buttonPositions.emplace(BUTTON_LABEL_S1, ledModule.ledOptions.indexS1); buttonPositions.emplace(BUTTON_LABEL_S2, ledModule.ledOptions.indexS2); buttonPositions.emplace(BUTTON_LABEL_L3, ledModule.ledOptions.indexL3); buttonPositions.emplace(BUTTON_LABEL_R3, ledModule.ledOptions.indexR3); buttonPositions.emplace(BUTTON_LABEL_A1, ledModule.ledOptions.indexA1); buttonPositions.emplace(BUTTON_LABEL_A2, ledModule.ledOptions.indexA2); uint8_t buttonCount = 0; for (auto const buttonPosition : buttonPositions) { if (buttonPosition.second != -1) buttonCount++; } return buttonCount; } void LEDModule::configureLEDs() { nextRunTime = make_timeout_time_ms(10000); // Set crazy timeout to prevent loop from running while we reconfigure uint8_t buttonCount = setupButtonPositions(); vector> pixels = createLedButtonLayout(ledOptions.ledLayout, ledOptions.ledsPerButton, buttonCount); matrix.setup(pixels, ledOptions.ledsPerButton); ledCount = matrix.getLedCount(); if (PLED_TYPE == PLED_TYPE_RGB && PLED_COUNT > 0) ledCount += PLED_COUNT; queue_free(&baseAnimationQueue); queue_free(&buttonAnimationQueue); queue_free(&animationSaveQueue); queue_init(&baseAnimationQueue, sizeof(AnimationHotkey), 1); queue_init(&buttonAnimationQueue, sizeof(uint32_t), 1); queue_init(&animationSaveQueue, sizeof(int), 1); if (neopico != NULL) neopico->Off(); delete neopico; neopico = new NeoPico(ledOptions.dataPin, ledCount, ledOptions.ledFormat); neopico->Off(); Animation::format = ledOptions.ledFormat; AnimationStation::ConfigureBrightness(ledOptions.brightnessMaximum, ledOptions.brightnessSteps); AnimationStation::SetOptions(AnimationStore.getAnimationOptions()); addStaticThemes(ledOptions); as.SetMode(AnimationStation::options.baseAnimationIndex); as.SetMatrix(matrix); nextRunTime = make_timeout_time_ms(0); // Reset timeout } void LEDModule::setup() { ledOptions = getLEDOptions(); if (!ledOptions.useUserDefinedLEDs) { ledOptions.dataPin = BOARD_LEDS_PIN; ledOptions.ledFormat = LED_FORMAT; ledOptions.ledLayout = BUTTON_LAYOUT; ledOptions.ledsPerButton = LEDS_PER_PIXEL; ledOptions.brightnessMaximum = LED_BRIGHTNESS_MAXIMUM; ledOptions.brightnessSteps = LED_BRIGHTNESS_STEPS; ledOptions.indexUp = LEDS_DPAD_UP; ledOptions.indexDown = LEDS_DPAD_DOWN; ledOptions.indexLeft = LEDS_DPAD_LEFT; ledOptions.indexRight = LEDS_DPAD_RIGHT; ledOptions.indexB1 = LEDS_BUTTON_B1; ledOptions.indexB2 = LEDS_BUTTON_B2; ledOptions.indexB3 = LEDS_BUTTON_B3; ledOptions.indexB4 = LEDS_BUTTON_B4; ledOptions.indexL1 = LEDS_BUTTON_L1; ledOptions.indexR1 = LEDS_BUTTON_R1; ledOptions.indexL2 = LEDS_BUTTON_L2; ledOptions.indexR2 = LEDS_BUTTON_R2; ledOptions.indexS1 = LEDS_BUTTON_S1; ledOptions.indexS2 = LEDS_BUTTON_S2; ledOptions.indexL3 = LEDS_BUTTON_L3; ledOptions.indexR3 = LEDS_BUTTON_R3; ledOptions.indexA1 = LEDS_BUTTON_A1; ledOptions.indexA2 = LEDS_BUTTON_A2; } enabled = ledOptions.dataPin != -1; if (enabled) { configureLEDs(); } } void LEDModule::process(Gamepad *gamepad) { AnimationHotkey action = animationHotkeys(gamepad); if (action != HOTKEY_LEDS_NONE) queue_try_add(&baseAnimationQueue, &action); uint32_t buttonState = gamepad->state.dpad << 16 | gamepad->state.buttons; queue_try_add(&buttonAnimationQueue, &buttonState); } void LEDModule::loop() { if (ledOptions.dataPin < 0 || !time_reached(this->nextRunTime)) return; AnimationHotkey action; if (queue_try_remove(&baseAnimationQueue, &action)) { as.HandleEvent(action); queue_try_add(&animationSaveQueue, 0); } uint32_t buttonState; if (queue_try_remove(&buttonAnimationQueue, &buttonState)) { vector pressed; for (auto row : matrix.pixels) { for (auto pixel : row) { if (buttonState & pixel.mask) pressed.push_back(pixel); } } if (pressed.size() > 0) as.HandlePressed(pressed); else as.ClearPressed(); } as.Animate(); as.ApplyBrightness(frame); if (PLED_TYPE == PLED_TYPE_RGB) setRGBPLEDs(frame); // PLEDs have their own brightness values, call this after as.ApplyBrightness() neopico->SetFrame(frame); neopico->Show(); this->nextRunTime = make_timeout_time_ms(LEDModule::intervalMS); trySave(); } void LEDModule::trySave() { static int saveValue = 0; if (queue_try_remove(&animationSaveQueue, &saveValue)) AnimationStore.save(); } AnimationHotkey animationHotkeys(Gamepad *gamepad) { AnimationHotkey action = HOTKEY_LEDS_NONE; if (gamepad->pressedF1()) { if (gamepad->pressedB3()) { action = HOTKEY_LEDS_ANIMATION_UP; gamepad->state.buttons &= ~(GAMEPAD_MASK_B3 | gamepad->f1Mask); } else if (gamepad->pressedB1()) { action = HOTKEY_LEDS_ANIMATION_DOWN; gamepad->state.buttons &= ~(GAMEPAD_MASK_B1 | gamepad->f1Mask); } else if (gamepad->pressedB4()) { action = HOTKEY_LEDS_BRIGHTNESS_UP; gamepad->state.buttons &= ~(GAMEPAD_MASK_B4 | gamepad->f1Mask); } else if (gamepad->pressedB2()) { action = HOTKEY_LEDS_BRIGHTNESS_DOWN; gamepad->state.buttons &= ~(GAMEPAD_MASK_B2 | gamepad->f1Mask); } else if (gamepad->pressedR1()) { action = HOTKEY_LEDS_PARAMETER_UP; gamepad->state.buttons &= ~(GAMEPAD_MASK_R1 | gamepad->f1Mask); } else if (gamepad->pressedR2()) { action = HOTKEY_LEDS_PARAMETER_DOWN; gamepad->state.buttons &= ~(GAMEPAD_MASK_R2 | gamepad->f1Mask); } else if (gamepad->pressedL1()) { action = HOTKEY_LEDS_PRESS_PARAMETER_UP; gamepad->state.buttons &= ~(GAMEPAD_MASK_L1 | gamepad->f1Mask); } else if (gamepad->pressedL2()) { action = HOTKEY_LEDS_PRESS_PARAMETER_DOWN; gamepad->state.buttons &= ~(GAMEPAD_MASK_L2 | gamepad->f1Mask); } } return action; } ================================================ FILE: src/main.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #define GAMEPAD_DEBOUNCE_MILLIS 5 #include "BoardConfig.h" #include #include "pico/stdlib.h" #include "pico/multicore.h" #include "pico/bootrom.h" #include "pico/util/queue.h" #include "tusb.h" #include "rndis/rndis.h" #include "usb_driver.h" #include "gp2040.h" #include "gamepad.h" #include "leds.h" #include "pleds.h" #include "display.h" uint32_t getMillis() { return to_ms_since_boot(get_absolute_time()); } Gamepad gamepad(GAMEPAD_DEBOUNCE_MILLIS); static InputMode inputMode; queue_t gamepadQueue; DisplayModule displayModule; LEDModule ledModule; PLEDModule pledModule(PLED_TYPE); std::vector modules = { &displayModule, &ledModule, &pledModule, }; void setup(); void loop(); void core1(); void webserver(); int main() { setup(); multicore_launch_core1(core1); if (inputMode == INPUT_MODE_CONFIG) { webserver(); } else { while (1) loop(); } return 0; } void setup() { // Start storage before anything else GamepadStore.start(); gamepad.setup(); // Check for input mode override gamepad.read(); inputMode = gamepad.options.inputMode; if (gamepad.pressedS2()) inputMode = INPUT_MODE_CONFIG; else if (gamepad.pressedB3()) inputMode = INPUT_MODE_HID; else if (gamepad.pressedB1()) inputMode = INPUT_MODE_SWITCH; else if (gamepad.pressedB2()) inputMode = INPUT_MODE_XINPUT; else if (gamepad.pressedF1() && gamepad.pressedUp()) reset_usb_boot(0, 0); queue_init(&gamepadQueue, sizeof(Gamepad), 1); for (auto it = modules.begin(); it != modules.end();) { GPModule *module = (*it); module->setup(); if (module->isEnabled()) it++; else it = modules.erase(it); } bool configMode = inputMode == INPUT_MODE_CONFIG; if (inputMode != gamepad.options.inputMode && !configMode) { gamepad.options.inputMode = inputMode; gamepad.save(); } initialize_driver(inputMode); } void loop() { static void *report; static const uint16_t reportSize = gamepad.getReportSize(); static const uint32_t intervalMS = 1; static uint32_t nextRuntime = 0; static uint8_t featureData[32] = { }; static Gamepad snapshot; if (getMillis() - nextRuntime < 0) return; gamepad.read(); #if GAMEPAD_DEBOUNCE_MILLIS > 0 gamepad.debounce(); #endif gamepad.hotkey(); gamepad.process(); report = gamepad.getReport(); send_report(report, reportSize); memset(featureData, 0, sizeof(featureData)); receive_report(featureData); if (featureData[0]) queue_try_add(&pledModule.featureQueue, featureData); tud_task(); if (queue_is_empty(&gamepadQueue)) { memcpy(&snapshot, &gamepad, sizeof(Gamepad)); queue_try_add(&gamepadQueue, &snapshot); } nextRuntime = getMillis() + intervalMS; } void core1() { multicore_lockout_victim_init(); while (1) { static Gamepad snapshot; if (queue_try_remove(&gamepadQueue, &snapshot)) { for (auto module : modules) module->process(&snapshot); } for (auto module : modules) module->loop(); } } void webserver() { static Gamepad snapshot; rndis_init(); while (1) { gamepad.read(); #if GAMEPAD_DEBOUNCE_MILLIS > 0 gamepad.debounce(); #endif gamepad.hotkey(); gamepad.process(); if (queue_is_empty(&gamepadQueue)) { memcpy(&snapshot, &gamepad, sizeof(Gamepad)); queue_try_add(&gamepadQueue, &snapshot); } rndis_task(); } } ================================================ FILE: src/pleds.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include #include "pico/util/queue.h" #include "pico/stdlib.h" #include "hardware/pwm.h" #include "GamepadEnums.h" #include "Animation.hpp" #include "pleds.h" #include "xinput_driver.h" const int PLED_PINS[] = {PLED1_PIN, PLED2_PIN, PLED3_PIN, PLED4_PIN}; InputMode inputMode; uint32_t rgbPLEDValues[4]; void setRGBPLEDs(uint32_t *frame) { for (int i = 0; i < PLED_COUNT; i++) if (PLED_PINS[i] > -1) frame[PLED_PINS[i]] = rgbPLEDValues[i]; } PLEDAnimationState getXInputAnimation(uint8_t *data) { PLEDAnimationState animationState = { .state = 0, .animation = PLED_ANIM_NONE, .speed = PLED_SPEED_OFF, }; // Check first byte for LED payload if (data[0] == 0x01) { switch (data[2]) { case XINPUT_PLED_BLINKALL: case XINPUT_PLED_ROTATE: case XINPUT_PLED_BLINK: case XINPUT_PLED_SLOWBLINK: case XINPUT_PLED_ALTERNATE: animationState.state = (PLED_STATE_LED1 | PLED_STATE_LED2 | PLED_STATE_LED3 | PLED_STATE_LED4); animationState.animation = PLED_ANIM_BLINK; animationState.speed = PLED_SPEED_FAST; break; case XINPUT_PLED_FLASH1: case XINPUT_PLED_ON1: animationState.state = PLED_STATE_LED1; animationState.animation = PLED_ANIM_SOLID; animationState.speed = PLED_SPEED_OFF; break; case XINPUT_PLED_FLASH2: case XINPUT_PLED_ON2: animationState.state = PLED_STATE_LED2; animationState.animation = PLED_ANIM_SOLID; animationState.speed = PLED_SPEED_OFF; break; case XINPUT_PLED_FLASH3: case XINPUT_PLED_ON3: animationState.state = PLED_STATE_LED3; animationState.animation = PLED_ANIM_SOLID; animationState.speed = PLED_SPEED_OFF; break; case XINPUT_PLED_FLASH4: case XINPUT_PLED_ON4: animationState.state = PLED_STATE_LED4; animationState.animation = PLED_ANIM_SOLID; animationState.speed = PLED_SPEED_OFF; break; default: break; } } return animationState; } void PWMPlayerLEDs::setup() { pwm_config config = pwm_get_default_config(); pwm_config_set_clkdiv(&config, 4.f); std::vector sliceNums; for (int i = 0; i < PLED_COUNT; i++) { if (PLED_PINS[i] > -1) { gpio_set_function(PLED_PINS[i], GPIO_FUNC_PWM); uint sliceNum = pwm_gpio_to_slice_num(PLED_PINS[i]); uint channelNum = pwm_gpio_to_channel(PLED_PINS[i]); sliceNums.push_back(sliceNum); pwm_set_chan_level(sliceNum, channelNum, PLED_MAX_LEVEL); } } for (auto sliceNum : sliceNums) pwm_set_enabled(sliceNum, true); } void PWMPlayerLEDs::display() { for (int i = 0; i < PLED_COUNT; i++) if (PLED_PINS[i] > -1) pwm_set_gpio_level(PLED_PINS[i], ledLevels[i]); } void RGBPlayerLEDs::setup() { } void RGBPlayerLEDs::display() { switch (inputMode) { case INPUT_MODE_XINPUT: for (int i = 0; i < PLED_COUNT; i++) { float level = (static_cast(PLED_MAX_LEVEL - ledLevels[i]) / static_cast(PLED_MAX_LEVEL)); float brightness = as.GetBrightnessX() * level; rgbPLEDValues[i] = ((RGB)ColorGreen).value(neopico->GetFormat(), brightness); } break; } } void PLEDModule::setup() { queue_init(&featureQueue, PLED_REPORT_SIZE, 20); enabled = PLED_TYPE != PLED_TYPE_NONE; if (enabled) { switch (type) { case PLED_TYPE_PWM: pleds = new PWMPlayerLEDs(); break; case PLED_TYPE_RGB: pleds = new RGBPlayerLEDs(); break; } if (pleds != nullptr) pleds->setup(); } } void PLEDModule::loop() { if (pleds != nullptr) pleds->display(); } void PLEDModule::process(Gamepad *gamepad) { static uint8_t featureData[PLED_REPORT_SIZE]; if (queue_try_remove(&featureQueue, featureData)) { inputMode = gamepad->options.inputMode; switch (inputMode) { case INPUT_MODE_XINPUT: animationState = getXInputAnimation(featureData); break; } if (pleds != nullptr && animationState.animation != PLED_ANIM_NONE) pleds->animate(animationState); } } ================================================ FILE: src/storage.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include "BoardConfig.h" #include #include "AnimationStorage.hpp" #include "AnimationStation/src/Effects/StaticColor.hpp" #include "FlashPROM.h" #include "Animation.hpp" #include "CRC32.h" #include "display.h" #include "storage.h" #include "leds.h" /* Board stuffs */ BoardOptions getBoardOptions() { BoardOptions options; EEPROM.get(BOARD_STORAGE_INDEX, options); uint32_t lastCRC = options.checksum; options.checksum = 0; if (CRC32::calculate(&options) != lastCRC) { options.hasBoardOptions = false; options.pinDpadUp = PIN_DPAD_UP; options.pinDpadDown = PIN_DPAD_DOWN; options.pinDpadLeft = PIN_DPAD_LEFT; options.pinDpadRight = PIN_DPAD_RIGHT; options.pinButtonB1 = PIN_BUTTON_B1; options.pinButtonB2 = PIN_BUTTON_B2; options.pinButtonB3 = PIN_BUTTON_B3; options.pinButtonB4 = PIN_BUTTON_B4; options.pinButtonL1 = PIN_BUTTON_L1; options.pinButtonR1 = PIN_BUTTON_R1; options.pinButtonL2 = PIN_BUTTON_L2; options.pinButtonR2 = PIN_BUTTON_R2; options.pinButtonS1 = PIN_BUTTON_S1; options.pinButtonS2 = PIN_BUTTON_S2; options.pinButtonL3 = PIN_BUTTON_L3; options.pinButtonR3 = PIN_BUTTON_R3; options.pinButtonA1 = PIN_BUTTON_A1; options.pinButtonA2 = PIN_BUTTON_A2; options.buttonLayout = BUTTON_LAYOUT; options.i2cSDAPin = I2C_SDA_PIN; options.i2cSCLPin = I2C_SCL_PIN; options.i2cBlock = (I2C_BLOCK == i2c0) ? 0 : 1; options.i2cSpeed = I2C_SPEED; options.hasI2CDisplay = HAS_I2C_DISPLAY; options.displayI2CAddress = DISPLAY_I2C_ADDR; options.displaySize = DISPLAY_SIZE; options.displayFlip = DISPLAY_FLIP; options.displayInvert = DISPLAY_INVERT; } return options; } void setBoardOptions(BoardOptions options) { options.checksum = 0; options.checksum = CRC32::calculate(&options); EEPROM.set(BOARD_STORAGE_INDEX, options); } /* LED stuffs */ LEDOptions getLEDOptions() { LEDOptions options; EEPROM.get(LED_STORAGE_INDEX, options); return options; } void setLEDOptions(LEDOptions options) { EEPROM.set(LED_STORAGE_INDEX, options); } /* Gamepad stuffs */ void GamepadStorage::start() { EEPROM.start(); } void GamepadStorage::save() { EEPROM.commit(); } GamepadOptions GamepadStorage::getGamepadOptions() { GamepadOptions options; EEPROM.get(GAMEPAD_STORAGE_INDEX, options); uint32_t lastCRC = options.checksum; options.checksum = 0; if (CRC32::calculate(&options) != lastCRC) { options.inputMode = InputMode::INPUT_MODE_XINPUT; options.dpadMode = DpadMode::DPAD_MODE_DIGITAL; #ifdef DEFAULT_SOCD_MODE options.socdMode = DEFAULT_SOCD_MODE; #else options.socdMode = SOCD_MODE_NEUTRAL; #endif } return options; } void GamepadStorage::setGamepadOptions(GamepadOptions options) { options.checksum = 0; options.checksum = CRC32::calculate(&options); EEPROM.set(GAMEPAD_STORAGE_INDEX, options); } /* Animation stuffs */ AnimationOptions AnimationStorage::getAnimationOptions() { AnimationOptions options; EEPROM.get(ANIMATION_STORAGE_INDEX, options); uint32_t lastCRC = options.checksum; options.checksum = 0; if (CRC32::calculate(&options) != lastCRC) { options.baseAnimationIndex = LEDS_BASE_ANIMATION_INDEX; options.brightness = LEDS_BRIGHTNESS; options.staticColorIndex = LEDS_STATIC_COLOR_INDEX; options.buttonColorIndex = LEDS_BUTTON_COLOR_INDEX; options.chaseCycleTime = LEDS_CHASE_CYCLE_TIME; options.rainbowCycleTime = LEDS_RAINBOW_CYCLE_TIME; options.themeIndex = LEDS_THEME_INDEX; setAnimationOptions(options); } return options; } void AnimationStorage::setAnimationOptions(AnimationOptions options) { options.checksum = 0; options.checksum = CRC32::calculate(&options); EEPROM.set(ANIMATION_STORAGE_INDEX, options); } void AnimationStorage::save() { bool dirty = false; AnimationOptions savedOptions = getAnimationOptions(); if (memcmp(&savedOptions, &AnimationStation::options, sizeof(AnimationOptions))) { this->setAnimationOptions(AnimationStation::options); dirty = true; } if (dirty) EEPROM.commit(); } ================================================ FILE: src/webserver.cpp ================================================ /* * SPDX-License-Identifier: MIT * SPDX-FileCopyrightText: Copyright (c) 2021 Jason Skuby (mytechtoybox.com) */ #include #include #include #include #include #include #include "pico/stdlib.h" #include "hardware/watchdog.h" #include "FlashPROM.h" #include "httpd/fs.h" #include "httpd/fscustom.h" #include "httpd/fsdata.h" #include "httpd/httpd.h" #include "lwip/def.h" #include "lwip/mem.h" #include "rndis/rndis.h" #include "gamepad.h" #include "storage.h" #include "leds.h" #include "GamepadStorage.h" #define PATH_CGI_ACTION "/cgi/action" #define API_RESET_SETTINGS "/api/resetSettings" #define API_GET_DISPLAY_OPTIONS "/api/getDisplayOptions" #define API_SET_DISPLAY_OPTIONS "/api/setDisplayOptions" #define API_GET_GAMEPAD_OPTIONS "/api/getGamepadOptions" #define API_SET_GAMEPAD_OPTIONS "/api/setGamepadOptions" #define API_GET_LED_OPTIONS "/api/getLedOptions" #define API_SET_LED_OPTIONS "/api/setLedOptions" #define API_GET_PIN_MAPPINGS "/api/getPinMappings" #define API_SET_PIN_MAPPINGS "/api/setPinMappings" #define LWIP_HTTPD_POST_MAX_URI_LEN 128 #define LWIP_HTTPD_POST_MAX_PAYLOAD_LEN 2048 using namespace std; extern struct fsdata_file file__index_html[]; extern Gamepad gamepad; const static vector spaPaths = { "/display-config", "/led-config", "/pin-mapping", "/settings", "/reset-settings" }; const static vector excludePaths = { "/css", "/images", "/js", "/static" }; static char *http_post_uri; static char http_post_payload[LWIP_HTTPD_POST_MAX_PAYLOAD_LEN]; static uint16_t http_post_payload_len = 0; static bool is_post = false; /************************* * Helper methods *************************/ DynamicJsonDocument get_post_data() { vector raw; for (int i = 0; i < http_post_payload_len; i++) raw.push_back(http_post_payload[i]); DynamicJsonDocument doc(LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); deserializeJson(doc, raw); return doc; } inline string serialize_json(DynamicJsonDocument &doc) { string data; serializeJson(doc, data); return data; } int set_file_data(struct fs_file *file, string data) { static string returnData; returnData = data; file->data = returnData.c_str(); file->len = returnData.size(); file->index = file->len; file->http_header_included = 0; file->pextension = NULL; return 1; } /************************* * API methods *************************/ string resetSettings() { EEPROM.reset(); watchdog_reboot(0, SRAM_END, 2000); DynamicJsonDocument doc(LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); doc["success"] = true; return serialize_json(doc); } string getDisplayOptions() { DynamicJsonDocument doc(LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); BoardOptions options = getBoardOptions(); doc["enabled"] = options.hasI2CDisplay ? 1 : 0; doc["sdaPin"] = options.i2cSDAPin; doc["sclPin"] = options.i2cSCLPin; doc["i2cAddress"] = options.displayI2CAddress; doc["i2cBlock"] = options.i2cBlock; doc["i2cSpeed"] = options.i2cSpeed; doc["flipDisplay"] = options.displayFlip ? 1 : 0; doc["invertDisplay"] = options.displayInvert ? 1 : 0; auto usedPins = doc.createNestedArray("usedPins"); usedPins.add(gamepad.mapDpadUp->pin); usedPins.add(gamepad.mapDpadDown->pin); usedPins.add(gamepad.mapDpadLeft->pin); usedPins.add(gamepad.mapDpadRight->pin); usedPins.add(gamepad.mapButtonB1->pin); usedPins.add(gamepad.mapButtonB2->pin); usedPins.add(gamepad.mapButtonB3->pin); usedPins.add(gamepad.mapButtonB4->pin); usedPins.add(gamepad.mapButtonL1->pin); usedPins.add(gamepad.mapButtonR1->pin); usedPins.add(gamepad.mapButtonL2->pin); usedPins.add(gamepad.mapButtonR2->pin); usedPins.add(gamepad.mapButtonS1->pin); usedPins.add(gamepad.mapButtonS2->pin); usedPins.add(gamepad.mapButtonL3->pin); usedPins.add(gamepad.mapButtonR3->pin); usedPins.add(gamepad.mapButtonA1->pin); usedPins.add(gamepad.mapButtonA2->pin); return serialize_json(doc); } string setDisplayOptions() { DynamicJsonDocument doc = get_post_data(); BoardOptions options = getBoardOptions(); options.hasI2CDisplay = doc["enabled"]; options.i2cSDAPin = doc["sdaPin"]; options.i2cSCLPin = doc["sclPin"]; options.displayI2CAddress = doc["i2cAddress"]; options.i2cBlock = doc["i2cBlock"]; options.i2cSpeed = doc["i2cSpeed"]; options.displayFlip = doc["flipDisplay"]; options.displayInvert = doc["invertDisplay"]; setBoardOptions(options); GamepadStore.save(); return serialize_json(doc); } string getGamepadOptions() { DynamicJsonDocument doc(LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); GamepadOptions options = GamepadStore.getGamepadOptions(); doc["dpadMode"] = options.dpadMode; doc["inputMode"] = options.inputMode; doc["socdMode"] = options.socdMode; return serialize_json(doc); } string setGamepadOptions() { DynamicJsonDocument doc = get_post_data(); gamepad.options.dpadMode = doc["dpadMode"]; gamepad.options.inputMode = doc["inputMode"]; gamepad.options.socdMode = doc["socdMode"]; gamepad.save(); return serialize_json(doc); } string getLedOptions() { DynamicJsonDocument doc(LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); doc["dataPin"] = ledModule.ledOptions.dataPin; doc["ledFormat"] = ledModule.ledOptions.ledFormat; doc["ledLayout"] = ledModule.ledOptions.ledLayout; doc["ledsPerButton"] = ledModule.ledOptions.ledsPerButton; doc["brightnessMaximum"] = ledModule.ledOptions.brightnessMaximum; doc["brightnessSteps"] = ledModule.ledOptions.brightnessSteps; auto ledButtonMap = doc.createNestedObject("ledButtonMap"); if (ledModule.ledOptions.indexUp == -1) ledButtonMap["Up"] = nullptr; else ledButtonMap["Up"] = ledModule.ledOptions.indexUp; if (ledModule.ledOptions.indexDown == -1) ledButtonMap["Down"] = nullptr; else ledButtonMap["Down"] = ledModule.ledOptions.indexDown; if (ledModule.ledOptions.indexLeft == -1) ledButtonMap["Left"] = nullptr; else ledButtonMap["Left"] = ledModule.ledOptions.indexLeft; if (ledModule.ledOptions.indexRight == -1) ledButtonMap["Right"] = nullptr; else ledButtonMap["Right"] = ledModule.ledOptions.indexRight; if (ledModule.ledOptions.indexB1 == -1) ledButtonMap["B1"] = nullptr; else ledButtonMap["B1"] = ledModule.ledOptions.indexB1; if (ledModule.ledOptions.indexB2 == -1) ledButtonMap["B2"] = nullptr; else ledButtonMap["B2"] = ledModule.ledOptions.indexB2; if (ledModule.ledOptions.indexB3 == -1) ledButtonMap["B3"] = nullptr; else ledButtonMap["B3"] = ledModule.ledOptions.indexB3; if (ledModule.ledOptions.indexB4 == -1) ledButtonMap["B4"] = nullptr; else ledButtonMap["B4"] = ledModule.ledOptions.indexB4; if (ledModule.ledOptions.indexL1 == -1) ledButtonMap["L1"] = nullptr; else ledButtonMap["L1"] = ledModule.ledOptions.indexL1; if (ledModule.ledOptions.indexR1 == -1) ledButtonMap["R1"] = nullptr; else ledButtonMap["R1"] = ledModule.ledOptions.indexR1; if (ledModule.ledOptions.indexL2 == -1) ledButtonMap["L2"] = nullptr; else ledButtonMap["L2"] = ledModule.ledOptions.indexL2; if (ledModule.ledOptions.indexR2 == -1) ledButtonMap["R2"] = nullptr; else ledButtonMap["R2"] = ledModule.ledOptions.indexR2; if (ledModule.ledOptions.indexS1 == -1) ledButtonMap["S1"] = nullptr; else ledButtonMap["S1"] = ledModule.ledOptions.indexS1; if (ledModule.ledOptions.indexS2 == -1) ledButtonMap["S2"] = nullptr; else ledButtonMap["S2"] = ledModule.ledOptions.indexS2; if (ledModule.ledOptions.indexL3 == -1) ledButtonMap["L3"] = nullptr; else ledButtonMap["L3"] = ledModule.ledOptions.indexL3; if (ledModule.ledOptions.indexR3 == -1) ledButtonMap["R3"] = nullptr; else ledButtonMap["R3"] = ledModule.ledOptions.indexR3; if (ledModule.ledOptions.indexA1 == -1) ledButtonMap["A1"] = nullptr; else ledButtonMap["A1"] = ledModule.ledOptions.indexA1; if (ledModule.ledOptions.indexA2 == -1) ledButtonMap["A2"] = nullptr; else ledButtonMap["A2"] = ledModule.ledOptions.indexA2; auto usedPins = doc.createNestedArray("usedPins"); usedPins.add(gamepad.mapDpadUp->pin); usedPins.add(gamepad.mapDpadDown->pin); usedPins.add(gamepad.mapDpadLeft->pin); usedPins.add(gamepad.mapDpadRight->pin); usedPins.add(gamepad.mapButtonB1->pin); usedPins.add(gamepad.mapButtonB2->pin); usedPins.add(gamepad.mapButtonB3->pin); usedPins.add(gamepad.mapButtonB4->pin); usedPins.add(gamepad.mapButtonL1->pin); usedPins.add(gamepad.mapButtonR1->pin); usedPins.add(gamepad.mapButtonL2->pin); usedPins.add(gamepad.mapButtonR2->pin); usedPins.add(gamepad.mapButtonS1->pin); usedPins.add(gamepad.mapButtonS2->pin); usedPins.add(gamepad.mapButtonL3->pin); usedPins.add(gamepad.mapButtonR3->pin); usedPins.add(gamepad.mapButtonA1->pin); usedPins.add(gamepad.mapButtonA2->pin); BoardOptions boardOptions = getBoardOptions(); if (boardOptions.i2cSDAPin != -1) usedPins.add(boardOptions.i2cSDAPin); if (boardOptions.i2cSCLPin != -1) usedPins.add(boardOptions.i2cSCLPin); return serialize_json(doc); } string setLedOptions() { DynamicJsonDocument doc = get_post_data(); ledModule.ledOptions.useUserDefinedLEDs = true; ledModule.ledOptions.dataPin = doc["dataPin"]; ledModule.ledOptions.ledFormat = doc["ledFormat"]; ledModule.ledOptions.ledLayout = doc["ledLayout"]; ledModule.ledOptions.ledsPerButton = doc["ledsPerButton"]; ledModule.ledOptions.brightnessMaximum = doc["brightnessMaximum"]; ledModule.ledOptions.brightnessSteps = doc["brightnessSteps"]; ledModule.ledOptions.indexUp = (doc["ledButtonMap"]["Up"] == nullptr) ? -1 : doc["ledButtonMap"]["Up"]; ledModule.ledOptions.indexDown = (doc["ledButtonMap"]["Down"] == nullptr) ? -1 : doc["ledButtonMap"]["Down"]; ledModule.ledOptions.indexLeft = (doc["ledButtonMap"]["Left"] == nullptr) ? -1 : doc["ledButtonMap"]["Left"]; ledModule.ledOptions.indexRight = (doc["ledButtonMap"]["Right"] == nullptr) ? -1 : doc["ledButtonMap"]["Right"]; ledModule.ledOptions.indexB1 = (doc["ledButtonMap"]["B1"] == nullptr) ? -1 : doc["ledButtonMap"]["B1"]; ledModule.ledOptions.indexB2 = (doc["ledButtonMap"]["B2"] == nullptr) ? -1 : doc["ledButtonMap"]["B2"]; ledModule.ledOptions.indexB3 = (doc["ledButtonMap"]["B3"] == nullptr) ? -1 : doc["ledButtonMap"]["B3"]; ledModule.ledOptions.indexB4 = (doc["ledButtonMap"]["B4"] == nullptr) ? -1 : doc["ledButtonMap"]["B4"]; ledModule.ledOptions.indexL1 = (doc["ledButtonMap"]["L1"] == nullptr) ? -1 : doc["ledButtonMap"]["L1"]; ledModule.ledOptions.indexR1 = (doc["ledButtonMap"]["R1"] == nullptr) ? -1 : doc["ledButtonMap"]["R1"]; ledModule.ledOptions.indexL2 = (doc["ledButtonMap"]["L2"] == nullptr) ? -1 : doc["ledButtonMap"]["L2"]; ledModule.ledOptions.indexR2 = (doc["ledButtonMap"]["R2"] == nullptr) ? -1 : doc["ledButtonMap"]["R2"]; ledModule.ledOptions.indexS1 = (doc["ledButtonMap"]["S1"] == nullptr) ? -1 : doc["ledButtonMap"]["S1"]; ledModule.ledOptions.indexS2 = (doc["ledButtonMap"]["S2"] == nullptr) ? -1 : doc["ledButtonMap"]["S2"]; ledModule.ledOptions.indexL3 = (doc["ledButtonMap"]["L3"] == nullptr) ? -1 : doc["ledButtonMap"]["L3"]; ledModule.ledOptions.indexR3 = (doc["ledButtonMap"]["R3"] == nullptr) ? -1 : doc["ledButtonMap"]["R3"]; ledModule.ledOptions.indexA1 = (doc["ledButtonMap"]["A1"] == nullptr) ? -1 : doc["ledButtonMap"]["A1"]; ledModule.ledOptions.indexA2 = (doc["ledButtonMap"]["A2"] == nullptr) ? -1 : doc["ledButtonMap"]["A2"]; setLEDOptions(ledModule.ledOptions); GamepadStore.save(); ledModule.configureLEDs(); return serialize_json(doc); } string getPinMappings() { DynamicJsonDocument doc(LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); doc["Up"] = gamepad.mapDpadUp->pin; doc["Down"] = gamepad.mapDpadDown->pin; doc["Left"] = gamepad.mapDpadLeft->pin; doc["Right"] = gamepad.mapDpadRight->pin; doc["B1"] = gamepad.mapButtonB1->pin; doc["B2"] = gamepad.mapButtonB2->pin; doc["B3"] = gamepad.mapButtonB3->pin; doc["B4"] = gamepad.mapButtonB4->pin; doc["L1"] = gamepad.mapButtonL1->pin; doc["R1"] = gamepad.mapButtonR1->pin; doc["L2"] = gamepad.mapButtonL2->pin; doc["R2"] = gamepad.mapButtonR2->pin; doc["S1"] = gamepad.mapButtonS1->pin; doc["S2"] = gamepad.mapButtonS2->pin; doc["L3"] = gamepad.mapButtonL3->pin; doc["R3"] = gamepad.mapButtonR3->pin; doc["A1"] = gamepad.mapButtonA1->pin; doc["A2"] = gamepad.mapButtonA2->pin; return serialize_json(doc); } string setPinMappings() { DynamicJsonDocument doc = get_post_data(); BoardOptions options; options.hasBoardOptions = true; options.pinDpadUp = doc["Up"]; options.pinDpadDown = doc["Down"]; options.pinDpadLeft = doc["Left"]; options.pinDpadRight = doc["Right"]; options.pinButtonB1 = doc["B1"]; options.pinButtonB2 = doc["B2"]; options.pinButtonB3 = doc["B3"]; options.pinButtonB4 = doc["B4"]; options.pinButtonL1 = doc["L1"]; options.pinButtonR1 = doc["R1"]; options.pinButtonL2 = doc["L2"]; options.pinButtonR2 = doc["R2"]; options.pinButtonS1 = doc["S1"]; options.pinButtonS2 = doc["S2"]; options.pinButtonL3 = doc["L3"]; options.pinButtonR3 = doc["R3"]; options.pinButtonA1 = doc["A1"]; options.pinButtonA2 = doc["A2"]; setBoardOptions(options); GamepadStore.save(); gamepad.mapDpadUp->setPin(options.pinDpadUp); gamepad.mapDpadDown->setPin(options.pinDpadDown); gamepad.mapDpadLeft->setPin(options.pinDpadLeft); gamepad.mapDpadRight->setPin(options.pinDpadRight); gamepad.mapButtonB1->setPin(options.pinButtonB1); gamepad.mapButtonB2->setPin(options.pinButtonB2); gamepad.mapButtonB3->setPin(options.pinButtonB3); gamepad.mapButtonB4->setPin(options.pinButtonB4); gamepad.mapButtonL1->setPin(options.pinButtonL1); gamepad.mapButtonR1->setPin(options.pinButtonR1); gamepad.mapButtonL2->setPin(options.pinButtonL2); gamepad.mapButtonR2->setPin(options.pinButtonR2); gamepad.mapButtonS1->setPin(options.pinButtonS1); gamepad.mapButtonS2->setPin(options.pinButtonS2); gamepad.mapButtonL3->setPin(options.pinButtonL3); gamepad.mapButtonR3->setPin(options.pinButtonR3); gamepad.mapButtonA1->setPin(options.pinButtonA1); gamepad.mapButtonA2->setPin(options.pinButtonA2); return serialize_json(doc); } /************************* * LWIP implementation *************************/ // LWIP callback on HTTP POST to validate the URI err_t httpd_post_begin(void *connection, const char *uri, const char *http_request, uint16_t http_request_len, int content_len, char *response_uri, uint16_t response_uri_len, uint8_t *post_auto_wnd) { LWIP_UNUSED_ARG(http_request); LWIP_UNUSED_ARG(http_request_len); LWIP_UNUSED_ARG(content_len); LWIP_UNUSED_ARG(response_uri); LWIP_UNUSED_ARG(response_uri_len); LWIP_UNUSED_ARG(post_auto_wnd); if (!uri || (uri[0] == '\0') || memcmp(uri, "/api", 4)) return ERR_ARG; http_post_uri = (char *)uri; is_post = true; return ERR_OK; } // LWIP callback on HTTP POST to for receiving payload err_t httpd_post_receive_data(void *connection, struct pbuf *p) { LWIP_UNUSED_ARG(connection); int count; uint32_t http_post_payload_full_flag = 0; // Cache the received data to http_post_payload http_post_payload_len = 0; memset(http_post_payload, 0, LWIP_HTTPD_POST_MAX_PAYLOAD_LEN); while (p != NULL) { if (http_post_payload_len + p->len <= LWIP_HTTPD_POST_MAX_PAYLOAD_LEN) { MEMCPY(http_post_payload + http_post_payload_len, p->payload, p->len); http_post_payload_len += p->len; } else // Buffer overflow Set overflow flag { http_post_payload_full_flag = 1; break; } p = p->next; } // Need to release memory here or will leak pbuf_free(p); // If the buffer overflows, error out if (http_post_payload_full_flag) return ERR_BUF; return ERR_OK; } // LWIP callback to set the HTTP POST response_uri, which can then be looked up via the fs_custom callbacks void httpd_post_finished(void *connection, char *response_uri, uint16_t response_uri_len) { LWIP_UNUSED_ARG(connection); LWIP_UNUSED_ARG(response_uri); LWIP_UNUSED_ARG(response_uri_len); response_uri = http_post_uri; } int fs_open_custom(struct fs_file *file, const char *name) { if (is_post) { if (!memcmp(http_post_uri, API_SET_DISPLAY_OPTIONS, sizeof(API_SET_DISPLAY_OPTIONS))) return set_file_data(file, setDisplayOptions()); if (!memcmp(http_post_uri, API_SET_GAMEPAD_OPTIONS, sizeof(API_SET_GAMEPAD_OPTIONS))) return set_file_data(file, setGamepadOptions()); if (!memcmp(http_post_uri, API_SET_LED_OPTIONS, sizeof(API_SET_LED_OPTIONS))) return set_file_data(file, setLedOptions()); if (!memcmp(http_post_uri, API_SET_PIN_MAPPINGS, sizeof(API_SET_PIN_MAPPINGS))) return set_file_data(file, setPinMappings()); } else { if (!memcmp(name, API_GET_DISPLAY_OPTIONS, sizeof(API_GET_DISPLAY_OPTIONS))) return set_file_data(file, getDisplayOptions()); if (!memcmp(name, API_GET_GAMEPAD_OPTIONS, sizeof(API_GET_GAMEPAD_OPTIONS))) return set_file_data(file, getGamepadOptions()); if (!memcmp(name, API_GET_LED_OPTIONS, sizeof(API_GET_LED_OPTIONS))) return set_file_data(file, getLedOptions()); if (!memcmp(name, API_GET_PIN_MAPPINGS, sizeof(API_GET_PIN_MAPPINGS))) return set_file_data(file, getPinMappings()); if (!memcmp(name, API_RESET_SETTINGS, sizeof(API_RESET_SETTINGS))) return set_file_data(file, resetSettings()); } bool isExclude = false; for (auto &excludePath : excludePaths) if (!excludePath.compare(name)) return 0; for (auto &spaPath : spaPaths) { if (!spaPath.compare(name)) { file->data = (const char *)file__index_html[0].data; file->len = file__index_html[0].len; file->index = file__index_html[0].len; file->http_header_included = file__index_html[0].http_header_included; file->pextension = NULL; file->is_custom_file = 0; return 1; } } return 0; } void fs_close_custom(struct fs_file *file) { if (file && file->is_custom_file && file->pextension) { mem_free(file->pextension); file->pextension = NULL; } is_post = false; } ================================================ FILE: www/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: www/README.md ================================================ # GP2040 Web Configurator Simple web application for gamepad configuration. ## Requirements * PlatformIO with the [Wiz-IO Pico](https://github.com/Wiz-IO/wizio-pico) platform module * NodeJS and NPM to build the React app * Python for the React app build script * Perl for some text replacement done by the React app build script ## Development Navigate to the `www` folder and run `npm run dev`. This will start up the React app and an Express instance for mock data during development, allowing testing of the configurator without loading it onto the MCU, which is a SLOW process. The mock data Express server is running at http://localhost:8080. ### API Endpoints When adding a new API endpoint to the GP2040 Configurator: > NOTE: All endpoints should be under the `/api` path * Add the endpoint to `src/webserver.cpp`. * Add a define at the top: `#define API_GET_NEW_ENDPOINT "/api/getNewEndpoint"` * Use the naming convention `API_[GET/SET]_{ENDPOINT_PATH}` for the define * Use the naming convention `/api/{[get/set]EndpointPath}` for the path * Create the backing method with the same name as the API path: `string getNewEndpoint()` * Add handling code in `fs_open_custom` for the API path * Add a mock data endpoint to `src/server/app.js` * Add the client-side API function to `www/src/Services/WebApi.js`. * Add the endpoint to the Postman collection at `www/server/docs/GP2040.postman_collection.json` ### Files Use JPG and PNG files for images, SVG file support requires modification to the lwIP library that hasn't been completed. ## Building The `build-web.py` script is used to build the React application and regenerate the embedded data in `lib/httpd/fsdata.c`. The `makefsdata` tool that performs the conversion doesn't set the correct `#include` lines for our use. This script will fix this issue. If you just want to rebuild the React app in production mode for some reason, you can run `npm run build` from the `www` folder. The lwIP lib in Wiz-IO Pico PlatformIO platform doesn't include the `makefsdata` source. A precompiled version for Windows and Unix are included in the `tools` folder. ## References Original example: * * WizIO example: * Convert text to bytes: * * Create image map: * ================================================ FILE: www/package.json ================================================ { "name": "gp2040-configurator", "version": "0.1.0", "private": true, "dependencies": { "axios": "^0.24.0", "bootstrap": "^5.1.3", "formik": "^2.2.9", "lodash": "^4.17.21", "node-gyp": "^8.4.0", "node-sass": "^6.0.1", "react": "^17.0.2", "react-beautiful-dnd": "^13.1.0", "react-bootstrap": "^2.0.2", "react-dom": "^17.0.2", "react-router-dom": "^5.3.0", "react-scripts": "4.0.3", "yup": "^0.32.11" }, "scripts": { "start": "react-scripts start", "dev": "concurrently --kill-others \"npm run dev-server\" \"npm start\"", "dev-server": "nodemon --exec node ./server/app.js", "build": "react-scripts build", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app" ], "rules": { "react-hooks/exhaustive-deps": "off" } }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "devDependencies": { "concurrently": "^6.3.0", "cors": "^2.8.5", "express": "^4.17.1", "nodemon": "^2.0.15" } } ================================================ FILE: www/public/index.html ================================================ GP2040 Configurator
================================================ FILE: www/public/manifest.json ================================================ { "short_name": "GP2040 Configurator", "name": "GP2040 Configurator", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: www/server/app.js ================================================ /** * GP2040 Configurator Development Server */ const express = require('express'); const cors = require('cors'); const controllers = require('../src/Data/Controllers.json'); const port = process.env.PORT || 8080; const baseButtonMappings = { Up: { pin: -1, error: null }, Down: { pin: -1, error: null }, Left: { pin: -1, error: null }, Right: { pin: -1, error: null }, B1: { pin: -1, error: null }, B2: { pin: -1, error: null }, B3: { pin: -1, error: null }, B4: { pin: -1, error: null }, L1: { pin: -1, error: null }, R1: { pin: -1, error: null }, L2: { pin: -1, error: null }, R2: { pin: -1, error: null }, S1: { pin: -1, error: null }, S2: { pin: -1, error: null }, L3: { pin: -1, error: null }, R3: { pin: -1, error: null }, A1: { pin: -1, error: null }, A2: { pin: -1, error: null }, }; const app = express(); app.use(cors()); app.use(express.json()); app.get('/api/resetSettings', (req, res) => { console.log('/api/resetSettings'); return res.send({ success: true }); }); app.get('/api/getDisplayOptions', (req, res) => { console.log('/api/getDisplayOptions'); return res.send({ enabled: 1, sdaPin: 0, sclPin: 1, i2cAddress: '0x3D', i2cBlock: 0, i2cSpeed: 400000, flipDisplay: 0, invertDisplay: 1, }); }); app.get('/api/getGamepadOptions', (req, res) => { console.log('/api/getGamepadOptions'); return res.send({ dpadMode: 0, inputMode: 1, socdMode: 2, }); }); app.get('/api/getLedOptions', (req, res) => { console.log('/api/getLedOptions'); let usedPins = []; for (let prop of Object.keys(controllers['pico'])) if (!isNaN(parseInt(controllers['pico'][prop]))) usedPins.push(parseInt(controllers['pico'][prop])); return res.send({ brightnessMaximum: 255, brightnessSteps: 5, dataPin: 15, ledFormat: 0, ledLayout: 1, ledsPerButton: 2, ledButtonMap: { Up: 3, Down: 1, Left: 0, Right: 2, B1: 8, B2: 9, B3: 4, B4: 5, L1: 7, R1: 6, L2: 11, R2: 10, S1: null, S2: null, L3: null, R3: null, A1: null, A2: null, }, usedPins, }); }); app.get('/api/getPinMappings', (req, res) => { console.log('/api/getPinMappings'); let mappings = { ...baseButtonMappings }; for (let prop of Object.keys(controllers['pico'])) { if (mappings[prop]) mappings[prop] = parseInt(controllers['pico'][prop]); } return res.send(mappings); }); app.post('/api/*', (req, res) => { console.log(req.url); return res.send(req.body); }) app.listen(port, () => { console.log(`Example app listening at http://localhost:${port}`) }); ================================================ FILE: www/server/docs/GP2040 (Dev).postman_environment.json ================================================ { "id": "d2a5e53c-ff1a-43b5-8d9b-d3e32f3077c0", "name": "GP2040 (Dev)", "values": [ { "key": "baseUrl", "value": "http://localhost:8080", "enabled": true } ], "_postman_variable_scope": "environment", "_postman_exported_at": "2021-11-09T21:30:14.170Z", "_postman_exported_using": "Postman/9.1.3" } ================================================ FILE: www/server/docs/GP2040.postman_collection.json ================================================ { "info": { "_postman_id": "f14b64b0-eae6-4bbe-b8fc-edc35a7f64bb", "name": "GP2040", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "/api/getGamepadOptions", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/getGamepadOptions", "host": [ "{{baseUrl}}" ], "path": [ "api", "getGamepadOptions" ] } }, "response": [] }, { "name": "/api/getPinMappings", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/getPinMappings", "host": [ "{{baseUrl}}" ], "path": [ "api", "getPinMappings" ] } }, "response": [] }, { "name": "/api/resetSettings", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/resetSettings", "host": [ "{{baseUrl}}" ], "path": [ "api", "resetSettings" ] } }, "response": [] }, { "name": "/api/setGamepadOptions", "request": { "method": "POST", "header": [], "body": { "mode": "raw", "raw": "{\r\n \"dpadMode\": 0,\r\n \"inputMode\": 1,\r\n \"socdMode\": 2\r\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/setGamepadOptions", "host": [ "{{baseUrl}}" ], "path": [ "api", "setGamepadOptions" ] } }, "response": [] }, { "name": "/api/setPinMappings", "request": { "method": "POST", "header": [], "body": { "mode": "raw", "raw": "{\r\n \"Up\": 2,\r\n \"Down\": 3,\r\n \"Left\": 5,\r\n \"Right\": 4,\r\n \"B1\": 6,\r\n \"B2\": 7,\r\n \"B3\": 10,\r\n \"B4\": 11,\r\n \"L1\": 13,\r\n \"R1\": 12,\r\n \"L2\": 9,\r\n \"R2\": 8,\r\n \"S1\": 16,\r\n \"S2\": 17,\r\n \"L3\": 18,\r\n \"R3\": 19,\r\n \"A1\": 20,\r\n \"A2\": 21\r\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/setGamepadOptions", "host": [ "{{baseUrl}}" ], "path": [ "api", "setGamepadOptions" ] } }, "response": [] } ], "event": [ { "listen": "prerequest", "script": { "type": "text/javascript", "exec": [ "" ] } }, { "listen": "test", "script": { "type": "text/javascript", "exec": [ "" ] } } ] } ================================================ FILE: www/src/App.js ================================================ import React, { useState } from 'react'; import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; import { AppContext } from './Contexts/AppContext'; import Navigation from './Components/Navigation' import HomePage from './Pages/HomePage' import PinMappingPage from "./Pages/PinMapping"; import ResetSettingsPage from './Pages/ResetSettingsPage'; import SettingsPage from './Pages/SettingsPage'; import DisplayConfigPage from './Pages/DisplayConfig'; import LEDConfigPage from './Pages/LEDConfigPage'; import { loadButtonLabels } from './Services/Storage'; import './App.scss'; const App = () => { const [buttonLabels, setButtonLabels] = useState(loadButtonLabels() ?? 'gp2040'); const appData = { buttonLabels, setButtonLabels, }; return (
); } export default App; ================================================ FILE: www/src/App.scss ================================================ .body-content { min-height: calc(100vh - 56px); min-width: 400px; display: flex; margin-top: 56px; flex-direction: column; padding: 10px 20px; } ================================================ FILE: www/src/Components/DangerSection.js ================================================ import React from 'react'; import Section from './Section'; const DangerSection = ({ className, titleClassName, ...props }) => { return (
); }; export default DangerSection; ================================================ FILE: www/src/Components/DraggableListGroup.js ================================================ import React, { useEffect, useState } from "react"; import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd"; import './DraggableListGroup.scss' const reorder = (list, startIndex, endIndex) => { const result = Array.from(list); const [removed] = result.splice(startIndex, 1); result.splice(endIndex, 0, removed); return result; }; const move = (source, destination, droppableSource, droppableDestination) => { const sourceClone = Array.from(source); const destClone = Array.from(destination); const [removed] = sourceClone.splice(droppableSource.index, 1); destClone.splice(droppableDestination.index, 0, removed); const result = {}; result[droppableSource.droppableId] = sourceClone; result[droppableDestination.droppableId] = destClone; return result; }; const DraggableListGroup = ({ groupName, titles, dataSources, onChange, ...props }) => { const [droppableIds, setDroppableIds] = useState([]); const [listData, setListData] = useState({}); useEffect(() => { if (onChange) onChange(Object.keys(listData).reduce((p, n) => { p.push(listData[n]); return p; }, [])); }, [listData]); useEffect(() => { setDroppableIds(dataSources.map((v, i) => `${groupName}-${i}`)); setListData(dataSources.reduce((p, n) => ({ ...p, [`${groupName}-${dataSources.indexOf(n)}`]: n }), {})); }, [dataSources, setDroppableIds, setListData]); const onDragEnd = result => { const { source, destination } = result; if (!destination) return; if (source.droppableId === destination.droppableId) { const items = reorder( listData[source.droppableId], source.index, destination.index ); const newListData = { ...listData }; newListData[source.droppableId] = items; setListData(newListData); } else { const moved = move( listData[source.droppableId], listData[destination.droppableId], source, destination ); const newListData = { ...listData }; newListData[source.droppableId] = moved[source.droppableId]; newListData[destination.droppableId] = moved[destination.droppableId]; setListData(newListData); } }; return (
{droppableIds.map((droppableId, i) =>
{titles[i]}
{(droppableProvided, droppableSnapshot) => (
{listData[droppableId].map((item, l) => ( {(draggableProvided, draggableSnapshot) => (
{item.label}
)}
))} {droppableProvided.placeholder}
)}
)}
); }; export default DraggableListGroup; ================================================ FILE: www/src/Components/DraggableListGroup.scss ================================================ .draggable-list-group { display: flex; justify-content: space-between; .list-group { flex: 1 1 auto; } } .draggable-list-container { display: flex; flex-direction: column; flex: 1 0 auto; margin: 10px; width: 0; } .draggable-list-title { font-size: 16px; font-weight: 600; } .draggable-list { flex-direction: row; } ================================================ FILE: www/src/Components/FormCheck.js ================================================ import React from 'react'; import { Form } from 'react-bootstrap'; import './FormCheck.scss' const FormControl = ({ label, error, groupClassName, ...props }) => { return ( {label} {error} ); }; export default FormControl; ================================================ FILE: www/src/Components/FormCheck.scss ================================================ .form-check-input { margin-top: 0; } ================================================ FILE: www/src/Components/FormControl.js ================================================ import React from 'react'; import { Form } from 'react-bootstrap'; const FormControl = ({ label, error, groupClassName, ...props }) => { return ( {label} {error} ); }; export default FormControl; ================================================ FILE: www/src/Components/FormSelect.js ================================================ import React from 'react'; import { Form } from 'react-bootstrap'; const FormSelect = ({ label, error, groupClassName, ...props }) => { return ( {label && {label}} {error} ); }; export default FormSelect; ================================================ FILE: www/src/Components/Navigation.js ================================================ import React, { useContext } from 'react'; import { Nav, NavDropdown, Navbar } from 'react-bootstrap'; import { NavLink } from "react-router-dom"; import { AppContext } from '../Contexts/AppContext'; import FormSelect from './FormSelect'; import { saveButtonLabels } from '../Services/Storage'; import BUTTONS from '../Data/Buttons.json'; import './Navigation.scss'; const Navigation = (props) => { const { buttonLabels, setButtonLabels } = useContext(AppContext); const updateButtonLabels = (e) => { saveButtonLabels(e.target.value); setButtonLabels(e.target.value); }; return ( logo{' '}GP2040
{Object.keys(BUTTONS).map((b, i) => )}
); }; export default Navigation; ================================================ FILE: www/src/Components/Navigation.scss ================================================ .title-logo { height: 24px; margin: -6px 8px 0 12px; } .nav-link, .nav-item * { font-size: 0.875rem; } .navbar-tools { position: absolute; top: 12px; right: 10px; display: flex; flex-direction: row; justify-content: flex-end; align-items: center; } .danger-zone { border-radius: 4px; } @media (prefers-reduced-motion: no-preference) { .title-logo { animation: clockwise-spin infinite 20s linear; } } @keyframes clockwise-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } ================================================ FILE: www/src/Components/Section.js ================================================ import React from 'react'; import './Section.scss'; const Section = ({ children, title, ...props }) => { return (
{title}
{children}
); }; export default Section; ================================================ FILE: www/src/Components/Section.scss ================================================ .card { margin-bottom: 10px; } ================================================ FILE: www/src/Contexts/AppContext.js ================================================ import { createContext } from 'react'; export const defaultAppData = { buttonLabels: 'gp2040', }; export const AppContext = createContext(defaultAppData); ================================================ FILE: www/src/Data/Boards.json ================================================ { "pico": { "minPin": 0, "maxPin": 28, "analogPins": [26, 27, 28], "invalidPins": [23, 24, 25] } } ================================================ FILE: www/src/Data/Buttons.json ================================================ { "gp2040": { "label": "GP2040", "value": "gp2040", "Up": "Up", "Down": "Down", "Left": "Left", "Right": "Right", "B1": "B1", "B2": "B2", "B3": "B3", "B4": "B4", "L1": "L1", "R1": "R1", "L2": "L2", "R2": "R2", "S1": "S1", "S2": "S2", "L3": "L3", "R3": "R3", "A1": "A1", "A2": "A2" }, "arcade": { "label": "Arcade", "value": "arcade", "Up": "Up", "Down": "Down", "Left": "Left", "Right": "Right", "B1": "K1", "B2": "K2", "B3": "P1", "B4": "P2", "L1": "L1", "R1": "R1", "L2": "L2", "R2": "R2", "S1": "Select", "S2": "Start", "L3": "L3", "R3": "R3", "A1": "Home", "A2": "N/A" }, "xinput": { "label": "XInput", "value": "xinput", "Up": "Up", "Down": "Down", "Left": "Left", "Right": "Right", "B1": "A", "B2": "B", "B3": "X", "B4": "Y", "L1": "LB", "R1": "RB", "L2": "LT", "R2": "RT", "S1": "Back", "S2": "Start", "L3": "LS", "R3": "RS", "A1": "Guide", "A2": "N/A" }, "switch": { "label": "Nintendo Switch", "value": "switch", "Up": "Up", "Down": "Down", "Left": "Left", "Right": "Right", "B1": "B", "B2": "A", "B3": "Y", "B4": "X", "L1": "L", "R1": "R", "L2": "ZL", "R2": "ZR", "S1": "Minus", "S2": "Plus", "L3": "LS", "R3": "RS", "A1": "Home", "A2": "Capture" }, "ps3": { "label": "PS3/PS4", "value": "ps3", "Up": "Up", "Down": "Down", "Left": "Left", "Right": "Right", "B1": "Cross", "B2": "Circle", "B3": "Square", "B4": "Triangle", "L1": "L1", "R1": "R1", "L2": "L2", "R2": "R2", "S1": "Select", "S2": "Start", "L3": "L3", "R3": "R3", "A1": "N/A", "A2": "N/A" }, "dinput": { "label": "DirectInput", "value": "dinput", "Up": "Up", "Down": "Down", "Left": "Left", "Right": "Right", "B1": "2", "B2": "3", "B3": "1", "B4": "4", "L1": "5", "R1": "6", "L2": "7", "R2": "8", "S1": "9", "S2": "10", "L3": "11", "R3": "12", "A1": "13", "A2": "14" } } ================================================ FILE: www/src/Data/Controllers.json ================================================ { "pico": { "board": "pico", "Up": "2", "Down": "3", "Left": "5", "Right": "4", "B1": "6", "B2": "7", "B3": "10", "B4": "11", "L1": "13", "R1": "12", "L2": "9", "R2": "8", "S1": "16", "S2": "17", "L3": "18", "R3": "19", "A1": "20", "A2": "21" }, "osfrd": { "board": "pico", "Up": "13", "Down": "11", "Left": "10", "Right": "12", "B1": "4", "B2": "5", "B3": "0", "B4": "1", "L1": "3", "R1": "2", "L2": "7", "R2": "6", "S1": "8", "S2": "9", "L3": "17", "R3": "16", "A1": "28", "A2": "18" } } ================================================ FILE: www/src/Pages/DisplayConfig.js ================================================ import React, { useEffect, useState } from 'react'; import { Button, Form, Row, Col } from 'react-bootstrap'; import { Formik, useFormikContext } from 'formik'; import * as yup from 'yup'; import FormControl from '../Components/FormControl'; import FormSelect from '../Components/FormSelect'; import Section from '../Components/Section'; import WebApi from '../Services/WebApi'; const ON_OFF_OPTIONS = [ { label: 'Disabled', value: 0 }, { label: 'Enabled', value: 1 }, ]; const I2C_BLOCKS = [ { label: 'i2c0', value: 0 }, { label: 'i2c1', value: 1 }, ]; const defaultValues = { enabled: false, sdaPin: -1, sclPin: -1, i2cAddress: '0x3C', i2cBlock: 0, i2cSpeed: 400000, flipDisplay: false, invertDisplay: false, }; let usedPins = []; const schema = yup.object().shape({ enabled: yup.number().label('Enabled?'), i2cAddress: yup.string().required().label('I2C Address'), // eslint-disable-next-line no-template-curly-in-string sdaPin: yup.number().required().min(-1).max(29).test('', '${originalValue} is already assigned!', (value) => usedPins.indexOf(value) === -1).label('SDA Pin'), // eslint-disable-next-line no-template-curly-in-string sclPin: yup.number().required().min(-1).max(29).test('', '${originalValue} is already assigned!', (value) => usedPins.indexOf(value) === -1).label('SCL Pin'), i2cBlock: yup.number().required().oneOf(I2C_BLOCKS.map(o => o.value)).label('I2C Block'), i2cSpeed: yup.number().required().label('I2C Speed'), flipDisplay: yup.number().label('Flip Display'), invertDisplay: yup.number().label('Invert Display'), }); const FormContext = () => { const { values, setValues } = useFormikContext(); useEffect(() => { async function fetchData() { const data = await WebApi.getDisplayOptions(); usedPins = data.usedPins; setValues(data); } fetchData(); }, [setValues]); useEffect(() => { if (!!values.enabled) values.enabled = parseInt(values.enabled); if (!!values.i2cBlock) values.i2cBlock = parseInt(values.i2cBlock); if (!!values.flipDisplay) values.flipDisplay = parseInt(values.flipDisplay); if (!!values.invertDisplay) values.invertDisplay = parseInt(values.invertDisplay); }, [values, setValues]); return null; }; export default function DisplayConfigPage() { const [saveMessage, setSaveMessage] = useState(''); const onSuccess = async (values) => { const success = WebApi.setDisplayOptions(values); setSaveMessage(success ? 'Saved!' : 'Unable to Save'); }; return ( {({ handleSubmit, handleChange, handleBlur, values, touched, errors, }) => (

A monochrome display can be used to show controller status and button activity. Ensure your display module has the following attributes:

  • Monochrome display with 128x64 resolution
  • Uses I2C with a SSD1306, SH1106, SH1107 or other compatible display IC
  • Supports 3.3v operation

Use these tables to determine which I2C block to select based on the configured SDA and SCL pins:

SDA/SCL Pins I2C Block
0/1i2c0
2/3i2c1
4/5i2c0
6/7i2c1
8/9i2c0
10/11i2c1
SDA/SCL Pins I2C Block
12/13i2c0
14/15i2c1
16/17i2c0
18/19i2c1
20/21i2c0
26/27i2c1
{ON_OFF_OPTIONS.map((o, i) => )} {I2C_BLOCKS.map((o, i) => )} {ON_OFF_OPTIONS.map((o, i) => )} {ON_OFF_OPTIONS.map((o, i) => )}
{saveMessage ? {saveMessage} : null}
)}
); } ================================================ FILE: www/src/Pages/HomePage.js ================================================ import React, { useEffect, useState } from 'react'; import axios from 'axios'; import { orderBy } from 'lodash'; import Section from '../Components/Section'; const currentVersion = process.env.REACT_APP_CURRENT_VERSION; export default function HomePage() { const [latestVersion, setLatestVersion] = useState(''); useEffect(() => { axios.get('https://api.github.com/repos/FeralAI/GP2040/releases') .then((response) => { const sortedData = orderBy(response.data, 'published_at', 'desc'); setLatestVersion(sortedData[0].name); }) .catch(console.error); }, [setLatestVersion]); return (

Welcome to the GP2040 Web Configurator!

Please select a menu option to proceed.

Current Version: { currentVersion }
Latest Version: { latestVersion }
{(latestVersion && currentVersion !== latestVersion) ? : null}
); } ================================================ FILE: www/src/Pages/LEDConfigPage.js ================================================ import React, { useContext, useEffect, useState } from 'react'; import { Button, Form, Row } from 'react-bootstrap'; import { Formik, useFormikContext } from 'formik'; import { orderBy } from 'lodash'; import * as yup from 'yup'; import { AppContext } from '../Contexts/AppContext'; import Section from '../Components/Section'; import DraggableListGroup from '../Components/DraggableListGroup'; import FormControl from '../Components/FormControl'; import FormSelect from '../Components/FormSelect'; import BUTTONS from '../Data/Buttons.json'; import WebApi from '../Services/WebApi'; const LED_FORMATS = [ { label: 'GRB', value: 0 }, { label: 'RGB', value: 1 }, { label: 'GRBW', value: 2 }, { label: 'RGBW', value: 3 }, ]; const BUTTON_LAYOUTS = [ { label: '8-Button Layout', value: 0 }, { label: 'Hit Box Layout', value: 1 }, { label: 'WASD Layout', value: 2 }, ]; const defaultValue = { brightnessMaximum: 255, brightnessSteps: 5, dataPin: -1, ledFormat: 0, ledLayout: 0, ledsPerButton: 2, }; let usedPins = []; const schema = yup.object().shape({ brightnessMaximum : yup.number().required().positive().integer().min(0).max(255).label('Max Brightness'), brightnessSteps : yup.number().required().positive().integer().min(1).max(10).label('Brightness Steps'), // eslint-disable-next-line no-template-curly-in-string dataPin : yup.number().required().min(-1).max(29).test('', '${originalValue} is already assigned!', (value) => usedPins.indexOf(value) === -1).label('Data Pin'), ledFormat : yup.number().required().positive().integer().min(0).max(3).label('LED Format'), ledLayout : yup.number().required().positive().integer().min(0).max(2).label('LED Layout'), ledsPerButton : yup.number().required().positive().integer().min(1).label('LEDs Per Pixel'), }); const getLedButtons = (buttonLabels, map, excludeNulls) => { return orderBy( Object .keys(BUTTONS[buttonLabels]) .filter(p => p !== 'label' && p !== 'value') .filter(p => excludeNulls ? map[p] > -1 : true) .map(p => ({ id: p, label: BUTTONS[buttonLabels][p], value: map[p] })), "value" ); } const getLedMap = (buttonLabels, ledButtons, excludeNulls) => { if (!ledButtons) return; const map = Object .keys(BUTTONS[buttonLabels]) .filter(p => p !== 'label' && p !== 'value') .filter(p => excludeNulls ? ledButtons[p].value > -1 : true) .reduce((p, n) => { p[n] = null; return p }, {}); for (let i = 0; i < ledButtons.length; i++) map[ledButtons[i].id] = i; return map; } const FormContext = ({ buttonLabels, ledButtonMap, ledFormat, setDataSources }) => { const { setFieldValue, setValues } = useFormikContext(); useEffect(() => { async function fetchData() { const data = await WebApi.getLedOptions(); let available = {}; let assigned = {}; Object.keys(data.ledButtonMap).forEach(p => { if (data.ledButtonMap[p] === null) available[p] = data.ledButtonMap[p]; else assigned[p] = data.ledButtonMap[p]; }); const dataSources = [ getLedButtons(buttonLabels, available, true), getLedButtons(buttonLabels, assigned, true), ]; usedPins = data.usedPins; setDataSources(dataSources); setValues(data); } fetchData(); }, [buttonLabels]); useEffect(() => { if (!!ledFormat) setFieldValue('ledFormat', parseInt(ledFormat)); }, [ledFormat, setFieldValue]); useEffect(() => { setFieldValue('ledButtonMap', ledButtonMap); }, [ledButtonMap, setFieldValue]); return null; }; export default function LEDConfigPage() { const { buttonLabels } = useContext(AppContext); const [saveMessage, setSaveMessage] = useState(''); const [ledButtonMap, setLedButtonMap] = useState([]); const [dataSources, setDataSources] = useState([[], []]); const ledOrderChanged = (ledOrderArrays) => { if (ledOrderArrays.length === 2) setLedButtonMap(getLedMap(buttonLabels, ledOrderArrays[1])); }; const onSuccess = async (values) => { const success = WebApi.setLedOptions(values); setSaveMessage(success ? 'Saved!' : 'Unable to Save'); }; return ( {({ handleSubmit, handleChange, handleBlur, values, touched, errors, }) => (
{LED_FORMATS.map((o, i) => )} {BUTTON_LAYOUTS.map((o, i) => )}

Here you can define which buttons have RGB LEDs and in what order they run from the control board. This is required for certain LED animations and static theme support.

Drag and drop list items to assign and reorder the RGB LEDs.

{saveMessage ? {saveMessage} : null} )}
); } ================================================ FILE: www/src/Pages/PinMapping.js ================================================ import React, { useContext, useEffect, useState } from 'react'; import { NavLink } from "react-router-dom"; import { Button, Form } from 'react-bootstrap'; import { AppContext } from '../Contexts/AppContext'; import Section from '../Components/Section'; import WebApi, { baseButtonMappings } from '../Services/WebApi'; import boards from '../Data/Boards.json'; import BUTTONS from '../Data/Buttons.json'; import './PinMappings.scss'; const requiredButtons = ['B1', 'B2', 'B3', 'S2']; export default function PinMappingPage() { const { buttonLabels } = useContext(AppContext); const [validated, setValidated] = useState(false); const [saveMessage, setSaveMessage] = useState(''); const [buttonMappings, setButtonMappings] = useState(baseButtonMappings); const [selectedController] = useState(process.env.REACT_APP_GP2040_CONTROLLER); const [selectedBoard] = useState(process.env.REACT_APP_GP2040_BOARD); useEffect(() => { async function fetchData() { setButtonMappings(await WebApi.getPinMappings()); } fetchData(); }, [setButtonMappings, selectedController]); const handlePinChange = (e, prop) => { const newMappings = {...buttonMappings}; if (e.target.value) newMappings[prop].pin = parseInt(e.target.value); else newMappings[prop].pin = ''; validateMappings(newMappings); }; const handleSubmit = async (e) => { e.preventDefault(); e.stopPropagation(); let mappings = {...buttonMappings}; validateMappings(mappings); if (Object.keys(mappings).filter(p => !!mappings[p].error).length) { setSaveMessage('Validation errors, see above'); return; } const success = await WebApi.setPinMappings(mappings); setSaveMessage(success ? 'Saved!' : 'Unable to Save'); }; const validateMappings = (mappings) => { const props = Object.keys(mappings); for (let prop of props) { mappings[prop].error = null; for (let otherProp of props) { if (prop === otherProp) continue; if (mappings[prop].pin === '' && !requiredButtons.filter(b => b === mappings[otherProp].button).length) mappings[prop].error = `${mappings[prop].button} is required`; else if (mappings[prop].pin === mappings[otherProp].pin) mappings[prop].error = `Pin ${mappings[prop].pin} is already assigned`; else if (boards[selectedBoard].invalidPins.filter(p => p === mappings[prop].pin).length > 0) mappings[prop].error = `Pin ${mappings[prop].pin} is invalid for this board`; } } setButtonMappings(mappings); setValidated(true); }; return (

Use the form below to reconfigure your button-to-pin mapping.

Mapping buttons to pins that aren't connected or available can leave the device in non-functional state. To clear the the invalid configuration go to the Reset Settings page.
{Object.keys(BUTTONS[buttonLabels])?.filter(p => p !== 'label' && p !== 'value').map((button, i) => )}
{BUTTONS[buttonLabels].label} Pin
{BUTTONS[buttonLabels][button]} b === button).length} onChange={(e) => handlePinChange(e, button)} > {boards[selectedBoard]?.min} {buttonMappings[button].error}
{saveMessage ? {saveMessage} : null}
); } ================================================ FILE: www/src/Pages/PinMappings.scss ================================================ table.pin-mapping-table { width: 100%; vertical-align: middle; .table-header-button-label { width: 150px; } input.pin-input { display: inline-block; width: 80px; + .invalid-feedback { display: inline; margin-left: 20px; margin-right: 10px; } } } .select-button-labels-container { margin-bottom: 10px; .select-button-labels { display: inline-block; width: 150px; } label { line-height: 2rem; margin-right: 10px; } } ================================================ FILE: www/src/Pages/ResetSettingsPage.js ================================================ import React from 'react'; import DangerSection from '../Components/DangerSection'; import WebApi from '../Services/WebApi'; export default function ResetSettingsPage() { const resetSettings = async (e) => { e.preventDefault(); e.stopPropagation(); if (window.confirm('Are you sure you want to reset saved configuration?')) { const result = await WebApi.resetSettings(); console.log(result); setTimeout(() => { window.location.reload(); }, 2000); } }; return (

This option resets all saved configurations on your controller. Use this option as a last resort or when trying to diagnose odd issues with your controller.

This process will automatically reset the controller.

); } ================================================ FILE: www/src/Pages/SettingsPage.js ================================================ import React, { useEffect, useState } from 'react'; import { Button, Form } from 'react-bootstrap'; import { Formik, useFormikContext } from 'formik'; import * as yup from 'yup'; import Section from '../Components/Section'; import WebApi from '../Services/WebApi'; const INPUT_MODES = [ { label: 'XInput', value: 0 }, { label: 'Nintendo Switch', value: 1 }, { label: 'PS3/DirectInput', value: 2 }, ]; const DPAD_MODES = [ { label: 'D-pad', value: 0 }, { label: 'Left Analog', value: 1 }, { label: 'Right Analog', value: 2 }, ]; const SOCD_MODES = [ { label: 'Up Priority', value: 0 }, { label: 'Neutral', value: 1 }, { label: 'Last Win', value: 2 }, ]; const schema = yup.object().shape({ dpadMode : yup.number().required().oneOf(DPAD_MODES.map(o => o.value)).label('D-Pad Mode'), inputMode: yup.number().required().oneOf(INPUT_MODES.map(o => o.value)).label('Input Mode'), socdMode : yup.number().required().oneOf(SOCD_MODES.map(o => o.value)).label('SOCD Mode'), }); const FormContext = () => { const { values, setValues } = useFormikContext(); useEffect(() => { async function fetchData() { setValues(await WebApi.getGamepadOptions()); } fetchData(); }, [setValues]); useEffect(() => { if (!!values.dpadMode) values.dpadMode = parseInt(values.dpadMode); if (!!values.inputMode) values.inputMode = parseInt(values.inputMode); if (!!values.socdMode) values.socdMode = parseInt(values.socdMode); }, [values, setValues]); return null; }; export default function SettingsPage() { const [saveMessage, setSaveMessage] = useState(''); const onSuccess = async (values) => { const success = WebApi.setGamepadOptions(values); setSaveMessage(success ? 'Saved!' : 'Unable to Save'); }; return ( {({ handleSubmit, handleChange, handleBlur, values, touched, errors, }) => (
Input Mode
{INPUT_MODES.map((o, i) => )} {errors.inputMode}
D-Pad Mode
{DPAD_MODES.map((o, i) => )} {errors.dpadMode}
SOCD Mode
{SOCD_MODES.map((o, i) => )} {errors.socdMode}
{saveMessage ? {saveMessage} : null}
)}
); } ================================================ FILE: www/src/Services/Storage.js ================================================ const STORAGE_BUTTON_LABELS = 'buttonLabels'; const loadButtonLabels = () => localStorage.getItem(STORAGE_BUTTON_LABELS) ?? 'gp2040'; const saveButtonLabels = (value) => localStorage.setItem(STORAGE_BUTTON_LABELS, value); export { loadButtonLabels, saveButtonLabels, }; ================================================ FILE: www/src/Services/WebApi.js ================================================ import axios from 'axios'; const baseUrl = process.env.NODE_ENV === 'production' ? '' : 'http://localhost:8080'; export const baseButtonMappings = { Up: { pin: -1, error: null }, Down: { pin: -1, error: null }, Left: { pin: -1, error: null }, Right: { pin: -1, error: null }, B1: { pin: -1, error: null }, B2: { pin: -1, error: null }, B3: { pin: -1, error: null }, B4: { pin: -1, error: null }, L1: { pin: -1, error: null }, R1: { pin: -1, error: null }, L2: { pin: -1, error: null }, R2: { pin: -1, error: null }, S1: { pin: -1, error: null }, S2: { pin: -1, error: null }, L3: { pin: -1, error: null }, R3: { pin: -1, error: null }, A1: { pin: -1, error: null }, A2: { pin: -1, error: null }, }; async function resetSettings() { return axios.get(`${baseUrl}/api/resetSettings`) .then((response) => response.data) .catch(console.error); } async function getDisplayOptions() { return axios.get(`${baseUrl}/api/getDisplayOptions`) .then((response) => { if (response.data.i2cAddress) response.data.i2cAddress = '0x' + response.data.i2cAddress.toString(16); return response.data; }) .catch(console.error); } async function setDisplayOptions(options) { let newOptions = { ...options }; newOptions.i2cAddress = parseInt(options.i2cAddress); return axios.post(`${baseUrl}/api/setDisplayOptions`, newOptions) .then((response) => { console.log(response.data); return true; }) .catch((err) => { console.error(err); return false; }); } async function getGamepadOptions() { return axios.get(`${baseUrl}/api/getGamepadOptions`) .then((response) => response.data) .catch(console.error); } async function setGamepadOptions(options) { return axios.post(`${baseUrl}/api/setGamepadOptions`, options) .then((response) => { console.log(response.data); return true; }) .catch((err) => { console.error(err); return false; }); } async function getLedOptions() { return axios.get(`${baseUrl}/api/getLedOptions`) .then((response) => response.data) .catch(console.error); } async function setLedOptions(options) { return axios.post(`${baseUrl}/api/setLedOptions`, options) .then((response) => { console.log(response.data); return true; }) .catch((err) => { console.error(err); return false; }); } async function getPinMappings() { return axios.get(`${baseUrl}/api/getPinMappings`) .then((response) => { let mappings = { ...baseButtonMappings }; for (let prop of Object.keys(response.data)) mappings[prop].pin = parseInt(response.data[prop]); return mappings; }) .catch(console.error); } async function setPinMappings(mappings) { let data = {}; Object.keys(mappings).map((button, i) => data[button] = mappings[button].pin); return axios.post(`${baseUrl}/api/setPinMappings`, data) .then((response) => { console.log(response.data); return true; }) .catch((err) => { console.error(err); return false; }); } const WebApi = { resetSettings, getDisplayOptions, setDisplayOptions, getGamepadOptions, setGamepadOptions, getLedOptions, setLedOptions, getPinMappings, setPinMappings, }; export default WebApi; ================================================ FILE: www/src/index.js ================================================ import React from 'react'; import ReactDOM from 'react-dom'; import { BrowserRouter } from 'react-router-dom'; import App from './App'; import './index.scss'; import 'bootstrap/dist/js/bootstrap.bundle.min.js'; ReactDOM.render( , document.getElementById('root') ); ================================================ FILE: www/src/index.scss ================================================ // Override default variables before the import $body-bg: #e9ecef; $primary: #495057; $danger: #7b2d26; @import '~bootstrap/scss/bootstrap'; * { font-size: 16px; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } h1 { font-size: 1.5rem; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } input.form-control { :focus { color: inherit; } } // Fix for invalid inputs showing valid style after calling `form.checkValidity()` .was-validated .form-control.is-invalid { border-color: $danger; padding-right: calc(1.5em + 0.75rem); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right calc(0.375em + 0.1875rem) center; background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } .card { border-color: $primary; } .card-header { background-color: $primary; color: $white; }